diff --git a/.doc/MemoriaDeEvolucion.md b/.doc/MemoriaDeEvolucion.md index 0c702a0..d24eb56 100644 --- a/.doc/MemoriaDeEvolucion.md +++ b/.doc/MemoriaDeEvolucion.md @@ -4,6 +4,71 @@ ### Latest Modifications (Current Session) +#### Persistent Application Events Log +**Decision**: Implemented comprehensive event logging system with persistent storage and real-time web interface. + +**Rationale**: Industrial applications require detailed audit trails and event monitoring for troubleshooting, compliance, and operational analysis. Previous logging was limited to console output without persistent storage or web access. + +**Implementation**: + +**Persistent Event Storage**: +- Created `application_events.json` file for structured event storage +- JSON-based format with timestamp, level, event type, message and detailed metadata +- Automatic log rotation with configurable maximum entries (1000 events) +- UTF-8 encoding support for international character sets + +**Event Categories**: +- **Connection Events**: PLC connect/disconnect with connection parameters +- **Configuration Changes**: PLC settings, UDP settings, sampling interval updates with before/after values +- **Variable Management**: Variable addition/removal with complete configuration details +- **Streaming Operations**: Start/stop streaming with variable counts and settings +- **CSV Recording**: Start/stop recording with file paths and variable counts +- **Error Events**: Connection failures, streaming errors, configuration errors with detailed error information +- **System Events**: Application startup, shutdown, and recovery operations + +**Enhanced Error Handling**: +- Consecutive error detection in streaming loop with automatic shutdown after 5 failures +- Detailed error context including error messages and retry counts +- Graceful degradation with error logging instead of silent failures + +**Web Interface Integration**: +- New "Application Events Log" section at bottom of main page +- Real-time log display with automatic refresh every 10 seconds +- Configurable event limit (25, 50, 100, 200 events) +- Color-coded log levels (info: gray, warning: orange, error: red) +- Event type icons for quick visual identification +- Expandable details view showing complete event metadata +- Manual refresh and clear view functions + +**Technical Architecture**: +- Thread-safe logging with automatic file persistence +- RESTful API endpoint `/api/events` for log data retrieval +- Structured event format with consistent metadata fields +- Monospace font display for improved readability +- Responsive design with mobile-friendly log viewer + +**API Enhancements**: +- GET `/api/events?limit=N` endpoint for retrieving recent events +- Response includes total event count and current selection size +- Error handling with proper HTTP status codes +- Configurable event limit with maximum safety cap + +**User Experience Benefits**: +- Immediate visibility into system operations and issues +- Historical event tracking across application restarts +- Detailed troubleshooting information for technical support +- Real-time monitoring of system health and operations +- Professional logging interface suitable for industrial environments + +**Storage Efficiency**: +- Automatic log size management to prevent disk space issues +- Efficient JSON serialization with minimal storage overhead +- Fast event retrieval with in-memory caching + +**Impact**: Operators and technicians now have comprehensive visibility into all system operations, significantly improving troubleshooting capabilities and providing detailed audit trails for industrial compliance requirements. + +### Previous Modifications + #### Persistent Configuration System **Decision**: Implemented JSON-based persistence for both PLC configuration and variables setup. @@ -102,9 +167,118 @@ Configuration handling is separated into distinct methods for PLC settings, UDP **User Experience**: Users can now record all process data for historical analysis while sending only relevant variables to real-time visualization tools, reducing network traffic and improving PlotJuggler performance. +#### Industrial-Grade Reliability Enhancements +**Decision**: Implemented comprehensive system state persistence and auto-recovery mechanisms for industrial environment resilience. + +**Rationale**: Industrial applications require maximum uptime and automatic recovery from power outages, system failures, and unexpected interruptions without manual intervention. + +**Implementation**: + +**Persistent Streaming Configuration**: +- Modified variable storage format to include streaming state (`"streaming": true/false`) +- Variables now remember which ones are enabled for PlotJuggler streaming across application restarts +- Automatic migration from old format ensures backward compatibility +- Streaming configuration persists independently from variable definitions + +**System State Persistence**: +- Created `system_state.json` file to track connection, streaming, and CSV recording states +- Automatic state saving on every significant system change (connect, disconnect, start/stop streaming) +- State includes last known configuration and auto-recovery preferences +- Timestamp tracking for state changes and recovery attempts + +**Single Instance Control**: +- Implemented PID-based instance locking using `psutil` library for Windows compatibility +- Process verification ensures only legitimate instances are detected (checks command line for 'main.py' or 'plc') +- Automatic cleanup of stale lock files from terminated processes +- Graceful handling of concurrent startup attempts + +**Auto-Recovery System**: +- Automatic restoration of previous connection state on application startup +- Intelligent recovery sequence: PLC connection β†’ streaming/CSV recording restoration +- Configurable auto-recovery with enable/disable option +- Retry mechanism with exponential backoff for failed recovery attempts + +**Robust Error Handling**: +- Maximum retry system (3 attempts) for critical failures +- Graceful shutdown procedure with proper resource cleanup +- Instance lock release on application termination +- Comprehensive error logging and user feedback + +**Technical Architecture**: +- State management integrated into existing configuration system +- Thread-safe state persistence with automatic file handling +- Cross-platform compatibility (Windows focus with `psutil` instead of `fcntl`) +- Memory-efficient state tracking with minimal performance impact + +**Industrial Benefits**: +- Zero-configuration restart after power failures +- Prevents operator confusion from multiple running instances +- Maintains data continuity during system interruptions +- Reduces manual intervention requirements in automated environments + +**Dependencies Added**: +- `psutil==5.9.5` for cross-platform process management and instance control + ### Future Considerations The persistent configuration system provides a foundation for more advanced features like configuration profiles, backup/restore functionality, and remote configuration management. The English interface and standardized design make the application ready for potential integration with larger industrial monitoring systems or deployment in international environments. +The industrial-grade reliability enhancements ensure the application meets the stringent uptime requirements of production environments and can recover automatically from common industrial disruptions like power outages and system reboots. + +#### Dynamic CSV File Creation on Variable Modifications +**Decision**: Implemented automatic creation of new CSV files with timestamp when variables are modified during active recording. + +**Rationale**: When variables are added or removed during active CSV recording, the data structure changes require a new file to maintain data integrity. Continuing to write to the same file would result in misaligned columns and data corruption. The timestamped filename provides clear traceability of when variable configuration changes occurred. + +**Implementation**: + +**File Naming Strategy**: +- Standard hourly files: `hour.csv` (e.g., `14.csv` for 2:00 PM) +- Modification files: `_hour_min_sec.csv` (e.g., `_14_25_33.csv` for 2:25:33 PM) +- Maintains chronological order while clearly identifying modification points + +**Automatic File Management**: +- Detects variable additions and removals during active CSV recording +- Automatically closes current CSV file when variables are modified +- Creates new file with modification timestamp immediately +- Writes new headers matching updated variable configuration +- Resets internal state to ensure proper file rotation continues + +**Enhanced `get_csv_file_path()` Method**: +- Added `use_modification_timestamp` parameter for conditional file naming +- Preserves backward compatibility with existing hourly rotation +- Generates precise timestamp (`%H_%M_%S`) for modification tracking + +**New `create_new_csv_file_for_variable_modification()` Method**: +- Triggered automatically by `add_variable()` and `remove_variable()` methods +- Only activates when CSV recording is active to avoid unnecessary file creation +- Handles file closure, creation, and header writing in single atomic operation +- Comprehensive error handling with detailed logging + +**Event Logging Integration**: +- Records CSV file creation events with modification reason +- Logs file paths, variable counts, and timestamps for audit trails +- Distinguishes between regular rotation and modification-triggered files + +**Technical Benefits**: +- Maintains data integrity across variable configuration changes +- Provides clear audit trail of when system configuration was modified +- Enables precise correlation between data files and system state +- Supports continuous operation without manual intervention + +**Data Continuity**: +- Zero data loss during variable modifications +- Seamless transition between files without interrupting recording +- Automatic header generation ensures proper CSV structure +- Maintains sampling rate and timing precision + +This enhancement ensures that CSV data remains structured and analyzable even when the monitoring configuration evolves during operation, which is critical for long-running industrial processes where monitoring requirements may change. + +**Bug Fix - File Continuation Logic**: +- Added `using_modification_file` flag to track when a modification timestamp file is active +- Modified `setup_csv_file()` to respect this flag and continue using the modification file until the hour naturally changes +- Prevents the system from immediately reverting to standard hourly files after creating modification files +- Ensures data continuity in the intended timestamped file rather than switching back to regular rotation + diff --git a/.gitignore b/.gitignore index cb0f8dc..0a0e61e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ __pycache__/ # C extensions *.so +*.csv # Distribution / packaging .Python diff --git a/application_events.json b/application_events.json new file mode 100644 index 0000000..ca3f853 --- /dev/null +++ b/application_events.json @@ -0,0 +1,258 @@ +{ + "events": [ + { + "timestamp": "2025-07-17T14:39:03.917840", + "level": "info", + "event_type": "Application started", + "message": "Application initialization completed successfully", + "details": {} + }, + { + "timestamp": "2025-07-17T14:39:03.938409", + "level": "info", + "event_type": "plc_connection", + "message": "Successfully connected to PLC 10.1.33.11", + "details": { + "ip": "10.1.33.11", + "rack": 0, + "slot": 2 + } + }, + { + "timestamp": "2025-07-17T14:39:03.939409", + "level": "info", + "event_type": "csv_started", + "message": "CSV recording started for 3 variables", + "details": { + "variables_count": 3, + "output_directory": "records\\17-07-2025" + } + }, + { + "timestamp": "2025-07-17T14:39:03.940403", + "level": "info", + "event_type": "streaming_started", + "message": "Streaming started with 3 variables", + "details": { + "variables_count": 3, + "streaming_variables_count": 3, + "sampling_interval": 0.1, + "udp_host": "127.0.0.1", + "udp_port": 9870 + } + }, + { + "timestamp": "2025-07-17T14:56:25.611805", + "level": "info", + "event_type": "Application started", + "message": "Application initialization completed successfully", + "details": {} + }, + { + "timestamp": "2025-07-17T14:56:25.640479", + "level": "info", + "event_type": "plc_connection", + "message": "Successfully connected to PLC 10.1.33.11", + "details": { + "ip": "10.1.33.11", + "rack": 0, + "slot": 2 + } + }, + { + "timestamp": "2025-07-17T14:56:25.642459", + "level": "info", + "event_type": "csv_started", + "message": "CSV recording started for 3 variables", + "details": { + "variables_count": 3, + "output_directory": "records\\17-07-2025" + } + }, + { + "timestamp": "2025-07-17T14:56:25.643467", + "level": "info", + "event_type": "streaming_started", + "message": "Streaming started with 3 variables", + "details": { + "variables_count": 3, + "streaming_variables_count": 3, + "sampling_interval": 0.1, + "udp_host": "127.0.0.1", + "udp_port": 9870 + } + }, + { + "timestamp": "2025-07-17T15:25:37.659374", + "level": "info", + "event_type": "variable_added", + "message": "Variable added: CTS306_Conditi -> DB2124.18 (real)", + "details": { + "name": "CTS306_Conditi", + "db": 2124, + "offset": 18, + "type": "real", + "total_variables": 4 + } + }, + { + "timestamp": "2025-07-17T15:25:37.662879", + "level": "info", + "event_type": "csv_file_created", + "message": "New CSV file created after variable modification: _15_25_37.csv", + "details": { + "file_path": "records\\17-07-2025\\_15_25_37.csv", + "variables_count": 4, + "reason": "variable_modification" + } + }, + { + "timestamp": "2025-07-17T15:42:38.033187", + "level": "info", + "event_type": "Application started", + "message": "Application initialization completed successfully", + "details": {} + }, + { + "timestamp": "2025-07-17T15:42:38.052471", + "level": "info", + "event_type": "plc_connection", + "message": "Successfully connected to PLC 10.1.33.11", + "details": { + "ip": "10.1.33.11", + "rack": 0, + "slot": 2 + } + }, + { + "timestamp": "2025-07-17T15:42:38.053687", + "level": "info", + "event_type": "csv_started", + "message": "CSV recording started for 4 variables", + "details": { + "variables_count": 4, + "output_directory": "records\\17-07-2025" + } + }, + { + "timestamp": "2025-07-17T15:42:38.055690", + "level": "info", + "event_type": "streaming_started", + "message": "Streaming started with 4 variables", + "details": { + "variables_count": 4, + "streaming_variables_count": 4, + "sampling_interval": 0.1, + "udp_host": "127.0.0.1", + "udp_port": 9870 + } + }, + { + "timestamp": "2025-07-17T15:43:12.383366", + "level": "info", + "event_type": "variable_added", + "message": "Variable added: test -> DB2124.14 (real)", + "details": { + "name": "test", + "db": 2124, + "offset": 14, + "type": "real", + "total_variables": 5 + } + }, + { + "timestamp": "2025-07-17T15:43:12.385360", + "level": "info", + "event_type": "csv_file_created", + "message": "New CSV file created after variable modification: _15_43_12.csv", + "details": { + "file_path": "records\\17-07-2025\\_15_43_12.csv", + "variables_count": 5, + "reason": "variable_modification" + } + }, + { + "timestamp": "2025-07-17T15:43:12.407642", + "level": "error", + "event_type": "streaming_error", + "message": "Error in streaming loop: dictionary changed size during iteration", + "details": { + "error": "dictionary changed size during iteration", + "consecutive_errors": 1 + } + }, + { + "timestamp": "2025-07-17T15:43:33.392876", + "level": "error", + "event_type": "streaming_error", + "message": "Error in streaming loop: dictionary changed size during iteration", + "details": { + "error": "dictionary changed size during iteration", + "consecutive_errors": 1 + } + }, + { + "timestamp": "2025-07-17T15:43:33.394375", + "level": "info", + "event_type": "variable_removed", + "message": "Variable removed: test", + "details": { + "name": "test", + "removed_config": { + "db": 2124, + "offset": 14, + "type": "real", + "streaming": false + }, + "total_variables": 4 + } + }, + { + "timestamp": "2025-07-17T15:43:33.397370", + "level": "info", + "event_type": "csv_file_created", + "message": "New CSV file created after variable modification: _15_43_33.csv", + "details": { + "file_path": "records\\17-07-2025\\_15_43_33.csv", + "variables_count": 4, + "reason": "variable_modification" + } + }, + { + "timestamp": "2025-07-17T15:43:37.383086", + "level": "info", + "event_type": "config_change", + "message": "UDP configuration updated: 127.0.0.1:9870", + "details": { + "old_config": { + "host": "127.0.0.1", + "port": 9870 + }, + "new_config": { + "host": "127.0.0.1", + "port": 9870 + } + } + }, + { + "timestamp": "2025-07-17T15:43:38.917840", + "level": "info", + "event_type": "config_change", + "message": "PLC configuration updated: 10.1.33.11:0/2", + "details": { + "old_config": { + "ip": "10.1.33.11", + "rack": 0, + "slot": 2 + }, + "new_config": { + "ip": "10.1.33.11", + "rack": 0, + "slot": 2 + } + } + } + ], + "last_updated": "2025-07-17T15:43:38.917840", + "total_entries": 22 +} \ No newline at end of file diff --git a/main.py b/main.py index af514bd..81a6814 100644 --- a/main.py +++ b/main.py @@ -14,11 +14,14 @@ import time import logging import threading from datetime import datetime -from typing import Dict, Any, Optional +from typing import Dict, Any, Optional, List import struct import os import csv from pathlib import Path +import atexit +import psutil +import sys app = Flask(__name__) app.secret_key = "plc_streamer_secret_key" @@ -30,6 +33,8 @@ class PLCDataStreamer: # Configuration file paths self.config_file = "plc_config.json" self.variables_file = "plc_variables.json" + self.state_file = "system_state.json" + self.events_log_file = "application_events.json" # Default configuration self.plc_config = {"ip": "192.168.1.100", "rack": 0, "slot": 2} @@ -46,6 +51,9 @@ class PLCDataStreamer: self.current_csv_writer = None self.current_hour = None self.csv_headers_written = False + self.using_modification_file = ( + False # Flag to track if using modification timestamp file + ) # System states self.plc = None @@ -55,12 +63,43 @@ class PLCDataStreamer: self.stream_thread = None self.sampling_interval = 0.1 + # Auto-recovery settings + self.auto_recovery_enabled = True + self.last_state = { + "should_connect": False, + "should_stream": False, + "should_record_csv": False, + } + + # Single instance control + self.lock_file = "plc_streamer.lock" + self.lock_fd = None + + # Events log for persistent logging + self.events_log = [] + self.max_log_entries = 1000 # Maximum number of log entries to keep + # Setup logging first self.setup_logging() # Load configuration from files self.load_configuration() self.load_variables() + self.load_system_state() + self.load_events_log() + + # Acquire instance lock and attempt auto-recovery + if self.acquire_instance_lock(): + # Small delay to ensure previous instance has fully cleaned up + time.sleep(1) + self.log_event( + "info", + "Application started", + "Application initialization completed successfully", + ) + self.attempt_auto_recovery() + else: + raise RuntimeError("Another instance of the application is already running") def setup_logging(self): """Configure the logging system""" @@ -108,8 +147,16 @@ class PLCDataStreamer: if os.path.exists(self.variables_file): with open(self.variables_file, "r") as f: self.variables = json.load(f) + + # Load streaming configuration + self.streaming_variables.clear() + for var_name, var_config in self.variables.items(): + # If streaming property doesn't exist, default to False for backward compatibility + if var_config.get("streaming", False): + self.streaming_variables.add(var_name) + self.logger.info( - f"Variables loaded from {self.variables_file}: {len(self.variables)} variables" + f"Variables loaded from {self.variables_file}: {len(self.variables)} variables, {len(self.streaming_variables)} enabled for streaming" ) else: self.logger.info( @@ -118,9 +165,143 @@ class PLCDataStreamer: except Exception as e: self.logger.error(f"Error loading variables: {e}") + def load_system_state(self): + """Load system state from JSON file""" + try: + if os.path.exists(self.state_file): + with open(self.state_file, "r") as f: + state_data = json.load(f) + self.last_state = state_data.get("last_state", self.last_state) + self.auto_recovery_enabled = state_data.get( + "auto_recovery_enabled", True + ) + self.logger.info(f"System state loaded from {self.state_file}") + else: + self.logger.info("No system state file found, starting with defaults") + except Exception as e: + self.logger.error(f"Error loading system state: {e}") + + def save_system_state(self): + """Save current system state to JSON file""" + try: + state_data = { + "last_state": { + "should_connect": self.connected, + "should_stream": self.streaming, + "should_record_csv": self.csv_recording, + }, + "auto_recovery_enabled": self.auto_recovery_enabled, + "last_update": datetime.now().isoformat(), + } + + with open(self.state_file, "w") as f: + json.dump(state_data, f, indent=4) + self.logger.debug("System state saved") + except Exception as e: + self.logger.error(f"Error saving system state: {e}") + + def attempt_auto_recovery(self): + """Attempt to restore previous system state""" + if not self.auto_recovery_enabled: + self.logger.info("Auto-recovery disabled, skipping state restoration") + return + + self.logger.info("Attempting auto-recovery of previous state...") + + # Try to restore connection + if self.last_state.get("should_connect", False): + self.logger.info("Attempting to restore PLC connection...") + if self.connect_plc(): + self.logger.info("PLC connection restored successfully") + + # Try to restore streaming if connection was successful + if self.last_state.get("should_stream", False): + self.logger.info("Attempting to restore streaming...") + if self.start_streaming(): + self.logger.info("Streaming restored successfully") + else: + self.logger.warning("Failed to restore streaming") + + # Try to restore CSV recording if needed + elif self.last_state.get("should_record_csv", False): + self.logger.info("Attempting to restore CSV recording...") + if self.start_csv_recording(): + self.logger.info("CSV recording restored successfully") + else: + self.logger.warning("Failed to restore CSV recording") + else: + self.logger.warning("Failed to restore PLC connection") + + def acquire_instance_lock(self) -> bool: + """Acquire lock to ensure single instance execution""" + try: + # Check if lock file exists + if os.path.exists(self.lock_file): + # Read PID from existing lock file + with open(self.lock_file, "r") as f: + try: + old_pid = int(f.read().strip()) + + # Check if process is still running + if psutil.pid_exists(old_pid): + # Get process info to verify it's our application + try: + proc = psutil.Process(old_pid) + cmdline = " ".join(proc.cmdline()) + if "main.py" in cmdline or "plc" in cmdline.lower(): + self.logger.error( + f"Another instance is already running (PID: {old_pid})" + ) + return False + except (psutil.NoSuchProcess, psutil.AccessDenied): + # Process doesn't exist or can't access, continue + pass + + # Old process is dead, remove stale lock file + os.remove(self.lock_file) + self.logger.info("Removed stale lock file") + + except (ValueError, IOError): + # Invalid lock file, remove it + os.remove(self.lock_file) + self.logger.info("Removed invalid lock file") + + # Create new lock file with current PID + with open(self.lock_file, "w") as f: + f.write(str(os.getpid())) + + # Register cleanup function + atexit.register(self.release_instance_lock) + + self.logger.info( + f"Instance lock acquired: {self.lock_file} (PID: {os.getpid()})" + ) + return True + + except Exception as e: + self.logger.error(f"Error acquiring instance lock: {e}") + return False + + def release_instance_lock(self): + """Release instance lock""" + try: + # Remove lock file + if os.path.exists(self.lock_file): + os.remove(self.lock_file) + self.logger.info("Instance lock released") + + except Exception as e: + self.logger.error(f"Error releasing instance lock: {e}") + def save_variables(self): """Save variables configuration to JSON file""" try: + # Update streaming state in variables before saving + for var_name in self.variables: + self.variables[var_name]["streaming"] = ( + var_name in self.streaming_variables + ) + with open(self.variables_file, "w") as f: json.dump(self.variables, f, indent=4) self.logger.info(f"Variables saved to {self.variables_file}") @@ -129,36 +310,92 @@ class PLCDataStreamer: def update_plc_config(self, ip: str, rack: int, slot: int): """Update PLC configuration""" + old_config = self.plc_config.copy() self.plc_config = {"ip": ip, "rack": rack, "slot": slot} self.save_configuration() - self.logger.info(f"PLC configuration updated: {self.plc_config}") + + config_details = {"old_config": old_config, "new_config": self.plc_config} + self.log_event( + "info", + "config_change", + f"PLC configuration updated: {ip}:{rack}/{slot}", + config_details, + ) def update_udp_config(self, host: str, port: int): """Update UDP configuration""" + old_config = self.udp_config.copy() self.udp_config = {"host": host, "port": port} self.save_configuration() - self.logger.info(f"UDP configuration updated: {self.udp_config}") + + config_details = {"old_config": old_config, "new_config": self.udp_config} + self.log_event( + "info", + "config_change", + f"UDP configuration updated: {host}:{port}", + config_details, + ) def update_sampling_interval(self, interval: float): """Update sampling interval""" + old_interval = self.sampling_interval self.sampling_interval = interval self.save_configuration() - self.logger.info(f"Sampling interval updated: {interval}s") + + config_details = {"old_interval": old_interval, "new_interval": interval} + self.log_event( + "info", + "config_change", + f"Sampling interval updated: {interval}s", + config_details, + ) def add_variable(self, name: str, db: int, offset: int, var_type: str): """Add a variable for polling""" - self.variables[name] = {"db": db, "offset": offset, "type": var_type} + self.variables[name] = { + "db": db, + "offset": offset, + "type": var_type, + "streaming": False, + } self.save_variables() - self.logger.info(f"Variable added: {name} -> DB{db}.{offset} ({var_type})") + + variable_details = { + "name": name, + "db": db, + "offset": offset, + "type": var_type, + "total_variables": len(self.variables), + } + self.log_event( + "info", + "variable_added", + f"Variable added: {name} -> DB{db}.{offset} ({var_type})", + variable_details, + ) + self.create_new_csv_file_for_variable_modification() def remove_variable(self, name: str): """Remove a variable from polling""" if name in self.variables: + var_config = self.variables[name].copy() del self.variables[name] # Also remove from streaming variables if present self.streaming_variables.discard(name) self.save_variables() - self.logger.info(f"Variable removed: {name}") + + variable_details = { + "name": name, + "removed_config": var_config, + "total_variables": len(self.variables), + } + self.log_event( + "info", + "variable_removed", + f"Variable removed: {name}", + variable_details, + ) + self.create_new_csv_file_for_variable_modification() def toggle_streaming_variable(self, name: str, enabled: bool): """Enable or disable a variable for streaming""" @@ -167,6 +404,10 @@ class PLCDataStreamer: self.streaming_variables.add(name) else: self.streaming_variables.discard(name) + + # Save changes to persist streaming configuration + self.save_variables() + self.logger.info( f"Variable {name} streaming: {'enabled' if enabled else 'disabled'}" ) @@ -177,22 +418,95 @@ class PLCDataStreamer: day_folder = now.strftime("%d-%m-%Y") return os.path.join("records", day_folder) - def get_csv_file_path(self) -> str: + def get_csv_file_path(self, use_modification_timestamp: bool = False) -> str: """Get the complete file path for current hour's CSV file""" now = datetime.now() - hour = now.strftime("%H") + + if use_modification_timestamp: + # Create filename with hour_min_sec format for variable modifications + time_suffix = now.strftime("%H_%M_%S") + filename = f"_{time_suffix}.csv" + else: + # Standard hourly format + hour = now.strftime("%H") + filename = f"{hour}.csv" + directory = self.get_csv_directory_path() - return os.path.join(directory, f"{hour}.csv") + return os.path.join(directory, filename) def ensure_csv_directory(self): """Create CSV directory structure if it doesn't exist""" directory = self.get_csv_directory_path() Path(directory).mkdir(parents=True, exist_ok=True) + def create_new_csv_file_for_variable_modification(self): + """Create a new CSV file when variables are modified during active recording""" + if not self.csv_recording: + return + + try: + # Close current file if open + if self.current_csv_file: + self.current_csv_file.close() + self.logger.info( + f"Closed previous CSV file due to variable modification" + ) + + # Create new file with modification timestamp + self.ensure_csv_directory() + csv_path = self.get_csv_file_path(use_modification_timestamp=True) + + self.current_csv_file = open(csv_path, "w", newline="", encoding="utf-8") + self.current_csv_writer = csv.writer(self.current_csv_file) + + # Mark that we're using a modification file and set current hour + self.using_modification_file = True + self.current_hour = datetime.now().hour + + # Write headers with new variable configuration + if self.variables: + headers = ["timestamp"] + list(self.variables.keys()) + self.current_csv_writer.writerow(headers) + self.current_csv_file.flush() + self.csv_headers_written = True + + self.logger.info( + f"New CSV file created after variable modification: {csv_path}" + ) + self.log_event( + "info", + "csv_file_created", + f"New CSV file created after variable modification: {os.path.basename(csv_path)}", + { + "file_path": csv_path, + "variables_count": len(self.variables), + "reason": "variable_modification", + }, + ) + + except Exception as e: + self.logger.error( + f"Error creating new CSV file after variable modification: {e}" + ) + self.log_event( + "error", + "csv_error", + f"Failed to create new CSV file after variable modification: {str(e)}", + {"error": str(e)}, + ) + def setup_csv_file(self): """Setup CSV file for the current hour""" current_hour = datetime.now().hour + # If we're using a modification file and the hour hasn't changed, keep using it + if ( + self.using_modification_file + and self.current_hour == current_hour + and self.current_csv_file is not None + ): + return + # Check if we need to create a new file if self.current_hour != current_hour or self.current_csv_file is None: # Close previous file if open @@ -210,6 +524,9 @@ class PLCDataStreamer: self.current_csv_writer = csv.writer(self.current_csv_file) self.current_hour = current_hour + # Reset modification file flag when creating regular hourly file + self.using_modification_file = False + # Write headers if it's a new file if not file_exists and self.variables: headers = ["timestamp"] + list(self.variables.keys()) @@ -255,15 +572,32 @@ class PLCDataStreamer: def start_csv_recording(self) -> bool: """Start CSV recording""" if not self.connected: - self.logger.error("PLC not connected") + self.log_event( + "error", "csv_error", "Cannot start CSV recording: PLC not connected" + ) return False if not self.variables: - self.logger.error("No variables configured") + self.log_event( + "error", + "csv_error", + "Cannot start CSV recording: No variables configured", + ) return False self.csv_recording = True - self.logger.info("CSV recording started") + self.save_system_state() + + csv_details = { + "variables_count": len(self.variables), + "output_directory": self.get_csv_directory_path(), + } + self.log_event( + "info", + "csv_started", + f"CSV recording started for {len(self.variables)} variables", + csv_details, + ) return True def stop_csv_recording(self): @@ -275,8 +609,10 @@ class PLCDataStreamer: self.current_csv_file = None self.current_csv_writer = None self.current_hour = None + self.using_modification_file = False - self.logger.info("CSV recording stopped") + self.save_system_state() + self.log_event("info", "csv_stopped", "CSV recording stopped") def connect_plc(self) -> bool: """Connect to S7-315 PLC""" @@ -290,12 +626,35 @@ class PLCDataStreamer: ) self.connected = True - self.logger.info(f"Connected to PLC {self.plc_config['ip']}") + self.save_system_state() + + connection_details = { + "ip": self.plc_config["ip"], + "rack": self.plc_config["rack"], + "slot": self.plc_config["slot"], + } + self.log_event( + "info", + "plc_connection", + f"Successfully connected to PLC {self.plc_config['ip']}", + connection_details, + ) return True except Exception as e: self.connected = False - self.logger.error(f"Error connecting to PLC: {e}") + error_details = { + "ip": self.plc_config["ip"], + "rack": self.plc_config["rack"], + "slot": self.plc_config["slot"], + "error": str(e), + } + self.log_event( + "error", + "plc_connection_failed", + f"Failed to connect to PLC {self.plc_config['ip']}: {str(e)}", + error_details, + ) return False def disconnect_plc(self): @@ -304,9 +663,20 @@ class PLCDataStreamer: if self.plc: self.plc.disconnect() self.connected = False - self.logger.info("Disconnected from PLC") + self.save_system_state() + + self.log_event( + "info", + "plc_disconnection", + f"Disconnected from PLC {self.plc_config['ip']}", + ) except Exception as e: - self.logger.error(f"Error disconnecting from PLC: {e}") + self.log_event( + "error", + "plc_disconnection_error", + f"Error disconnecting from PLC: {str(e)}", + {"error": str(e)}, + ) def read_variable(self, var_config: Dict[str, Any]) -> Any: """Read a specific variable from the PLC""" @@ -388,6 +758,9 @@ class PLCDataStreamer: f"Starting streaming with interval of {self.sampling_interval}s" ) + consecutive_errors = 0 + max_consecutive_errors = 5 + while self.streaming: try: start_time = time.time() @@ -396,6 +769,9 @@ class PLCDataStreamer: all_data = self.read_all_variables() if all_data: + # Reset error counter on successful read + consecutive_errors = 0 + # Write to CSV (all variables) self.write_csv_data(all_data) @@ -411,6 +787,16 @@ class PLCDataStreamer: self.logger.info( f"[{timestamp}] CSV: {len(all_data)} vars, Streaming: {len(streaming_data)} vars" ) + else: + consecutive_errors += 1 + if consecutive_errors >= max_consecutive_errors: + self.log_event( + "error", + "streaming_error", + f"Multiple consecutive read failures ({consecutive_errors}). Stopping streaming.", + {"consecutive_errors": consecutive_errors}, + ) + break # Maintain sampling interval elapsed = time.time() - start_time @@ -418,20 +804,47 @@ class PLCDataStreamer: time.sleep(sleep_time) except Exception as e: - self.logger.error(f"Error in streaming loop: {e}") - break + consecutive_errors += 1 + self.log_event( + "error", + "streaming_error", + f"Error in streaming loop: {str(e)}", + {"error": str(e), "consecutive_errors": consecutive_errors}, + ) + + if consecutive_errors >= max_consecutive_errors: + self.log_event( + "error", + "streaming_error", + "Too many consecutive errors. Stopping streaming.", + {"consecutive_errors": consecutive_errors}, + ) + break + + time.sleep(1) # Wait before retry def start_streaming(self) -> bool: """Start data streaming""" if not self.connected: - self.logger.error("PLC not connected") + self.log_event( + "error", "streaming_error", "Cannot start streaming: PLC not connected" + ) return False if not self.variables: - self.logger.error("No variables configured") + self.log_event( + "error", + "streaming_error", + "Cannot start streaming: No variables configured", + ) return False if not self.setup_udp_socket(): + self.log_event( + "error", + "streaming_error", + "Cannot start streaming: UDP socket setup failed", + ) return False # Start CSV recording automatically @@ -442,7 +855,21 @@ class PLCDataStreamer: self.stream_thread.daemon = True self.stream_thread.start() - self.logger.info("Streaming and CSV recording started") + self.save_system_state() + + streaming_details = { + "variables_count": len(self.variables), + "streaming_variables_count": len(self.streaming_variables), + "sampling_interval": self.sampling_interval, + "udp_host": self.udp_config["host"], + "udp_port": self.udp_config["port"], + } + self.log_event( + "info", + "streaming_started", + f"Streaming started with {len(self.streaming_variables)} variables", + streaming_details, + ) return True def stop_streaming(self): @@ -458,7 +885,10 @@ class PLCDataStreamer: self.udp_socket.close() self.udp_socket = None - self.logger.info("Streaming and CSV recording stopped") + self.save_system_state() + self.log_event( + "info", "streaming_stopped", "Data streaming and CSV recording stopped" + ) def get_status(self) -> Dict[str, Any]: """Get current system status""" @@ -476,9 +906,84 @@ class PLCDataStreamer: ), } + def log_event( + self, level: str, event_type: str, message: str, details: Dict[str, Any] = None + ): + """Add an event to the persistent log""" + try: + event = { + "timestamp": datetime.now().isoformat(), + "level": level, # info, warning, error + "event_type": event_type, # connection, disconnection, error, config_change, etc. + "message": message, + "details": details or {}, + } -# Global streamer instance -streamer = PLCDataStreamer() + self.events_log.append(event) + + # Limit log size + if len(self.events_log) > self.max_log_entries: + self.events_log = self.events_log[-self.max_log_entries :] + + # Save to file + self.save_events_log() + + # Also log to regular logger + if level == "error": + self.logger.error(f"[{event_type}] {message}") + elif level == "warning": + self.logger.warning(f"[{event_type}] {message}") + else: + self.logger.info(f"[{event_type}] {message}") + + except Exception as e: + self.logger.error(f"Error adding event to log: {e}") + + def load_events_log(self): + """Load events log from JSON file""" + try: + if os.path.exists(self.events_log_file): + with open(self.events_log_file, "r", encoding="utf-8") as f: + data = json.load(f) + self.events_log = data.get("events", []) + # Limit log size on load + if len(self.events_log) > self.max_log_entries: + self.events_log = self.events_log[-self.max_log_entries :] + self.logger.info(f"Events log loaded: {len(self.events_log)} entries") + else: + self.events_log = [] + self.logger.info("No events log file found, starting with empty log") + except Exception as e: + self.logger.error(f"Error loading events log: {e}") + self.events_log = [] + + def save_events_log(self): + """Save events log to JSON file""" + try: + log_data = { + "events": self.events_log, + "last_updated": datetime.now().isoformat(), + "total_entries": len(self.events_log), + } + with open(self.events_log_file, "w", encoding="utf-8") as f: + json.dump(log_data, f, indent=2, ensure_ascii=False) + except Exception as e: + self.logger.error(f"Error saving events log: {e}") + + def get_recent_events(self, limit: int = 50) -> List[Dict[str, Any]]: + """Get recent events from the log""" + return self.events_log[-limit:] if self.events_log else [] + + +# Global streamer instance (will be initialized in main) +streamer = None + + +def check_streamer_initialized(): + """Check if streamer is initialized, return error response if not""" + if streamer is None: + return jsonify({"error": "Application not initialized"}), 503 + return None @app.route("/images/") @@ -490,6 +995,8 @@ def serve_image(filename): @app.route("/") def index(): """Main page""" + if streamer is None: + return "Application not initialized", 503 return render_template( "index.html", status=streamer.get_status(), variables=streamer.variables ) @@ -498,6 +1005,10 @@ def index(): @app.route("/api/plc/config", methods=["POST"]) def update_plc_config(): """Update PLC configuration""" + error_response = check_streamer_initialized() + if error_response: + return error_response + try: data = request.get_json() ip = data.get("ip", "10.1.33.11") @@ -529,6 +1040,10 @@ def update_udp_config(): @app.route("/api/plc/connect", methods=["POST"]) def connect_plc(): """Connect to PLC""" + error_response = check_streamer_initialized() + if error_response: + return error_response + if streamer.connect_plc(): return jsonify({"success": True, "message": "Connected to PLC"}) else: @@ -598,6 +1113,10 @@ def get_streaming_variables(): @app.route("/api/streaming/start", methods=["POST"]) def start_streaming(): """Start streaming""" + error_response = check_streamer_initialized() + if error_response: + return error_response + if streamer.start_streaming(): return jsonify({"success": True, "message": "Streaming started"}) else: @@ -650,20 +1169,102 @@ def stop_csv_recording(): @app.route("/api/status") def get_status(): """Get current status""" + if streamer is None: + return jsonify({"error": "Application not initialized"}), 503 return jsonify(streamer.get_status()) -if __name__ == "__main__": - # Create templates directory if it doesn't exist - os.makedirs("templates", exist_ok=True) - - print("πŸš€ Starting Flask server for PLC S7-315 Streamer") - print("πŸ“Š Web interface available at: http://localhost:5050") - print("πŸ”§ Configure your PLC and variables through the web interface") +@app.route("/api/events") +def get_events(): + """Get recent events from the application log""" + error_response = check_streamer_initialized() + if error_response: + return error_response try: - app.run(debug=True, host="0.0.0.0", port=5050) - except KeyboardInterrupt: - print("\n⏹️ Stopping server...") + limit = request.args.get("limit", 50, type=int) + limit = min(limit, 200) # Maximum 200 events per request + + events = streamer.get_recent_events(limit) + return jsonify( + { + "success": True, + "events": events, + "total_events": len(streamer.events_log), + "showing": len(events), + } + ) + except Exception as e: + return jsonify({"success": False, "error": str(e)}), 500 + + +def graceful_shutdown(): + """Perform graceful shutdown""" + print("\n⏹️ Performing graceful shutdown...") + try: streamer.stop_streaming() streamer.disconnect_plc() + streamer.release_instance_lock() + print("βœ… Shutdown completed successfully") + except Exception as e: + print(f"⚠️ Error during shutdown: {e}") + + +def main(): + """Main application entry point with error handling and recovery""" + max_retries = 3 + retry_count = 0 + + while retry_count < max_retries: + try: + # Create templates directory if it doesn't exist + os.makedirs("templates", exist_ok=True) + + print("πŸš€ Starting Flask server for PLC S7-315 Streamer") + print("πŸ“Š Web interface available at: http://localhost:5050") + print("πŸ”§ Configure your PLC and variables through the web interface") + + # Initialize streamer (this will handle instance locking and auto-recovery) + global streamer + + # Start Flask application + app.run(debug=False, host="0.0.0.0", port=5050, use_reloader=False) + + # If we reach here, the server stopped normally + break + + except RuntimeError as e: + if "Another instance" in str(e): + print(f"❌ {e}") + print("πŸ’‘ Tip: Stop the other instance or wait for it to finish") + sys.exit(1) + else: + print(f"⚠️ Runtime error: {e}") + retry_count += 1 + + except KeyboardInterrupt: + print("\n⏸️ Received interrupt signal...") + graceful_shutdown() + break + + except Exception as e: + print(f"πŸ’₯ Unexpected error: {e}") + retry_count += 1 + + if retry_count < max_retries: + print(f"πŸ”„ Attempting restart ({retry_count}/{max_retries})...") + time.sleep(2) # Wait before retry + else: + print("❌ Maximum retries reached. Exiting...") + graceful_shutdown() + sys.exit(1) + + +if __name__ == "__main__": + try: + # Initialize streamer instance + streamer = PLCDataStreamer() + main() + except Exception as e: + print(f"πŸ’₯ Critical error during initialization: {e}") + sys.exit(1) diff --git a/plc_variables.json b/plc_variables.json index 8d31ea0..b07c92b 100644 --- a/plc_variables.json +++ b/plc_variables.json @@ -2,11 +2,25 @@ "UR29_Brix": { "db": 2121, "offset": 18, - "type": "real" + "type": "real", + "streaming": true }, "UR62_Brix": { "db": 2122, "offset": 18, - "type": "real" + "type": "real", + "streaming": true + }, + "UR29_Brix_Digital": { + "db": 2120, + "offset": 40, + "type": "real", + "streaming": true + }, + "CTS306_Conditi": { + "db": 2124, + "offset": 18, + "type": "real", + "streaming": true } } \ No newline at end of file diff --git a/records/17-07-2025/14.csv b/records/17-07-2025/14.csv index 695382c..886689b 100644 --- a/records/17-07-2025/14.csv +++ b/records/17-07-2025/14.csv @@ -3953,3 +3953,17396 @@ timestamp,UR29_Brix,UR62_Brix 2025-07-17 14:07:05.034,0.0,0.0677083358168602 2025-07-17 14:07:05.129,0.0,0.0677083358168602 2025-07-17 14:07:05.237,0.0,0.0763888955116272 +2025-07-17 14:07:05.331,0.0,0.0763888955116272 +2025-07-17 14:07:05.441,0.0,0.0763888955116272 +2025-07-17 14:07:05.534,0.0,0.0763888955116272 +2025-07-17 14:07:05.643,0.0,0.0763888955116272 +2025-07-17 14:07:05.738,0.0,0.0763888955116272 +2025-07-17 14:07:05.848,0.0,0.0763888955116272 +2025-07-17 14:07:05.941,0.0,0.0763888955116272 +2025-07-17 14:07:06.051,0.0,0.0763888955116272 +2025-07-17 14:07:06.144,0.0,0.0763888955116272 +2025-07-17 14:07:06.253,0.0,0.0763888955116272 +2025-07-17 14:07:06.349,0.0,0.0763888955116272 +2025-07-17 14:07:06.458,0.0,0.0763888955116272 +2025-07-17 14:07:06.550,0.0,0.0763888955116272 +2025-07-17 14:07:06.660,0.0,0.0763888955116272 +2025-07-17 14:07:06.752,0.0,0.0763888955116272 +2025-07-17 14:07:06.863,0.0,0.0763888955116272 +2025-07-17 14:07:06.958,0.0,0.0677083358168602 +2025-07-17 14:07:07.069,0.0,0.0677083358168602 +2025-07-17 14:07:07.161,0.0,0.0677083358168602 +2025-07-17 14:07:07.276,0.0,0.0677083358168602 +2025-07-17 14:07:07.365,0.0,0.0677083358168602 +2025-07-17 14:07:07.478,0.0,0.0677083358168602 +2025-07-17 14:07:07.571,0.0,0.0763888955116272 +2025-07-17 14:07:07.682,0.0,0.0763888955116272 +2025-07-17 14:07:07.775,0.0,0.0763888955116272 +2025-07-17 14:07:07.885,0.0,0.0763888955116272 +2025-07-17 14:07:07.977,0.0,0.0763888955116272 +2025-07-17 14:07:08.089,0.0,0.0763888955116272 +2025-07-17 14:07:08.181,0.0,0.0763888955116272 +2025-07-17 14:07:08.292,0.0,0.0763888955116272 +2025-07-17 14:07:08.386,0.0,0.0763888955116272 +2025-07-17 14:07:08.477,0.0,0.0763888955116272 +2025-07-17 14:07:08.588,0.0,0.0763888955116272 +2025-07-17 14:07:08.683,0.0,0.0763888955116272 +2025-07-17 14:07:08.794,0.0,0.0763888955116272 +2025-07-17 14:07:08.887,0.0,0.0763888955116272 +2025-07-17 14:07:08.995,0.0,0.0763888955116272 +2025-07-17 14:07:09.089,0.0,0.0763888955116272 +2025-07-17 14:07:09.200,0.0,0.0763888955116272 +2025-07-17 14:07:09.309,0.0,0.0763888955116272 +2025-07-17 14:07:09.402,0.0,0.0763888955116272 +2025-07-17 14:07:09.494,0.0,0.0763888955116272 +2025-07-17 14:07:09.605,0.0,0.0763888955116272 +2025-07-17 14:07:09.699,0.0,0.0763888955116272 +2025-07-17 14:07:09.810,0.0,0.0763888955116272 +2025-07-17 14:07:09.904,0.0,0.0763888955116272 +2025-07-17 14:07:10.015,0.0,0.0763888955116272 +2025-07-17 14:07:10.107,0.0,0.0763888955116272 +2025-07-17 14:07:10.218,0.0,0.0763888955116272 +2025-07-17 14:07:10.310,0.0,0.0763888955116272 +2025-07-17 14:07:10.419,0.0,0.0763888955116272 +2025-07-17 14:07:10.515,0.0,0.0763888955116272 +2025-07-17 14:07:10.628,0.0,0.0763888955116272 +2025-07-17 14:07:10.717,0.0,0.0763888955116272 +2025-07-17 14:07:10.832,0.0,0.0763888955116272 +2025-07-17 14:07:10.920,0.0,0.0763888955116272 +2025-07-17 14:07:11.033,0.0,0.0763888955116272 +2025-07-17 14:07:11.129,0.0,0.0763888955116272 +2025-07-17 14:07:11.237,0.0,0.0763888955116272 +2025-07-17 14:07:11.330,0.0,0.0763888955116272 +2025-07-17 14:07:11.425,0.0,0.0763888955116272 +2025-07-17 14:07:11.536,0.0,0.0763888955116272 +2025-07-17 14:07:11.629,0.0,0.0763888955116272 +2025-07-17 14:07:11.739,0.0,0.0763888955116272 +2025-07-17 14:07:11.832,0.0,0.0763888955116272 +2025-07-17 14:07:11.941,0.0,0.0763888955116272 +2025-07-17 14:07:12.035,0.0,0.0763888955116272 +2025-07-17 14:07:12.144,0.0,0.0677083358168602 +2025-07-17 14:07:12.236,0.0,0.0763888955116272 +2025-07-17 14:07:12.348,0.0,0.0677083358168602 +2025-07-17 14:07:12.441,0.0,0.0677083358168602 +2025-07-17 14:07:12.551,0.0,0.0677083358168602 +2025-07-17 14:07:12.643,0.0,0.0677083358168602 +2025-07-17 14:07:12.753,0.0,0.0677083358168602 +2025-07-17 14:07:12.848,0.0,0.0677083358168602 +2025-07-17 14:07:12.959,0.0,0.0677083358168602 +2025-07-17 14:07:13.051,0.0,0.0677083358168602 +2025-07-17 14:07:13.162,0.0,0.0677083358168602 +2025-07-17 14:07:13.255,0.0,0.0677083358168602 +2025-07-17 14:07:13.364,0.0,0.0677083358168602 +2025-07-17 14:07:13.456,0.0,0.0677083358168602 +2025-07-17 14:07:13.569,0.0,0.0763888955116272 +2025-07-17 14:07:13.660,0.0,0.0763888955116272 +2025-07-17 14:07:13.770,0.0,0.0763888955116272 +2025-07-17 14:07:13.865,0.0,0.0763888955116272 +2025-07-17 14:07:13.976,0.0,0.0763888955116272 +2025-07-17 14:07:14.066,0.0,0.0763888955116272 +2025-07-17 14:07:14.161,0.0,0.0763888955116272 +2025-07-17 14:07:14.270,0.0,0.0763888955116272 +2025-07-17 14:07:14.364,0.0,0.0763888955116272 +2025-07-17 14:07:14.477,0.0,0.0763888955116272 +2025-07-17 14:07:14.587,0.0,0.0763888955116272 +2025-07-17 14:07:14.680,0.0,0.0763888955116272 +2025-07-17 14:07:14.791,0.0,0.0763888955116272 +2025-07-17 14:07:14.883,0.0,0.0763888955116272 +2025-07-17 14:07:14.993,0.0,0.0763888955116272 +2025-07-17 14:07:15.087,0.0,0.0763888955116272 +2025-07-17 14:07:15.195,0.0,0.0763888955116272 +2025-07-17 14:07:15.289,0.0,0.0763888955116272 +2025-07-17 14:07:15.384,0.0,0.0677083358168602 +2025-07-17 14:07:15.494,0.0,0.0677083358168602 +2025-07-17 14:07:15.603,0.0,0.0677083358168602 +2025-07-17 14:07:15.697,0.0,0.0677083358168602 +2025-07-17 14:07:15.807,0.0,0.0677083358168602 +2025-07-17 14:07:15.901,0.0,0.0677083358168602 +2025-07-17 14:07:15.994,0.0,0.0763888955116272 +2025-07-17 14:07:16.103,0.0,0.0763888955116272 +2025-07-17 14:07:16.196,0.0,0.0763888955116272 +2025-07-17 14:07:16.305,0.0,0.0763888955116272 +2025-07-17 14:07:16.400,0.0,0.0763888955116272 +2025-07-17 14:07:16.509,0.0,0.0763888955116272 +2025-07-17 14:07:16.604,0.0,0.0677083358168602 +2025-07-17 14:07:16.714,0.0,0.0677083358168602 +2025-07-17 14:07:16.806,0.0,0.0677083358168602 +2025-07-17 14:07:16.918,0.0,0.0677083358168602 +2025-07-17 14:07:17.030,0.0,0.0677083358168602 +2025-07-17 14:07:17.141,0.0,0.0677083358168602 +2025-07-17 14:07:17.214,0.0,0.0677083358168602 +2025-07-17 14:07:17.327,0.0,0.0677083358168602 +2025-07-17 14:07:17.418,0.0,0.0677083358168602 +2025-07-17 14:07:17.530,0.0,0.0677083358168602 +2025-07-17 14:07:17.620,0.0,0.0677083358168602 +2025-07-17 14:07:17.735,0.0,0.0677083358168602 +2025-07-17 14:07:17.826,0.0,0.0677083358168602 +2025-07-17 14:07:17.937,0.0,0.0677083358168602 +2025-07-17 14:07:18.031,0.0,0.0677083358168602 +2025-07-17 14:07:18.139,0.0,0.0677083358168602 +2025-07-17 14:07:18.233,0.0,0.0677083358168602 +2025-07-17 14:07:18.343,0.0,0.0763888955116272 +2025-07-17 14:07:18.437,0.0,0.0763888955116272 +2025-07-17 14:07:18.546,0.0,0.0763888955116272 +2025-07-17 14:07:18.640,0.0,0.0763888955116272 +2025-07-17 14:07:18.748,0.0,0.0763888955116272 +2025-07-17 14:07:18.843,0.0,0.0763888955116272 +2025-07-17 14:07:18.955,0.0,0.0763888955116272 +2025-07-17 14:07:19.047,0.0,0.0763888955116272 +2025-07-17 14:07:19.156,0.0,0.0763888955116272 +2025-07-17 14:07:19.248,0.0,0.0763888955116272 +2025-07-17 14:07:19.358,0.0,0.0763888955116272 +2025-07-17 14:07:19.451,0.0,0.0763888955116272 +2025-07-17 14:07:19.545,0.0,0.0677083358168602 +2025-07-17 14:07:19.655,0.0,0.0677083358168602 +2025-07-17 14:07:19.764,0.0,0.0677083358168602 +2025-07-17 14:07:19.858,0.0,0.0677083358168602 +2025-07-17 14:07:19.967,0.0,0.0677083358168602 +2025-07-17 14:07:20.060,0.0,0.0677083358168602 +2025-07-17 14:07:20.171,0.0,0.0763888955116272 +2025-07-17 14:07:20.263,0.0,0.0763888955116272 +2025-07-17 14:07:20.376,0.0,0.0763888955116272 +2025-07-17 14:07:20.466,0.0,0.0763888955116272 +2025-07-17 14:07:20.578,0.0,0.0763888955116272 +2025-07-17 14:07:20.667,0.0,0.0763888955116272 +2025-07-17 14:07:20.762,0.0,0.0763888955116272 +2025-07-17 14:07:20.873,0.0,0.0763888955116272 +2025-07-17 14:07:20.984,0.0,0.0763888955116272 +2025-07-17 14:07:21.076,0.0,0.0763888955116272 +2025-07-17 14:07:21.185,0.0,0.0763888955116272 +2025-07-17 14:07:21.279,0.0,0.0763888955116272 +2025-07-17 14:07:21.370,0.0,0.0763888955116272 +2025-07-17 14:07:21.482,0.0,0.0763888955116272 +2025-07-17 14:07:21.591,0.0,0.0763888955116272 +2025-07-17 14:07:21.683,0.0,0.0763888955116272 +2025-07-17 14:07:21.810,0.0,0.0763888955116272 +2025-07-17 14:07:21.886,0.0,0.0763888955116272 +2025-07-17 14:07:21.997,0.0,0.0763888955116272 +2025-07-17 14:07:22.088,0.0,0.0763888955116272 +2025-07-17 14:07:22.198,0.0,0.0763888955116272 +2025-07-17 14:07:22.290,0.0,0.0763888955116272 +2025-07-17 14:07:22.399,0.0,0.0763888955116272 +2025-07-17 14:07:22.492,0.0,0.0763888955116272 +2025-07-17 14:07:22.586,0.0,0.0763888955116272 +2025-07-17 14:07:22.695,0.0,0.0763888955116272 +2025-07-17 14:07:22.807,0.0,0.0763888955116272 +2025-07-17 14:07:22.899,0.0,0.0763888955116272 +2025-07-17 14:07:23.007,0.0,0.0763888955116272 +2025-07-17 14:07:23.099,0.0,0.0763888955116272 +2025-07-17 14:07:23.210,0.0,0.0763888955116272 +2025-07-17 14:07:23.303,0.0,0.0763888955116272 +2025-07-17 14:07:23.395,0.0,0.0677083358168602 +2025-07-17 14:07:23.505,0.0,0.0763888955116272 +2025-07-17 14:07:23.597,0.0,0.0763888955116272 +2025-07-17 14:07:23.708,0.0,0.0763888955116272 +2025-07-17 14:07:23.803,0.0,0.0677083358168602 +2025-07-17 14:07:23.911,0.0,0.0763888955116272 +2025-07-17 14:07:24.005,0.0,0.0763888955116272 +2025-07-17 14:07:24.115,0.0,0.0763888955116272 +2025-07-17 14:07:24.209,0.0,0.0763888955116272 +2025-07-17 14:07:24.319,0.0,0.0763888955116272 +2025-07-17 14:07:24.412,0.0,0.0763888955116272 +2025-07-17 14:07:24.524,0.0,0.0763888955116272 +2025-07-17 14:07:24.614,0.0,0.0763888955116272 +2025-07-17 14:07:24.730,0.0,0.0763888955116272 +2025-07-17 14:07:24.817,0.0,0.0763888955116272 +2025-07-17 14:07:24.934,0.0,0.0763888955116272 +2025-07-17 14:07:25.025,0.0,0.0763888955116272 +2025-07-17 14:07:25.134,0.0,0.0763888955116272 +2025-07-17 14:07:25.230,0.0,0.0763888955116272 +2025-07-17 14:07:25.338,0.0,0.0763888955116272 +2025-07-17 14:07:25.432,0.0,0.0763888955116272 +2025-07-17 14:07:25.543,0.0,0.0763888955116272 +2025-07-17 14:07:25.636,0.0,0.0763888955116272 +2025-07-17 14:07:25.746,0.0,0.0763888955116272 +2025-07-17 14:07:25.840,0.0,0.0763888955116272 +2025-07-17 14:07:25.949,0.0,0.0763888955116272 +2025-07-17 14:07:26.042,0.0,0.0763888955116272 +2025-07-17 14:07:26.151,0.0,0.0763888955116272 +2025-07-17 14:07:26.245,0.0,0.0763888955116272 +2025-07-17 14:07:26.356,0.0,0.0763888955116272 +2025-07-17 14:07:26.450,0.0,0.0763888955116272 +2025-07-17 14:07:26.543,0.0,0.0763888955116272 +2025-07-17 14:07:26.652,0.0,0.0763888955116272 +2025-07-17 14:07:26.748,0.0,0.0763888955116272 +2025-07-17 14:07:26.857,0.0,0.0763888955116272 +2025-07-17 14:07:26.950,0.0,0.0763888955116272 +2025-07-17 14:07:27.059,0.0,0.0763888955116272 +2025-07-17 14:07:27.170,0.0,0.0763888955116272 +2025-07-17 14:07:27.262,0.0,0.0763888955116272 +2025-07-17 14:07:27.357,0.0,0.0763888955116272 +2025-07-17 14:07:27.465,0.0,0.0763888955116272 +2025-07-17 14:07:27.558,0.0,0.0763888955116272 +2025-07-17 14:07:27.669,0.0,0.0763888955116272 +2025-07-17 14:07:27.762,0.0,0.0763888955116272 +2025-07-17 14:07:27.876,0.0,0.0763888955116272 +2025-07-17 14:07:27.968,0.0,0.0763888955116272 +2025-07-17 14:07:28.081,0.0,0.0763888955116272 +2025-07-17 14:07:28.170,0.0,0.0763888955116272 +2025-07-17 14:07:28.284,0.0,0.0763888955116272 +2025-07-17 14:07:28.377,0.0,0.0763888955116272 +2025-07-17 14:07:28.486,0.0,0.0763888955116272 +2025-07-17 14:07:28.581,0.0,0.0677083358168602 +2025-07-17 14:07:28.691,0.0,0.0677083358168602 +2025-07-17 14:07:28.784,0.0,0.0677083358168602 +2025-07-17 14:07:28.894,0.0,0.0677083358168602 +2025-07-17 14:07:28.986,0.0,0.0677083358168602 +2025-07-17 14:07:29.096,0.0,0.0677083358168602 +2025-07-17 14:07:29.193,0.0,0.0763888955116272 +2025-07-17 14:07:29.302,0.0,0.0763888955116272 +2025-07-17 14:07:29.396,0.0,0.0763888955116272 +2025-07-17 14:07:29.506,0.0,0.0763888955116272 +2025-07-17 14:07:29.598,0.0,0.0763888955116272 +2025-07-17 14:07:29.709,0.0,0.0763888955116272 +2025-07-17 14:07:29.803,0.0,0.0677083358168602 +2025-07-17 14:07:29.896,0.0,0.0677083358168602 +2025-07-17 14:07:30.006,0.0,0.0677083358168602 +2025-07-17 14:07:30.098,0.0,0.0677083358168602 +2025-07-17 14:07:30.207,0.0,0.0677083358168602 +2025-07-17 14:07:30.302,0.0,0.0677083358168602 +2025-07-17 14:07:30.414,0.0,0.0677083358168602 +2025-07-17 14:07:30.506,0.0,0.0677083358168602 +2025-07-17 14:07:30.616,0.0,0.0677083358168602 +2025-07-17 14:07:30.710,0.0,0.0677083358168602 +2025-07-17 14:07:30.819,0.0,0.0677083358168602 +2025-07-17 14:07:30.914,0.0,0.0677083358168602 +2025-07-17 14:07:31.029,0.0,0.0677083358168602 +2025-07-17 14:07:31.118,0.0,0.0763888955116272 +2025-07-17 14:07:31.232,0.0,0.0763888955116272 +2025-07-17 14:07:31.325,0.0,0.0763888955116272 +2025-07-17 14:07:31.434,0.0,0.0763888955116272 +2025-07-17 14:07:31.529,0.0,0.0763888955116272 +2025-07-17 14:07:31.639,0.0,0.0763888955116272 +2025-07-17 14:07:31.732,0.0,0.0763888955116272 +2025-07-17 14:07:31.841,0.0,0.0763888955116272 +2025-07-17 14:07:31.934,0.0,0.0763888955116272 +2025-07-17 14:07:32.044,0.0,0.0763888955116272 +2025-07-17 14:07:32.140,0.0,0.0763888955116272 +2025-07-17 14:07:32.249,0.0,0.0763888955116272 +2025-07-17 14:07:32.344,0.0,0.0763888955116272 +2025-07-17 14:07:32.454,0.0,0.0763888955116272 +2025-07-17 14:07:32.548,0.0,0.0763888955116272 +2025-07-17 14:07:32.656,0.0,0.0763888955116272 +2025-07-17 14:07:32.752,0.0,0.0677083358168602 +2025-07-17 14:07:32.844,0.0,0.0677083358168602 +2025-07-17 14:07:32.953,0.0,0.0677083358168602 +2025-07-17 14:07:33.048,0.0,0.0677083358168602 +2025-07-17 14:07:33.156,0.0,0.0677083358168602 +2025-07-17 14:07:33.249,0.0,0.0677083358168602 +2025-07-17 14:07:33.362,0.0,0.0677083358168602 +2025-07-17 14:07:33.455,0.0,0.0763888955116272 +2025-07-17 14:07:33.565,0.0,0.0763888955116272 +2025-07-17 14:07:33.658,0.0,0.0763888955116272 +2025-07-17 14:07:33.768,0.0,0.0763888955116272 +2025-07-17 14:07:33.861,0.0,0.0763888955116272 +2025-07-17 14:07:33.977,0.0,0.0763888955116272 +2025-07-17 14:07:34.087,0.0,0.0763888955116272 +2025-07-17 14:07:34.180,0.0,0.0763888955116272 +2025-07-17 14:07:34.271,0.0,0.0677083358168602 +2025-07-17 14:07:34.382,0.0,0.0677083358168602 +2025-07-17 14:07:34.493,0.0,0.0763888955116272 +2025-07-17 14:07:34.587,0.0,0.0763888955116272 +2025-07-17 14:07:34.679,0.0,0.0763888955116272 +2025-07-17 14:07:34.790,0.0,0.0763888955116272 +2025-07-17 14:07:34.884,0.0,0.0763888955116272 +2025-07-17 14:07:34.994,0.0,0.0763888955116272 +2025-07-17 14:07:35.086,0.0,0.0763888955116272 +2025-07-17 14:07:35.198,0.0,0.0763888955116272 +2025-07-17 14:07:35.291,0.0,0.0763888955116272 +2025-07-17 14:07:35.402,0.0,0.0763888955116272 +2025-07-17 14:07:35.495,0.0,0.0763888955116272 +2025-07-17 14:07:35.605,0.0,0.0763888955116272 +2025-07-17 14:07:35.697,0.0,0.0763888955116272 +2025-07-17 14:07:35.810,0.0,0.0763888955116272 +2025-07-17 14:07:35.901,0.0,0.0677083358168602 +2025-07-17 14:07:36.011,0.0,0.0677083358168602 +2025-07-17 14:07:36.104,0.0,0.0677083358168602 +2025-07-17 14:07:36.197,0.0,0.0677083358168602 +2025-07-17 14:07:36.308,0.0,0.0677083358168602 +2025-07-17 14:07:36.403,0.0,0.0677083358168602 +2025-07-17 14:07:36.513,0.0,0.0677083358168602 +2025-07-17 14:07:36.605,0.0,0.0677083358168602 +2025-07-17 14:07:36.715,0.0,0.0677083358168602 +2025-07-17 14:07:36.828,0.0,0.0677083358168602 +2025-07-17 14:07:36.919,0.0,0.0677083358168602 +2025-07-17 14:07:37.014,0.0,0.0677083358168602 +2025-07-17 14:07:37.126,0.0,0.0763888955116272 +2025-07-17 14:07:37.237,0.0,0.0763888955116272 +2025-07-17 14:07:37.330,0.0,0.0763888955116272 +2025-07-17 14:07:37.440,0.0,0.0763888955116272 +2025-07-17 14:07:37.533,0.0,0.0763888955116272 +2025-07-17 14:07:37.627,0.0,0.0763888955116272 +2025-07-17 14:07:37.737,0.0,0.0763888955116272 +2025-07-17 14:07:37.849,0.0,0.0763888955116272 +2025-07-17 14:07:37.939,0.0,0.0763888955116272 +2025-07-17 14:07:38.035,0.0,0.0763888955116272 +2025-07-17 14:07:38.144,0.0,0.0763888955116272 +2025-07-17 14:07:38.239,0.0,0.0763888955116272 +2025-07-17 14:07:38.349,0.0,0.0763888955116272 +2025-07-17 14:07:38.442,0.0,0.0763888955116272 +2025-07-17 14:07:38.551,0.0,0.0763888955116272 +2025-07-17 14:07:38.644,0.0,0.0763888955116272 +2025-07-17 14:07:38.755,0.0,0.0763888955116272 +2025-07-17 14:07:38.847,0.0,0.0763888955116272 +2025-07-17 14:07:38.958,0.0,0.0763888955116272 +2025-07-17 14:07:39.053,0.0,0.0763888955116272 +2025-07-17 14:07:39.160,0.0,0.0763888955116272 +2025-07-17 14:07:39.254,0.0,0.0763888955116272 +2025-07-17 14:07:39.365,0.0,0.0763888955116272 +2025-07-17 14:07:39.459,0.0,0.0677083358168602 +2025-07-17 14:07:39.569,0.0,0.0677083358168602 +2025-07-17 14:07:39.661,0.0,0.0677083358168602 +2025-07-17 14:07:39.790,0.0,0.0677083358168602 +2025-07-17 14:07:39.865,0.0,0.0677083358168602 +2025-07-17 14:07:39.980,0.0,0.0677083358168602 +2025-07-17 14:07:40.070,0.0,0.0763888955116272 +2025-07-17 14:07:40.183,0.0,0.0763888955116272 +2025-07-17 14:07:40.275,0.0,0.0763888955116272 +2025-07-17 14:07:40.384,0.0,0.0763888955116272 +2025-07-17 14:07:40.476,0.0,0.0763888955116272 +2025-07-17 14:07:40.589,0.0,0.0763888955116272 +2025-07-17 14:07:40.681,0.0,0.0763888955116272 +2025-07-17 14:07:40.791,0.0,0.0763888955116272 +2025-07-17 14:07:40.885,0.0,0.0763888955116272 +2025-07-17 14:07:40.994,0.0,0.0763888955116272 +2025-07-17 14:07:41.089,0.0,0.0763888955116272 +2025-07-17 14:07:41.200,0.0,0.0763888955116272 +2025-07-17 14:07:41.293,0.0,0.0763888955116272 +2025-07-17 14:07:41.403,0.0,0.0763888955116272 +2025-07-17 14:07:41.497,0.0,0.0677083358168602 +2025-07-17 14:07:41.605,0.0,0.0763888955116272 +2025-07-17 14:07:41.700,0.0,0.0763888955116272 +2025-07-17 14:07:41.811,0.0,0.0763888955116272 +2025-07-17 14:07:41.904,0.0,0.0763888955116272 +2025-07-17 14:07:42.012,0.0,0.0763888955116272 +2025-07-17 14:07:42.106,0.0,0.0763888955116272 +2025-07-17 14:07:42.217,0.0,0.0763888955116272 +2025-07-17 14:07:42.309,0.0,0.0763888955116272 +2025-07-17 14:07:42.404,0.0,0.0763888955116272 +2025-07-17 14:07:42.513,0.0,0.0763888955116272 +2025-07-17 14:07:42.607,0.0,0.0763888955116272 +2025-07-17 14:07:42.718,0.0,0.0763888955116272 +2025-07-17 14:07:42.811,0.0,0.0763888955116272 +2025-07-17 14:07:42.922,0.0,0.0677083358168602 +2025-07-17 14:07:43.016,0.0,0.0763888955116272 +2025-07-17 14:07:43.128,0.0,0.0763888955116272 +2025-07-17 14:07:43.218,0.0,0.0763888955116272 +2025-07-17 14:07:43.330,0.0,0.0763888955116272 +2025-07-17 14:07:43.422,0.0,0.0763888955116272 +2025-07-17 14:07:43.534,0.0,0.0763888955116272 +2025-07-17 14:07:43.630,0.0,0.0763888955116272 +2025-07-17 14:07:43.737,0.0,0.0763888955116272 +2025-07-17 14:07:43.833,0.0,0.0763888955116272 +2025-07-17 14:07:43.943,0.0,0.0763888955116272 +2025-07-17 14:07:44.036,0.0,0.0763888955116272 +2025-07-17 14:07:44.145,0.0,0.0763888955116272 +2025-07-17 14:07:44.239,0.0,0.0763888955116272 +2025-07-17 14:07:44.349,0.0,0.0763888955116272 +2025-07-17 14:07:44.442,0.0,0.0763888955116272 +2025-07-17 14:07:44.551,0.0,0.0763888955116272 +2025-07-17 14:07:44.644,0.0,0.0763888955116272 +2025-07-17 14:07:44.754,0.0,0.0763888955116272 +2025-07-17 14:07:44.847,0.0,0.0763888955116272 +2025-07-17 14:07:44.959,0.0,0.0763888955116272 +2025-07-17 14:07:45.051,0.0,0.0763888955116272 +2025-07-17 14:07:45.145,0.0,0.0763888955116272 +2025-07-17 14:07:45.254,0.0,0.0763888955116272 +2025-07-17 14:07:45.347,0.0,0.0763888955116272 +2025-07-17 14:07:45.460,0.0,0.0763888955116272 +2025-07-17 14:07:45.552,0.0,0.0763888955116272 +2025-07-17 14:07:45.663,0.0,0.0763888955116272 +2025-07-17 14:07:45.754,0.0,0.0763888955116272 +2025-07-17 14:07:45.865,0.0,0.0763888955116272 +2025-07-17 14:07:45.958,0.0,0.0763888955116272 +2025-07-17 14:07:46.069,0.0,0.0763888955116272 +2025-07-17 14:07:46.160,0.0,0.0763888955116272 +2025-07-17 14:07:46.275,0.0,0.0763888955116272 +2025-07-17 14:07:46.364,0.0,0.0763888955116272 +2025-07-17 14:07:46.478,0.0,0.0763888955116272 +2025-07-17 14:07:46.569,0.0,0.0763888955116272 +2025-07-17 14:07:46.682,0.0,0.0763888955116272 +2025-07-17 14:07:46.775,0.0,0.0763888955116272 +2025-07-17 14:07:46.886,0.0,0.0677083358168602 +2025-07-17 14:07:46.977,0.0,0.0763888955116272 +2025-07-17 14:07:47.087,0.0,0.0763888955116272 +2025-07-17 14:07:47.182,0.0,0.0763888955116272 +2025-07-17 14:07:47.292,0.0,0.0763888955116272 +2025-07-17 14:07:47.385,0.0,0.0763888955116272 +2025-07-17 14:07:47.496,0.0,0.0763888955116272 +2025-07-17 14:07:47.587,0.0,0.0763888955116272 +2025-07-17 14:07:47.696,0.0,0.0763888955116272 +2025-07-17 14:07:47.792,0.0,0.0763888955116272 +2025-07-17 14:07:47.903,0.0,0.0677083358168602 +2025-07-17 14:07:47.995,0.0,0.0677083358168602 +2025-07-17 14:07:48.088,0.0,0.0677083358168602 +2025-07-17 14:07:48.198,0.0,0.0677083358168602 +2025-07-17 14:07:48.309,0.0,0.0677083358168602 +2025-07-17 14:07:48.405,0.0,0.0677083358168602 +2025-07-17 14:07:48.495,0.0,0.0677083358168602 +2025-07-17 14:07:48.606,0.0,0.0677083358168602 +2025-07-17 14:07:48.697,0.0,0.0677083358168602 +2025-07-17 14:07:48.809,0.0,0.0677083358168602 +2025-07-17 14:07:48.901,0.0,0.0677083358168602 +2025-07-17 14:07:49.014,0.0,0.0763888955116272 +2025-07-17 14:07:49.106,0.0,0.0763888955116272 +2025-07-17 14:07:49.216,0.0,0.0763888955116272 +2025-07-17 14:07:49.310,0.0,0.0763888955116272 +2025-07-17 14:07:49.421,0.0,0.0763888955116272 +2025-07-17 14:07:49.514,0.0,0.0763888955116272 +2025-07-17 14:07:49.628,0.0,0.0763888955116272 +2025-07-17 14:07:49.719,0.0,0.0763888955116272 +2025-07-17 14:07:49.833,0.0,0.0763888955116272 +2025-07-17 14:07:49.924,0.0,0.0763888955116272 +2025-07-17 14:07:50.034,0.0,0.0763888955116272 +2025-07-17 14:07:50.129,0.0,0.0763888955116272 +2025-07-17 14:07:50.239,0.0,0.0763888955116272 +2025-07-17 14:07:50.333,0.0,0.0763888955116272 +2025-07-17 14:07:50.442,0.0,0.0763888955116272 +2025-07-17 14:07:50.535,0.0,0.0763888955116272 +2025-07-17 14:07:50.645,0.0,0.0763888955116272 +2025-07-17 14:07:50.739,0.0,0.0763888955116272 +2025-07-17 14:07:50.851,0.0,0.0763888955116272 +2025-07-17 14:07:50.958,0.0,0.0763888955116272 +2025-07-17 14:07:51.052,0.0,0.0763888955116272 +2025-07-17 14:07:51.145,0.0,0.0763888955116272 +2025-07-17 14:07:51.255,0.0,0.0763888955116272 +2025-07-17 14:07:51.349,0.0,0.0763888955116272 +2025-07-17 14:07:51.460,0.0,0.0677083358168602 +2025-07-17 14:07:51.551,0.0,0.0763888955116272 +2025-07-17 14:07:51.662,0.0,0.0763888955116272 +2025-07-17 14:07:51.754,0.0,0.0763888955116272 +2025-07-17 14:07:51.864,0.0,0.0763888955116272 +2025-07-17 14:07:51.959,0.0,0.0763888955116272 +2025-07-17 14:07:52.069,0.0,0.0763888955116272 +2025-07-17 14:07:52.162,0.0,0.0763888955116272 +2025-07-17 14:07:52.277,0.0,0.0763888955116272 +2025-07-17 14:07:52.365,0.0,0.0763888955116272 +2025-07-17 14:07:52.479,0.0,0.0763888955116272 +2025-07-17 14:07:52.570,0.0,0.0763888955116272 +2025-07-17 14:07:52.684,0.0,0.0763888955116272 +2025-07-17 14:07:52.776,0.0,0.0763888955116272 +2025-07-17 14:07:52.887,0.0,0.0763888955116272 +2025-07-17 14:07:52.977,0.0,0.0763888955116272 +2025-07-17 14:07:53.089,0.0,0.0763888955116272 +2025-07-17 14:07:53.184,0.0,0.0763888955116272 +2025-07-17 14:07:53.294,0.0,0.0763888955116272 +2025-07-17 14:07:53.386,0.0,0.0763888955116272 +2025-07-17 14:07:53.495,0.0,0.0763888955116272 +2025-07-17 14:07:53.589,0.0,0.0763888955116272 +2025-07-17 14:07:53.699,0.0,0.0763888955116272 +2025-07-17 14:07:53.811,0.0,0.0763888955116272 +2025-07-17 14:07:53.904,0.0,0.0763888955116272 +2025-07-17 14:07:53.997,0.0,0.0763888955116272 +2025-07-17 14:07:54.107,0.0,0.0763888955116272 +2025-07-17 14:07:54.199,0.0,0.0763888955116272 +2025-07-17 14:07:54.310,0.0,0.0763888955116272 +2025-07-17 14:07:54.405,0.0,0.0763888955116272 +2025-07-17 14:07:54.513,0.0,0.0763888955116272 +2025-07-17 14:07:54.606,0.0,0.0763888955116272 +2025-07-17 14:07:54.717,0.0,0.0763888955116272 +2025-07-17 14:07:54.810,0.0,0.0763888955116272 +2025-07-17 14:07:54.921,0.0,0.0763888955116272 +2025-07-17 14:07:55.014,0.0,0.0763888955116272 +2025-07-17 14:07:55.127,0.0,0.0763888955116272 +2025-07-17 14:07:55.218,0.0,0.0763888955116272 +2025-07-17 14:07:55.331,0.0,0.0763888955116272 +2025-07-17 14:07:55.425,0.0,0.0677083358168602 +2025-07-17 14:07:55.514,0.0,0.0763888955116272 +2025-07-17 14:07:55.628,0.0,0.0763888955116272 +2025-07-17 14:07:55.719,0.0,0.0763888955116272 +2025-07-17 14:07:55.833,0.0,0.0763888955116272 +2025-07-17 14:07:55.927,0.0,0.0763888955116272 +2025-07-17 14:07:56.035,0.0,0.0763888955116272 +2025-07-17 14:07:56.128,0.0,0.0763888955116272 +2025-07-17 14:07:56.240,0.0,0.0763888955116272 +2025-07-17 14:07:56.332,0.0,0.0763888955116272 +2025-07-17 14:07:56.444,0.0,0.0763888955116272 +2025-07-17 14:07:56.538,0.0,0.0763888955116272 +2025-07-17 14:07:56.647,0.0,0.0763888955116272 +2025-07-17 14:07:56.739,0.0,0.0677083358168602 +2025-07-17 14:07:56.852,0.0,0.0763888955116272 +2025-07-17 14:07:56.943,0.0,0.0763888955116272 +2025-07-17 14:07:57.055,0.0,0.0763888955116272 +2025-07-17 14:07:57.148,0.0,0.0763888955116272 +2025-07-17 14:07:57.256,0.0,0.0763888955116272 +2025-07-17 14:07:57.351,0.0,0.0763888955116272 +2025-07-17 14:07:57.461,0.0,0.0677083358168602 +2025-07-17 14:07:57.555,0.0,0.0677083358168602 +2025-07-17 14:07:57.665,0.0,0.0677083358168602 +2025-07-17 14:07:57.758,0.0,0.0677083358168602 +2025-07-17 14:07:57.869,0.0,0.0677083358168602 +2025-07-17 14:07:57.964,0.0,0.0677083358168602 +2025-07-17 14:07:58.059,0.0,0.0763888955116272 +2025-07-17 14:07:58.167,0.0,0.0763888955116272 +2025-07-17 14:07:58.261,0.0,0.0763888955116272 +2025-07-17 14:07:58.371,0.0,0.0763888955116272 +2025-07-17 14:07:58.462,0.0,0.0763888955116272 +2025-07-17 14:07:58.576,0.0,0.0763888955116272 +2025-07-17 14:07:58.666,0.0,0.0763888955116272 +2025-07-17 14:07:58.781,0.0,0.0763888955116272 +2025-07-17 14:07:58.872,0.0,0.0763888955116272 +2025-07-17 14:07:58.984,0.0,0.0763888955116272 +2025-07-17 14:07:59.076,0.0,0.0763888955116272 +2025-07-17 14:07:59.190,0.0,0.0677083358168602 +2025-07-17 14:07:59.282,0.0,0.0677083358168602 +2025-07-17 14:07:59.394,0.0,0.0763888955116272 +2025-07-17 14:07:59.487,0.0,0.0763888955116272 +2025-07-17 14:07:59.597,0.0,0.0763888955116272 +2025-07-17 14:07:59.690,0.0,0.0763888955116272 +2025-07-17 14:07:59.802,0.0,0.0763888955116272 +2025-07-17 14:07:59.893,0.0,0.0763888955116272 +2025-07-17 14:08:00.004,0.0,0.0763888955116272 +2025-07-17 14:08:00.097,0.0,0.0763888955116272 +2025-07-17 14:08:00.207,0.0,0.0677083358168602 +2025-07-17 14:08:00.298,0.0,0.0763888955116272 +2025-07-17 14:08:00.409,0.0,0.0763888955116272 +2025-07-17 14:08:00.502,0.0,0.0850694477558136 +2025-07-17 14:08:00.596,0.0,0.0850694477558136 +2025-07-17 14:08:00.707,0.0,0.0850694477558136 +2025-07-17 14:08:00.800,0.0,0.0850694477558136 +2025-07-17 14:08:00.912,0.0,0.0850694477558136 +2025-07-17 14:08:01.005,0.0,0.0763888955116272 +2025-07-17 14:08:01.115,0.0,0.0763888955116272 +2025-07-17 14:08:01.208,0.0,0.0763888955116272 +2025-07-17 14:08:01.319,0.0,0.0763888955116272 +2025-07-17 14:08:01.411,0.0,0.0763888955116272 +2025-07-17 14:08:01.521,0.0,0.0763888955116272 +2025-07-17 14:08:01.614,0.0,0.0763888955116272 +2025-07-17 14:08:01.728,0.0,0.0763888955116272 +2025-07-17 14:08:01.818,0.0,0.0763888955116272 +2025-07-17 14:08:01.932,0.0,0.0763888955116272 +2025-07-17 14:08:02.024,0.0,0.0763888955116272 +2025-07-17 14:08:02.137,0.0,0.0763888955116272 +2025-07-17 14:08:02.231,0.0,0.0763888955116272 +2025-07-17 14:08:02.341,0.0,0.0850694477558136 +2025-07-17 14:08:02.434,0.0,0.0850694477558136 +2025-07-17 14:08:02.545,0.0,0.0850694477558136 +2025-07-17 14:08:02.639,0.0,0.0850694477558136 +2025-07-17 14:08:02.747,0.0,0.0850694477558136 +2025-07-17 14:08:02.841,0.0,0.0763888955116272 +2025-07-17 14:08:02.950,0.0,0.0763888955116272 +2025-07-17 14:08:03.044,0.0,0.0763888955116272 +2025-07-17 14:08:03.154,0.0,0.0763888955116272 +2025-07-17 14:08:03.247,0.0,0.0763888955116272 +2025-07-17 14:08:03.355,0.0,0.0763888955116272 +2025-07-17 14:08:03.450,0.0,0.0763888955116272 +2025-07-17 14:08:03.559,0.0,0.0763888955116272 +2025-07-17 14:08:03.654,0.0,0.0763888955116272 +2025-07-17 14:08:03.764,0.0,0.0763888955116272 +2025-07-17 14:08:03.859,0.0,0.0763888955116272 +2025-07-17 14:08:03.952,0.0,0.0763888955116272 +2025-07-17 14:08:04.062,0.0,0.0763888955116272 +2025-07-17 14:08:04.174,0.0,0.0677083358168602 +2025-07-17 14:08:04.265,0.0,0.0677083358168602 +2025-07-17 14:08:04.356,0.0,0.0677083358168602 +2025-07-17 14:08:04.468,0.0,0.0677083358168602 +2025-07-17 14:08:04.581,0.0,0.0677083358168602 +2025-07-17 14:08:04.670,0.0,0.0677083358168602 +2025-07-17 14:08:04.764,0.0,0.0763888955116272 +2025-07-17 14:08:04.878,0.0,0.0763888955116272 +2025-07-17 14:08:04.986,0.0,0.0763888955116272 +2025-07-17 14:08:05.082,0.0,0.0763888955116272 +2025-07-17 14:08:05.191,0.0,0.0763888955116272 +2025-07-17 14:08:05.285,0.0,0.0763888955116272 +2025-07-17 14:08:05.396,0.0,0.0850694477558136 +2025-07-17 14:08:05.490,0.0,0.0850694477558136 +2025-07-17 14:08:05.597,0.0,0.0763888955116272 +2025-07-17 14:08:05.690,0.0,0.0850694477558136 +2025-07-17 14:08:05.800,0.0,0.0763888955116272 +2025-07-17 14:08:05.895,0.0,0.0677083358168602 +2025-07-17 14:08:06.006,0.0,0.0677083358168602 +2025-07-17 14:08:06.098,0.0,0.0677083358168602 +2025-07-17 14:08:06.190,0.0,0.0677083358168602 +2025-07-17 14:08:06.303,0.0,0.0677083358168602 +2025-07-17 14:08:06.395,0.0,0.0677083358168602 +2025-07-17 14:08:06.505,0.0,0.0677083358168602 +2025-07-17 14:08:06.597,0.0,0.0677083358168602 +2025-07-17 14:08:06.707,0.0,0.0677083358168602 +2025-07-17 14:08:06.817,0.0,0.0677083358168602 +2025-07-17 14:08:06.910,0.0,0.0677083358168602 +2025-07-17 14:08:07.022,0.0,0.0677083358168602 +2025-07-17 14:08:07.115,0.0,0.0677083358168602 +2025-07-17 14:08:07.227,0.0,0.0677083358168602 +2025-07-17 14:08:07.317,0.0,0.0677083358168602 +2025-07-17 14:08:07.432,0.0,0.0677083358168602 +2025-07-17 14:08:07.521,0.0,0.0677083358168602 +2025-07-17 14:08:07.635,0.0,0.0677083358168602 +2025-07-17 14:08:07.728,0.0,0.0677083358168602 +2025-07-17 14:08:07.840,0.0,0.0677083358168602 +2025-07-17 14:08:07.932,0.0,0.0677083358168602 +2025-07-17 14:08:08.041,0.0,0.0677083358168602 +2025-07-17 14:08:08.136,0.0,0.0677083358168602 +2025-07-17 14:08:08.246,0.0,0.0677083358168602 +2025-07-17 14:08:08.340,0.0,0.0763888955116272 +2025-07-17 14:08:08.450,0.0,0.0763888955116272 +2025-07-17 14:08:08.541,0.0,0.0763888955116272 +2025-07-17 14:08:08.651,0.0,0.0763888955116272 +2025-07-17 14:08:08.745,0.0,0.0763888955116272 +2025-07-17 14:08:08.857,0.0,0.0763888955116272 +2025-07-17 14:08:08.949,0.0,0.0763888955116272 +2025-07-17 14:08:09.043,0.0,0.0763888955116272 +2025-07-17 14:08:09.153,0.0,0.0763888955116272 +2025-07-17 14:08:09.245,0.0,0.0763888955116272 +2025-07-17 14:08:09.355,0.0,0.0763888955116272 +2025-07-17 14:08:09.450,0.0,0.0763888955116272 +2025-07-17 14:08:09.558,0.0,0.0763888955116272 +2025-07-17 14:08:09.653,0.0,0.0763888955116272 +2025-07-17 14:08:09.762,0.0,0.0763888955116272 +2025-07-17 14:08:09.855,0.0,0.0763888955116272 +2025-07-17 14:08:09.966,0.0,0.0763888955116272 +2025-07-17 14:08:10.059,0.0,0.0763888955116272 +2025-07-17 14:08:10.169,0.0,0.0763888955116272 +2025-07-17 14:08:10.262,0.0,0.0763888955116272 +2025-07-17 14:08:10.375,0.0,0.0763888955116272 +2025-07-17 14:08:10.485,0.0,0.0763888955116272 +2025-07-17 14:08:10.579,0.0,0.0763888955116272 +2025-07-17 14:08:10.688,0.0,0.0763888955116272 +2025-07-17 14:08:10.782,0.0,0.0763888955116272 +2025-07-17 14:08:10.893,0.0,0.0763888955116272 +2025-07-17 14:08:10.986,0.0,0.0763888955116272 +2025-07-17 14:08:11.095,0.0,0.0763888955116272 +2025-07-17 14:08:11.187,0.0,0.0763888955116272 +2025-07-17 14:08:11.298,0.0,0.0763888955116272 +2025-07-17 14:08:11.392,0.0,0.0763888955116272 +2025-07-17 14:08:11.504,0.0,0.0763888955116272 +2025-07-17 14:08:11.594,0.0,0.0763888955116272 +2025-07-17 14:08:11.705,0.0,0.0763888955116272 +2025-07-17 14:08:11.797,0.0,0.0677083358168602 +2025-07-17 14:08:11.908,0.0,0.0763888955116272 +2025-07-17 14:08:12.002,0.0,0.0763888955116272 +2025-07-17 14:08:12.096,0.0,0.0763888955116272 +2025-07-17 14:08:12.205,0.0,0.0763888955116272 +2025-07-17 14:08:12.298,0.0,0.0763888955116272 +2025-07-17 14:08:12.407,0.0,0.0763888955116272 +2025-07-17 14:08:12.518,0.0,0.0763888955116272 +2025-07-17 14:08:12.612,0.0,0.0763888955116272 +2025-07-17 14:08:12.721,0.0,0.0763888955116272 +2025-07-17 14:08:12.816,0.0,0.0763888955116272 +2025-07-17 14:08:12.907,0.0,0.0763888955116272 +2025-07-17 14:08:13.019,0.0,0.0763888955116272 +2025-07-17 14:08:13.133,0.0,0.0763888955116272 +2025-07-17 14:08:13.221,0.0,0.0763888955116272 +2025-07-17 14:08:13.315,0.0,0.0763888955116272 +2025-07-17 14:08:13.427,0.0,0.0763888955116272 +2025-07-17 14:08:13.538,0.0,0.0763888955116272 +2025-07-17 14:08:13.632,0.0,0.0763888955116272 +2025-07-17 14:08:13.742,0.0,0.0677083358168602 +2025-07-17 14:08:13.835,0.0,0.0677083358168602 +2025-07-17 14:08:13.945,0.0,0.0677083358168602 +2025-07-17 14:08:14.038,0.0,0.0677083358168602 +2025-07-17 14:08:14.148,0.0,0.0677083358168602 +2025-07-17 14:08:14.241,0.0,0.0677083358168602 +2025-07-17 14:08:14.352,0.0,0.0763888955116272 +2025-07-17 14:08:14.445,0.0,0.0763888955116272 +2025-07-17 14:08:14.556,0.0,0.0763888955116272 +2025-07-17 14:08:14.647,0.0,0.0763888955116272 +2025-07-17 14:08:14.759,0.0,0.0763888955116272 +2025-07-17 14:08:14.851,0.0,0.0763888955116272 +2025-07-17 14:08:14.945,0.0,0.0763888955116272 +2025-07-17 14:08:15.054,0.0,0.0763888955116272 +2025-07-17 14:08:15.148,0.0,0.0763888955116272 +2025-07-17 14:08:15.257,0.0,0.0763888955116272 +2025-07-17 14:08:15.367,0.0,0.0763888955116272 +2025-07-17 14:08:15.461,0.0,0.0763888955116272 +2025-07-17 14:08:15.553,0.0,0.0677083358168602 +2025-07-17 14:08:15.663,0.0,0.0677083358168602 +2025-07-17 14:08:15.776,0.0,0.0677083358168602 +2025-07-17 14:08:15.867,0.0,0.0677083358168602 +2025-07-17 14:08:15.978,0.0,0.0677083358168602 +2025-07-17 14:08:16.069,0.0,0.0677083358168602 +2025-07-17 14:08:16.183,0.0,0.0677083358168602 +2025-07-17 14:08:16.276,0.0,0.0677083358168602 +2025-07-17 14:08:16.365,0.0,0.0677083358168602 +2025-07-17 14:08:16.479,0.0,0.0677083358168602 +2025-07-17 14:08:16.588,0.0,0.0677083358168602 +2025-07-17 14:08:16.684,0.0,0.0763888955116272 +2025-07-17 14:08:16.793,0.0,0.0763888955116272 +2025-07-17 14:08:16.887,0.0,0.0763888955116272 +2025-07-17 14:08:16.996,0.0,0.0763888955116272 +2025-07-17 14:08:17.087,0.0,0.0763888955116272 +2025-07-17 14:08:17.198,0.0,0.0763888955116272 +2025-07-17 14:08:17.292,0.0,0.0763888955116272 +2025-07-17 14:08:17.403,0.0,0.0763888955116272 +2025-07-17 14:08:17.496,0.0,0.0763888955116272 +2025-07-17 14:08:17.589,0.0,0.0763888955116272 +2025-07-17 14:08:17.697,0.0,0.0763888955116272 +2025-07-17 14:08:17.809,0.0,0.0763888955116272 +2025-07-17 14:08:17.903,0.0,0.0677083358168602 +2025-07-17 14:08:17.995,0.0,0.0677083358168602 +2025-07-17 14:08:18.107,0.0,0.0677083358168602 +2025-07-17 14:08:18.199,0.0,0.0677083358168602 +2025-07-17 14:08:18.309,0.0,0.0677083358168602 +2025-07-17 14:08:18.403,0.0,0.0677083358168602 +2025-07-17 14:08:18.513,0.0,0.0763888955116272 +2025-07-17 14:08:18.604,0.0,0.0763888955116272 +2025-07-17 14:08:18.714,0.0,0.0763888955116272 +2025-07-17 14:08:18.809,0.0,0.0763888955116272 +2025-07-17 14:08:18.919,0.0,0.0763888955116272 +2025-07-17 14:08:19.013,0.0,0.0763888955116272 +2025-07-17 14:08:19.127,0.0,0.0763888955116272 +2025-07-17 14:08:19.216,0.0,0.0763888955116272 +2025-07-17 14:08:19.330,0.0,0.0763888955116272 +2025-07-17 14:08:19.420,0.0,0.0763888955116272 +2025-07-17 14:08:19.535,0.0,0.0763888955116272 +2025-07-17 14:08:19.625,0.0,0.0763888955116272 +2025-07-17 14:08:19.738,0.0,0.0763888955116272 +2025-07-17 14:08:19.831,0.0,0.0763888955116272 +2025-07-17 14:08:19.941,0.0,0.0763888955116272 +2025-07-17 14:08:20.033,0.0,0.0763888955116272 +2025-07-17 14:08:20.144,0.0,0.0677083358168602 +2025-07-17 14:08:20.235,0.0,0.0677083358168602 +2025-07-17 14:08:20.346,0.0,0.0763888955116272 +2025-07-17 14:08:20.440,0.0,0.0763888955116272 +2025-07-17 14:08:20.533,0.0,0.0763888955116272 +2025-07-17 14:08:20.643,0.0,0.0763888955116272 +2025-07-17 14:08:20.754,0.0,0.0763888955116272 +2025-07-17 14:08:20.847,0.0,0.0763888955116272 +2025-07-17 14:08:20.940,0.0,0.0677083358168602 +2025-07-17 14:08:21.051,0.0,0.0763888955116272 +2025-07-17 14:08:21.144,0.0,0.0763888955116272 +2025-07-17 14:08:21.253,0.0,0.0763888955116272 +2025-07-17 14:08:21.345,0.0,0.0763888955116272 +2025-07-17 14:08:21.458,0.0,0.0763888955116272 +2025-07-17 14:08:21.550,0.0,0.0763888955116272 +2025-07-17 14:08:21.659,0.0,0.0763888955116272 +2025-07-17 14:08:21.752,0.0,0.0763888955116272 +2025-07-17 14:08:21.862,0.0,0.0763888955116272 +2025-07-17 14:08:21.957,0.0,0.0763888955116272 +2025-07-17 14:08:22.069,0.0,0.0677083358168602 +2025-07-17 14:08:22.161,0.0,0.0677083358168602 +2025-07-17 14:08:22.271,0.0,0.0677083358168602 +2025-07-17 14:08:22.365,0.0,0.0677083358168602 +2025-07-17 14:08:22.475,0.0,0.0677083358168602 +2025-07-17 14:08:22.567,0.0,0.0677083358168602 +2025-07-17 14:08:22.681,0.0,0.0677083358168602 +2025-07-17 14:08:22.770,0.0,0.0677083358168602 +2025-07-17 14:08:22.884,0.0,0.0677083358168602 +2025-07-17 14:08:22.975,0.0,0.0677083358168602 +2025-07-17 14:08:23.086,0.0,0.0677083358168602 +2025-07-17 14:08:23.180,0.0,0.0677083358168602 +2025-07-17 14:08:23.291,0.0,0.0677083358168602 +2025-07-17 14:08:23.386,0.0,0.0677083358168602 +2025-07-17 14:08:23.478,0.0,0.0677083358168602 +2025-07-17 14:08:23.587,0.0,0.0677083358168602 +2025-07-17 14:08:23.698,0.0,0.0677083358168602 +2025-07-17 14:08:23.791,0.0,0.0677083358168602 +2025-07-17 14:08:23.902,0.0,0.0677083358168602 +2025-07-17 14:08:23.994,0.0,0.0677083358168602 +2025-07-17 14:08:24.086,0.0,0.0677083358168602 +2025-07-17 14:08:24.196,0.0,0.0677083358168602 +2025-07-17 14:08:24.306,0.0,0.0677083358168602 +2025-07-17 14:08:24.399,0.0,0.0677083358168602 +2025-07-17 14:08:24.493,0.0,0.0677083358168602 +2025-07-17 14:08:24.605,0.0,0.0677083358168602 +2025-07-17 14:08:24.697,0.0,0.0677083358168602 +2025-07-17 14:08:24.808,0.0,0.0677083358168602 +2025-07-17 14:08:24.901,0.0,0.0677083358168602 +2025-07-17 14:08:25.011,0.0,0.0677083358168602 +2025-07-17 14:08:25.105,0.0,0.0677083358168602 +2025-07-17 14:08:25.216,0.0,0.0677083358168602 +2025-07-17 14:08:25.308,0.0,0.0677083358168602 +2025-07-17 14:08:25.418,0.0,0.0677083358168602 +2025-07-17 14:08:25.510,0.0,0.0677083358168602 +2025-07-17 14:08:25.623,0.0,0.0677083358168602 +2025-07-17 14:08:25.715,0.0,0.0763888955116272 +2025-07-17 14:08:25.829,0.0,0.0763888955116272 +2025-07-17 14:08:25.918,0.0,0.0763888955116272 +2025-07-17 14:08:26.032,0.0,0.0763888955116272 +2025-07-17 14:08:26.125,0.0,0.0763888955116272 +2025-07-17 14:08:26.235,0.0,0.0763888955116272 +2025-07-17 14:08:26.329,0.0,0.0763888955116272 +2025-07-17 14:08:26.441,0.0,0.0763888955116272 +2025-07-17 14:08:26.533,0.0,0.0763888955116272 +2025-07-17 14:08:26.642,0.0,0.0763888955116272 +2025-07-17 14:08:26.751,0.0,0.0763888955116272 +2025-07-17 14:08:26.846,0.0,0.0763888955116272 +2025-07-17 14:08:26.955,0.0,0.0763888955116272 +2025-07-17 14:08:27.050,0.0,0.0763888955116272 +2025-07-17 14:08:27.160,0.0,0.0763888955116272 +2025-07-17 14:08:27.251,0.0,0.0763888955116272 +2025-07-17 14:08:27.344,0.0,0.0763888955116272 +2025-07-17 14:08:27.455,0.0,0.0763888955116272 +2025-07-17 14:08:27.548,0.0,0.0763888955116272 +2025-07-17 14:08:27.659,0.0,0.0763888955116272 +2025-07-17 14:08:27.752,0.0,0.0763888955116272 +2025-07-17 14:08:27.861,0.0,0.0763888955116272 +2025-07-17 14:08:27.956,0.0,0.0763888955116272 +2025-07-17 14:08:28.065,0.0,0.0763888955116272 +2025-07-17 14:08:28.159,0.0,0.0763888955116272 +2025-07-17 14:08:28.271,0.0,0.0763888955116272 +2025-07-17 14:08:28.362,0.0,0.0763888955116272 +2025-07-17 14:08:28.472,0.0,0.0763888955116272 +2025-07-17 14:08:28.565,0.0,0.0763888955116272 +2025-07-17 14:08:28.677,0.0,0.0763888955116272 +2025-07-17 14:08:28.768,0.0,0.0763888955116272 +2025-07-17 14:08:28.882,0.0,0.0763888955116272 +2025-07-17 14:08:28.975,0.0,0.0763888955116272 +2025-07-17 14:08:29.086,0.0,0.0763888955116272 +2025-07-17 14:08:29.179,0.0,0.0763888955116272 +2025-07-17 14:08:29.289,0.0,0.0763888955116272 +2025-07-17 14:08:29.383,0.0,0.0763888955116272 +2025-07-17 14:08:29.475,0.0,0.0763888955116272 +2025-07-17 14:08:29.587,0.0,0.0763888955116272 +2025-07-17 14:08:29.696,0.0,0.0763888955116272 +2025-07-17 14:08:29.788,0.0,0.0763888955116272 +2025-07-17 14:08:29.899,0.0,0.0677083358168602 +2025-07-17 14:08:29.992,0.0,0.0677083358168602 +2025-07-17 14:08:30.101,0.0,0.0677083358168602 +2025-07-17 14:08:30.195,0.0,0.0677083358168602 +2025-07-17 14:08:30.304,0.0,0.0677083358168602 +2025-07-17 14:08:30.399,0.0,0.0677083358168602 +2025-07-17 14:08:30.508,0.0,0.0677083358168602 +2025-07-17 14:08:30.602,0.0,0.0763888955116272 +2025-07-17 14:08:30.694,0.0,0.0763888955116272 +2025-07-17 14:08:30.804,0.0,0.0763888955116272 +2025-07-17 14:08:30.898,0.0,0.0763888955116272 +2025-07-17 14:08:31.008,0.0,0.0763888955116272 +2025-07-17 14:08:31.102,0.0,0.0763888955116272 +2025-07-17 14:08:31.211,0.0,0.0763888955116272 +2025-07-17 14:08:31.305,0.0,0.0763888955116272 +2025-07-17 14:08:31.414,0.0,0.0763888955116272 +2025-07-17 14:08:31.508,0.0,0.0763888955116272 +2025-07-17 14:08:31.617,0.0,0.0763888955116272 +2025-07-17 14:08:31.712,0.0,0.0763888955116272 +2025-07-17 14:08:31.822,0.0,0.0763888955116272 +2025-07-17 14:08:31.915,0.0,0.0763888955116272 +2025-07-17 14:08:32.028,0.0,0.0763888955116272 +2025-07-17 14:08:32.119,0.0,0.0763888955116272 +2025-07-17 14:08:32.232,0.0,0.0763888955116272 +2025-07-17 14:08:32.326,0.0,0.0763888955116272 +2025-07-17 14:08:32.438,0.0,0.0677083358168602 +2025-07-17 14:08:32.530,0.0,0.0677083358168602 +2025-07-17 14:08:32.639,0.0,0.0677083358168602 +2025-07-17 14:08:32.732,0.0,0.0677083358168602 +2025-07-17 14:08:32.840,0.0,0.0677083358168602 +2025-07-17 14:08:32.935,0.0,0.0677083358168602 +2025-07-17 14:08:33.046,0.0,0.0763888955116272 +2025-07-17 14:08:33.139,0.0,0.0763888955116272 +2025-07-17 14:08:33.248,0.0,0.0763888955116272 +2025-07-17 14:08:33.341,0.0,0.0763888955116272 +2025-07-17 14:08:33.451,0.0,0.0763888955116272 +2025-07-17 14:08:33.545,0.0,0.0763888955116272 +2025-07-17 14:08:33.656,0.0,0.0677083358168602 +2025-07-17 14:08:33.748,0.0,0.0677083358168602 +2025-07-17 14:08:33.859,0.0,0.0677083358168602 +2025-07-17 14:08:33.952,0.0,0.0677083358168602 +2025-07-17 14:08:34.061,0.0,0.0677083358168602 +2025-07-17 14:08:34.155,0.0,0.0763888955116272 +2025-07-17 14:08:34.264,0.0,0.0763888955116272 +2025-07-17 14:08:34.356,0.0,0.0763888955116272 +2025-07-17 14:08:34.464,0.0,0.0763888955116272 +2025-07-17 14:08:34.558,0.0,0.0763888955116272 +2025-07-17 14:08:34.670,0.0,0.0763888955116272 +2025-07-17 14:08:34.761,0.0,0.0763888955116272 +2025-07-17 14:08:34.876,0.0,0.0763888955116272 +2025-07-17 14:08:34.985,0.0,0.0763888955116272 +2025-07-17 14:08:35.077,0.0,0.0763888955116272 +2025-07-17 14:08:35.189,0.0,0.0763888955116272 +2025-07-17 14:08:35.282,0.0,0.0763888955116272 +2025-07-17 14:08:35.391,0.0,0.0677083358168602 +2025-07-17 14:08:35.485,0.0,0.0677083358168602 +2025-07-17 14:08:35.593,0.0,0.0677083358168602 +2025-07-17 14:08:35.687,0.0,0.0677083358168602 +2025-07-17 14:08:35.795,0.0,0.0677083358168602 +2025-07-17 14:08:35.888,0.0,0.0677083358168602 +2025-07-17 14:08:35.999,0.0,0.0763888955116272 +2025-07-17 14:08:36.091,0.0,0.0763888955116272 +2025-07-17 14:08:36.202,0.0,0.0763888955116272 +2025-07-17 14:08:36.293,0.0,0.0763888955116272 +2025-07-17 14:08:36.405,0.0,0.0677083358168602 +2025-07-17 14:08:36.498,0.0,0.0763888955116272 +2025-07-17 14:08:36.607,0.0,0.0763888955116272 +2025-07-17 14:08:36.699,0.0,0.0763888955116272 +2025-07-17 14:08:36.809,0.0,0.0763888955116272 +2025-07-17 14:08:36.904,0.0,0.0763888955116272 +2025-07-17 14:08:37.012,0.0,0.0763888955116272 +2025-07-17 14:08:37.107,0.0,0.0763888955116272 +2025-07-17 14:08:37.215,0.0,0.0763888955116272 +2025-07-17 14:08:37.308,0.0,0.0763888955116272 +2025-07-17 14:08:37.418,0.0,0.0763888955116272 +2025-07-17 14:08:37.510,0.0,0.0763888955116272 +2025-07-17 14:08:37.619,0.0,0.0763888955116272 +2025-07-17 14:08:37.732,0.0,0.0763888955116272 +2025-07-17 14:08:37.826,0.0,0.0763888955116272 +2025-07-17 14:08:37.935,0.0,0.0763888955116272 +2025-07-17 14:08:38.029,0.0,0.0763888955116272 +2025-07-17 14:08:38.136,0.0,0.0763888955116272 +2025-07-17 14:08:38.229,0.0,0.0763888955116272 +2025-07-17 14:08:38.339,0.0,0.0763888955116272 +2025-07-17 14:08:38.433,0.0,0.0763888955116272 +2025-07-17 14:08:38.541,0.0,0.0763888955116272 +2025-07-17 14:08:38.634,0.0,0.0763888955116272 +2025-07-17 14:08:38.744,0.0,0.0763888955116272 +2025-07-17 14:08:38.838,0.0,0.0763888955116272 +2025-07-17 14:08:38.949,0.0,0.0677083358168602 +2025-07-17 14:08:39.042,0.0,0.0677083358168602 +2025-07-17 14:08:39.152,0.0,0.0677083358168602 +2025-07-17 14:08:39.245,0.0,0.0677083358168602 +2025-07-17 14:08:39.356,0.0,0.0677083358168602 +2025-07-17 14:08:39.448,0.0,0.0677083358168602 +2025-07-17 14:08:39.560,0.0,0.0763888955116272 +2025-07-17 14:08:39.653,0.0,0.0763888955116272 +2025-07-17 14:08:39.762,0.0,0.0763888955116272 +2025-07-17 14:08:39.857,0.0,0.0763888955116272 +2025-07-17 14:08:39.966,0.0,0.0763888955116272 +2025-07-17 14:08:40.059,0.0,0.0763888955116272 +2025-07-17 14:08:40.169,0.0,0.0677083358168602 +2025-07-17 14:08:40.263,0.0,0.0677083358168602 +2025-07-17 14:08:40.372,0.0,0.0677083358168602 +2025-07-17 14:08:40.465,0.0,0.0677083358168602 +2025-07-17 14:08:40.578,0.0,0.0677083358168602 +2025-07-17 14:08:40.667,0.0,0.0677083358168602 +2025-07-17 14:08:40.781,0.0,0.0677083358168602 +2025-07-17 14:08:40.877,0.0,0.0677083358168602 +2025-07-17 14:08:40.985,0.0,0.0677083358168602 +2025-07-17 14:08:41.078,0.0,0.0677083358168602 +2025-07-17 14:08:41.189,0.0,0.0677083358168602 +2025-07-17 14:08:41.282,0.0,0.0677083358168602 +2025-07-17 14:08:41.376,0.0,0.0677083358168602 +2025-07-17 14:08:41.485,0.0,0.0677083358168602 +2025-07-17 14:08:41.595,0.0,0.0677083358168602 +2025-07-17 14:08:41.687,0.0,0.0677083358168602 +2025-07-17 14:08:41.783,0.0,0.0677083358168602 +2025-07-17 14:08:41.893,0.0,0.0677083358168602 +2025-07-17 14:08:41.986,0.0,0.0677083358168602 +2025-07-17 14:08:42.096,0.0,0.0677083358168602 +2025-07-17 14:08:42.189,0.0,0.0677083358168602 +2025-07-17 14:08:42.298,0.0,0.0677083358168602 +2025-07-17 14:08:42.393,0.0,0.0677083358168602 +2025-07-17 14:08:42.503,0.0,0.0677083358168602 +2025-07-17 14:08:42.594,0.0,0.0763888955116272 +2025-07-17 14:08:42.704,0.0,0.0763888955116272 +2025-07-17 14:08:42.798,0.0,0.0763888955116272 +2025-07-17 14:08:42.907,0.0,0.0763888955116272 +2025-07-17 14:08:43.002,0.0,0.0763888955116272 +2025-07-17 14:08:43.112,0.0,0.0763888955116272 +2025-07-17 14:08:43.204,0.0,0.0763888955116272 +2025-07-17 14:08:43.315,0.0,0.0763888955116272 +2025-07-17 14:08:43.410,0.0,0.0763888955116272 +2025-07-17 14:08:43.520,0.0,0.0763888955116272 +2025-07-17 14:08:43.612,0.0,0.0763888955116272 +2025-07-17 14:08:43.727,0.0,0.0763888955116272 +2025-07-17 14:08:43.816,0.0,0.0763888955116272 +2025-07-17 14:08:43.931,0.0,0.0763888955116272 +2025-07-17 14:08:44.020,0.0,0.0763888955116272 +2025-07-17 14:08:44.135,0.0,0.0763888955116272 +2025-07-17 14:08:44.227,0.0,0.0763888955116272 +2025-07-17 14:08:44.338,0.0,0.0763888955116272 +2025-07-17 14:08:44.431,0.0,0.0763888955116272 +2025-07-17 14:08:44.539,0.0,0.0763888955116272 +2025-07-17 14:08:44.633,0.0,0.0763888955116272 +2025-07-17 14:08:44.745,0.0,0.0763888955116272 +2025-07-17 14:08:44.837,0.0,0.0763888955116272 +2025-07-17 14:08:44.948,0.0,0.0763888955116272 +2025-07-17 14:08:45.042,0.0,0.0763888955116272 +2025-07-17 14:08:45.152,0.0,0.0763888955116272 +2025-07-17 14:08:45.243,0.0,0.0763888955116272 +2025-07-17 14:08:45.355,0.0,0.0763888955116272 +2025-07-17 14:08:45.449,0.0,0.0763888955116272 +2025-07-17 14:08:45.560,0.0,0.0763888955116272 +2025-07-17 14:08:45.653,0.0,0.0763888955116272 +2025-07-17 14:08:45.763,0.0,0.0763888955116272 +2025-07-17 14:08:45.855,0.0,0.0763888955116272 +2025-07-17 14:08:45.965,0.0,0.0763888955116272 +2025-07-17 14:08:46.058,0.0,0.0763888955116272 +2025-07-17 14:08:46.160,0.0,0.0763888955116272 +2025-07-17 14:08:46.268,0.0,0.0763888955116272 +2025-07-17 14:08:46.375,0.0,0.0763888955116272 +2025-07-17 14:08:46.497,0.0,0.0763888955116272 +2025-07-17 14:08:46.604,0.0,0.0763888955116272 +2025-07-17 14:08:46.713,0.0,0.0763888955116272 +2025-07-17 14:08:46.803,0.0,0.0763888955116272 +2025-07-17 14:08:46.912,0.0,0.0763888955116272 +2025-07-17 14:08:47.033,0.0,0.0763888955116272 +2025-07-17 14:08:47.141,0.0,0.0763888955116272 +2025-07-17 14:08:47.233,0.0,0.0763888955116272 +2025-07-17 14:08:47.339,0.0,0.0763888955116272 +2025-07-17 14:08:47.478,0.0,0.0677083358168602 +2025-07-17 14:08:47.572,0.0,0.0677083358168602 +2025-07-17 14:08:47.679,0.0,0.0763888955116272 +2025-07-17 14:08:47.787,0.0,0.0763888955116272 +2025-07-17 14:08:47.882,0.0,0.0763888955116272 +2025-07-17 14:08:47.991,0.0,0.0763888955116272 +2025-07-17 14:08:48.099,0.0,0.0763888955116272 +2025-07-17 14:08:48.208,0.0,0.0763888955116272 +2025-07-17 14:08:48.330,0.0,0.0763888955116272 +2025-07-17 14:08:48.437,0.0,0.0763888955116272 +2025-07-17 14:08:48.544,0.0,0.0763888955116272 +2025-07-17 14:08:48.637,0.0,0.0763888955116272 +2025-07-17 14:08:48.744,0.0,0.0763888955116272 +2025-07-17 14:08:48.865,0.0,0.0763888955116272 +2025-07-17 14:08:48.974,0.0,0.0763888955116272 +2025-07-17 14:08:49.067,0.0,0.0763888955116272 +2025-07-17 14:08:49.176,0.0,0.0677083358168602 +2025-07-17 14:08:49.285,0.0,0.0763888955116272 +2025-07-17 14:08:49.407,0.0,0.0763888955116272 +2025-07-17 14:08:49.531,0.0,0.0763888955116272 +2025-07-17 14:08:49.624,0.0,0.0763888955116272 +2025-07-17 14:08:49.732,0.0,0.0763888955116272 +2025-07-17 14:08:49.824,0.0,0.0763888955116272 +2025-07-17 14:08:49.930,0.0,0.0763888955116272 +2025-07-17 14:08:50.055,0.0,0.0763888955116272 +2025-07-17 14:08:50.164,0.0,0.0763888955116272 +2025-07-17 14:08:50.272,0.0,0.0763888955116272 +2025-07-17 14:08:50.380,0.0,0.0763888955116272 +2025-07-17 14:08:50.472,0.0,0.0763888955116272 +2025-07-17 14:08:50.594,0.0,0.0763888955116272 +2025-07-17 14:08:50.701,0.0,0.0763888955116272 +2025-07-17 14:08:50.809,0.0,0.0763888955116272 +2025-07-17 14:08:50.915,0.0,0.0763888955116272 +2025-07-17 14:08:51.006,0.0,0.0763888955116272 +2025-07-17 14:08:51.114,0.0,0.0763888955116272 +2025-07-17 14:08:51.241,0.0,0.0763888955116272 +2025-07-17 14:08:51.348,0.0,0.0763888955116272 +2025-07-17 14:08:51.453,0.0,0.0763888955116272 +2025-07-17 14:08:51.561,0.0,0.0763888955116272 +2025-07-17 14:08:51.654,0.0,0.0763888955116272 +2025-07-17 14:08:51.764,0.0,0.0677083358168602 +2025-07-17 14:08:51.871,0.0,0.0677083358168602 +2025-07-17 14:08:51.997,0.0,0.0763888955116272 +2025-07-17 14:08:52.102,0.0,0.0763888955116272 +2025-07-17 14:08:52.193,0.0,0.0763888955116272 +2025-07-17 14:08:52.300,0.0,0.0763888955116272 +2025-07-17 14:08:52.408,0.0,0.0763888955116272 +2025-07-17 14:08:52.532,0.0,0.0763888955116272 +2025-07-17 14:08:52.639,0.0,0.0763888955116272 +2025-07-17 14:08:52.747,0.0,0.0763888955116272 +2025-07-17 14:08:52.840,0.0,0.0763888955116272 +2025-07-17 14:08:52.948,0.0,0.0763888955116272 +2025-07-17 14:08:53.071,0.0,0.0763888955116272 +2025-07-17 14:08:53.176,0.0,0.0763888955116272 +2025-07-17 14:08:53.268,0.0,0.0763888955116272 +2025-07-17 14:08:53.394,0.0,0.0763888955116272 +2025-07-17 14:08:53.486,0.0,0.0763888955116272 +2025-07-17 14:08:53.594,0.0,0.0763888955116272 +2025-07-17 14:08:53.704,0.0,0.0677083358168602 +2025-07-17 14:08:53.799,0.0,0.0763888955116272 +2025-07-17 14:08:53.909,0.0,0.0763888955116272 +2025-07-17 14:08:54.003,0.0,0.0763888955116272 +2025-07-17 14:08:54.097,0.0,0.0763888955116272 +2025-07-17 14:08:54.206,0.0,0.0763888955116272 +2025-07-17 14:08:54.299,0.0,0.0763888955116272 +2025-07-17 14:08:54.409,0.0,0.0763888955116272 +2025-07-17 14:08:54.500,0.0,0.0763888955116272 +2025-07-17 14:08:54.613,0.0,0.0763888955116272 +2025-07-17 14:08:54.706,0.0,0.0763888955116272 +2025-07-17 14:08:54.817,0.0,0.0763888955116272 +2025-07-17 14:08:54.909,0.0,0.0763888955116272 +2025-07-17 14:08:55.020,0.0,0.0763888955116272 +2025-07-17 14:08:55.114,0.0,0.0763888955116272 +2025-07-17 14:08:55.229,0.0,0.0763888955116272 +2025-07-17 14:08:55.319,0.0,0.0763888955116272 +2025-07-17 14:08:55.432,0.0,0.0763888955116272 +2025-07-17 14:08:55.522,0.0,0.0763888955116272 +2025-07-17 14:08:55.635,0.0,0.0763888955116272 +2025-07-17 14:08:55.728,0.0,0.0763888955116272 +2025-07-17 14:08:55.840,0.0,0.0763888955116272 +2025-07-17 14:08:55.933,0.0,0.0763888955116272 +2025-07-17 14:08:56.042,0.0,0.0763888955116272 +2025-07-17 14:08:56.135,0.0,0.0763888955116272 +2025-07-17 14:08:56.244,0.0,0.0763888955116272 +2025-07-17 14:08:56.338,0.0,0.0763888955116272 +2025-07-17 14:08:56.450,0.0,0.0763888955116272 +2025-07-17 14:08:56.543,0.0,0.0763888955116272 +2025-07-17 14:08:56.652,0.0,0.0763888955116272 +2025-07-17 14:08:56.746,0.0,0.0763888955116272 +2025-07-17 14:08:56.856,0.0,0.0763888955116272 +2025-07-17 14:08:56.950,0.0,0.0677083358168602 +2025-07-17 14:08:57.060,0.0,0.0677083358168602 +2025-07-17 14:08:57.152,0.0,0.0677083358168602 +2025-07-17 14:08:57.248,0.0,0.0677083358168602 +2025-07-17 14:08:57.354,0.0,0.0677083358168602 +2025-07-17 14:08:57.450,0.0,0.0677083358168602 +2025-07-17 14:08:57.560,0.0,0.0763888955116272 +2025-07-17 14:08:57.651,0.0,0.0763888955116272 +2025-07-17 14:08:57.761,0.0,0.0763888955116272 +2025-07-17 14:08:57.855,0.0,0.0763888955116272 +2025-07-17 14:08:57.966,0.0,0.0763888955116272 +2025-07-17 14:08:58.060,0.0,0.0763888955116272 +2025-07-17 14:08:58.171,0.0,0.0763888955116272 +2025-07-17 14:08:58.264,0.0,0.0763888955116272 +2025-07-17 14:08:58.377,0.0,0.0763888955116272 +2025-07-17 14:08:58.465,0.0,0.0763888955116272 +2025-07-17 14:08:58.579,0.0,0.0763888955116272 +2025-07-17 14:08:58.669,0.0,0.0763888955116272 +2025-07-17 14:08:58.783,0.0,0.0763888955116272 +2025-07-17 14:08:58.876,0.0,0.0763888955116272 +2025-07-17 14:08:58.986,0.0,0.0763888955116272 +2025-07-17 14:08:59.078,0.0,0.0763888955116272 +2025-07-17 14:08:59.190,0.0,0.0763888955116272 +2025-07-17 14:08:59.281,0.0,0.0763888955116272 +2025-07-17 14:08:59.395,0.0,0.0763888955116272 +2025-07-17 14:08:59.487,0.0,0.0763888955116272 +2025-07-17 14:08:59.597,0.0,0.0763888955116272 +2025-07-17 14:08:59.691,0.0,0.0763888955116272 +2025-07-17 14:08:59.799,0.0,0.0763888955116272 +2025-07-17 14:08:59.894,0.0,0.0763888955116272 +2025-07-17 14:09:00.006,0.0,0.0763888955116272 +2025-07-17 14:09:00.097,0.0,0.0763888955116272 +2025-07-17 14:09:00.208,0.0,0.0763888955116272 +2025-07-17 14:09:00.299,0.0,0.0677083358168602 +2025-07-17 14:09:00.410,0.0,0.0763888955116272 +2025-07-17 14:09:00.502,0.0,0.0763888955116272 +2025-07-17 14:09:00.614,0.0,0.0763888955116272 +2025-07-17 14:09:00.707,0.0,0.0763888955116272 +2025-07-17 14:09:00.815,0.0,0.0763888955116272 +2025-07-17 14:09:00.910,0.0,0.0763888955116272 +2025-07-17 14:09:01.020,0.0,0.0763888955116272 +2025-07-17 14:09:01.113,0.0,0.0763888955116272 +2025-07-17 14:09:01.227,0.0,0.0763888955116272 +2025-07-17 14:09:01.317,0.0,0.0763888955116272 +2025-07-17 14:09:01.430,0.0,0.0763888955116272 +2025-07-17 14:09:01.519,0.0,0.0763888955116272 +2025-07-17 14:09:01.634,0.0,0.0763888955116272 +2025-07-17 14:09:01.727,0.0,0.0763888955116272 +2025-07-17 14:09:01.837,0.0,0.0763888955116272 +2025-07-17 14:09:01.930,0.0,0.0763888955116272 +2025-07-17 14:09:02.039,0.0,0.0763888955116272 +2025-07-17 14:09:02.135,0.0,0.0763888955116272 +2025-07-17 14:09:02.244,0.0,0.0763888955116272 +2025-07-17 14:09:02.338,0.0,0.0763888955116272 +2025-07-17 14:09:02.432,0.0,0.0763888955116272 +2025-07-17 14:09:02.542,0.0,0.0763888955116272 +2025-07-17 14:09:02.635,0.0,0.0763888955116272 +2025-07-17 14:09:02.746,0.0,0.0763888955116272 +2025-07-17 14:09:02.854,0.0,0.0763888955116272 +2025-07-17 14:09:02.949,0.0,0.0763888955116272 +2025-07-17 14:09:03.059,0.0,0.0677083358168602 +2025-07-17 14:09:03.151,0.0,0.0677083358168602 +2025-07-17 14:09:03.260,0.0,0.0677083358168602 +2025-07-17 14:09:03.353,0.0,0.0677083358168602 +2025-07-17 14:09:03.446,0.0,0.0677083358168602 +2025-07-17 14:09:03.556,0.0,0.0677083358168602 +2025-07-17 14:09:03.651,0.0,0.0763888955116272 +2025-07-17 14:09:03.760,0.0,0.0763888955116272 +2025-07-17 14:09:03.855,0.0,0.0763888955116272 +2025-07-17 14:09:03.965,0.0,0.0763888955116272 +2025-07-17 14:09:04.057,0.0,0.0763888955116272 +2025-07-17 14:09:04.167,0.0,0.0763888955116272 +2025-07-17 14:09:04.262,0.0,0.0677083358168602 +2025-07-17 14:09:04.372,0.0,0.0677083358168602 +2025-07-17 14:09:04.464,0.0,0.0677083358168602 +2025-07-17 14:09:04.577,0.0,0.0677083358168602 +2025-07-17 14:09:04.665,0.0,0.0677083358168602 +2025-07-17 14:09:04.779,0.0,0.0677083358168602 +2025-07-17 14:09:04.869,0.0,0.0763888955116272 +2025-07-17 14:09:04.983,0.0,0.0763888955116272 +2025-07-17 14:09:05.093,0.0,0.0763888955116272 +2025-07-17 14:09:05.187,0.0,0.0763888955116272 +2025-07-17 14:09:05.296,0.0,0.0763888955116272 +2025-07-17 14:09:05.390,0.0,0.0763888955116272 +2025-07-17 14:09:05.485,0.0,0.0677083358168602 +2025-07-17 14:09:05.610,0.0,0.0677083358168602 +2025-07-17 14:09:05.703,0.0,0.0677083358168602 +2025-07-17 14:09:05.796,0.0,0.0677083358168602 +2025-07-17 14:09:05.907,0.0,0.0677083358168602 +2025-07-17 14:09:06.000,0.0,0.0677083358168602 +2025-07-17 14:09:06.093,0.0,0.0677083358168602 +2025-07-17 14:09:06.203,0.0,0.0677083358168602 +2025-07-17 14:09:06.297,0.0,0.0677083358168602 +2025-07-17 14:09:06.406,0.0,0.0677083358168602 +2025-07-17 14:09:06.499,0.0,0.0677083358168602 +2025-07-17 14:09:06.609,0.0,0.0677083358168602 +2025-07-17 14:09:06.703,0.0,0.0677083358168602 +2025-07-17 14:09:06.814,0.0,0.0677083358168602 +2025-07-17 14:09:06.907,0.0,0.0677083358168602 +2025-07-17 14:09:07.017,0.0,0.0677083358168602 +2025-07-17 14:09:07.110,0.0,0.0677083358168602 +2025-07-17 14:09:07.222,0.0,0.0763888955116272 +2025-07-17 14:09:07.315,0.0,0.0763888955116272 +2025-07-17 14:09:07.426,0.0,0.0763888955116272 +2025-07-17 14:09:07.516,0.0,0.0763888955116272 +2025-07-17 14:09:07.629,0.0,0.0763888955116272 +2025-07-17 14:09:07.719,0.0,0.0763888955116272 +2025-07-17 14:09:07.834,0.0,0.0677083358168602 +2025-07-17 14:09:07.927,0.0,0.0677083358168602 +2025-07-17 14:09:08.038,0.0,0.0677083358168602 +2025-07-17 14:09:08.130,0.0,0.0677083358168602 +2025-07-17 14:09:08.242,0.0,0.0677083358168602 +2025-07-17 14:09:08.335,0.0,0.0677083358168602 +2025-07-17 14:09:08.447,0.0,0.0763888955116272 +2025-07-17 14:09:08.539,0.0,0.0763888955116272 +2025-07-17 14:09:08.649,0.0,0.0763888955116272 +2025-07-17 14:09:08.743,0.0,0.0763888955116272 +2025-07-17 14:09:08.852,0.0,0.0763888955116272 +2025-07-17 14:09:08.944,0.0,0.0763888955116272 +2025-07-17 14:09:09.055,0.0,0.0677083358168602 +2025-07-17 14:09:09.149,0.0,0.0763888955116272 +2025-07-17 14:09:09.258,0.0,0.0763888955116272 +2025-07-17 14:09:09.353,0.0,0.0763888955116272 +2025-07-17 14:09:09.461,0.0,0.0763888955116272 +2025-07-17 14:09:09.557,0.0,0.0763888955116272 +2025-07-17 14:09:09.651,0.0,0.0677083358168602 +2025-07-17 14:09:09.759,0.0,0.0677083358168602 +2025-07-17 14:09:09.853,0.0,0.0677083358168602 +2025-07-17 14:09:09.965,0.0,0.0677083358168602 +2025-07-17 14:09:10.078,0.0,0.0677083358168602 +2025-07-17 14:09:10.167,0.0,0.0677083358168602 +2025-07-17 14:09:10.261,0.0,0.0677083358168602 +2025-07-17 14:09:10.370,0.0,0.0677083358168602 +2025-07-17 14:09:10.483,0.0,0.0677083358168602 +2025-07-17 14:09:10.576,0.0,0.0677083358168602 +2025-07-17 14:09:10.666,0.0,0.0677083358168602 +2025-07-17 14:09:10.779,0.0,0.0677083358168602 +2025-07-17 14:09:10.871,0.0,0.0763888955116272 +2025-07-17 14:09:10.984,0.0,0.0763888955116272 +2025-07-17 14:09:11.076,0.0,0.0763888955116272 +2025-07-17 14:09:11.188,0.0,0.0763888955116272 +2025-07-17 14:09:11.281,0.0,0.0763888955116272 +2025-07-17 14:09:11.393,0.0,0.0677083358168602 +2025-07-17 14:09:11.487,0.0,0.0763888955116272 +2025-07-17 14:09:11.596,0.0,0.0763888955116272 +2025-07-17 14:09:11.688,0.0,0.0763888955116272 +2025-07-17 14:09:11.798,0.0,0.0763888955116272 +2025-07-17 14:09:11.891,0.0,0.0763888955116272 +2025-07-17 14:09:12.002,0.0,0.0763888955116272 +2025-07-17 14:09:12.095,0.0,0.0763888955116272 +2025-07-17 14:09:12.205,0.0,0.0763888955116272 +2025-07-17 14:09:12.298,0.0,0.0763888955116272 +2025-07-17 14:09:12.410,0.0,0.0763888955116272 +2025-07-17 14:09:12.501,0.0,0.0763888955116272 +2025-07-17 14:09:12.612,0.0,0.0677083358168602 +2025-07-17 14:09:12.707,0.0,0.0677083358168602 +2025-07-17 14:09:12.816,0.0,0.0677083358168602 +2025-07-17 14:09:12.916,0.0,0.0677083358168602 +2025-07-17 14:09:13.012,0.0,0.0677083358168602 +2025-07-17 14:09:13.126,0.0,0.0677083358168602 +2025-07-17 14:09:13.217,0.0,0.0763888955116272 +2025-07-17 14:09:13.312,0.0,0.0763888955116272 +2025-07-17 14:09:13.442,0.0,0.0763888955116272 +2025-07-17 14:09:13.516,0.0,0.0763888955116272 +2025-07-17 14:09:13.632,0.0,0.0763888955116272 +2025-07-17 14:09:13.725,0.0,0.0763888955116272 +2025-07-17 14:09:13.840,0.0,0.0763888955116272 +2025-07-17 14:09:13.933,0.0,0.0763888955116272 +2025-07-17 14:09:14.030,0.0,0.0763888955116272 +2025-07-17 14:09:14.146,0.0,0.0763888955116272 +2025-07-17 14:09:14.240,0.0,0.0763888955116272 +2025-07-17 14:09:14.339,0.0,0.0763888955116272 +2025-07-17 14:09:14.439,0.0,0.0763888955116272 +2025-07-17 14:09:14.548,0.0,0.0763888955116272 +2025-07-17 14:09:14.639,0.0,0.0763888955116272 +2025-07-17 14:09:14.753,0.0,0.0763888955116272 +2025-07-17 14:09:14.846,0.0,0.0677083358168602 +2025-07-17 14:09:14.957,0.0,0.0763888955116272 +2025-07-17 14:09:15.055,0.0,0.0763888955116272 +2025-07-17 14:09:15.149,0.0,0.0763888955116272 +2025-07-17 14:09:15.246,0.0,0.0763888955116272 +2025-07-17 14:09:15.359,0.0,0.0763888955116272 +2025-07-17 14:09:15.453,0.0,0.0763888955116272 +2025-07-17 14:09:15.565,0.0,0.0763888955116272 +2025-07-17 14:09:15.659,0.0,0.0763888955116272 +2025-07-17 14:09:15.757,0.0,0.0763888955116272 +2025-07-17 14:09:15.872,0.0,0.0763888955116272 +2025-07-17 14:09:15.965,0.0,0.0763888955116272 +2025-07-17 14:09:16.058,0.0,0.0763888955116272 +2025-07-17 14:09:16.172,0.0,0.0763888955116272 +2025-07-17 14:09:16.273,0.0,0.0763888955116272 +2025-07-17 14:09:16.365,0.0,0.0763888955116272 +2025-07-17 14:09:16.481,0.0,0.0763888955116272 +2025-07-17 14:09:16.583,0.0,0.0763888955116272 +2025-07-17 14:09:16.691,0.0,0.0763888955116272 +2025-07-17 14:09:16.789,0.0,0.0763888955116272 +2025-07-17 14:09:16.889,0.0,0.0763888955116272 +2025-07-17 14:09:16.987,0.0,0.0763888955116272 +2025-07-17 14:09:17.099,0.0,0.0763888955116272 +2025-07-17 14:09:17.199,0.0,0.0763888955116272 +2025-07-17 14:09:17.313,0.0,0.0763888955116272 +2025-07-17 14:09:17.391,0.0,0.0763888955116272 +2025-07-17 14:09:17.501,0.0,0.0763888955116272 +2025-07-17 14:09:17.595,0.0,0.0763888955116272 +2025-07-17 14:09:17.708,0.0,0.0763888955116272 +2025-07-17 14:09:17.802,0.0,0.0677083358168602 +2025-07-17 14:09:17.895,0.0,0.0763888955116272 +2025-07-17 14:09:18.011,0.0,0.0763888955116272 +2025-07-17 14:09:18.107,0.0,0.0763888955116272 +2025-07-17 14:09:18.206,0.0,0.0763888955116272 +2025-07-17 14:09:18.305,0.0,0.0763888955116272 +2025-07-17 14:09:18.401,0.0,0.0763888955116272 +2025-07-17 14:09:18.514,0.0,0.0763888955116272 +2025-07-17 14:09:18.608,0.0,0.0763888955116272 +2025-07-17 14:09:18.721,0.0,0.0763888955116272 +2025-07-17 14:09:18.819,0.0,0.0763888955116272 +2025-07-17 14:09:18.914,0.0,0.0763888955116272 +2025-07-17 14:09:19.010,0.0,0.0763888955116272 +2025-07-17 14:09:19.123,0.0,0.0763888955116272 +2025-07-17 14:09:19.221,0.0,0.0763888955116272 +2025-07-17 14:09:19.321,0.0,0.0763888955116272 +2025-07-17 14:09:19.419,0.0,0.0763888955116272 +2025-07-17 14:09:19.540,0.0,0.0763888955116272 +2025-07-17 14:09:19.639,0.0,0.0763888955116272 +2025-07-17 14:09:19.737,0.0,0.0763888955116272 +2025-07-17 14:09:19.836,0.0,0.0763888955116272 +2025-07-17 14:09:19.934,0.0,0.0763888955116272 +2025-07-17 14:09:20.034,0.0,0.0763888955116272 +2025-07-17 14:09:20.148,0.0,0.0763888955116272 +2025-07-17 14:09:20.239,0.0,0.0763888955116272 +2025-07-17 14:09:20.334,0.0,0.0763888955116272 +2025-07-17 14:09:20.448,0.0,0.0763888955116272 +2025-07-17 14:09:20.538,0.0,0.0763888955116272 +2025-07-17 14:09:20.648,0.0,0.0763888955116272 +2025-07-17 14:09:20.742,0.0,0.0763888955116272 +2025-07-17 14:09:20.851,0.0,0.0763888955116272 +2025-07-17 14:09:20.945,0.0,0.0763888955116272 +2025-07-17 14:09:21.056,0.0,0.0677083358168602 +2025-07-17 14:09:21.150,0.0,0.0677083358168602 +2025-07-17 14:09:21.257,0.0,0.0677083358168602 +2025-07-17 14:09:21.353,0.0,0.0677083358168602 +2025-07-17 14:09:21.462,0.0,0.0677083358168602 +2025-07-17 14:09:21.553,0.0,0.0677083358168602 +2025-07-17 14:09:21.651,0.0,0.0763888955116272 +2025-07-17 14:09:21.758,0.0,0.0763888955116272 +2025-07-17 14:09:21.852,0.0,0.0763888955116272 +2025-07-17 14:09:21.961,0.0,0.0763888955116272 +2025-07-17 14:09:22.056,0.0,0.0763888955116272 +2025-07-17 14:09:22.166,0.0,0.0763888955116272 +2025-07-17 14:09:22.260,0.0,0.0677083358168602 +2025-07-17 14:09:22.369,0.0,0.0677083358168602 +2025-07-17 14:09:22.463,0.0,0.0677083358168602 +2025-07-17 14:09:22.576,0.0,0.0677083358168602 +2025-07-17 14:09:22.665,0.0,0.0677083358168602 +2025-07-17 14:09:22.777,0.0,0.0677083358168602 +2025-07-17 14:09:22.869,0.0,0.0763888955116272 +2025-07-17 14:09:22.983,0.0,0.0763888955116272 +2025-07-17 14:09:23.071,0.0,0.0763888955116272 +2025-07-17 14:09:23.185,0.0,0.0763888955116272 +2025-07-17 14:09:23.295,0.0,0.0763888955116272 +2025-07-17 14:09:23.390,0.0,0.0763888955116272 +2025-07-17 14:09:23.483,0.0,0.0763888955116272 +2025-07-17 14:09:23.594,0.0,0.0763888955116272 +2025-07-17 14:09:23.686,0.0,0.0763888955116272 +2025-07-17 14:09:23.796,0.0,0.0763888955116272 +2025-07-17 14:09:23.907,0.0,0.0763888955116272 +2025-07-17 14:09:23.999,0.0,0.0763888955116272 +2025-07-17 14:09:24.094,0.0,0.0763888955116272 +2025-07-17 14:09:24.202,0.0,0.0763888955116272 +2025-07-17 14:09:24.296,0.0,0.0763888955116272 +2025-07-17 14:09:24.404,0.0,0.0763888955116272 +2025-07-17 14:09:24.496,0.0,0.0763888955116272 +2025-07-17 14:09:24.608,0.0,0.0763888955116272 +2025-07-17 14:09:24.703,0.0,0.0763888955116272 +2025-07-17 14:09:24.811,0.0,0.0763888955116272 +2025-07-17 14:09:24.906,0.0,0.0763888955116272 +2025-07-17 14:09:25.017,0.0,0.0763888955116272 +2025-07-17 14:09:25.109,0.0,0.0763888955116272 +2025-07-17 14:09:25.220,0.0,0.0763888955116272 +2025-07-17 14:09:25.314,0.0,0.0763888955116272 +2025-07-17 14:09:25.426,0.0,0.0763888955116272 +2025-07-17 14:09:25.518,0.0,0.0763888955116272 +2025-07-17 14:09:25.628,0.0,0.0763888955116272 +2025-07-17 14:09:25.719,0.0,0.0763888955116272 +2025-07-17 14:09:25.834,0.0,0.0763888955116272 +2025-07-17 14:09:25.921,0.0,0.0763888955116272 +2025-07-17 14:09:26.035,0.0,0.0763888955116272 +2025-07-17 14:09:26.129,0.0,0.0763888955116272 +2025-07-17 14:09:26.238,0.0,0.0763888955116272 +2025-07-17 14:09:26.332,0.0,0.0763888955116272 +2025-07-17 14:09:26.443,0.0,0.0763888955116272 +2025-07-17 14:09:26.535,0.0,0.0763888955116272 +2025-07-17 14:09:26.647,0.0,0.0763888955116272 +2025-07-17 14:09:26.741,0.0,0.0763888955116272 +2025-07-17 14:09:26.849,0.0,0.0763888955116272 +2025-07-17 14:09:26.941,0.0,0.0763888955116272 +2025-07-17 14:09:27.054,0.0,0.0763888955116272 +2025-07-17 14:09:27.144,0.0,0.0763888955116272 +2025-07-17 14:09:27.256,0.0,0.0763888955116272 +2025-07-17 14:09:27.348,0.0,0.0763888955116272 +2025-07-17 14:09:27.458,0.0,0.0763888955116272 +2025-07-17 14:09:27.550,0.0,0.0763888955116272 +2025-07-17 14:09:27.663,0.0,0.0677083358168602 +2025-07-17 14:09:27.755,0.0,0.0677083358168602 +2025-07-17 14:09:27.865,0.0,0.0677083358168602 +2025-07-17 14:09:27.960,0.0,0.0677083358168602 +2025-07-17 14:09:28.069,0.0,0.0677083358168602 +2025-07-17 14:09:28.162,0.0,0.0677083358168602 +2025-07-17 14:09:28.277,0.0,0.0763888955116272 +2025-07-17 14:09:28.365,0.0,0.0763888955116272 +2025-07-17 14:09:28.479,0.0,0.0763888955116272 +2025-07-17 14:09:28.568,0.0,0.0763888955116272 +2025-07-17 14:09:28.681,0.0,0.0763888955116272 +2025-07-17 14:09:28.768,0.0,0.0763888955116272 +2025-07-17 14:09:28.884,0.0,0.0763888955116272 +2025-07-17 14:09:28.976,0.0,0.0677083358168602 +2025-07-17 14:09:29.087,0.0,0.0677083358168602 +2025-07-17 14:09:29.180,0.0,0.0677083358168602 +2025-07-17 14:09:29.292,0.0,0.0677083358168602 +2025-07-17 14:09:29.384,0.0,0.0677083358168602 +2025-07-17 14:09:29.496,0.0,0.0763888955116272 +2025-07-17 14:09:29.588,0.0,0.0763888955116272 +2025-07-17 14:09:29.698,0.0,0.0763888955116272 +2025-07-17 14:09:29.792,0.0,0.0763888955116272 +2025-07-17 14:09:29.901,0.0,0.0763888955116272 +2025-07-17 14:09:29.993,0.0,0.0763888955116272 +2025-07-17 14:09:30.106,0.0,0.0763888955116272 +2025-07-17 14:09:30.197,0.0,0.0763888955116272 +2025-07-17 14:09:30.307,0.0,0.0763888955116272 +2025-07-17 14:09:30.401,0.0,0.0763888955116272 +2025-07-17 14:09:30.511,0.0,0.0763888955116272 +2025-07-17 14:09:30.604,0.0,0.0677083358168602 +2025-07-17 14:09:30.715,0.0,0.0763888955116272 +2025-07-17 14:09:30.809,0.0,0.0763888955116272 +2025-07-17 14:09:30.918,0.0,0.0763888955116272 +2025-07-17 14:09:31.012,0.0,0.0763888955116272 +2025-07-17 14:09:31.121,0.0,0.0763888955116272 +2025-07-17 14:09:31.215,0.0,0.0763888955116272 +2025-07-17 14:09:31.330,0.0,0.0763888955116272 +2025-07-17 14:09:31.418,0.0,0.0763888955116272 +2025-07-17 14:09:31.533,0.0,0.0763888955116272 +2025-07-17 14:09:31.621,0.0,0.0763888955116272 +2025-07-17 14:09:31.735,0.0,0.0763888955116272 +2025-07-17 14:09:31.829,0.0,0.0763888955116272 +2025-07-17 14:09:31.939,0.0,0.0677083358168602 +2025-07-17 14:09:32.032,0.0,0.0677083358168602 +2025-07-17 14:09:32.141,0.0,0.0677083358168602 +2025-07-17 14:09:32.235,0.0,0.0677083358168602 +2025-07-17 14:09:32.345,0.0,0.0677083358168602 +2025-07-17 14:09:32.440,0.0,0.0677083358168602 +2025-07-17 14:09:32.534,0.0,0.0763888955116272 +2025-07-17 14:09:32.644,0.0,0.0763888955116272 +2025-07-17 14:09:32.737,0.0,0.0763888955116272 +2025-07-17 14:09:32.846,0.0,0.0763888955116272 +2025-07-17 14:09:32.956,0.0,0.0763888955116272 +2025-07-17 14:09:33.049,0.0,0.0763888955116272 +2025-07-17 14:09:33.142,0.0,0.0763888955116272 +2025-07-17 14:09:33.252,0.0,0.0763888955116272 +2025-07-17 14:09:33.346,0.0,0.0763888955116272 +2025-07-17 14:09:33.455,0.0,0.0763888955116272 +2025-07-17 14:09:33.548,0.0,0.0763888955116272 +2025-07-17 14:09:33.660,0.0,0.0763888955116272 +2025-07-17 14:09:33.752,0.0,0.0763888955116272 +2025-07-17 14:09:33.862,0.0,0.0763888955116272 +2025-07-17 14:09:33.956,0.0,0.0763888955116272 +2025-07-17 14:09:34.068,0.0,0.0763888955116272 +2025-07-17 14:09:34.160,0.0,0.0763888955116272 +2025-07-17 14:09:34.271,0.0,0.0763888955116272 +2025-07-17 14:09:34.363,0.0,0.0763888955116272 +2025-07-17 14:09:34.471,0.0,0.0763888955116272 +2025-07-17 14:09:34.565,0.0,0.0763888955116272 +2025-07-17 14:09:34.679,0.0,0.0763888955116272 +2025-07-17 14:09:34.787,0.0,0.0763888955116272 +2025-07-17 14:09:34.883,0.0,0.0677083358168602 +2025-07-17 14:09:34.972,0.0,0.0677083358168602 +2025-07-17 14:09:35.085,0.0,0.0677083358168602 +2025-07-17 14:09:35.179,0.0,0.0677083358168602 +2025-07-17 14:09:35.288,0.0,0.0677083358168602 +2025-07-17 14:09:35.383,0.0,0.0677083358168602 +2025-07-17 14:09:35.494,0.0,0.0763888955116272 +2025-07-17 14:09:35.586,0.0,0.0763888955116272 +2025-07-17 14:09:35.696,0.0,0.0763888955116272 +2025-07-17 14:09:35.791,0.0,0.0763888955116272 +2025-07-17 14:09:35.899,0.0,0.0763888955116272 +2025-07-17 14:09:36.009,0.0,0.0763888955116272 +2025-07-17 14:09:36.104,0.0,0.0763888955116272 +2025-07-17 14:09:36.194,0.0,0.0763888955116272 +2025-07-17 14:09:36.306,0.0,0.0763888955116272 +2025-07-17 14:09:36.398,0.0,0.0763888955116272 +2025-07-17 14:09:36.508,0.0,0.0763888955116272 +2025-07-17 14:09:36.601,0.0,0.0763888955116272 +2025-07-17 14:09:36.713,0.0,0.0763888955116272 +2025-07-17 14:09:36.806,0.0,0.0763888955116272 +2025-07-17 14:09:36.915,0.0,0.0763888955116272 +2025-07-17 14:09:37.010,0.0,0.0763888955116272 +2025-07-17 14:09:37.119,0.0,0.0763888955116272 +2025-07-17 14:09:37.235,0.0,0.0763888955116272 +2025-07-17 14:09:37.326,0.0,0.0677083358168602 +2025-07-17 14:09:37.416,0.0,0.0677083358168602 +2025-07-17 14:09:37.529,0.0,0.0677083358168602 +2025-07-17 14:09:37.621,0.0,0.0677083358168602 +2025-07-17 14:09:37.733,0.0,0.0677083358168602 +2025-07-17 14:09:37.826,0.0,0.0677083358168602 +2025-07-17 14:09:37.938,0.0,0.0763888955116272 +2025-07-17 14:09:38.031,0.0,0.0763888955116272 +2025-07-17 14:09:38.142,0.0,0.0677083358168602 +2025-07-17 14:09:38.234,0.0,0.0677083358168602 +2025-07-17 14:09:38.344,0.0,0.0763888955116272 +2025-07-17 14:09:38.439,0.0,0.0763888955116272 +2025-07-17 14:09:38.549,0.0,0.0763888955116272 +2025-07-17 14:09:38.640,0.0,0.0763888955116272 +2025-07-17 14:09:38.750,0.0,0.0763888955116272 +2025-07-17 14:09:38.844,0.0,0.0763888955116272 +2025-07-17 14:09:38.952,0.0,0.0763888955116272 +2025-07-17 14:09:39.049,0.0,0.0763888955116272 +2025-07-17 14:09:39.158,0.0,0.0677083358168602 +2025-07-17 14:09:39.250,0.0,0.0677083358168602 +2025-07-17 14:09:39.361,0.0,0.0677083358168602 +2025-07-17 14:09:39.455,0.0,0.0677083358168602 +2025-07-17 14:09:39.564,0.0,0.0677083358168602 +2025-07-17 14:09:39.659,0.0,0.0677083358168602 +2025-07-17 14:09:39.768,0.0,0.0763888955116272 +2025-07-17 14:09:39.863,0.0,0.0763888955116272 +2025-07-17 14:09:39.972,0.0,0.0763888955116272 +2025-07-17 14:09:40.064,0.0,0.0763888955116272 +2025-07-17 14:09:40.176,0.0,0.0763888955116272 +2025-07-17 14:09:40.267,0.0,0.0763888955116272 +2025-07-17 14:09:40.380,0.0,0.0763888955116272 +2025-07-17 14:09:40.469,0.0,0.0763888955116272 +2025-07-17 14:09:40.585,0.0,0.0763888955116272 +2025-07-17 14:09:40.677,0.0,0.0763888955116272 +2025-07-17 14:09:40.787,0.0,0.0763888955116272 +2025-07-17 14:09:40.881,0.0,0.0763888955116272 +2025-07-17 14:09:40.992,0.0,0.0763888955116272 +2025-07-17 14:09:41.083,0.0,0.0763888955116272 +2025-07-17 14:09:41.195,0.0,0.0763888955116272 +2025-07-17 14:09:41.286,0.0,0.0763888955116272 +2025-07-17 14:09:41.396,0.0,0.0763888955116272 +2025-07-17 14:09:41.492,0.0,0.0677083358168602 +2025-07-17 14:09:41.602,0.0,0.0677083358168602 +2025-07-17 14:09:41.694,0.0,0.0677083358168602 +2025-07-17 14:09:41.804,0.0,0.0677083358168602 +2025-07-17 14:09:41.895,0.0,0.0677083358168602 +2025-07-17 14:09:42.006,0.0,0.0677083358168602 +2025-07-17 14:09:42.101,0.0,0.0763888955116272 +2025-07-17 14:09:42.210,0.0,0.0763888955116272 +2025-07-17 14:09:42.303,0.0,0.0763888955116272 +2025-07-17 14:09:42.397,0.0,0.0677083358168602 +2025-07-17 14:09:42.507,0.0,0.0763888955116272 +2025-07-17 14:09:42.599,0.0,0.0763888955116272 +2025-07-17 14:09:42.711,0.0,0.0763888955116272 +2025-07-17 14:09:42.805,0.0,0.0763888955116272 +2025-07-17 14:09:42.914,0.0,0.0763888955116272 +2025-07-17 14:09:43.007,0.0,0.0763888955116272 +2025-07-17 14:09:43.117,0.0,0.0763888955116272 +2025-07-17 14:09:43.211,0.0,0.0763888955116272 +2025-07-17 14:09:43.321,0.0,0.0677083358168602 +2025-07-17 14:09:43.414,0.0,0.0763888955116272 +2025-07-17 14:09:43.528,0.0,0.0763888955116272 +2025-07-17 14:09:43.617,0.0,0.0763888955116272 +2025-07-17 14:09:43.730,0.0,0.0763888955116272 +2025-07-17 14:09:43.820,0.0,0.0763888955116272 +2025-07-17 14:09:43.935,0.0,0.0763888955116272 +2025-07-17 14:09:44.028,0.0,0.0763888955116272 +2025-07-17 14:09:44.138,0.0,0.0763888955116272 +2025-07-17 14:09:44.248,0.0,0.0763888955116272 +2025-07-17 14:09:44.340,0.0,0.0763888955116272 +2025-07-17 14:09:44.435,0.0,0.0763888955116272 +2025-07-17 14:09:44.545,0.0,0.0763888955116272 +2025-07-17 14:09:44.639,0.0,0.0763888955116272 +2025-07-17 14:09:44.747,0.0,0.0763888955116272 +2025-07-17 14:09:44.840,0.0,0.0677083358168602 +2025-07-17 14:09:44.950,0.0,0.0763888955116272 +2025-07-17 14:09:45.045,0.0,0.0763888955116272 +2025-07-17 14:09:45.155,0.0,0.0763888955116272 +2025-07-17 14:09:45.247,0.0,0.0763888955116272 +2025-07-17 14:09:45.359,0.0,0.0763888955116272 +2025-07-17 14:09:45.452,0.0,0.0763888955116272 +2025-07-17 14:09:45.561,0.0,0.0677083358168602 +2025-07-17 14:09:45.654,0.0,0.0677083358168602 +2025-07-17 14:09:45.764,0.0,0.0763888955116272 +2025-07-17 14:09:45.857,0.0,0.0763888955116272 +2025-07-17 14:09:45.967,0.0,0.0763888955116272 +2025-07-17 14:09:46.060,0.0,0.0763888955116272 +2025-07-17 14:09:46.170,0.0,0.0763888955116272 +2025-07-17 14:09:46.265,0.0,0.0763888955116272 +2025-07-17 14:09:46.377,0.0,0.0763888955116272 +2025-07-17 14:09:46.466,0.0,0.0763888955116272 +2025-07-17 14:09:46.579,0.0,0.0677083358168602 +2025-07-17 14:09:46.670,0.0,0.0677083358168602 +2025-07-17 14:09:46.783,0.0,0.0763888955116272 +2025-07-17 14:09:46.877,0.0,0.0677083358168602 +2025-07-17 14:09:46.987,0.0,0.0677083358168602 +2025-07-17 14:09:47.080,0.0,0.0677083358168602 +2025-07-17 14:09:47.189,0.0,0.0677083358168602 +2025-07-17 14:09:47.281,0.0,0.0677083358168602 +2025-07-17 14:09:47.392,0.0,0.0677083358168602 +2025-07-17 14:09:47.487,0.0,0.0763888955116272 +2025-07-17 14:09:47.595,0.0,0.0763888955116272 +2025-07-17 14:09:47.690,0.0,0.0763888955116272 +2025-07-17 14:09:47.800,0.0,0.0763888955116272 +2025-07-17 14:09:47.892,0.0,0.0763888955116272 +2025-07-17 14:09:48.002,0.0,0.0763888955116272 +2025-07-17 14:09:48.097,0.0,0.0763888955116272 +2025-07-17 14:09:48.205,0.0,0.0763888955116272 +2025-07-17 14:09:48.298,0.0,0.0763888955116272 +2025-07-17 14:09:48.409,0.0,0.0763888955116272 +2025-07-17 14:09:48.501,0.0,0.0763888955116272 +2025-07-17 14:09:48.610,0.0,0.0763888955116272 +2025-07-17 14:09:48.705,0.0,0.0763888955116272 +2025-07-17 14:09:48.816,0.0,0.0763888955116272 +2025-07-17 14:09:48.909,0.0,0.0763888955116272 +2025-07-17 14:09:49.018,0.0,0.0763888955116272 +2025-07-17 14:09:49.111,0.0,0.0763888955116272 +2025-07-17 14:09:49.221,0.0,0.0763888955116272 +2025-07-17 14:09:49.316,0.0,0.0763888955116272 +2025-07-17 14:09:49.429,0.0,0.0763888955116272 +2025-07-17 14:09:49.519,0.0,0.0763888955116272 +2025-07-17 14:09:49.612,0.0,0.0763888955116272 +2025-07-17 14:09:49.722,0.0,0.0763888955116272 +2025-07-17 14:09:49.835,0.0,0.0763888955116272 +2025-07-17 14:09:49.929,0.0,0.0763888955116272 +2025-07-17 14:09:50.037,0.0,0.0763888955116272 +2025-07-17 14:09:50.130,0.0,0.0763888955116272 +2025-07-17 14:09:50.220,0.0,0.0763888955116272 +2025-07-17 14:09:50.332,0.0,0.0763888955116272 +2025-07-17 14:09:50.444,0.0,0.0763888955116272 +2025-07-17 14:09:50.537,0.0,0.0677083358168602 +2025-07-17 14:09:50.647,0.0,0.0677083358168602 +2025-07-17 14:09:50.740,0.0,0.0677083358168602 +2025-07-17 14:09:50.849,0.0,0.0677083358168602 +2025-07-17 14:09:50.942,0.0,0.0677083358168602 +2025-07-17 14:09:51.052,0.0,0.0677083358168602 +2025-07-17 14:09:51.145,0.0,0.0677083358168602 +2025-07-17 14:09:51.254,0.0,0.0677083358168602 +2025-07-17 14:09:51.347,0.0,0.0677083358168602 +2025-07-17 14:09:51.456,0.0,0.0677083358168602 +2025-07-17 14:09:51.548,0.0,0.0677083358168602 +2025-07-17 14:09:51.659,0.0,0.0763888955116272 +2025-07-17 14:09:51.752,0.0,0.0763888955116272 +2025-07-17 14:09:51.861,0.0,0.0763888955116272 +2025-07-17 14:09:51.954,0.0,0.0763888955116272 +2025-07-17 14:09:52.064,0.0,0.0763888955116272 +2025-07-17 14:09:52.156,0.0,0.0763888955116272 +2025-07-17 14:09:52.267,0.0,0.0763888955116272 +2025-07-17 14:09:52.361,0.0,0.0763888955116272 +2025-07-17 14:09:52.469,0.0,0.0763888955116272 +2025-07-17 14:09:52.563,0.0,0.0763888955116272 +2025-07-17 14:09:52.672,0.0,0.0763888955116272 +2025-07-17 14:09:52.764,0.0,0.0763888955116272 +2025-07-17 14:09:52.877,0.0,0.0677083358168602 +2025-07-17 14:09:52.966,0.0,0.0677083358168602 +2025-07-17 14:09:53.078,0.0,0.0677083358168602 +2025-07-17 14:09:53.189,0.0,0.0677083358168602 +2025-07-17 14:09:53.279,0.0,0.0677083358168602 +2025-07-17 14:09:53.391,0.0,0.0677083358168602 +2025-07-17 14:09:53.484,0.0,0.0763888955116272 +2025-07-17 14:09:53.593,0.0,0.0763888955116272 +2025-07-17 14:09:53.687,0.0,0.0763888955116272 +2025-07-17 14:09:53.798,0.0,0.0763888955116272 +2025-07-17 14:09:53.889,0.0,0.0677083358168602 +2025-07-17 14:09:54.000,0.0,0.0763888955116272 +2025-07-17 14:09:54.095,0.0,0.0763888955116272 +2025-07-17 14:09:54.204,0.0,0.0763888955116272 +2025-07-17 14:09:54.297,0.0,0.0763888955116272 +2025-07-17 14:09:54.409,0.0,0.0763888955116272 +2025-07-17 14:09:54.500,0.0,0.0763888955116272 +2025-07-17 14:09:54.609,0.0,0.0763888955116272 +2025-07-17 14:09:54.705,0.0,0.0763888955116272 +2025-07-17 14:09:54.814,0.0,0.0763888955116272 +2025-07-17 14:09:54.908,0.0,0.0763888955116272 +2025-07-17 14:09:55.018,0.0,0.0763888955116272 +2025-07-17 14:09:55.112,0.0,0.0763888955116272 +2025-07-17 14:09:55.222,0.0,0.0763888955116272 +2025-07-17 14:09:55.317,0.0,0.0763888955116272 +2025-07-17 14:09:55.428,0.0,0.0677083358168602 +2025-07-17 14:09:55.519,0.0,0.0763888955116272 +2025-07-17 14:09:55.632,0.0,0.0763888955116272 +2025-07-17 14:09:55.721,0.0,0.0763888955116272 +2025-07-17 14:09:55.834,0.0,0.0763888955116272 +2025-07-17 14:09:55.930,0.0,0.0677083358168602 +2025-07-17 14:09:56.038,0.0,0.0763888955116272 +2025-07-17 14:09:56.131,0.0,0.0763888955116272 +2025-07-17 14:09:56.243,0.0,0.0763888955116272 +2025-07-17 14:09:56.337,0.0,0.0763888955116272 +2025-07-17 14:09:56.447,0.0,0.0763888955116272 +2025-07-17 14:09:56.542,0.0,0.0763888955116272 +2025-07-17 14:09:56.650,0.0,0.0763888955116272 +2025-07-17 14:09:56.744,0.0,0.0763888955116272 +2025-07-17 14:09:56.854,0.0,0.0677083358168602 +2025-07-17 14:09:56.946,0.0,0.0763888955116272 +2025-07-17 14:09:57.056,0.0,0.0763888955116272 +2025-07-17 14:09:57.150,0.0,0.0763888955116272 +2025-07-17 14:09:57.258,0.0,0.0677083358168602 +2025-07-17 14:09:57.353,0.0,0.0763888955116272 +2025-07-17 14:09:57.447,0.0,0.0763888955116272 +2025-07-17 14:09:57.555,0.0,0.0763888955116272 +2025-07-17 14:09:57.649,0.0,0.0677083358168602 +2025-07-17 14:09:57.760,0.0,0.0677083358168602 +2025-07-17 14:09:57.855,0.0,0.0677083358168602 +2025-07-17 14:09:57.965,0.0,0.0677083358168602 +2025-07-17 14:09:58.058,0.0,0.0677083358168602 +2025-07-17 14:09:58.168,0.0,0.0677083358168602 +2025-07-17 14:09:58.264,0.0,0.0763888955116272 +2025-07-17 14:09:58.372,0.0,0.0763888955116272 +2025-07-17 14:09:58.464,0.0,0.0763888955116272 +2025-07-17 14:09:58.577,0.0,0.0763888955116272 +2025-07-17 14:09:58.687,0.0,0.0763888955116272 +2025-07-17 14:09:58.779,0.0,0.0763888955116272 +2025-07-17 14:09:58.872,0.0,0.0763888955116272 +2025-07-17 14:09:58.983,0.0,0.0763888955116272 +2025-07-17 14:09:59.078,0.0,0.0763888955116272 +2025-07-17 14:09:59.189,0.0,0.0763888955116272 +2025-07-17 14:09:59.280,0.0,0.0763888955116272 +2025-07-17 14:09:59.391,0.0,0.0763888955116272 +2025-07-17 14:09:59.486,0.0,0.0763888955116272 +2025-07-17 14:09:59.596,0.0,0.0763888955116272 +2025-07-17 14:09:59.690,0.0,0.0763888955116272 +2025-07-17 14:09:59.799,0.0,0.0763888955116272 +2025-07-17 14:09:59.892,0.0,0.0763888955116272 +2025-07-17 14:10:00.000,0.0,0.0763888955116272 +2025-07-17 14:10:00.095,0.0,0.0763888955116272 +2025-07-17 14:10:00.206,0.0,0.0763888955116272 +2025-07-17 14:10:00.299,0.0,0.0763888955116272 +2025-07-17 14:10:00.409,0.0,0.0763888955116272 +2025-07-17 14:10:00.502,0.0,0.0763888955116272 +2025-07-17 14:10:00.612,0.0,0.0763888955116272 +2025-07-17 14:10:00.708,0.0,0.0763888955116272 +2025-07-17 14:10:00.817,0.0,0.0763888955116272 +2025-07-17 14:10:00.912,0.0,0.0763888955116272 +2025-07-17 14:10:01.021,0.0,0.0763888955116272 +2025-07-17 14:10:01.115,0.0,0.0763888955116272 +2025-07-17 14:10:01.228,0.0,0.0763888955116272 +2025-07-17 14:10:01.319,0.0,0.0677083358168602 +2025-07-17 14:10:01.432,0.0,0.0677083358168602 +2025-07-17 14:10:01.521,0.0,0.0677083358168602 +2025-07-17 14:10:01.634,0.0,0.0677083358168602 +2025-07-17 14:10:01.726,0.0,0.0677083358168602 +2025-07-17 14:10:01.838,0.0,0.0677083358168602 +2025-07-17 14:10:01.934,0.0,0.0677083358168602 +2025-07-17 14:10:02.043,0.0,0.0763888955116272 +2025-07-17 14:10:02.137,0.0,0.0763888955116272 +2025-07-17 14:10:02.245,0.0,0.0763888955116272 +2025-07-17 14:10:02.338,0.0,0.0763888955116272 +2025-07-17 14:10:02.450,0.0,0.0763888955116272 +2025-07-17 14:10:02.545,0.0,0.0763888955116272 +2025-07-17 14:10:02.638,0.0,0.0677083358168602 +2025-07-17 14:10:02.748,0.0,0.0677083358168602 +2025-07-17 14:10:02.839,0.0,0.0677083358168602 +2025-07-17 14:10:02.949,0.0,0.0677083358168602 +2025-07-17 14:10:03.044,0.0,0.0677083358168602 +2025-07-17 14:10:03.153,0.0,0.0677083358168602 +2025-07-17 14:10:03.248,0.0,0.0677083358168602 +2025-07-17 14:10:03.357,0.0,0.0677083358168602 +2025-07-17 14:10:03.450,0.0,0.0677083358168602 +2025-07-17 14:10:03.560,0.0,0.0677083358168602 +2025-07-17 14:10:03.653,0.0,0.0677083358168602 +2025-07-17 14:10:03.765,0.0,0.0763888955116272 +2025-07-17 14:10:03.858,0.0,0.0763888955116272 +2025-07-17 14:10:03.969,0.0,0.0763888955116272 +2025-07-17 14:10:04.063,0.0,0.0763888955116272 +2025-07-17 14:10:04.172,0.0,0.0763888955116272 +2025-07-17 14:10:04.264,0.0,0.0763888955116272 +2025-07-17 14:10:04.378,0.0,0.0763888955116272 +2025-07-17 14:10:04.468,0.0,0.0763888955116272 +2025-07-17 14:10:04.581,0.0,0.0763888955116272 +2025-07-17 14:10:04.671,0.0,0.0763888955116272 +2025-07-17 14:10:04.785,0.0,0.0763888955116272 +2025-07-17 14:10:04.879,0.0,0.0763888955116272 +2025-07-17 14:10:04.989,0.0,0.0763888955116272 +2025-07-17 14:10:05.082,0.0,0.0763888955116272 +2025-07-17 14:10:05.192,0.0,0.0763888955116272 +2025-07-17 14:10:05.286,0.0,0.0763888955116272 +2025-07-17 14:10:05.396,0.0,0.0763888955116272 +2025-07-17 14:10:05.491,0.0,0.0763888955116272 +2025-07-17 14:10:05.602,0.0,0.0763888955116272 +2025-07-17 14:10:05.694,0.0,0.0763888955116272 +2025-07-17 14:10:05.805,0.0,0.0677083358168602 +2025-07-17 14:10:05.896,0.0,0.0677083358168602 +2025-07-17 14:10:06.007,0.0,0.0763888955116272 +2025-07-17 14:10:06.102,0.0,0.0763888955116272 +2025-07-17 14:10:06.211,0.0,0.0763888955116272 +2025-07-17 14:10:06.305,0.0,0.0763888955116272 +2025-07-17 14:10:06.397,0.0,0.0763888955116272 +2025-07-17 14:10:06.508,0.0,0.0763888955116272 +2025-07-17 14:10:06.599,0.0,0.0763888955116272 +2025-07-17 14:10:06.713,0.0,0.0763888955116272 +2025-07-17 14:10:06.804,0.0,0.0763888955116272 +2025-07-17 14:10:06.915,0.0,0.0763888955116272 +2025-07-17 14:10:07.009,0.0,0.0763888955116272 +2025-07-17 14:10:07.118,0.0,0.0763888955116272 +2025-07-17 14:10:07.211,0.0,0.0763888955116272 +2025-07-17 14:10:07.323,0.0,0.0763888955116272 +2025-07-17 14:10:07.416,0.0,0.0763888955116272 +2025-07-17 14:10:07.530,0.0,0.0763888955116272 +2025-07-17 14:10:07.620,0.0,0.0763888955116272 +2025-07-17 14:10:07.732,0.0,0.0763888955116272 +2025-07-17 14:10:07.822,0.0,0.0763888955116272 +2025-07-17 14:10:07.936,0.0,0.0763888955116272 +2025-07-17 14:10:08.030,0.0,0.0763888955116272 +2025-07-17 14:10:08.141,0.0,0.0763888955116272 +2025-07-17 14:10:08.233,0.0,0.0763888955116272 +2025-07-17 14:10:08.343,0.0,0.0763888955116272 +2025-07-17 14:10:08.437,0.0,0.0763888955116272 +2025-07-17 14:10:08.548,0.0,0.0763888955116272 +2025-07-17 14:10:08.640,0.0,0.0763888955116272 +2025-07-17 14:10:08.751,0.0,0.0763888955116272 +2025-07-17 14:10:08.844,0.0,0.0763888955116272 +2025-07-17 14:10:08.954,0.0,0.0763888955116272 +2025-07-17 14:10:09.047,0.0,0.0763888955116272 +2025-07-17 14:10:09.159,0.0,0.0763888955116272 +2025-07-17 14:10:09.252,0.0,0.0763888955116272 +2025-07-17 14:10:09.346,0.0,0.0763888955116272 +2025-07-17 14:10:09.456,0.0,0.0763888955116272 +2025-07-17 14:10:09.565,0.0,0.0763888955116272 +2025-07-17 14:10:09.658,0.0,0.0763888955116272 +2025-07-17 14:10:09.752,0.0,0.0677083358168602 +2025-07-17 14:10:09.862,0.0,0.0677083358168602 +2025-07-17 14:10:09.956,0.0,0.0677083358168602 +2025-07-17 14:10:10.067,0.0,0.0677083358168602 +2025-07-17 14:10:10.159,0.0,0.0677083358168602 +2025-07-17 14:10:10.268,0.0,0.0677083358168602 +2025-07-17 14:10:10.362,0.0,0.0763888955116272 +2025-07-17 14:10:10.492,0.0,0.0763888955116272 +2025-07-17 14:10:10.568,0.0,0.0763888955116272 +2025-07-17 14:10:10.680,0.0,0.0763888955116272 +2025-07-17 14:10:10.790,0.0,0.0763888955116272 +2025-07-17 14:10:10.882,0.0,0.0763888955116272 +2025-07-17 14:10:10.993,0.0,0.0763888955116272 +2025-07-17 14:10:11.087,0.0,0.0763888955116272 +2025-07-17 14:10:11.197,0.0,0.0763888955116272 +2025-07-17 14:10:11.290,0.0,0.0763888955116272 +2025-07-17 14:10:11.400,0.0,0.0763888955116272 +2025-07-17 14:10:11.494,0.0,0.0763888955116272 +2025-07-17 14:10:11.603,0.0,0.0763888955116272 +2025-07-17 14:10:11.697,0.0,0.0763888955116272 +2025-07-17 14:10:11.807,0.0,0.0763888955116272 +2025-07-17 14:10:11.899,0.0,0.0763888955116272 +2025-07-17 14:10:12.011,0.0,0.0763888955116272 +2025-07-17 14:10:12.106,0.0,0.0763888955116272 +2025-07-17 14:10:12.197,0.0,0.0763888955116272 +2025-07-17 14:10:12.307,0.0,0.0763888955116272 +2025-07-17 14:10:12.401,0.0,0.0763888955116272 +2025-07-17 14:10:12.510,0.0,0.0763888955116272 +2025-07-17 14:10:12.602,0.0,0.0763888955116272 +2025-07-17 14:10:12.715,0.0,0.0763888955116272 +2025-07-17 14:10:12.807,0.0,0.0677083358168602 +2025-07-17 14:10:12.915,0.0,0.0677083358168602 +2025-07-17 14:10:13.009,0.0,0.0677083358168602 +2025-07-17 14:10:13.119,0.0,0.0677083358168602 +2025-07-17 14:10:13.212,0.0,0.0677083358168602 +2025-07-17 14:10:13.328,0.0,0.0677083358168602 +2025-07-17 14:10:13.417,0.0,0.0763888955116272 +2025-07-17 14:10:13.532,0.0,0.0763888955116272 +2025-07-17 14:10:13.621,0.0,0.0763888955116272 +2025-07-17 14:10:13.735,0.0,0.0763888955116272 +2025-07-17 14:10:13.828,0.0,0.0763888955116272 +2025-07-17 14:10:13.938,0.0,0.0763888955116272 +2025-07-17 14:10:14.047,0.0,0.0763888955116272 +2025-07-17 14:10:14.142,0.0,0.0763888955116272 +2025-07-17 14:10:14.234,0.0,0.0763888955116272 +2025-07-17 14:10:14.344,0.0,0.0763888955116272 +2025-07-17 14:10:14.455,0.0,0.0763888955116272 +2025-07-17 14:10:14.549,0.0,0.0677083358168602 +2025-07-17 14:10:14.642,0.0,0.0677083358168602 +2025-07-17 14:10:14.752,0.0,0.0677083358168602 +2025-07-17 14:10:14.845,0.0,0.0677083358168602 +2025-07-17 14:10:14.953,0.0,0.0677083358168602 +2025-07-17 14:10:15.047,0.0,0.0677083358168602 +2025-07-17 14:10:15.157,0.0,0.0763888955116272 +2025-07-17 14:10:15.251,0.0,0.0763888955116272 +2025-07-17 14:10:15.362,0.0,0.0763888955116272 +2025-07-17 14:10:15.455,0.0,0.0763888955116272 +2025-07-17 14:10:15.562,0.0,0.0763888955116272 +2025-07-17 14:10:15.657,0.0,0.0763888955116272 +2025-07-17 14:10:15.766,0.0,0.0763888955116272 +2025-07-17 14:10:15.860,0.0,0.0763888955116272 +2025-07-17 14:10:15.971,0.0,0.0763888955116272 +2025-07-17 14:10:16.063,0.0,0.0763888955116272 +2025-07-17 14:10:16.193,0.0,0.0763888955116272 +2025-07-17 14:10:16.268,0.0,0.0763888955116272 +2025-07-17 14:10:16.381,0.0,0.0677083358168602 +2025-07-17 14:10:16.469,0.0,0.0677083358168602 +2025-07-17 14:10:16.584,0.0,0.0677083358168602 +2025-07-17 14:10:16.677,0.0,0.0677083358168602 +2025-07-17 14:10:16.786,0.0,0.0677083358168602 +2025-07-17 14:10:16.880,0.0,0.0677083358168602 +2025-07-17 14:10:16.991,0.0,0.0763888955116272 +2025-07-17 14:10:17.083,0.0,0.0763888955116272 +2025-07-17 14:10:17.194,0.0,0.0763888955116272 +2025-07-17 14:10:17.284,0.0,0.0763888955116272 +2025-07-17 14:10:17.396,0.0,0.0763888955116272 +2025-07-17 14:10:17.490,0.0,0.0763888955116272 +2025-07-17 14:10:17.600,0.0,0.0677083358168602 +2025-07-17 14:10:17.710,0.0,0.0763888955116272 +2025-07-17 14:10:17.804,0.0,0.0763888955116272 +2025-07-17 14:10:17.897,0.0,0.0763888955116272 +2025-07-17 14:10:18.007,0.0,0.0763888955116272 +2025-07-17 14:10:18.100,0.0,0.0763888955116272 +2025-07-17 14:10:18.211,0.0,0.0677083358168602 +2025-07-17 14:10:18.305,0.0,0.0677083358168602 +2025-07-17 14:10:18.414,0.0,0.0677083358168602 +2025-07-17 14:10:18.506,0.0,0.0677083358168602 +2025-07-17 14:10:18.616,0.0,0.0677083358168602 +2025-07-17 14:10:18.708,0.0,0.0677083358168602 +2025-07-17 14:10:18.822,0.0,0.0763888955116272 +2025-07-17 14:10:18.915,0.0,0.0677083358168602 +2025-07-17 14:10:19.026,0.0,0.0763888955116272 +2025-07-17 14:10:19.118,0.0,0.0763888955116272 +2025-07-17 14:10:19.231,0.0,0.0763888955116272 +2025-07-17 14:10:19.322,0.0,0.0763888955116272 +2025-07-17 14:10:19.434,0.0,0.0763888955116272 +2025-07-17 14:10:19.528,0.0,0.0763888955116272 +2025-07-17 14:10:19.638,0.0,0.0763888955116272 +2025-07-17 14:10:19.729,0.0,0.0763888955116272 +2025-07-17 14:10:19.841,0.0,0.0763888955116272 +2025-07-17 14:10:19.934,0.0,0.0677083358168602 +2025-07-17 14:10:20.045,0.0,0.0677083358168602 +2025-07-17 14:10:20.137,0.0,0.0677083358168602 +2025-07-17 14:10:20.248,0.0,0.0677083358168602 +2025-07-17 14:10:20.340,0.0,0.0677083358168602 +2025-07-17 14:10:20.450,0.0,0.0677083358168602 +2025-07-17 14:10:20.562,0.0,0.0677083358168602 +2025-07-17 14:10:20.654,0.0,0.0763888955116272 +2025-07-17 14:10:20.749,0.0,0.0763888955116272 +2025-07-17 14:10:20.859,0.0,0.0763888955116272 +2025-07-17 14:10:20.951,0.0,0.0763888955116272 +2025-07-17 14:10:21.061,0.0,0.0763888955116272 +2025-07-17 14:10:21.155,0.0,0.0763888955116272 +2025-07-17 14:10:21.248,0.0,0.0763888955116272 +2025-07-17 14:10:21.359,0.0,0.0763888955116272 +2025-07-17 14:10:21.451,0.0,0.0763888955116272 +2025-07-17 14:10:21.560,0.0,0.0763888955116272 +2025-07-17 14:10:21.653,0.0,0.0763888955116272 +2025-07-17 14:10:21.763,0.0,0.0763888955116272 +2025-07-17 14:10:21.859,0.0,0.0763888955116272 +2025-07-17 14:10:21.968,0.0,0.0763888955116272 +2025-07-17 14:10:22.062,0.0,0.0763888955116272 +2025-07-17 14:10:22.172,0.0,0.0763888955116272 +2025-07-17 14:10:22.264,0.0,0.0763888955116272 +2025-07-17 14:10:22.378,0.0,0.0763888955116272 +2025-07-17 14:10:22.469,0.0,0.0763888955116272 +2025-07-17 14:10:22.582,0.0,0.0763888955116272 +2025-07-17 14:10:22.671,0.0,0.0763888955116272 +2025-07-17 14:10:22.785,0.0,0.0763888955116272 +2025-07-17 14:10:22.877,0.0,0.0763888955116272 +2025-07-17 14:10:22.988,0.0,0.0763888955116272 +2025-07-17 14:10:23.081,0.0,0.0763888955116272 +2025-07-17 14:10:23.192,0.0,0.0763888955116272 +2025-07-17 14:10:23.284,0.0,0.0763888955116272 +2025-07-17 14:10:23.395,0.0,0.0763888955116272 +2025-07-17 14:10:23.488,0.0,0.0763888955116272 +2025-07-17 14:10:23.601,0.0,0.0763888955116272 +2025-07-17 14:10:23.692,0.0,0.0763888955116272 +2025-07-17 14:10:23.803,0.0,0.0763888955116272 +2025-07-17 14:10:23.897,0.0,0.0763888955116272 +2025-07-17 14:10:24.007,0.0,0.0763888955116272 +2025-07-17 14:10:24.099,0.0,0.0763888955116272 +2025-07-17 14:10:24.210,0.0,0.0763888955116272 +2025-07-17 14:10:24.303,0.0,0.0763888955116272 +2025-07-17 14:10:24.413,0.0,0.0763888955116272 +2025-07-17 14:10:24.505,0.0,0.0763888955116272 +2025-07-17 14:10:24.615,0.0,0.0763888955116272 +2025-07-17 14:10:24.710,0.0,0.0677083358168602 +2025-07-17 14:10:24.821,0.0,0.0677083358168602 +2025-07-17 14:10:24.914,0.0,0.0677083358168602 +2025-07-17 14:10:25.027,0.0,0.0677083358168602 +2025-07-17 14:10:25.118,0.0,0.0677083358168602 +2025-07-17 14:10:25.231,0.0,0.0677083358168602 +2025-07-17 14:10:25.320,0.0,0.0677083358168602 +2025-07-17 14:10:25.435,0.0,0.0763888955116272 +2025-07-17 14:10:25.529,0.0,0.0763888955116272 +2025-07-17 14:10:25.639,0.0,0.0763888955116272 +2025-07-17 14:10:25.731,0.0,0.0677083358168602 +2025-07-17 14:10:25.842,0.0,0.0677083358168602 +2025-07-17 14:10:25.935,0.0,0.0763888955116272 +2025-07-17 14:10:26.046,0.0,0.0763888955116272 +2025-07-17 14:10:26.138,0.0,0.0763888955116272 +2025-07-17 14:10:26.248,0.0,0.0763888955116272 +2025-07-17 14:10:26.342,0.0,0.0763888955116272 +2025-07-17 14:10:26.452,0.0,0.0763888955116272 +2025-07-17 14:10:26.546,0.0,0.0763888955116272 +2025-07-17 14:10:26.656,0.0,0.0763888955116272 +2025-07-17 14:10:26.751,0.0,0.0763888955116272 +2025-07-17 14:10:26.860,0.0,0.0763888955116272 +2025-07-17 14:10:26.953,0.0,0.0763888955116272 +2025-07-17 14:10:27.047,0.0,0.0763888955116272 +2025-07-17 14:10:27.157,0.0,0.0763888955116272 +2025-07-17 14:10:27.249,0.0,0.0763888955116272 +2025-07-17 14:10:27.359,0.0,0.0763888955116272 +2025-07-17 14:10:27.453,0.0,0.0763888955116272 +2025-07-17 14:10:27.561,0.0,0.0763888955116272 +2025-07-17 14:10:27.656,0.0,0.0763888955116272 +2025-07-17 14:10:27.768,0.0,0.0763888955116272 +2025-07-17 14:10:27.861,0.0,0.0763888955116272 +2025-07-17 14:10:27.971,0.0,0.0677083358168602 +2025-07-17 14:10:28.065,0.0,0.0763888955116272 +2025-07-17 14:10:28.178,0.0,0.0763888955116272 +2025-07-17 14:10:28.267,0.0,0.0763888955116272 +2025-07-17 14:10:28.381,0.0,0.0763888955116272 +2025-07-17 14:10:28.471,0.0,0.0763888955116272 +2025-07-17 14:10:28.584,0.0,0.0763888955116272 +2025-07-17 14:10:28.678,0.0,0.0763888955116272 +2025-07-17 14:10:28.787,0.0,0.0763888955116272 +2025-07-17 14:10:28.880,0.0,0.0763888955116272 +2025-07-17 14:10:28.991,0.0,0.0763888955116272 +2025-07-17 14:10:29.083,0.0,0.0677083358168602 +2025-07-17 14:10:29.213,0.0,0.0763888955116272 +2025-07-17 14:10:29.287,0.0,0.0677083358168602 +2025-07-17 14:10:29.399,0.0,0.0763888955116272 +2025-07-17 14:10:29.493,0.0,0.0763888955116272 +2025-07-17 14:10:29.604,0.0,0.0763888955116272 +2025-07-17 14:10:29.697,0.0,0.0677083358168602 +2025-07-17 14:10:29.806,0.0,0.0677083358168602 +2025-07-17 14:10:29.900,0.0,0.0677083358168602 +2025-07-17 14:10:30.009,0.0,0.0677083358168602 +2025-07-17 14:10:30.103,0.0,0.0677083358168602 +2025-07-17 14:10:30.197,0.0,0.0677083358168602 +2025-07-17 14:10:30.306,0.0,0.0763888955116272 +2025-07-17 14:10:30.399,0.0,0.0763888955116272 +2025-07-17 14:10:30.509,0.0,0.0763888955116272 +2025-07-17 14:10:30.603,0.0,0.0763888955116272 +2025-07-17 14:10:30.713,0.0,0.0677083358168602 +2025-07-17 14:10:30.810,0.0,0.0677083358168602 +2025-07-17 14:10:30.918,0.0,0.0677083358168602 +2025-07-17 14:10:31.012,0.0,0.0677083358168602 +2025-07-17 14:10:31.122,0.0,0.0677083358168602 +2025-07-17 14:10:31.215,0.0,0.0677083358168602 +2025-07-17 14:10:31.328,0.0,0.0677083358168602 +2025-07-17 14:10:31.419,0.0,0.0677083358168602 +2025-07-17 14:10:31.533,0.0,0.0677083358168602 +2025-07-17 14:10:31.623,0.0,0.0677083358168602 +2025-07-17 14:10:31.735,0.0,0.0677083358168602 +2025-07-17 14:10:31.828,0.0,0.0677083358168602 +2025-07-17 14:10:31.937,0.0,0.0677083358168602 +2025-07-17 14:10:32.031,0.0,0.0677083358168602 +2025-07-17 14:10:32.142,0.0,0.0677083358168602 +2025-07-17 14:10:32.236,0.0,0.0677083358168602 +2025-07-17 14:10:32.346,0.0,0.0677083358168602 +2025-07-17 14:10:32.441,0.0,0.0677083358168602 +2025-07-17 14:10:32.550,0.0,0.0677083358168602 +2025-07-17 14:10:32.644,0.0,0.0763888955116272 +2025-07-17 14:10:32.754,0.0,0.0763888955116272 +2025-07-17 14:10:32.847,0.0,0.0763888955116272 +2025-07-17 14:10:32.956,0.0,0.0763888955116272 +2025-07-17 14:10:33.049,0.0,0.0763888955116272 +2025-07-17 14:10:33.160,0.0,0.0763888955116272 +2025-07-17 14:10:33.254,0.0,0.0763888955116272 +2025-07-17 14:10:33.364,0.0,0.0763888955116272 +2025-07-17 14:10:33.456,0.0,0.0763888955116272 +2025-07-17 14:10:33.567,0.0,0.0763888955116272 +2025-07-17 14:10:33.661,0.0,0.0763888955116272 +2025-07-17 14:10:33.772,0.0,0.0763888955116272 +2025-07-17 14:10:33.866,0.0,0.0763888955116272 +2025-07-17 14:10:33.980,0.0,0.0763888955116272 +2025-07-17 14:10:34.070,0.0,0.0763888955116272 +2025-07-17 14:10:34.182,0.0,0.0763888955116272 +2025-07-17 14:10:34.273,0.0,0.0763888955116272 +2025-07-17 14:10:34.387,0.0,0.0763888955116272 +2025-07-17 14:10:34.478,0.0,0.0763888955116272 +2025-07-17 14:10:34.588,0.0,0.0763888955116272 +2025-07-17 14:10:34.680,0.0,0.0763888955116272 +2025-07-17 14:10:34.790,0.0,0.0763888955116272 +2025-07-17 14:10:34.884,0.0,0.0763888955116272 +2025-07-17 14:10:34.996,0.0,0.0763888955116272 +2025-07-17 14:10:35.089,0.0,0.0763888955116272 +2025-07-17 14:10:35.198,0.0,0.0763888955116272 +2025-07-17 14:10:35.290,0.0,0.0763888955116272 +2025-07-17 14:10:35.402,0.0,0.0763888955116272 +2025-07-17 14:10:35.495,0.0,0.0763888955116272 +2025-07-17 14:10:35.605,0.0,0.0763888955116272 +2025-07-17 14:10:35.699,0.0,0.0763888955116272 +2025-07-17 14:10:35.811,0.0,0.0763888955116272 +2025-07-17 14:10:35.901,0.0,0.0763888955116272 +2025-07-17 14:10:36.011,0.0,0.0763888955116272 +2025-07-17 14:10:36.105,0.0,0.0763888955116272 +2025-07-17 14:10:36.200,0.0,0.0763888955116272 +2025-07-17 14:10:36.310,0.0,0.0677083358168602 +2025-07-17 14:10:36.403,0.0,0.0763888955116272 +2025-07-17 14:10:36.512,0.0,0.0763888955116272 +2025-07-17 14:10:36.622,0.0,0.0763888955116272 +2025-07-17 14:10:36.714,0.0,0.0763888955116272 +2025-07-17 14:10:36.830,0.0,0.0763888955116272 +2025-07-17 14:10:36.919,0.0,0.0763888955116272 +2025-07-17 14:10:37.033,0.0,0.0763888955116272 +2025-07-17 14:10:37.123,0.0,0.0763888955116272 +2025-07-17 14:10:37.236,0.0,0.0763888955116272 +2025-07-17 14:10:37.329,0.0,0.0763888955116272 +2025-07-17 14:10:37.420,0.0,0.0763888955116272 +2025-07-17 14:10:37.533,0.0,0.0763888955116272 +2025-07-17 14:10:37.643,0.0,0.0763888955116272 +2025-07-17 14:10:37.736,0.0,0.0763888955116272 +2025-07-17 14:10:37.846,0.0,0.0763888955116272 +2025-07-17 14:10:37.938,0.0,0.0763888955116272 +2025-07-17 14:10:38.050,0.0,0.0763888955116272 +2025-07-17 14:10:38.144,0.0,0.0763888955116272 +2025-07-17 14:10:38.236,0.0,0.0763888955116272 +2025-07-17 14:10:38.348,0.0,0.0763888955116272 +2025-07-17 14:10:38.442,0.0,0.0763888955116272 +2025-07-17 14:10:38.550,0.0,0.0763888955116272 +2025-07-17 14:10:38.643,0.0,0.0763888955116272 +2025-07-17 14:10:38.754,0.0,0.0763888955116272 +2025-07-17 14:10:38.846,0.0,0.0763888955116272 +2025-07-17 14:10:38.955,0.0,0.0763888955116272 +2025-07-17 14:10:39.048,0.0,0.0763888955116272 +2025-07-17 14:10:39.159,0.0,0.0763888955116272 +2025-07-17 14:10:39.253,0.0,0.0677083358168602 +2025-07-17 14:10:39.347,0.0,0.0677083358168602 +2025-07-17 14:10:39.456,0.0,0.0677083358168602 +2025-07-17 14:10:39.566,0.0,0.0677083358168602 +2025-07-17 14:10:39.659,0.0,0.0677083358168602 +2025-07-17 14:10:39.769,0.0,0.0677083358168602 +2025-07-17 14:10:39.863,0.0,0.0763888955116272 +2025-07-17 14:10:39.977,0.0,0.0763888955116272 +2025-07-17 14:10:40.066,0.0,0.0763888955116272 +2025-07-17 14:10:40.179,0.0,0.0763888955116272 +2025-07-17 14:10:40.267,0.0,0.0763888955116272 +2025-07-17 14:10:40.382,0.0,0.0763888955116272 +2025-07-17 14:10:40.472,0.0,0.0763888955116272 +2025-07-17 14:10:40.586,0.0,0.0763888955116272 +2025-07-17 14:10:40.678,0.0,0.0763888955116272 +2025-07-17 14:10:40.789,0.0,0.0763888955116272 +2025-07-17 14:10:40.880,0.0,0.0763888955116272 +2025-07-17 14:10:40.992,0.0,0.0763888955116272 +2025-07-17 14:10:41.084,0.0,0.0763888955116272 +2025-07-17 14:10:41.195,0.0,0.0763888955116272 +2025-07-17 14:10:41.288,0.0,0.0763888955116272 +2025-07-17 14:10:41.398,0.0,0.0763888955116272 +2025-07-17 14:10:41.490,0.0,0.0763888955116272 +2025-07-17 14:10:41.601,0.0,0.0763888955116272 +2025-07-17 14:10:41.695,0.0,0.0763888955116272 +2025-07-17 14:10:41.804,0.0,0.0763888955116272 +2025-07-17 14:10:41.897,0.0,0.0763888955116272 +2025-07-17 14:10:42.007,0.0,0.0763888955116272 +2025-07-17 14:10:42.101,0.0,0.0763888955116272 +2025-07-17 14:10:42.214,0.0,0.0763888955116272 +2025-07-17 14:10:42.306,0.0,0.0763888955116272 +2025-07-17 14:10:42.415,0.0,0.0763888955116272 +2025-07-17 14:10:42.508,0.0,0.0763888955116272 +2025-07-17 14:10:42.617,0.0,0.0763888955116272 +2025-07-17 14:10:42.710,0.0,0.0763888955116272 +2025-07-17 14:10:42.824,0.0,0.0763888955116272 +2025-07-17 14:10:42.915,0.0,0.0763888955116272 +2025-07-17 14:10:43.028,0.0,0.0763888955116272 +2025-07-17 14:10:43.116,0.0,0.0763888955116272 +2025-07-17 14:10:43.232,0.0,0.0763888955116272 +2025-07-17 14:10:43.321,0.0,0.0763888955116272 +2025-07-17 14:10:43.436,0.0,0.0763888955116272 +2025-07-17 14:10:43.529,0.0,0.0763888955116272 +2025-07-17 14:10:43.618,0.0,0.0763888955116272 +2025-07-17 14:10:43.730,0.0,0.0763888955116272 +2025-07-17 14:10:43.841,0.0,0.0763888955116272 +2025-07-17 14:10:43.934,0.0,0.0763888955116272 +2025-07-17 14:10:44.045,0.0,0.0763888955116272 +2025-07-17 14:10:44.138,0.0,0.0763888955116272 +2025-07-17 14:10:44.247,0.0,0.0763888955116272 +2025-07-17 14:10:44.341,0.0,0.0763888955116272 +2025-07-17 14:10:44.452,0.0,0.0763888955116272 +2025-07-17 14:10:44.543,0.0,0.0763888955116272 +2025-07-17 14:10:44.654,0.0,0.0677083358168602 +2025-07-17 14:10:44.748,0.0,0.0763888955116272 +2025-07-17 14:10:44.857,0.0,0.0763888955116272 +2025-07-17 14:10:44.949,0.0,0.0677083358168602 +2025-07-17 14:10:45.061,0.0,0.0677083358168602 +2025-07-17 14:10:45.153,0.0,0.0763888955116272 +2025-07-17 14:10:45.248,0.0,0.0763888955116272 +2025-07-17 14:10:45.359,0.0,0.0763888955116272 +2025-07-17 14:10:45.449,0.0,0.0763888955116272 +2025-07-17 14:10:45.561,0.0,0.0763888955116272 +2025-07-17 14:10:45.653,0.0,0.0763888955116272 +2025-07-17 14:10:45.762,0.0,0.0763888955116272 +2025-07-17 14:10:45.857,0.0,0.0677083358168602 +2025-07-17 14:10:45.968,0.0,0.0677083358168602 +2025-07-17 14:10:46.061,0.0,0.0677083358168602 +2025-07-17 14:10:46.170,0.0,0.0677083358168602 +2025-07-17 14:10:46.263,0.0,0.0677083358168602 +2025-07-17 14:10:46.374,0.0,0.0677083358168602 +2025-07-17 14:10:46.468,0.0,0.0763888955116272 +2025-07-17 14:10:46.581,0.0,0.0763888955116272 +2025-07-17 14:10:46.671,0.0,0.0763888955116272 +2025-07-17 14:10:46.783,0.0,0.0763888955116272 +2025-07-17 14:10:46.872,0.0,0.0763888955116272 +2025-07-17 14:10:46.986,0.0,0.0763888955116272 +2025-07-17 14:10:47.080,0.0,0.0677083358168602 +2025-07-17 14:10:47.189,0.0,0.0677083358168602 +2025-07-17 14:10:47.282,0.0,0.0677083358168602 +2025-07-17 14:10:47.392,0.0,0.0677083358168602 +2025-07-17 14:10:47.485,0.0,0.0677083358168602 +2025-07-17 14:10:47.596,0.0,0.0763888955116272 +2025-07-17 14:10:47.690,0.0,0.0763888955116272 +2025-07-17 14:10:47.799,0.0,0.0763888955116272 +2025-07-17 14:10:47.893,0.0,0.0763888955116272 +2025-07-17 14:10:48.003,0.0,0.0763888955116272 +2025-07-17 14:10:48.097,0.0,0.0763888955116272 +2025-07-17 14:10:48.206,0.0,0.0763888955116272 +2025-07-17 14:10:48.299,0.0,0.0763888955116272 +2025-07-17 14:10:48.411,0.0,0.0677083358168602 +2025-07-17 14:10:48.501,0.0,0.0763888955116272 +2025-07-17 14:10:48.613,0.0,0.0763888955116272 +2025-07-17 14:10:48.705,0.0,0.0763888955116272 +2025-07-17 14:10:48.816,0.0,0.0763888955116272 +2025-07-17 14:10:48.909,0.0,0.0763888955116272 +2025-07-17 14:10:49.021,0.0,0.0763888955116272 +2025-07-17 14:10:49.112,0.0,0.0763888955116272 +2025-07-17 14:10:49.223,0.0,0.0763888955116272 +2025-07-17 14:10:49.316,0.0,0.0763888955116272 +2025-07-17 14:10:49.430,0.0,0.0763888955116272 +2025-07-17 14:10:49.520,0.0,0.0763888955116272 +2025-07-17 14:10:49.635,0.0,0.0763888955116272 +2025-07-17 14:10:49.727,0.0,0.0763888955116272 +2025-07-17 14:10:49.837,0.0,0.0763888955116272 +2025-07-17 14:10:49.929,0.0,0.0763888955116272 +2025-07-17 14:10:50.021,0.0,0.0763888955116272 +2025-07-17 14:10:50.133,0.0,0.0763888955116272 +2025-07-17 14:10:50.226,0.0,0.0763888955116272 +2025-07-17 14:10:50.338,0.0,0.0763888955116272 +2025-07-17 14:10:50.432,0.0,0.0763888955116272 +2025-07-17 14:10:50.541,0.0,0.0763888955116272 +2025-07-17 14:10:50.636,0.0,0.0763888955116272 +2025-07-17 14:10:50.745,0.0,0.0763888955116272 +2025-07-17 14:10:50.839,0.0,0.0763888955116272 +2025-07-17 14:10:50.948,0.0,0.0763888955116272 +2025-07-17 14:10:51.044,0.0,0.0763888955116272 +2025-07-17 14:10:51.153,0.0,0.0763888955116272 +2025-07-17 14:10:51.247,0.0,0.0763888955116272 +2025-07-17 14:10:51.356,0.0,0.0763888955116272 +2025-07-17 14:10:51.448,0.0,0.0763888955116272 +2025-07-17 14:10:51.557,0.0,0.0763888955116272 +2025-07-17 14:10:51.653,0.0,0.0763888955116272 +2025-07-17 14:10:51.761,0.0,0.0763888955116272 +2025-07-17 14:10:51.856,0.0,0.0677083358168602 +2025-07-17 14:10:51.950,0.0,0.0677083358168602 +2025-07-17 14:10:52.060,0.0,0.0677083358168602 +2025-07-17 14:10:52.168,0.0,0.0677083358168602 +2025-07-17 14:10:52.262,0.0,0.0677083358168602 +2025-07-17 14:10:52.373,0.0,0.0677083358168602 +2025-07-17 14:10:52.467,0.0,0.0677083358168602 +2025-07-17 14:10:52.562,0.0,0.0677083358168602 +2025-07-17 14:10:52.670,0.0,0.0677083358168602 +2025-07-17 14:10:52.765,0.0,0.0677083358168602 +2025-07-17 14:10:52.881,0.0,0.0677083358168602 +2025-07-17 14:10:52.973,0.0,0.0677083358168602 +2025-07-17 14:10:53.087,0.0,0.0677083358168602 +2025-07-17 14:10:53.185,0.0,0.0763888955116272 +2025-07-17 14:10:53.282,0.0,0.0677083358168602 +2025-07-17 14:10:53.374,0.0,0.0763888955116272 +2025-07-17 14:10:53.486,0.0,0.0763888955116272 +2025-07-17 14:10:53.582,0.0,0.0763888955116272 +2025-07-17 14:10:53.695,0.0,0.0763888955116272 +2025-07-17 14:10:53.789,0.0,0.0763888955116272 +2025-07-17 14:10:53.898,0.0,0.0763888955116272 +2025-07-17 14:10:53.997,0.0,0.0763888955116272 +2025-07-17 14:10:54.089,0.0,0.0763888955116272 +2025-07-17 14:10:54.200,0.0,0.0763888955116272 +2025-07-17 14:10:54.294,0.0,0.0763888955116272 +2025-07-17 14:10:54.410,0.0,0.0763888955116272 +2025-07-17 14:10:54.501,0.0,0.0763888955116272 +2025-07-17 14:10:54.612,0.0,0.0763888955116272 +2025-07-17 14:10:54.708,0.0,0.0763888955116272 +2025-07-17 14:10:54.808,0.0,0.0677083358168602 +2025-07-17 14:10:54.906,0.0,0.0763888955116272 +2025-07-17 14:10:54.998,0.0,0.0763888955116272 +2025-07-17 14:10:55.111,0.0,0.0763888955116272 +2025-07-17 14:10:55.207,0.0,0.0763888955116272 +2025-07-17 14:10:55.319,0.0,0.0763888955116272 +2025-07-17 14:10:55.414,0.0,0.0763888955116272 +2025-07-17 14:10:55.512,0.0,0.0763888955116272 +2025-07-17 14:10:55.622,0.0,0.0763888955116272 +2025-07-17 14:10:55.717,0.0,0.0763888955116272 +2025-07-17 14:10:55.835,0.0,0.0763888955116272 +2025-07-17 14:10:55.927,0.0,0.0763888955116272 +2025-07-17 14:10:56.020,0.0,0.0677083358168602 +2025-07-17 14:10:56.136,0.0,0.0677083358168602 +2025-07-17 14:10:56.232,0.0,0.0677083358168602 +2025-07-17 14:10:56.327,0.0,0.0677083358168602 +2025-07-17 14:10:56.443,0.0,0.0677083358168602 +2025-07-17 14:10:56.536,0.0,0.0677083358168602 +2025-07-17 14:10:56.632,0.0,0.0677083358168602 +2025-07-17 14:10:56.745,0.0,0.0763888955116272 +2025-07-17 14:10:56.841,0.0,0.0763888955116272 +2025-07-17 14:10:56.934,0.0,0.0763888955116272 +2025-07-17 14:10:57.047,0.0,0.0763888955116272 +2025-07-17 14:10:57.140,0.0,0.0763888955116272 +2025-07-17 14:10:57.250,0.0,0.0763888955116272 +2025-07-17 14:10:57.345,0.0,0.0763888955116272 +2025-07-17 14:10:57.454,0.0,0.0763888955116272 +2025-07-17 14:10:57.549,0.0,0.0763888955116272 +2025-07-17 14:10:57.661,0.0,0.0763888955116272 +2025-07-17 14:10:57.755,0.0,0.0763888955116272 +2025-07-17 14:10:57.852,0.0,0.0763888955116272 +2025-07-17 14:10:57.964,0.0,0.0677083358168602 +2025-07-17 14:10:58.057,0.0,0.0763888955116272 +2025-07-17 14:10:58.150,0.0,0.0763888955116272 +2025-07-17 14:10:58.262,0.0,0.0763888955116272 +2025-07-17 14:10:58.356,0.0,0.0763888955116272 +2025-07-17 14:10:58.468,0.0,0.0763888955116272 +2025-07-17 14:10:58.565,0.0,0.0763888955116272 +2025-07-17 14:10:58.678,0.0,0.0763888955116272 +2025-07-17 14:10:58.769,0.0,0.0763888955116272 +2025-07-17 14:10:58.864,0.0,0.0763888955116272 +2025-07-17 14:10:58.972,0.0,0.0763888955116272 +2025-07-17 14:10:59.069,0.0,0.0763888955116272 +2025-07-17 14:10:59.183,0.0,0.0763888955116272 +2025-07-17 14:10:59.274,0.0,0.0763888955116272 +2025-07-17 14:10:59.387,0.0,0.0763888955116272 +2025-07-17 14:10:59.483,0.0,0.0763888955116272 +2025-07-17 14:10:59.593,0.0,0.0763888955116272 +2025-07-17 14:10:59.689,0.0,0.0763888955116272 +2025-07-17 14:10:59.781,0.0,0.0763888955116272 +2025-07-17 14:10:59.892,0.0,0.0763888955116272 +2025-07-17 14:10:59.987,0.0,0.0763888955116272 +2025-07-17 14:11:00.098,0.0,0.0763888955116272 +2025-07-17 14:11:00.191,0.0,0.0763888955116272 +2025-07-17 14:11:00.300,0.0,0.0677083358168602 +2025-07-17 14:11:00.397,0.0,0.0677083358168602 +2025-07-17 14:11:00.508,0.0,0.0677083358168602 +2025-07-17 14:11:00.601,0.0,0.0677083358168602 +2025-07-17 14:11:00.712,0.0,0.0677083358168602 +2025-07-17 14:11:00.808,0.0,0.0677083358168602 +2025-07-17 14:11:00.902,0.0,0.0763888955116272 +2025-07-17 14:11:01.016,0.0,0.0763888955116272 +2025-07-17 14:11:01.106,0.0,0.0763888955116272 +2025-07-17 14:11:01.202,0.0,0.0763888955116272 +2025-07-17 14:11:01.314,0.0,0.0763888955116272 +2025-07-17 14:11:01.408,0.0,0.0763888955116272 +2025-07-17 14:11:01.517,0.0,0.0763888955116272 +2025-07-17 14:11:01.611,0.0,0.0763888955116272 +2025-07-17 14:11:01.722,0.0,0.0763888955116272 +2025-07-17 14:11:01.816,0.0,0.0763888955116272 +2025-07-17 14:11:01.932,0.0,0.0763888955116272 +2025-07-17 14:11:02.024,0.0,0.0763888955116272 +2025-07-17 14:11:02.120,0.0,0.0763888955116272 +2025-07-17 14:11:02.234,0.0,0.0763888955116272 +2025-07-17 14:11:02.329,0.0,0.0763888955116272 +2025-07-17 14:11:02.422,0.0,0.0763888955116272 +2025-07-17 14:11:02.537,0.0,0.0763888955116272 +2025-07-17 14:11:02.635,0.0,0.0763888955116272 +2025-07-17 14:11:02.734,0.0,0.0763888955116272 +2025-07-17 14:11:02.847,0.0,0.0763888955116272 +2025-07-17 14:11:02.939,0.0,0.0763888955116272 +2025-07-17 14:11:03.055,0.0,0.0763888955116272 +2025-07-17 14:11:03.148,0.0,0.0763888955116272 +2025-07-17 14:11:03.246,0.0,0.0763888955116272 +2025-07-17 14:11:03.341,0.0,0.0763888955116272 +2025-07-17 14:11:03.453,0.0,0.0763888955116272 +2025-07-17 14:11:03.547,0.0,0.0763888955116272 +2025-07-17 14:11:03.645,0.0,0.0763888955116272 +2025-07-17 14:11:03.757,0.0,0.0763888955116272 +2025-07-17 14:11:03.853,0.0,0.0763888955116272 +2025-07-17 14:11:03.952,0.0,0.0763888955116272 +2025-07-17 14:11:04.050,0.0,0.0763888955116272 +2025-07-17 14:11:04.164,0.0,0.0763888955116272 +2025-07-17 14:11:04.258,0.0,0.0763888955116272 +2025-07-17 14:11:04.352,0.0,0.0763888955116272 +2025-07-17 14:11:04.464,0.0,0.0763888955116272 +2025-07-17 14:11:04.559,0.0,0.0763888955116272 +2025-07-17 14:11:04.670,0.0,0.0763888955116272 +2025-07-17 14:11:04.770,0.0,0.0763888955116272 +2025-07-17 14:11:04.862,0.0,0.0677083358168602 +2025-07-17 14:11:04.974,0.0,0.0763888955116272 +2025-07-17 14:11:05.075,0.0,0.0763888955116272 +2025-07-17 14:11:05.168,0.0,0.0763888955116272 +2025-07-17 14:11:05.287,0.0,0.0763888955116272 +2025-07-17 14:11:05.388,0.0,0.0763888955116272 +2025-07-17 14:11:05.484,0.0,0.0763888955116272 +2025-07-17 14:11:05.582,0.0,0.0763888955116272 +2025-07-17 14:11:05.674,0.0,0.0763888955116272 +2025-07-17 14:11:05.791,0.0,0.0763888955116272 +2025-07-17 14:11:05.889,0.0,0.0763888955116272 +2025-07-17 14:11:05.989,0.0,0.0763888955116272 +2025-07-17 14:11:06.088,0.0,0.0763888955116272 +2025-07-17 14:11:06.200,0.0,0.0763888955116272 +2025-07-17 14:11:06.299,0.0,0.0763888955116272 +2025-07-17 14:11:06.399,0.0,0.0763888955116272 +2025-07-17 14:11:06.496,0.0,0.0763888955116272 +2025-07-17 14:11:06.594,0.0,0.0763888955116272 +2025-07-17 14:11:06.706,0.0,0.0763888955116272 +2025-07-17 14:11:06.801,0.0,0.0763888955116272 +2025-07-17 14:11:06.902,0.0,0.0763888955116272 +2025-07-17 14:11:07.002,0.0,0.0763888955116272 +2025-07-17 14:11:07.114,0.0,0.0763888955116272 +2025-07-17 14:11:07.213,0.0,0.0763888955116272 +2025-07-17 14:11:07.307,0.0,0.0763888955116272 +2025-07-17 14:11:07.406,0.0,0.0763888955116272 +2025-07-17 14:11:07.504,0.0,0.0763888955116272 +2025-07-17 14:11:07.620,0.0,0.0763888955116272 +2025-07-17 14:11:07.717,0.0,0.0763888955116272 +2025-07-17 14:11:07.812,0.0,0.0763888955116272 +2025-07-17 14:11:07.914,0.0,0.0763888955116272 +2025-07-17 14:11:08.031,0.0,0.0763888955116272 +2025-07-17 14:11:08.125,0.0,0.0763888955116272 +2025-07-17 14:11:08.224,0.0,0.0763888955116272 +2025-07-17 14:11:08.323,0.0,0.0763888955116272 +2025-07-17 14:11:08.441,0.0,0.0763888955116272 +2025-07-17 14:11:08.539,0.0,0.0763888955116272 +2025-07-17 14:11:08.640,0.0,0.0763888955116272 +2025-07-17 14:11:08.735,0.0,0.0677083358168602 +2025-07-17 14:11:08.831,0.0,0.0763888955116272 +2025-07-17 14:11:08.948,0.0,0.0677083358168602 +2025-07-17 14:11:09.046,0.0,0.0763888955116272 +2025-07-17 14:11:09.144,0.0,0.0763888955116272 +2025-07-17 14:11:09.240,0.0,0.0763888955116272 +2025-07-17 14:11:09.339,0.0,0.0763888955116272 +2025-07-17 14:11:09.456,0.0,0.0763888955116272 +2025-07-17 14:11:09.557,0.0,0.0763888955116272 +2025-07-17 14:11:09.652,0.0,0.0763888955116272 +2025-07-17 14:11:09.749,0.0,0.0763888955116272 +2025-07-17 14:11:09.862,0.0,0.0763888955116272 +2025-07-17 14:11:09.964,0.0,0.0763888955116272 +2025-07-17 14:11:10.061,0.0,0.0763888955116272 +2025-07-17 14:11:10.155,0.0,0.0763888955116272 +2025-07-17 14:11:10.257,0.0,0.0763888955116272 +2025-07-17 14:11:10.354,0.0,0.0763888955116272 +2025-07-17 14:11:10.471,0.0,0.0763888955116272 +2025-07-17 14:11:10.570,0.0,0.0763888955116272 +2025-07-17 14:11:10.666,0.0,0.0763888955116272 +2025-07-17 14:11:10.764,0.0,0.0763888955116272 +2025-07-17 14:11:10.862,0.0,0.0763888955116272 +2025-07-17 14:11:10.982,0.0,0.0763888955116272 +2025-07-17 14:11:11.082,0.0,0.0763888955116272 +2025-07-17 14:11:11.178,0.0,0.0763888955116272 +2025-07-17 14:11:11.272,0.0,0.0763888955116272 +2025-07-17 14:11:11.371,0.0,0.0763888955116272 +2025-07-17 14:11:11.489,0.0,0.0763888955116272 +2025-07-17 14:11:11.588,0.0,0.0763888955116272 +2025-07-17 14:11:11.686,0.0,0.0763888955116272 +2025-07-17 14:11:11.783,0.0,0.0763888955116272 +2025-07-17 14:11:11.894,0.0,0.0763888955116272 +2025-07-17 14:11:11.991,0.0,0.0763888955116272 +2025-07-17 14:11:12.093,0.0,0.0763888955116272 +2025-07-17 14:11:12.190,0.0,0.0763888955116272 +2025-07-17 14:11:12.289,0.0,0.0677083358168602 +2025-07-17 14:11:12.389,0.0,0.0677083358168602 +2025-07-17 14:11:12.504,0.0,0.0677083358168602 +2025-07-17 14:11:12.604,0.0,0.0677083358168602 +2025-07-17 14:11:12.700,0.0,0.0677083358168602 +2025-07-17 14:11:12.797,0.0,0.0677083358168602 +2025-07-17 14:11:12.896,0.0,0.0763888955116272 +2025-07-17 14:11:12.995,0.0,0.0763888955116272 +2025-07-17 14:11:13.115,0.0,0.0763888955116272 +2025-07-17 14:11:13.207,0.0,0.0763888955116272 +2025-07-17 14:11:13.309,0.0,0.0763888955116272 +2025-07-17 14:11:13.408,0.0,0.0763888955116272 +2025-07-17 14:11:13.507,0.0,0.0763888955116272 +2025-07-17 14:11:13.608,0.0,0.0763888955116272 +2025-07-17 14:11:13.720,0.0,0.0763888955116272 +2025-07-17 14:11:13.816,0.0,0.0763888955116272 +2025-07-17 14:11:13.916,0.0,0.0763888955116272 +2025-07-17 14:11:14.014,0.0,0.0763888955116272 +2025-07-17 14:11:14.114,0.0,0.0763888955116272 +2025-07-17 14:11:14.229,0.0,0.0763888955116272 +2025-07-17 14:11:14.331,0.0,0.0763888955116272 +2025-07-17 14:11:14.429,0.0,0.0763888955116272 +2025-07-17 14:11:14.525,0.0,0.0763888955116272 +2025-07-17 14:11:14.624,0.0,0.0763888955116272 +2025-07-17 14:11:14.723,0.0,0.0763888955116272 +2025-07-17 14:11:14.822,0.0,0.0763888955116272 +2025-07-17 14:11:14.940,0.0,0.0677083358168602 +2025-07-17 14:11:15.039,0.0,0.0763888955116272 +2025-07-17 14:11:15.135,0.0,0.0763888955116272 +2025-07-17 14:11:15.231,0.0,0.0763888955116272 +2025-07-17 14:11:15.335,0.0,0.0677083358168602 +2025-07-17 14:11:15.449,0.0,0.0677083358168602 +2025-07-17 14:11:15.546,0.0,0.0677083358168602 +2025-07-17 14:11:15.648,0.0,0.0677083358168602 +2025-07-17 14:11:15.744,0.0,0.0677083358168602 +2025-07-17 14:11:15.838,0.0,0.0677083358168602 +2025-07-17 14:11:15.958,0.0,0.0677083358168602 +2025-07-17 14:11:16.057,0.0,0.0677083358168602 +2025-07-17 14:11:16.157,0.0,0.0677083358168602 +2025-07-17 14:11:16.251,0.0,0.0677083358168602 +2025-07-17 14:11:16.352,0.0,0.0677083358168602 +2025-07-17 14:11:16.450,0.0,0.0677083358168602 +2025-07-17 14:11:16.551,0.0,0.0763888955116272 +2025-07-17 14:11:16.664,0.0,0.0763888955116272 +2025-07-17 14:11:16.761,0.0,0.0763888955116272 +2025-07-17 14:11:16.859,0.0,0.0763888955116272 +2025-07-17 14:11:16.957,0.0,0.0763888955116272 +2025-07-17 14:11:17.072,0.0,0.0763888955116272 +2025-07-17 14:11:17.171,0.0,0.0763888955116272 +2025-07-17 14:11:17.268,0.0,0.0763888955116272 +2025-07-17 14:11:17.368,0.0,0.0763888955116272 +2025-07-17 14:11:17.468,0.0,0.0763888955116272 +2025-07-17 14:11:17.585,0.0,0.0763888955116272 +2025-07-17 14:11:17.683,0.0,0.0677083358168602 +2025-07-17 14:11:17.783,0.0,0.0677083358168602 +2025-07-17 14:11:17.880,0.0,0.0677083358168602 +2025-07-17 14:11:17.974,0.0,0.0677083358168602 +2025-07-17 14:11:18.095,0.0,0.0677083358168602 +2025-07-17 14:11:18.192,0.0,0.0677083358168602 +2025-07-17 14:11:18.290,0.0,0.0763888955116272 +2025-07-17 14:11:18.392,0.0,0.0763888955116272 +2025-07-17 14:11:18.488,0.0,0.0763888955116272 +2025-07-17 14:11:18.587,0.0,0.0763888955116272 +2025-07-17 14:11:18.700,0.0,0.0763888955116272 +2025-07-17 14:11:18.801,0.0,0.0763888955116272 +2025-07-17 14:11:18.901,0.0,0.0677083358168602 +2025-07-17 14:11:18.999,0.0,0.0677083358168602 +2025-07-17 14:11:19.099,0.0,0.0677083358168602 +2025-07-17 14:11:19.195,0.0,0.0677083358168602 +2025-07-17 14:11:19.312,0.0,0.0677083358168602 +2025-07-17 14:11:19.409,0.0,0.0677083358168602 +2025-07-17 14:11:19.510,0.0,0.0763888955116272 +2025-07-17 14:11:19.609,0.0,0.0763888955116272 +2025-07-17 14:11:19.705,0.0,0.0763888955116272 +2025-07-17 14:11:19.816,0.0,0.0763888955116272 +2025-07-17 14:11:19.917,0.0,0.0763888955116272 +2025-07-17 14:11:20.016,0.0,0.0763888955116272 +2025-07-17 14:11:20.117,0.0,0.0763888955116272 +2025-07-17 14:11:20.209,0.0,0.0677083358168602 +2025-07-17 14:11:20.330,0.0,0.0763888955116272 +2025-07-17 14:11:20.430,0.0,0.0677083358168602 +2025-07-17 14:11:20.530,0.0,0.0763888955116272 +2025-07-17 14:11:20.623,0.0,0.0763888955116272 +2025-07-17 14:11:20.722,0.0,0.0763888955116272 +2025-07-17 14:11:20.822,0.0,0.0763888955116272 +2025-07-17 14:11:20.940,0.0,0.0763888955116272 +2025-07-17 14:11:21.040,0.0,0.0763888955116272 +2025-07-17 14:11:21.138,0.0,0.0763888955116272 +2025-07-17 14:11:21.234,0.0,0.0763888955116272 +2025-07-17 14:11:21.336,0.0,0.0763888955116272 +2025-07-17 14:11:21.451,0.0,0.0763888955116272 +2025-07-17 14:11:21.548,0.0,0.0763888955116272 +2025-07-17 14:11:21.648,0.0,0.0763888955116272 +2025-07-17 14:11:21.744,0.0,0.0763888955116272 +2025-07-17 14:11:21.841,0.0,0.0763888955116272 +2025-07-17 14:11:21.961,0.0,0.0763888955116272 +2025-07-17 14:11:22.060,0.0,0.0763888955116272 +2025-07-17 14:11:22.154,0.0,0.0763888955116272 +2025-07-17 14:11:22.255,0.0,0.0763888955116272 +2025-07-17 14:11:22.350,0.0,0.0763888955116272 +2025-07-17 14:11:22.450,0.0,0.0763888955116272 +2025-07-17 14:11:22.566,0.0,0.0763888955116272 +2025-07-17 14:11:22.662,0.0,0.0763888955116272 +2025-07-17 14:11:22.756,0.0,0.0763888955116272 +2025-07-17 14:11:22.852,0.0,0.0763888955116272 +2025-07-17 14:11:22.967,0.0,0.0763888955116272 +2025-07-17 14:11:23.061,0.0,0.0763888955116272 +2025-07-17 14:11:23.194,0.0,0.0763888955116272 +2025-07-17 14:11:23.267,0.0,0.0763888955116272 +2025-07-17 14:11:23.364,0.0,0.0763888955116272 +2025-07-17 14:11:23.480,0.0,0.0763888955116272 +2025-07-17 14:11:23.572,0.0,0.0763888955116272 +2025-07-17 14:11:23.688,0.0,0.0763888955116272 +2025-07-17 14:11:23.788,0.0,0.0763888955116272 +2025-07-17 14:11:23.885,0.0,0.0763888955116272 +2025-07-17 14:11:23.984,0.0,0.0763888955116272 +2025-07-17 14:11:24.083,0.0,0.0763888955116272 +2025-07-17 14:11:24.196,0.0,0.0763888955116272 +2025-07-17 14:11:24.297,0.0,0.0763888955116272 +2025-07-17 14:11:24.394,0.0,0.0763888955116272 +2025-07-17 14:11:24.491,0.0,0.0763888955116272 +2025-07-17 14:11:24.589,0.0,0.0763888955116272 +2025-07-17 14:11:24.699,0.0,0.0763888955116272 +2025-07-17 14:11:24.794,0.0,0.0763888955116272 +2025-07-17 14:11:24.908,0.0,0.0763888955116272 +2025-07-17 14:11:25.003,0.0,0.0850694477558136 +2025-07-17 14:11:25.096,0.0,0.0850694477558136 +2025-07-17 14:11:25.208,0.0,0.0850694477558136 +2025-07-17 14:11:25.309,0.0,0.0850694477558136 +2025-07-17 14:11:25.405,0.0,0.0850694477558136 +2025-07-17 14:11:25.507,0.0,0.0763888955116272 +2025-07-17 14:11:25.601,0.0,0.0763888955116272 +2025-07-17 14:11:25.713,0.0,0.0763888955116272 +2025-07-17 14:11:25.806,0.0,0.0763888955116272 +2025-07-17 14:11:25.920,0.0,0.0763888955116272 +2025-07-17 14:11:26.018,0.0,0.0763888955116272 +2025-07-17 14:11:26.117,0.0,0.0763888955116272 +2025-07-17 14:11:26.213,0.0,0.0763888955116272 +2025-07-17 14:11:26.315,0.0,0.0763888955116272 +2025-07-17 14:11:26.413,0.0,0.0763888955116272 +2025-07-17 14:11:26.531,0.0,0.0763888955116272 +2025-07-17 14:11:26.629,0.0,0.0763888955116272 +2025-07-17 14:11:26.724,0.0,0.0763888955116272 +2025-07-17 14:11:26.821,0.0,0.0763888955116272 +2025-07-17 14:11:26.920,0.0,0.0763888955116272 +2025-07-17 14:11:27.040,0.0,0.0763888955116272 +2025-07-17 14:11:27.135,0.0,0.0763888955116272 +2025-07-17 14:11:27.235,0.0,0.0763888955116272 +2025-07-17 14:11:27.332,0.0,0.0763888955116272 +2025-07-17 14:11:27.448,0.0,0.0677083358168602 +2025-07-17 14:11:27.565,0.0,0.0677083358168602 +2025-07-17 14:11:27.646,0.0,0.0677083358168602 +2025-07-17 14:11:27.738,0.0,0.0677083358168602 +2025-07-17 14:11:27.855,0.0,0.0677083358168602 +2025-07-17 14:11:27.955,0.0,0.0763888955116272 +2025-07-17 14:11:28.054,0.0,0.0763888955116272 +2025-07-17 14:11:28.148,0.0,0.0763888955116272 +2025-07-17 14:11:28.265,0.0,0.0763888955116272 +2025-07-17 14:11:28.362,0.0,0.0763888955116272 +2025-07-17 14:11:28.464,0.0,0.0763888955116272 +2025-07-17 14:11:28.562,0.0,0.0763888955116272 +2025-07-17 14:11:28.657,0.0,0.0763888955116272 +2025-07-17 14:11:28.756,0.0,0.0763888955116272 +2025-07-17 14:11:28.869,0.0,0.0763888955116272 +2025-07-17 14:11:28.969,0.0,0.0763888955116272 +2025-07-17 14:11:29.067,0.0,0.0763888955116272 +2025-07-17 14:11:29.165,0.0,0.0763888955116272 +2025-07-17 14:11:29.264,0.0,0.0763888955116272 +2025-07-17 14:11:29.383,0.0,0.0763888955116272 +2025-07-17 14:11:29.483,0.0,0.0763888955116272 +2025-07-17 14:11:29.582,0.0,0.0763888955116272 +2025-07-17 14:11:29.678,0.0,0.0763888955116272 +2025-07-17 14:11:29.780,0.0,0.0677083358168602 +2025-07-17 14:11:29.873,0.0,0.0677083358168602 +2025-07-17 14:11:29.991,0.0,0.0677083358168602 +2025-07-17 14:11:30.088,0.0,0.0677083358168602 +2025-07-17 14:11:30.185,0.0,0.0677083358168602 +2025-07-17 14:11:30.284,0.0,0.0677083358168602 +2025-07-17 14:11:30.385,0.0,0.0763888955116272 +2025-07-17 14:11:30.500,0.0,0.0763888955116272 +2025-07-17 14:11:30.599,0.0,0.0763888955116272 +2025-07-17 14:11:30.693,0.0,0.0763888955116272 +2025-07-17 14:11:30.792,0.0,0.0763888955116272 +2025-07-17 14:11:30.910,0.0,0.0763888955116272 +2025-07-17 14:11:31.008,0.0,0.0677083358168602 +2025-07-17 14:11:31.108,0.0,0.0677083358168602 +2025-07-17 14:11:31.203,0.0,0.0677083358168602 +2025-07-17 14:11:31.303,0.0,0.0677083358168602 +2025-07-17 14:11:31.400,0.0,0.0677083358168602 +2025-07-17 14:11:31.518,0.0,0.0677083358168602 +2025-07-17 14:11:31.616,0.0,0.0763888955116272 +2025-07-17 14:11:31.716,0.0,0.0763888955116272 +2025-07-17 14:11:31.811,0.0,0.0763888955116272 +2025-07-17 14:11:31.910,0.0,0.0763888955116272 +2025-07-17 14:11:32.024,0.0,0.0763888955116272 +2025-07-17 14:11:32.125,0.0,0.0763888955116272 +2025-07-17 14:11:32.220,0.0,0.0677083358168602 +2025-07-17 14:11:32.320,0.0,0.0677083358168602 +2025-07-17 14:11:32.420,0.0,0.0677083358168602 +2025-07-17 14:11:32.538,0.0,0.0677083358168602 +2025-07-17 14:11:32.637,0.0,0.0677083358168602 +2025-07-17 14:11:32.733,0.0,0.0677083358168602 +2025-07-17 14:11:32.821,0.0,0.0763888955116272 +2025-07-17 14:11:32.936,0.0,0.0763888955116272 +2025-07-17 14:11:33.028,0.0,0.0763888955116272 +2025-07-17 14:11:33.142,0.0,0.0763888955116272 +2025-07-17 14:11:33.234,0.0,0.0763888955116272 +2025-07-17 14:11:33.334,0.0,0.0763888955116272 +2025-07-17 14:11:33.450,0.0,0.0763888955116272 +2025-07-17 14:11:33.546,0.0,0.0763888955116272 +2025-07-17 14:11:33.643,0.0,0.0763888955116272 +2025-07-17 14:11:33.742,0.0,0.0763888955116272 +2025-07-17 14:11:33.844,0.0,0.0677083358168602 +2025-07-17 14:11:33.958,0.0,0.0763888955116272 +2025-07-17 14:11:34.056,0.0,0.0763888955116272 +2025-07-17 14:11:34.156,0.0,0.0763888955116272 +2025-07-17 14:11:34.249,0.0,0.0763888955116272 +2025-07-17 14:11:34.364,0.0,0.0763888955116272 +2025-07-17 14:11:34.463,0.0,0.0763888955116272 +2025-07-17 14:11:34.564,0.0,0.0677083358168602 +2025-07-17 14:11:34.658,0.0,0.0763888955116272 +2025-07-17 14:11:34.755,0.0,0.0763888955116272 +2025-07-17 14:11:34.871,0.0,0.0763888955116272 +2025-07-17 14:11:34.971,0.0,0.0763888955116272 +2025-07-17 14:11:35.070,0.0,0.0763888955116272 +2025-07-17 14:11:35.166,0.0,0.0763888955116272 +2025-07-17 14:11:35.266,0.0,0.0763888955116272 +2025-07-17 14:11:35.382,0.0,0.0763888955116272 +2025-07-17 14:11:35.481,0.0,0.0763888955116272 +2025-07-17 14:11:35.580,0.0,0.0763888955116272 +2025-07-17 14:11:35.672,0.0,0.0763888955116272 +2025-07-17 14:11:35.791,0.0,0.0763888955116272 +2025-07-17 14:11:35.892,0.0,0.0763888955116272 +2025-07-17 14:11:35.990,0.0,0.0763888955116272 +2025-07-17 14:11:36.083,0.0,0.0763888955116272 +2025-07-17 14:11:36.184,0.0,0.0763888955116272 +2025-07-17 14:11:36.299,0.0,0.0763888955116272 +2025-07-17 14:11:36.400,0.0,0.0677083358168602 +2025-07-17 14:11:36.500,0.0,0.0677083358168602 +2025-07-17 14:11:36.597,0.0,0.0677083358168602 +2025-07-17 14:11:36.694,0.0,0.0677083358168602 +2025-07-17 14:11:36.794,0.0,0.0677083358168602 +2025-07-17 14:11:36.913,0.0,0.0677083358168602 +2025-07-17 14:11:37.009,0.0,0.0763888955116272 +2025-07-17 14:11:37.109,0.0,0.0763888955116272 +2025-07-17 14:11:37.205,0.0,0.0763888955116272 +2025-07-17 14:11:37.301,0.0,0.0763888955116272 +2025-07-17 14:11:37.417,0.0,0.0763888955116272 +2025-07-17 14:11:37.518,0.0,0.0763888955116272 +2025-07-17 14:11:37.614,0.0,0.0763888955116272 +2025-07-17 14:11:37.708,0.0,0.0763888955116272 +2025-07-17 14:11:37.809,0.0,0.0763888955116272 +2025-07-17 14:11:37.906,0.0,0.0763888955116272 +2025-07-17 14:11:38.020,0.0,0.0763888955116272 +2025-07-17 14:11:38.120,0.0,0.0763888955116272 +2025-07-17 14:11:38.215,0.0,0.0763888955116272 +2025-07-17 14:11:38.329,0.0,0.0763888955116272 +2025-07-17 14:11:38.419,0.0,0.0763888955116272 +2025-07-17 14:11:38.535,0.0,0.0763888955116272 +2025-07-17 14:11:38.631,0.0,0.0763888955116272 +2025-07-17 14:11:38.733,0.0,0.0763888955116272 +2025-07-17 14:11:38.830,0.0,0.0763888955116272 +2025-07-17 14:11:38.922,0.0,0.0763888955116272 +2025-07-17 14:11:39.044,0.0,0.0763888955116272 +2025-07-17 14:11:39.139,0.0,0.0763888955116272 +2025-07-17 14:11:39.235,0.0,0.0763888955116272 +2025-07-17 14:11:39.352,0.0,0.0763888955116272 +2025-07-17 14:11:39.452,0.0,0.0763888955116272 +2025-07-17 14:11:39.549,0.0,0.0763888955116272 +2025-07-17 14:11:39.648,0.0,0.0763888955116272 +2025-07-17 14:11:39.746,0.0,0.0763888955116272 +2025-07-17 14:11:39.842,0.0,0.0763888955116272 +2025-07-17 14:11:39.961,0.0,0.0677083358168602 +2025-07-17 14:11:40.059,0.0,0.0677083358168602 +2025-07-17 14:11:40.158,0.0,0.0677083358168602 +2025-07-17 14:11:40.255,0.0,0.0677083358168602 +2025-07-17 14:11:40.350,0.0,0.0677083358168602 +2025-07-17 14:11:40.451,0.0,0.0677083358168602 +2025-07-17 14:11:40.552,0.0,0.0677083358168602 +2025-07-17 14:11:40.664,0.0,0.0677083358168602 +2025-07-17 14:11:40.760,0.0,0.0677083358168602 +2025-07-17 14:11:40.860,0.0,0.0677083358168602 +2025-07-17 14:11:40.959,0.0,0.0677083358168602 +2025-07-17 14:11:41.074,0.0,0.0677083358168602 +2025-07-17 14:11:41.173,0.0,0.0763888955116272 +2025-07-17 14:11:41.270,0.0,0.0763888955116272 +2025-07-17 14:11:41.369,0.0,0.0763888955116272 +2025-07-17 14:11:41.470,0.0,0.0763888955116272 +2025-07-17 14:11:41.586,0.0,0.0763888955116272 +2025-07-17 14:11:41.686,0.0,0.0763888955116272 +2025-07-17 14:11:41.784,0.0,0.0763888955116272 +2025-07-17 14:11:41.881,0.0,0.0677083358168602 +2025-07-17 14:11:41.980,0.0,0.0763888955116272 +2025-07-17 14:11:42.097,0.0,0.0763888955116272 +2025-07-17 14:11:42.193,0.0,0.0763888955116272 +2025-07-17 14:11:42.293,0.0,0.0763888955116272 +2025-07-17 14:11:42.392,0.0,0.0763888955116272 +2025-07-17 14:11:42.491,0.0,0.0763888955116272 +2025-07-17 14:11:42.590,0.0,0.0763888955116272 +2025-07-17 14:11:42.703,0.0,0.0763888955116272 +2025-07-17 14:11:42.800,0.0,0.0763888955116272 +2025-07-17 14:11:42.897,0.0,0.0763888955116272 +2025-07-17 14:11:43.011,0.0,0.0763888955116272 +2025-07-17 14:11:43.106,0.0,0.0763888955116272 +2025-07-17 14:11:43.200,0.0,0.0763888955116272 +2025-07-17 14:11:43.299,0.0,0.0763888955116272 +2025-07-17 14:11:43.416,0.0,0.0763888955116272 +2025-07-17 14:11:43.515,0.0,0.0763888955116272 +2025-07-17 14:11:43.616,0.0,0.0763888955116272 +2025-07-17 14:11:43.715,0.0,0.0763888955116272 +2025-07-17 14:11:43.814,0.0,0.0763888955116272 +2025-07-17 14:11:43.910,0.0,0.0763888955116272 +2025-07-17 14:11:44.028,0.0,0.0763888955116272 +2025-07-17 14:11:44.123,0.0,0.0763888955116272 +2025-07-17 14:11:44.224,0.0,0.0763888955116272 +2025-07-17 14:11:44.322,0.0,0.0763888955116272 +2025-07-17 14:11:44.422,0.0,0.0763888955116272 +2025-07-17 14:11:44.521,0.0,0.0763888955116272 +2025-07-17 14:11:44.620,0.0,0.0763888955116272 +2025-07-17 14:11:44.741,0.0,0.0763888955116272 +2025-07-17 14:11:44.836,0.0,0.0763888955116272 +2025-07-17 14:11:44.932,0.0,0.0763888955116272 +2025-07-17 14:11:45.027,0.0,0.0763888955116272 +2025-07-17 14:11:45.145,0.0,0.0763888955116272 +2025-07-17 14:11:45.244,0.0,0.0763888955116272 +2025-07-17 14:11:45.346,0.0,0.0763888955116272 +2025-07-17 14:11:45.445,0.0,0.0763888955116272 +2025-07-17 14:11:45.543,0.0,0.0763888955116272 +2025-07-17 14:11:45.644,0.0,0.0763888955116272 +2025-07-17 14:11:45.742,0.0,0.0763888955116272 +2025-07-17 14:11:45.859,0.0,0.0763888955116272 +2025-07-17 14:11:45.958,0.0,0.0763888955116272 +2025-07-17 14:11:46.057,0.0,0.0763888955116272 +2025-07-17 14:11:46.154,0.0,0.0763888955116272 +2025-07-17 14:11:46.252,0.0,0.0763888955116272 +2025-07-17 14:11:46.350,0.0,0.0763888955116272 +2025-07-17 14:11:46.450,0.0,0.0763888955116272 +2025-07-17 14:11:46.550,0.0,0.0763888955116272 +2025-07-17 14:11:46.666,0.0,0.0763888955116272 +2025-07-17 14:11:46.766,0.0,0.0763888955116272 +2025-07-17 14:11:46.862,0.0,0.0763888955116272 +2025-07-17 14:11:46.963,0.0,0.0763888955116272 +2025-07-17 14:11:47.060,0.0,0.0763888955116272 +2025-07-17 14:11:47.161,0.0,0.0763888955116272 +2025-07-17 14:11:47.260,0.0,0.0763888955116272 +2025-07-17 14:11:47.378,0.0,0.0763888955116272 +2025-07-17 14:11:47.480,0.0,0.0763888955116272 +2025-07-17 14:11:47.574,0.0,0.0763888955116272 +2025-07-17 14:11:47.670,0.0,0.0763888955116272 +2025-07-17 14:11:47.771,0.0,0.0763888955116272 +2025-07-17 14:11:47.870,0.0,0.0763888955116272 +2025-07-17 14:11:47.989,0.0,0.0763888955116272 +2025-07-17 14:11:48.091,0.0,0.0763888955116272 +2025-07-17 14:11:48.188,0.0,0.0763888955116272 +2025-07-17 14:11:48.287,0.0,0.0763888955116272 +2025-07-17 14:11:48.386,0.0,0.0763888955116272 +2025-07-17 14:11:48.501,0.0,0.0763888955116272 +2025-07-17 14:11:48.599,0.0,0.0763888955116272 +2025-07-17 14:11:48.700,0.0,0.0763888955116272 +2025-07-17 14:11:48.798,0.0,0.0763888955116272 +2025-07-17 14:11:48.897,0.0,0.0763888955116272 +2025-07-17 14:11:48.997,0.0,0.0763888955116272 +2025-07-17 14:11:49.111,0.0,0.0763888955116272 +2025-07-17 14:11:49.210,0.0,0.0763888955116272 +2025-07-17 14:11:49.308,0.0,0.0763888955116272 +2025-07-17 14:11:49.408,0.0,0.0763888955116272 +2025-07-17 14:11:49.507,0.0,0.0763888955116272 +2025-07-17 14:11:49.605,0.0,0.0763888955116272 +2025-07-17 14:11:49.705,0.0,0.0763888955116272 +2025-07-17 14:11:49.819,0.0,0.0763888955116272 +2025-07-17 14:11:49.919,0.0,0.0763888955116272 +2025-07-17 14:11:50.018,0.0,0.0763888955116272 +2025-07-17 14:11:50.118,0.0,0.0763888955116272 +2025-07-17 14:11:50.215,0.0,0.0763888955116272 +2025-07-17 14:11:50.333,0.0,0.0763888955116272 +2025-07-17 14:11:50.434,0.0,0.0763888955116272 +2025-07-17 14:11:50.531,0.0,0.0763888955116272 +2025-07-17 14:11:50.630,0.0,0.0763888955116272 +2025-07-17 14:11:50.729,0.0,0.0677083358168602 +2025-07-17 14:11:50.831,0.0,0.0677083358168602 +2025-07-17 14:11:50.945,0.0,0.0677083358168602 +2025-07-17 14:11:51.023,0.0,0.0677083358168602 +2025-07-17 14:11:51.143,0.0,0.0677083358168602 +2025-07-17 14:11:51.237,0.0,0.0677083358168602 +2025-07-17 14:11:51.336,0.0,0.0677083358168602 +2025-07-17 14:11:51.435,0.0,0.0763888955116272 +2025-07-17 14:11:51.551,0.0,0.0763888955116272 +2025-07-17 14:11:51.648,0.0,0.0763888955116272 +2025-07-17 14:11:51.748,0.0,0.0763888955116272 +2025-07-17 14:11:51.848,0.0,0.0763888955116272 +2025-07-17 14:11:51.947,0.0,0.0763888955116272 +2025-07-17 14:11:52.047,0.0,0.0763888955116272 +2025-07-17 14:11:52.146,0.0,0.0763888955116272 +2025-07-17 14:11:52.262,0.0,0.0763888955116272 +2025-07-17 14:11:52.359,0.0,0.0763888955116272 +2025-07-17 14:11:52.459,0.0,0.0763888955116272 +2025-07-17 14:11:52.557,0.0,0.0763888955116272 +2025-07-17 14:11:52.655,0.0,0.0763888955116272 +2025-07-17 14:11:52.757,0.0,0.0763888955116272 +2025-07-17 14:11:52.855,0.0,0.0763888955116272 +2025-07-17 14:11:52.951,0.0,0.0763888955116272 +2025-07-17 14:11:53.067,0.0,0.0763888955116272 +2025-07-17 14:11:53.167,0.0,0.0763888955116272 +2025-07-17 14:11:53.264,0.0,0.0763888955116272 +2025-07-17 14:11:53.365,0.0,0.0763888955116272 +2025-07-17 14:11:53.464,0.0,0.0763888955116272 +2025-07-17 14:11:53.564,0.0,0.0763888955116272 +2025-07-17 14:11:53.660,0.0,0.0677083358168602 +2025-07-17 14:11:53.781,0.0,0.0763888955116272 +2025-07-17 14:11:53.882,0.0,0.0763888955116272 +2025-07-17 14:11:53.981,0.0,0.0763888955116272 +2025-07-17 14:11:54.081,0.0,0.0763888955116272 +2025-07-17 14:11:54.173,0.0,0.0763888955116272 +2025-07-17 14:11:54.274,0.0,0.0763888955116272 +2025-07-17 14:11:54.375,0.0,0.0763888955116272 +2025-07-17 14:11:54.491,0.0,0.0763888955116272 +2025-07-17 14:11:54.591,0.0,0.0763888955116272 +2025-07-17 14:11:54.691,0.0,0.0763888955116272 +2025-07-17 14:11:54.789,0.0,0.0763888955116272 +2025-07-17 14:11:54.887,0.0,0.0763888955116272 +2025-07-17 14:11:54.989,0.0,0.0763888955116272 +2025-07-17 14:11:55.105,0.0,0.0677083358168602 +2025-07-17 14:11:55.201,0.0,0.0763888955116272 +2025-07-17 14:11:55.300,0.0,0.0763888955116272 +2025-07-17 14:11:55.399,0.0,0.0763888955116272 +2025-07-17 14:11:55.499,0.0,0.0763888955116272 +2025-07-17 14:11:55.599,0.0,0.0763888955116272 +2025-07-17 14:11:55.715,0.0,0.0763888955116272 +2025-07-17 14:11:55.811,0.0,0.0763888955116272 +2025-07-17 14:11:55.914,0.0,0.0763888955116272 +2025-07-17 14:11:56.008,0.0,0.0763888955116272 +2025-07-17 14:11:56.107,0.0,0.0763888955116272 +2025-07-17 14:11:56.222,0.0,0.0677083358168602 +2025-07-17 14:11:56.323,0.0,0.0677083358168602 +2025-07-17 14:11:56.421,0.0,0.0677083358168602 +2025-07-17 14:11:56.521,0.0,0.0677083358168602 +2025-07-17 14:11:56.617,0.0,0.0677083358168602 +2025-07-17 14:11:56.717,0.0,0.0677083358168602 +2025-07-17 14:11:56.836,0.0,0.0763888955116272 +2025-07-17 14:11:56.935,0.0,0.0763888955116272 +2025-07-17 14:11:57.035,0.0,0.0763888955116272 +2025-07-17 14:11:57.134,0.0,0.0763888955116272 +2025-07-17 14:11:57.232,0.0,0.0763888955116272 +2025-07-17 14:11:57.365,0.0,0.0763888955116272 +2025-07-17 14:11:57.448,0.0,0.0763888955116272 +2025-07-17 14:11:57.548,0.0,0.0763888955116272 +2025-07-17 14:11:57.645,0.0,0.0763888955116272 +2025-07-17 14:11:57.745,0.0,0.0763888955116272 +2025-07-17 14:11:57.840,0.0,0.0763888955116272 +2025-07-17 14:11:57.941,0.0,0.0763888955116272 +2025-07-17 14:11:58.038,0.0,0.0763888955116272 +2025-07-17 14:11:58.156,0.0,0.0763888955116272 +2025-07-17 14:11:58.256,0.0,0.0763888955116272 +2025-07-17 14:11:58.356,0.0,0.0763888955116272 +2025-07-17 14:11:58.454,0.0,0.0763888955116272 +2025-07-17 14:11:58.553,0.0,0.0763888955116272 +2025-07-17 14:11:58.653,0.0,0.0763888955116272 +2025-07-17 14:11:58.766,0.0,0.0763888955116272 +2025-07-17 14:11:58.867,0.0,0.0763888955116272 +2025-07-17 14:11:58.964,0.0,0.0763888955116272 +2025-07-17 14:11:59.063,0.0,0.0763888955116272 +2025-07-17 14:11:59.161,0.0,0.0763888955116272 +2025-07-17 14:11:59.258,0.0,0.0763888955116272 +2025-07-17 14:11:59.379,0.0,0.0763888955116272 +2025-07-17 14:11:59.480,0.0,0.0763888955116272 +2025-07-17 14:11:59.575,0.0,0.0763888955116272 +2025-07-17 14:11:59.672,0.0,0.0763888955116272 +2025-07-17 14:11:59.774,0.0,0.0763888955116272 +2025-07-17 14:11:59.869,0.0,0.0763888955116272 +2025-07-17 14:11:59.970,0.0,0.0763888955116272 +2025-07-17 14:12:00.089,0.0,0.0763888955116272 +2025-07-17 14:12:00.187,0.0,0.0763888955116272 +2025-07-17 14:12:00.286,0.0,0.0763888955116272 +2025-07-17 14:12:00.388,0.0,0.0763888955116272 +2025-07-17 14:12:00.483,0.0,0.0763888955116272 +2025-07-17 14:12:00.584,0.0,0.0763888955116272 +2025-07-17 14:12:00.700,0.0,0.0763888955116272 +2025-07-17 14:12:00.798,0.0,0.0763888955116272 +2025-07-17 14:12:00.898,0.0,0.0763888955116272 +2025-07-17 14:12:01.000,0.0,0.0763888955116272 +2025-07-17 14:12:01.098,0.0,0.0677083358168602 +2025-07-17 14:12:01.192,0.0,0.0677083358168602 +2025-07-17 14:12:01.291,0.0,0.0677083358168602 +2025-07-17 14:12:01.409,0.0,0.0677083358168602 +2025-07-17 14:12:01.508,0.0,0.0677083358168602 +2025-07-17 14:12:01.607,0.0,0.0677083358168602 +2025-07-17 14:12:01.706,0.0,0.0763888955116272 +2025-07-17 14:12:01.806,0.0,0.0763888955116272 +2025-07-17 14:12:01.902,0.0,0.0677083358168602 +2025-07-17 14:12:02.001,0.0,0.0763888955116272 +2025-07-17 14:12:02.100,0.0,0.0763888955116272 +2025-07-17 14:12:02.218,0.0,0.0763888955116272 +2025-07-17 14:12:02.316,0.0,0.0763888955116272 +2025-07-17 14:12:02.417,0.0,0.0763888955116272 +2025-07-17 14:12:02.516,0.0,0.0763888955116272 +2025-07-17 14:12:02.610,0.0,0.0763888955116272 +2025-07-17 14:12:02.710,0.0,0.0763888955116272 +2025-07-17 14:12:02.830,0.0,0.0677083358168602 +2025-07-17 14:12:02.928,0.0,0.0677083358168602 +2025-07-17 14:12:03.025,0.0,0.0677083358168602 +2025-07-17 14:12:03.122,0.0,0.0677083358168602 +2025-07-17 14:12:03.222,0.0,0.0677083358168602 +2025-07-17 14:12:03.320,0.0,0.0677083358168602 +2025-07-17 14:12:03.423,0.0,0.0763888955116272 +2025-07-17 14:12:03.540,0.0,0.0763888955116272 +2025-07-17 14:12:03.642,0.0,0.0763888955116272 +2025-07-17 14:12:03.739,0.0,0.0763888955116272 +2025-07-17 14:12:03.836,0.0,0.0763888955116272 +2025-07-17 14:12:03.933,0.0,0.0763888955116272 +2025-07-17 14:12:04.036,0.0,0.0677083358168602 +2025-07-17 14:12:04.132,0.0,0.0677083358168602 +2025-07-17 14:12:04.249,0.0,0.0677083358168602 +2025-07-17 14:12:04.346,0.0,0.0677083358168602 +2025-07-17 14:12:04.445,0.0,0.0677083358168602 +2025-07-17 14:12:04.545,0.0,0.0677083358168602 +2025-07-17 14:12:04.645,0.0,0.0763888955116272 +2025-07-17 14:12:04.760,0.0,0.0763888955116272 +2025-07-17 14:12:04.858,0.0,0.0763888955116272 +2025-07-17 14:12:04.959,0.0,0.0763888955116272 +2025-07-17 14:12:05.057,0.0,0.0763888955116272 +2025-07-17 14:12:05.153,0.0,0.0763888955116272 +2025-07-17 14:12:05.261,0.0,0.0763888955116272 +2025-07-17 14:12:05.382,0.0,0.0763888955116272 +2025-07-17 14:12:05.473,0.0,0.0763888955116272 +2025-07-17 14:12:05.595,0.0,0.0763888955116272 +2025-07-17 14:12:05.687,0.0,0.0763888955116272 +2025-07-17 14:12:05.812,0.0,0.0763888955116272 +2025-07-17 14:12:05.919,0.0,0.0763888955116272 +2025-07-17 14:12:06.025,0.0,0.0763888955116272 +2025-07-17 14:12:06.133,0.0,0.0763888955116272 +2025-07-17 14:12:06.240,0.0,0.0763888955116272 +2025-07-17 14:12:06.347,0.0,0.0763888955116272 +2025-07-17 14:12:06.455,0.0,0.0677083358168602 +2025-07-17 14:12:06.561,0.0,0.0763888955116272 +2025-07-17 14:12:06.653,0.0,0.0763888955116272 +2025-07-17 14:12:06.794,0.0,0.0763888955116272 +2025-07-17 14:12:06.871,0.0,0.0763888955116272 +2025-07-17 14:12:06.993,0.0,0.0763888955116272 +2025-07-17 14:12:07.087,0.0,0.0763888955116272 +2025-07-17 14:12:07.211,0.0,0.0677083358168602 +2025-07-17 14:12:07.316,0.0,0.0763888955116272 +2025-07-17 14:12:07.410,0.0,0.0763888955116272 +2025-07-17 14:12:07.533,0.0,0.0763888955116272 +2025-07-17 14:12:07.626,0.0,0.0763888955116272 +2025-07-17 14:12:07.748,0.0,0.0763888955116272 +2025-07-17 14:12:07.841,0.0,0.0763888955116272 +2025-07-17 14:12:07.961,0.0,0.0763888955116272 +2025-07-17 14:12:08.066,0.0,0.0763888955116272 +2025-07-17 14:12:08.173,0.0,0.0763888955116272 +2025-07-17 14:12:08.279,0.0,0.0763888955116272 +2025-07-17 14:12:08.370,0.0,0.0763888955116272 +2025-07-17 14:12:08.495,0.0,0.0763888955116272 +2025-07-17 14:12:08.605,0.0,0.0763888955116272 +2025-07-17 14:12:08.726,0.0,0.0763888955116272 +2025-07-17 14:12:08.818,0.0,0.0763888955116272 +2025-07-17 14:12:08.910,0.0,0.0763888955116272 +2025-07-17 14:12:09.032,0.0,0.0763888955116272 +2025-07-17 14:12:09.126,0.0,0.0763888955116272 +2025-07-17 14:12:09.248,0.0,0.0763888955116272 +2025-07-17 14:12:09.353,0.0,0.0763888955116272 +2025-07-17 14:12:09.463,0.0,0.0763888955116272 +2025-07-17 14:12:09.569,0.0,0.0763888955116272 +2025-07-17 14:12:09.676,0.0,0.0763888955116272 +2025-07-17 14:12:09.784,0.0,0.0763888955116272 +2025-07-17 14:12:09.877,0.0,0.0763888955116272 +2025-07-17 14:12:10.001,0.0,0.0763888955116272 +2025-07-17 14:12:10.112,0.0,0.0677083358168602 +2025-07-17 14:12:10.219,0.0,0.0677083358168602 +2025-07-17 14:12:10.309,0.0,0.0677083358168602 +2025-07-17 14:12:10.433,0.0,0.0677083358168602 +2025-07-17 14:12:10.539,0.0,0.0677083358168602 +2025-07-17 14:12:10.648,0.0,0.0763888955116272 +2025-07-17 14:12:10.753,0.0,0.0763888955116272 +2025-07-17 14:12:10.862,0.0,0.0763888955116272 +2025-07-17 14:12:10.954,0.0,0.0763888955116272 +2025-07-17 14:12:11.077,0.0,0.0763888955116272 +2025-07-17 14:12:11.169,0.0,0.0763888955116272 +2025-07-17 14:12:11.293,0.0,0.0763888955116272 +2025-07-17 14:12:11.384,0.0,0.0763888955116272 +2025-07-17 14:12:11.508,0.0,0.0763888955116272 +2025-07-17 14:12:11.600,0.0,0.0763888955116272 +2025-07-17 14:12:11.726,0.0,0.0763888955116272 +2025-07-17 14:12:11.818,0.0,0.0677083358168602 +2025-07-17 14:12:11.942,0.0,0.0677083358168602 +2025-07-17 14:12:12.034,0.0,0.0677083358168602 +2025-07-17 14:12:12.156,0.0,0.0677083358168602 +2025-07-17 14:12:12.248,0.0,0.0677083358168602 +2025-07-17 14:12:12.369,0.0,0.0677083358168602 +2025-07-17 14:12:12.478,0.0,0.0763888955116272 +2025-07-17 14:12:12.569,0.0,0.0763888955116272 +2025-07-17 14:12:12.692,0.0,0.0763888955116272 +2025-07-17 14:12:12.783,0.0,0.0763888955116272 +2025-07-17 14:12:12.907,0.0,0.0763888955116272 +2025-07-17 14:12:13.014,0.0,0.0763888955116272 +2025-07-17 14:12:13.123,0.0,0.0763888955116272 +2025-07-17 14:12:13.216,0.0,0.0763888955116272 +2025-07-17 14:12:13.338,0.0,0.0763888955116272 +2025-07-17 14:12:13.447,0.0,0.0763888955116272 +2025-07-17 14:12:13.554,0.0,0.0763888955116272 +2025-07-17 14:12:13.661,0.0,0.0677083358168602 +2025-07-17 14:12:13.767,0.0,0.0677083358168602 +2025-07-17 14:12:13.877,0.0,0.0677083358168602 +2025-07-17 14:12:13.985,0.0,0.0677083358168602 +2025-07-17 14:12:14.094,0.0,0.0677083358168602 +2025-07-17 14:12:14.200,0.0,0.0763888955116272 +2025-07-17 14:12:14.309,0.0,0.0763888955116272 +2025-07-17 14:12:14.417,0.0,0.0763888955116272 +2025-07-17 14:12:14.525,0.0,0.0763888955116272 +2025-07-17 14:12:14.633,0.0,0.0763888955116272 +2025-07-17 14:12:14.727,0.0,0.0763888955116272 +2025-07-17 14:12:14.852,0.0,0.0763888955116272 +2025-07-17 14:12:14.959,0.0,0.0763888955116272 +2025-07-17 14:12:15.065,0.0,0.0763888955116272 +2025-07-17 14:12:15.174,0.0,0.0763888955116272 +2025-07-17 14:12:15.281,0.0,0.0763888955116272 +2025-07-17 14:12:15.389,0.0,0.0763888955116272 +2025-07-17 14:12:15.482,0.0,0.0763888955116272 +2025-07-17 14:12:15.606,0.0,0.0763888955116272 +2025-07-17 14:12:15.714,0.0,0.0763888955116272 +2025-07-17 14:12:15.823,0.0,0.0763888955116272 +2025-07-17 14:12:15.933,0.0,0.0763888955116272 +2025-07-17 14:12:16.040,0.0,0.0763888955116272 +2025-07-17 14:12:16.148,0.0,0.0763888955116272 +2025-07-17 14:12:16.257,0.0,0.0763888955116272 +2025-07-17 14:12:16.367,0.0,0.0763888955116272 +2025-07-17 14:12:16.475,0.0,0.0763888955116272 +2025-07-17 14:12:16.583,0.0,0.0763888955116272 +2025-07-17 14:12:16.690,0.0,0.0763888955116272 +2025-07-17 14:12:16.780,0.0,0.0763888955116272 +2025-07-17 14:12:16.903,0.0,0.0763888955116272 +2025-07-17 14:12:16.992,0.0,0.0763888955116272 +2025-07-17 14:12:17.113,0.0,0.0763888955116272 +2025-07-17 14:12:17.206,0.0,0.0763888955116272 +2025-07-17 14:12:17.330,0.0,0.0763888955116272 +2025-07-17 14:12:17.437,0.0,0.0763888955116272 +2025-07-17 14:12:17.547,0.0,0.0763888955116272 +2025-07-17 14:12:17.654,0.0,0.0763888955116272 +2025-07-17 14:12:17.758,0.0,0.0763888955116272 +2025-07-17 14:12:17.881,0.0,0.0677083358168602 +2025-07-17 14:12:17.959,0.0,0.0677083358168602 +2025-07-17 14:12:18.084,0.0,0.0677083358168602 +2025-07-17 14:12:18.192,0.0,0.0677083358168602 +2025-07-17 14:12:18.301,0.0,0.0677083358168602 +2025-07-17 14:12:18.409,0.0,0.0677083358168602 +2025-07-17 14:12:18.532,0.0,0.0677083358168602 +2025-07-17 14:12:18.609,0.0,0.0677083358168602 +2025-07-17 14:12:18.733,0.0,0.0677083358168602 +2025-07-17 14:12:18.840,0.0,0.0677083358168602 +2025-07-17 14:12:18.950,0.0,0.0677083358168602 +2025-07-17 14:12:19.059,0.0,0.0763888955116272 +2025-07-17 14:12:19.167,0.0,0.0763888955116272 +2025-07-17 14:12:19.275,0.0,0.0763888955116272 +2025-07-17 14:12:19.382,0.0,0.0763888955116272 +2025-07-17 14:12:19.490,0.0,0.0763888955116272 +2025-07-17 14:12:19.600,0.0,0.0763888955116272 +2025-07-17 14:12:19.706,0.0,0.0763888955116272 +2025-07-17 14:12:19.814,0.0,0.0763888955116272 +2025-07-17 14:12:19.921,0.0,0.0763888955116272 +2025-07-17 14:12:20.013,0.0,0.0763888955116272 +2025-07-17 14:12:20.135,0.0,0.0763888955116272 +2025-07-17 14:12:20.241,0.0,0.0677083358168602 +2025-07-17 14:12:20.334,0.0,0.0677083358168602 +2025-07-17 14:12:20.473,0.0,0.0677083358168602 +2025-07-17 14:12:20.566,0.0,0.0677083358168602 +2025-07-17 14:12:20.687,0.0,0.0677083358168602 +2025-07-17 14:12:20.765,0.0,0.0677083358168602 +2025-07-17 14:12:20.886,0.0,0.0677083358168602 +2025-07-17 14:12:20.991,0.0,0.0763888955116272 +2025-07-17 14:12:21.100,0.0,0.0763888955116272 +2025-07-17 14:12:21.207,0.0,0.0763888955116272 +2025-07-17 14:12:21.316,0.0,0.0677083358168602 +2025-07-17 14:12:21.409,0.0,0.0763888955116272 +2025-07-17 14:12:21.535,0.0,0.0763888955116272 +2025-07-17 14:12:21.626,0.0,0.0763888955116272 +2025-07-17 14:12:21.750,0.0,0.0763888955116272 +2025-07-17 14:12:21.842,0.0,0.0763888955116272 +2025-07-17 14:12:21.984,0.0,0.0763888955116272 +2025-07-17 14:12:22.075,0.0,0.0763888955116272 +2025-07-17 14:12:22.185,0.0,0.0763888955116272 +2025-07-17 14:12:22.296,0.0,0.0677083358168602 +2025-07-17 14:12:22.405,0.0,0.0763888955116272 +2025-07-17 14:12:22.529,0.0,0.0763888955116272 +2025-07-17 14:12:22.604,0.0,0.0763888955116272 +2025-07-17 14:12:22.741,0.0,0.0763888955116272 +2025-07-17 14:12:22.817,0.0,0.0763888955116272 +2025-07-17 14:12:22.939,0.0,0.0763888955116272 +2025-07-17 14:12:23.033,0.0,0.0763888955116272 +2025-07-17 14:12:23.157,0.0,0.0763888955116272 +2025-07-17 14:12:23.264,0.0,0.0763888955116272 +2025-07-17 14:12:23.387,0.0,0.0677083358168602 +2025-07-17 14:12:23.465,0.0,0.0677083358168602 +2025-07-17 14:12:23.589,0.0,0.0677083358168602 +2025-07-17 14:12:23.709,0.0,0.0677083358168602 +2025-07-17 14:12:23.800,0.0,0.0677083358168602 +2025-07-17 14:12:23.892,0.0,0.0677083358168602 +2025-07-17 14:12:24.014,0.0,0.0677083358168602 +2025-07-17 14:12:24.109,0.0,0.0677083358168602 +2025-07-17 14:12:24.232,0.0,0.0677083358168602 +2025-07-17 14:12:24.323,0.0,0.0677083358168602 +2025-07-17 14:12:24.446,0.0,0.0677083358168602 +2025-07-17 14:12:24.553,0.0,0.0763888955116272 +2025-07-17 14:12:24.663,0.0,0.0763888955116272 +2025-07-17 14:12:24.768,0.0,0.0763888955116272 +2025-07-17 14:12:24.860,0.0,0.0763888955116272 +2025-07-17 14:12:24.984,0.0,0.0763888955116272 +2025-07-17 14:12:25.078,0.0,0.0763888955116272 +2025-07-17 14:12:25.202,0.0,0.0763888955116272 +2025-07-17 14:12:25.294,0.0,0.0763888955116272 +2025-07-17 14:12:25.433,0.0,0.0763888955116272 +2025-07-17 14:12:25.511,0.0,0.0763888955116272 +2025-07-17 14:12:25.634,0.0,0.0763888955116272 +2025-07-17 14:12:25.726,0.0,0.0677083358168602 +2025-07-17 14:12:25.848,0.0,0.0677083358168602 +2025-07-17 14:12:25.955,0.0,0.0677083358168602 +2025-07-17 14:12:26.061,0.0,0.0677083358168602 +2025-07-17 14:12:26.155,0.0,0.0677083358168602 +2025-07-17 14:12:26.277,0.0,0.0677083358168602 +2025-07-17 14:12:26.384,0.0,0.0763888955116272 +2025-07-17 14:12:26.475,0.0,0.0763888955116272 +2025-07-17 14:12:26.599,0.0,0.0763888955116272 +2025-07-17 14:12:26.707,0.0,0.0763888955116272 +2025-07-17 14:12:26.813,0.0,0.0763888955116272 +2025-07-17 14:12:26.920,0.0,0.0763888955116272 +2025-07-17 14:12:27.012,0.0,0.0763888955116272 +2025-07-17 14:12:27.150,0.0,0.0763888955116272 +2025-07-17 14:12:27.258,0.0,0.0763888955116272 +2025-07-17 14:12:27.349,0.0,0.0763888955116272 +2025-07-17 14:12:27.456,0.0,0.0763888955116272 +2025-07-17 14:12:27.563,0.0,0.0763888955116272 +2025-07-17 14:12:27.670,0.0,0.0763888955116272 +2025-07-17 14:12:27.778,0.0,0.0763888955116272 +2025-07-17 14:12:27.886,0.0,0.0763888955116272 +2025-07-17 14:12:27.977,0.0,0.0763888955116272 +2025-07-17 14:12:28.099,0.0,0.0763888955116272 +2025-07-17 14:12:28.191,0.0,0.0763888955116272 +2025-07-17 14:12:28.317,0.0,0.0763888955116272 +2025-07-17 14:12:28.408,0.0,0.0763888955116272 +2025-07-17 14:12:28.531,0.0,0.0763888955116272 +2025-07-17 14:12:28.623,0.0,0.0763888955116272 +2025-07-17 14:12:28.744,0.0,0.0763888955116272 +2025-07-17 14:12:28.850,0.0,0.0763888955116272 +2025-07-17 14:12:28.944,0.0,0.0763888955116272 +2025-07-17 14:12:29.065,0.0,0.0763888955116272 +2025-07-17 14:12:29.159,0.0,0.0763888955116272 +2025-07-17 14:12:29.278,0.0,0.0763888955116272 +2025-07-17 14:12:29.369,0.0,0.0763888955116272 +2025-07-17 14:12:29.492,0.0,0.0763888955116272 +2025-07-17 14:12:29.600,0.0,0.0763888955116272 +2025-07-17 14:12:29.707,0.0,0.0763888955116272 +2025-07-17 14:12:29.814,0.0,0.0677083358168602 +2025-07-17 14:12:29.905,0.0,0.0677083358168602 +2025-07-17 14:12:30.044,0.0,0.0677083358168602 +2025-07-17 14:12:30.121,0.0,0.0677083358168602 +2025-07-17 14:12:30.244,0.0,0.0677083358168602 +2025-07-17 14:12:30.336,0.0,0.0677083358168602 +2025-07-17 14:12:30.461,0.0,0.0677083358168602 +2025-07-17 14:12:30.552,0.0,0.0763888955116272 +2025-07-17 14:12:30.676,0.0,0.0763888955116272 +2025-07-17 14:12:30.769,0.0,0.0763888955116272 +2025-07-17 14:12:30.893,0.0,0.0763888955116272 +2025-07-17 14:12:30.987,0.0,0.0763888955116272 +2025-07-17 14:12:31.107,0.0,0.0677083358168602 +2025-07-17 14:12:31.200,0.0,0.0677083358168602 +2025-07-17 14:12:31.325,0.0,0.0677083358168602 +2025-07-17 14:12:31.420,0.0,0.0677083358168602 +2025-07-17 14:12:31.544,0.0,0.0677083358168602 +2025-07-17 14:12:31.634,0.0,0.0677083358168602 +2025-07-17 14:12:31.758,0.0,0.0763888955116272 +2025-07-17 14:12:31.850,0.0,0.0677083358168602 +2025-07-17 14:12:31.989,0.0,0.0763888955116272 +2025-07-17 14:12:32.068,0.0,0.0763888955116272 +2025-07-17 14:12:32.193,0.0,0.0763888955116272 +2025-07-17 14:12:32.302,0.0,0.0677083358168602 +2025-07-17 14:12:32.396,0.0,0.0677083358168602 +2025-07-17 14:12:32.521,0.0,0.0677083358168602 +2025-07-17 14:12:32.612,0.0,0.0677083358168602 +2025-07-17 14:12:32.736,0.0,0.0677083358168602 +2025-07-17 14:12:32.842,0.0,0.0677083358168602 +2025-07-17 14:12:32.950,0.0,0.0763888955116272 +2025-07-17 14:12:33.057,0.0,0.0763888955116272 +2025-07-17 14:12:33.166,0.0,0.0763888955116272 +2025-07-17 14:12:33.274,0.0,0.0763888955116272 +2025-07-17 14:12:33.364,0.0,0.0763888955116272 +2025-07-17 14:12:33.486,0.0,0.0763888955116272 +2025-07-17 14:12:33.611,0.0,0.0763888955116272 +2025-07-17 14:12:33.702,0.0,0.0763888955116272 +2025-07-17 14:12:33.811,0.0,0.0763888955116272 +2025-07-17 14:12:33.919,0.0,0.0763888955116272 +2025-07-17 14:12:34.010,0.0,0.0763888955116272 +2025-07-17 14:12:34.132,0.0,0.0763888955116272 +2025-07-17 14:12:34.241,0.0,0.0763888955116272 +2025-07-17 14:12:34.333,0.0,0.0763888955116272 +2025-07-17 14:12:34.456,0.0,0.0763888955116272 +2025-07-17 14:12:34.565,0.0,0.0763888955116272 +2025-07-17 14:12:34.689,0.0,0.0763888955116272 +2025-07-17 14:12:34.768,0.0,0.0763888955116272 +2025-07-17 14:12:34.892,0.0,0.0763888955116272 +2025-07-17 14:12:34.984,0.0,0.0763888955116272 +2025-07-17 14:12:35.109,0.0,0.0763888955116272 +2025-07-17 14:12:35.214,0.0,0.0763888955116272 +2025-07-17 14:12:35.320,0.0,0.0763888955116272 +2025-07-17 14:12:35.444,0.0,0.0763888955116272 +2025-07-17 14:12:35.520,0.0,0.0677083358168602 +2025-07-17 14:12:35.630,0.0,0.0763888955116272 +2025-07-17 14:12:35.755,0.0,0.0763888955116272 +2025-07-17 14:12:35.864,0.0,0.0763888955116272 +2025-07-17 14:12:35.957,0.0,0.0677083358168602 +2025-07-17 14:12:36.081,0.0,0.0677083358168602 +2025-07-17 14:12:36.174,0.0,0.0677083358168602 +2025-07-17 14:12:36.298,0.0,0.0677083358168602 +2025-07-17 14:12:36.403,0.0,0.0677083358168602 +2025-07-17 14:12:36.512,0.0,0.0763888955116272 +2025-07-17 14:12:36.606,0.0,0.0763888955116272 +2025-07-17 14:12:36.730,0.0,0.0763888955116272 +2025-07-17 14:34:00.895,0.0,0.0763888955116272 +2025-07-17 14:34:01.017,0.0,0.0763888955116272 +2025-07-17 14:34:01.141,0.0,0.0763888955116272 +2025-07-17 14:34:01.235,0.0,0.0763888955116272 +2025-07-17 14:34:01.341,0.0,0.0763888955116272 +2025-07-17 14:34:01.431,0.0,0.0763888955116272 +2025-07-17 14:34:01.540,0.0,0.0763888955116272 +2025-07-17 14:34:01.662,0.0,0.0763888955116272 +2025-07-17 14:34:01.769,0.0,0.0763888955116272 +2025-07-17 14:34:01.877,0.0,0.0763888955116272 +2025-07-17 14:34:01.986,0.0,0.0763888955116272 +2025-07-17 14:34:02.109,0.0,0.0763888955116272 +2025-07-17 14:34:02.186,0.0,0.0763888955116272 +2025-07-17 14:34:02.297,0.0,0.0763888955116272 +2025-07-17 14:34:02.406,0.0,0.0763888955116272 +2025-07-17 14:34:02.529,0.0,0.0763888955116272 +2025-07-17 14:34:02.634,0.0,0.0763888955116272 +2025-07-17 14:34:02.727,0.0,0.0763888955116272 +2025-07-17 14:34:02.832,0.0,0.0763888955116272 +2025-07-17 14:34:02.939,0.0,0.0763888955116272 +2025-07-17 14:34:03.059,0.0,0.0763888955116272 +2025-07-17 14:34:03.166,0.0,0.0763888955116272 +2025-07-17 14:34:03.272,0.0,0.0763888955116272 +2025-07-17 14:34:03.379,0.0,0.0763888955116272 +2025-07-17 14:34:03.488,0.0,0.0763888955116272 +2025-07-17 14:34:03.612,0.0,0.0763888955116272 +2025-07-17 14:34:03.705,0.0,0.0763888955116272 +2025-07-17 14:34:03.812,0.0,0.0763888955116272 +2025-07-17 14:34:03.903,0.0,0.0763888955116272 +2025-07-17 14:34:04.012,0.0,0.0763888955116272 +2025-07-17 14:34:04.122,0.0,0.0763888955116272 +2025-07-17 14:34:04.244,0.0,0.0763888955116272 +2025-07-17 14:34:04.350,0.0,0.0763888955116272 +2025-07-17 14:34:04.442,0.0,0.0677083358168602 +2025-07-17 14:34:04.552,0.0,0.0763888955116272 +2025-07-17 14:34:04.660,0.0,0.0763888955116272 +2025-07-17 14:34:04.769,0.0,0.0763888955116272 +2025-07-17 14:34:04.890,0.0,0.0763888955116272 +2025-07-17 14:34:04.998,0.0,0.0763888955116272 +2025-07-17 14:34:05.107,0.0,0.0763888955116272 +2025-07-17 14:34:05.215,0.0,0.0763888955116272 +2025-07-17 14:34:05.308,0.0,0.0763888955116272 +2025-07-17 14:34:05.429,0.0,0.0763888955116272 +2025-07-17 14:34:05.537,0.0,0.0763888955116272 +2025-07-17 14:34:05.664,0.0,0.0763888955116272 +2025-07-17 14:34:05.757,0.0,0.0763888955116272 +2025-07-17 14:34:05.865,0.0,0.0763888955116272 +2025-07-17 14:34:05.974,0.0,0.0763888955116272 +2025-07-17 14:34:06.066,0.0,0.0763888955116272 +2025-07-17 14:34:06.172,0.0,0.0763888955116272 +2025-07-17 14:34:06.308,0.0,0.0763888955116272 +2025-07-17 14:34:06.385,0.0,0.0763888955116272 +2025-07-17 14:34:06.493,0.0,0.0763888955116272 +2025-07-17 14:34:06.600,0.0,0.0763888955116272 +2025-07-17 14:34:06.711,0.0,0.0763888955116272 +2025-07-17 14:34:06.818,0.0,0.0763888955116272 +2025-07-17 14:34:06.941,0.0,0.0763888955116272 +2025-07-17 14:34:07.034,0.0,0.0763888955116272 +2025-07-17 14:34:07.142,0.0,0.0763888955116272 +2025-07-17 14:34:07.248,0.0,0.0763888955116272 +2025-07-17 14:34:07.368,0.0,0.0763888955116272 +2025-07-17 14:34:07.476,0.0,0.0763888955116272 +2025-07-17 14:34:07.583,0.0,0.0763888955116272 +2025-07-17 14:34:07.677,0.0,0.0763888955116272 +2025-07-17 14:34:07.786,0.0,0.0763888955116272 +2025-07-17 14:34:07.908,0.0,0.0763888955116272 +2025-07-17 14:34:08.014,0.0,0.0677083358168602 +2025-07-17 14:34:08.121,0.0,0.0763888955116272 +2025-07-17 14:34:08.211,0.0,0.0763888955116272 +2025-07-17 14:34:08.320,0.0,0.0763888955116272 +2025-07-17 14:34:08.428,0.0,0.0763888955116272 +2025-07-17 14:34:08.552,0.0,0.0763888955116272 +2025-07-17 14:34:08.658,0.0,0.0763888955116272 +2025-07-17 14:34:08.765,0.0,0.0763888955116272 +2025-07-17 14:34:08.858,0.0,0.0763888955116272 +2025-07-17 14:34:08.964,0.0,0.0763888955116272 +2025-07-17 14:34:09.088,0.0,0.0763888955116272 +2025-07-17 14:34:09.210,0.0,0.0763888955116272 +2025-07-17 14:34:09.302,0.0,0.0763888955116272 +2025-07-17 14:34:09.396,0.0,0.0763888955116272 +2025-07-17 14:34:09.505,0.0,0.0677083358168602 +2025-07-17 14:34:09.612,0.0,0.0677083358168602 +2025-07-17 14:34:09.722,0.0,0.0677083358168602 +2025-07-17 14:34:09.829,0.0,0.0677083358168602 +2025-07-17 14:34:09.952,0.0,0.0677083358168602 +2025-07-17 14:34:10.059,0.0,0.0763888955116272 +2025-07-17 14:34:10.150,0.0,0.0763888955116272 +2025-07-17 14:34:10.259,0.0,0.0763888955116272 +2025-07-17 14:34:10.367,0.0,0.0763888955116272 +2025-07-17 14:34:10.491,0.0,0.0763888955116272 +2025-07-17 14:34:10.613,0.0,0.0763888955116272 +2025-07-17 14:34:15.080,0.0,0.0763888955116272 +2025-07-17 14:34:15.172,0.0,0.0763888955116272 +2025-07-17 14:34:15.282,0.0,0.0763888955116272 +2025-07-17 14:34:15.375,0.0,0.0763888955116272 +2025-07-17 14:34:15.486,0.0,0.0763888955116272 +2025-07-17 14:34:15.579,0.0,0.0763888955116272 +2025-07-17 14:34:15.692,0.0,0.0763888955116272 +2025-07-17 14:34:15.783,0.0,0.0763888955116272 +2025-07-17 14:34:15.897,0.0,0.0763888955116272 +2025-07-17 14:34:15.988,0.0,0.0763888955116272 +2025-07-17 14:34:16.101,0.0,0.0763888955116272 +2025-07-17 14:34:16.194,0.0,0.0677083358168602 +2025-07-17 14:34:16.304,0.0,0.0763888955116272 +2025-07-17 14:34:16.396,0.0,0.0763888955116272 +2025-07-17 14:34:16.507,0.0,0.0763888955116272 +2025-07-17 14:34:16.600,0.0,0.0763888955116272 +2025-07-17 14:34:16.712,0.0,0.0763888955116272 +2025-07-17 14:34:16.804,0.0,0.0763888955116272 +2025-07-17 14:34:16.916,0.0,0.0763888955116272 +2025-07-17 14:34:17.008,0.0,0.0763888955116272 +2025-07-17 14:34:17.116,0.0,0.0763888955116272 +2025-07-17 14:34:17.212,0.0,0.0763888955116272 +2025-07-17 14:34:17.321,0.0,0.0763888955116272 +2025-07-17 14:34:17.416,0.0,0.0763888955116272 +2025-07-17 14:34:17.526,0.0,0.0763888955116272 +2025-07-17 14:34:17.620,0.0,0.0763888955116272 +2025-07-17 14:34:17.728,0.0,0.0763888955116272 +2025-07-17 14:34:17.824,0.0,0.0763888955116272 +2025-07-17 14:34:17.932,0.0,0.0763888955116272 +2025-07-17 14:34:18.024,0.0,0.0763888955116272 +2025-07-17 14:34:18.135,0.0,0.0677083358168602 +2025-07-17 14:34:18.229,0.0,0.0763888955116272 +2025-07-17 14:34:18.337,0.0,0.0763888955116272 +2025-07-17 14:34:18.433,0.0,0.0763888955116272 +2025-07-17 14:34:18.544,0.0,0.0763888955116272 +2025-07-17 14:34:18.635,0.0,0.0763888955116272 +2025-07-17 14:34:18.747,0.0,0.0763888955116272 +2025-07-17 14:34:18.858,0.0,0.0763888955116272 +2025-07-17 14:34:18.953,0.0,0.0763888955116272 +2025-07-17 14:34:19.045,0.0,0.0763888955116272 +2025-07-17 14:34:19.157,0.0,0.0763888955116272 +2025-07-17 14:34:19.251,0.0,0.0763888955116272 +2025-07-17 14:34:19.359,0.0,0.0763888955116272 +2025-07-17 14:34:19.468,0.0,0.0763888955116272 +2025-07-17 14:34:19.562,0.0,0.0763888955116272 +2025-07-17 14:34:19.673,0.0,0.0763888955116272 +2025-07-17 14:34:19.763,0.0,0.0677083358168602 +2025-07-17 14:34:19.876,0.0,0.0763888955116272 +2025-07-17 14:34:19.969,0.0,0.0763888955116272 +2025-07-17 14:34:20.079,0.0,0.0677083358168602 +2025-07-17 14:34:20.173,0.0,0.0763888955116272 +2025-07-17 14:34:20.266,0.0,0.0763888955116272 +2025-07-17 14:34:20.376,0.0,0.0763888955116272 +2025-07-17 14:34:20.471,0.0,0.0763888955116272 +2025-07-17 14:34:20.579,0.0,0.0763888955116272 +2025-07-17 14:34:20.673,0.0,0.0763888955116272 +2025-07-17 14:34:20.782,0.0,0.0763888955116272 +2025-07-17 14:34:20.876,0.0,0.0677083358168602 +2025-07-17 14:34:20.984,0.0,0.0677083358168602 +2025-07-17 14:34:21.077,0.0,0.0677083358168602 +2025-07-17 14:34:21.187,0.0,0.0677083358168602 +2025-07-17 14:34:21.280,0.0,0.0677083358168602 +2025-07-17 14:34:21.394,0.0,0.0677083358168602 +2025-07-17 14:34:21.486,0.0,0.0763888955116272 +2025-07-17 14:34:21.598,0.0,0.0763888955116272 +2025-07-17 14:34:21.689,0.0,0.0763888955116272 +2025-07-17 14:34:21.800,0.0,0.0763888955116272 +2025-07-17 14:34:21.895,0.0,0.0763888955116272 +2025-07-17 14:34:22.008,0.0,0.0763888955116272 +2025-07-17 14:34:22.100,0.0,0.0677083358168602 +2025-07-17 14:34:22.208,0.0,0.0677083358168602 +2025-07-17 14:34:22.302,0.0,0.0677083358168602 +2025-07-17 14:34:22.410,0.0,0.0677083358168602 +2025-07-17 14:34:22.503,0.0,0.0677083358168602 +2025-07-17 14:34:22.616,0.0,0.0677083358168602 +2025-07-17 14:34:22.707,0.0,0.0763888955116272 +2025-07-17 14:34:22.817,0.0,0.0763888955116272 +2025-07-17 14:34:22.912,0.0,0.0763888955116272 +2025-07-17 14:34:23.020,0.0,0.0763888955116272 +2025-07-17 14:34:23.114,0.0,0.0763888955116272 +2025-07-17 14:34:23.224,0.0,0.0763888955116272 +2025-07-17 14:34:23.319,0.0,0.0763888955116272 +2025-07-17 14:34:23.429,0.0,0.0763888955116272 +2025-07-17 14:34:23.522,0.0,0.0763888955116272 +2025-07-17 14:34:23.631,0.0,0.0763888955116272 +2025-07-17 14:34:23.724,0.0,0.0763888955116272 +2025-07-17 14:34:23.837,0.0,0.0677083358168602 +2025-07-17 14:34:23.932,0.0,0.0677083358168602 +2025-07-17 14:34:24.026,0.0,0.0677083358168602 +2025-07-17 14:34:24.139,0.0,0.0763888955116272 +2025-07-17 14:34:24.231,0.0,0.0763888955116272 +2025-07-17 14:34:24.349,0.0,0.0763888955116272 +2025-07-17 14:34:24.448,0.0,0.0763888955116272 +2025-07-17 14:34:24.539,0.0,0.0763888955116272 +2025-07-17 14:34:24.653,0.0,0.0763888955116272 +2025-07-17 14:34:24.745,0.0,0.0763888955116272 +2025-07-17 14:34:24.840,0.0,0.0763888955116272 +2025-07-17 14:34:24.955,0.0,0.0763888955116272 +2025-07-17 14:34:25.049,0.0,0.0763888955116272 +2025-07-17 14:34:25.161,0.0,0.0763888955116272 +2025-07-17 14:34:25.255,0.0,0.0763888955116272 +2025-07-17 14:34:25.365,0.0,0.0763888955116272 +2025-07-17 14:34:25.456,0.0,0.0763888955116272 +2025-07-17 14:34:25.554,0.0,0.0763888955116272 +2025-07-17 14:34:25.666,0.0,0.0763888955116272 +2025-07-17 14:34:25.758,0.0,0.0763888955116272 +2025-07-17 14:34:25.875,0.0,0.0763888955116272 +2025-07-17 14:34:25.975,0.0,0.0763888955116272 +2025-07-17 14:34:26.071,0.0,0.0763888955116272 +2025-07-17 14:34:26.164,0.0,0.0763888955116272 +2025-07-17 14:34:26.278,0.0,0.0763888955116272 +2025-07-17 14:34:26.374,0.0,0.0763888955116272 +2025-07-17 14:34:26.468,0.0,0.0763888955116272 +2025-07-17 14:34:26.580,0.0,0.0763888955116272 +2025-07-17 14:34:26.675,0.0,0.0763888955116272 +2025-07-17 14:34:26.787,0.0,0.0763888955116272 +2025-07-17 14:34:26.884,0.0,0.0763888955116272 +2025-07-17 14:34:26.978,0.0,0.0763888955116272 +2025-07-17 14:34:27.091,0.0,0.0677083358168602 +2025-07-17 14:34:27.185,0.0,0.0763888955116272 +2025-07-17 14:34:27.301,0.0,0.0763888955116272 +2025-07-17 14:34:27.395,0.0,0.0763888955116272 +2025-07-17 14:34:27.489,0.0,0.0763888955116272 +2025-07-17 14:34:27.606,0.0,0.0763888955116272 +2025-07-17 14:34:27.701,0.0,0.0763888955116272 +2025-07-17 14:34:27.797,0.0,0.0763888955116272 +2025-07-17 14:34:27.913,0.0,0.0763888955116272 +2025-07-17 14:34:28.006,0.0,0.0763888955116272 +2025-07-17 14:34:28.101,0.0,0.0763888955116272 +2025-07-17 14:34:28.210,0.0,0.0763888955116272 +2025-07-17 14:34:28.306,0.0,0.0763888955116272 +2025-07-17 14:34:28.414,0.0,0.0763888955116272 +2025-07-17 14:34:28.508,0.0,0.0763888955116272 +2025-07-17 14:34:28.619,0.0,0.0763888955116272 +2025-07-17 14:34:28.714,0.0,0.0763888955116272 +2025-07-17 14:34:28.825,0.0,0.0763888955116272 +2025-07-17 14:34:28.919,0.0,0.0763888955116272 +2025-07-17 14:34:29.013,0.0,0.0763888955116272 +2025-07-17 14:34:29.127,0.0,0.0763888955116272 +2025-07-17 14:34:29.220,0.0,0.0763888955116272 +2025-07-17 14:34:29.318,0.0,0.0763888955116272 +2025-07-17 14:34:29.430,0.0,0.0677083358168602 +2025-07-17 14:34:29.524,0.0,0.0763888955116272 +2025-07-17 14:34:29.635,0.0,0.0763888955116272 +2025-07-17 14:34:29.726,0.0,0.0677083358168602 +2025-07-17 14:34:29.837,0.0,0.0763888955116272 +2025-07-17 14:34:29.932,0.0,0.0763888955116272 +2025-07-17 14:34:30.029,0.0,0.0763888955116272 +2025-07-17 14:34:30.139,0.0,0.0763888955116272 +2025-07-17 14:34:30.232,0.0,0.0677083358168602 +2025-07-17 14:34:30.352,0.0,0.0763888955116272 +2025-07-17 14:34:30.446,0.0,0.0763888955116272 +2025-07-17 14:34:30.537,0.0,0.0763888955116272 +2025-07-17 14:34:30.650,0.0,0.0763888955116272 +2025-07-17 14:34:30.745,0.0,0.0763888955116272 +2025-07-17 14:34:30.857,0.0,0.0763888955116272 +2025-07-17 14:34:30.952,0.0,0.0763888955116272 +2025-07-17 14:34:31.048,0.0,0.0763888955116272 +2025-07-17 14:34:31.156,0.0,0.0763888955116272 +2025-07-17 14:34:31.251,0.0,0.0763888955116272 +2025-07-17 14:34:31.362,0.0,0.0763888955116272 +2025-07-17 14:34:31.456,0.0,0.0677083358168602 +2025-07-17 14:34:31.569,0.0,0.0763888955116272 +2025-07-17 14:34:31.662,0.0,0.0763888955116272 +2025-07-17 14:34:31.758,0.0,0.0763888955116272 +2025-07-17 14:34:31.870,0.0,0.0763888955116272 +2025-07-17 14:34:31.967,0.0,0.0763888955116272 +2025-07-17 14:34:32.063,0.0,0.0763888955116272 +2025-07-17 14:34:32.177,0.0,0.0763888955116272 +2025-07-17 14:34:32.278,0.0,0.0763888955116272 +2025-07-17 14:34:32.376,0.0,0.0763888955116272 +2025-07-17 14:34:32.474,0.0,0.0763888955116272 +2025-07-17 14:34:32.569,0.0,0.0763888955116272 +2025-07-17 14:34:32.681,0.0,0.0763888955116272 +2025-07-17 14:34:32.775,0.0,0.0677083358168602 +2025-07-17 14:34:32.872,0.0,0.0763888955116272 +2025-07-17 14:34:32.986,0.0,0.0763888955116272 +2025-07-17 14:34:33.083,0.0,0.0763888955116272 +2025-07-17 14:34:33.183,0.0,0.0763888955116272 +2025-07-17 14:34:33.281,0.0,0.0763888955116272 +2025-07-17 14:34:33.378,0.0,0.0763888955116272 +2025-07-17 14:34:33.498,0.0,0.0763888955116272 +2025-07-17 14:34:33.594,0.0,0.0763888955116272 +2025-07-17 14:34:33.686,0.0,0.0763888955116272 +2025-07-17 14:34:33.801,0.0,0.0763888955116272 +2025-07-17 14:34:33.900,0.0,0.0763888955116272 +2025-07-17 14:34:33.996,0.0,0.0763888955116272 +2025-07-17 14:34:34.090,0.0,0.0763888955116272 +2025-07-17 14:34:34.216,0.0,0.0763888955116272 +2025-07-17 14:34:34.325,0.0,0.0763888955116272 +2025-07-17 14:34:34.419,0.0,0.0763888955116272 +2025-07-17 14:34:34.559,0.0,0.0763888955116272 +2025-07-17 14:34:34.653,0.0,0.0763888955116272 +2025-07-17 14:34:34.746,0.0,0.0763888955116272 +2025-07-17 14:34:34.856,0.0,0.0763888955116272 +2025-07-17 14:34:34.979,0.0,0.0763888955116272 +2025-07-17 14:34:35.088,0.0,0.0763888955116272 +2025-07-17 14:34:35.181,0.0,0.0763888955116272 +2025-07-17 14:34:35.307,0.0,0.0763888955116272 +2025-07-17 14:34:35.400,0.0,0.0763888955116272 +2025-07-17 14:34:35.525,0.0,0.0763888955116272 +2025-07-17 14:34:35.633,0.0,0.0763888955116272 +2025-07-17 14:34:35.739,0.0,0.0763888955116272 +2025-07-17 14:34:35.831,0.0,0.0763888955116272 +2025-07-17 14:34:35.954,0.0,0.0677083358168602 +2025-07-17 14:34:36.048,0.0,0.0763888955116272 +2025-07-17 14:34:36.172,0.0,0.0763888955116272 +2025-07-17 14:34:36.281,0.0,0.0763888955116272 +2025-07-17 14:34:36.375,0.0,0.0763888955116272 +2025-07-17 14:34:36.498,0.0,0.0763888955116272 +2025-07-17 14:34:36.590,0.0,0.0763888955116272 +2025-07-17 14:34:36.716,0.0,0.0763888955116272 +2025-07-17 14:34:36.809,0.0,0.0763888955116272 +2025-07-17 14:34:36.952,0.0,0.0763888955116272 +2025-07-17 14:34:37.061,0.0,0.0763888955116272 +2025-07-17 14:34:37.137,0.0,0.0763888955116272 +2025-07-17 14:34:37.261,0.0,0.0763888955116272 +2025-07-17 14:34:37.371,0.0,0.0763888955116272 +2025-07-17 14:34:37.479,0.0,0.0763888955116272 +2025-07-17 14:34:37.572,0.0,0.0677083358168602 +2025-07-17 14:34:37.696,0.0,0.0763888955116272 +2025-07-17 14:34:37.788,0.0,0.0763888955116272 +2025-07-17 14:34:37.911,0.0,0.0763888955116272 +2025-07-17 14:34:38.005,0.0,0.0763888955116272 +2025-07-17 14:34:38.115,0.0,0.0763888955116272 +2025-07-17 14:34:38.240,0.0,0.0763888955116272 +2025-07-17 14:34:38.334,0.0,0.0677083358168602 +2025-07-17 14:34:38.457,0.0,0.0763888955116272 +2025-07-17 14:34:38.567,0.0,0.0763888955116272 +2025-07-17 14:34:38.674,0.0,0.0677083358168602 +2025-07-17 14:34:38.780,0.0,0.0763888955116272 +2025-07-17 14:34:38.872,0.0,0.0763888955116272 +2025-07-17 14:34:39.011,0.0,0.0763888955116272 +2025-07-17 14:34:39.102,0.0,0.0763888955116272 +2025-07-17 14:34:39.198,0.0,0.0763888955116272 +2025-07-17 14:34:39.321,0.0,0.0763888955116272 +2025-07-17 14:34:39.428,0.0,0.0763888955116272 +2025-07-17 14:34:39.519,0.0,0.0763888955116272 +2025-07-17 14:34:39.656,0.0,0.0763888955116272 +2025-07-17 14:34:39.766,0.0,0.0677083358168602 +2025-07-17 14:34:39.844,0.0,0.0677083358168602 +2025-07-17 14:34:39.967,0.0,0.0763888955116272 +2025-07-17 14:34:40.060,0.0,0.0763888955116272 +2025-07-17 14:34:40.185,0.0,0.0763888955116272 +2025-07-17 14:34:40.294,0.0,0.0763888955116272 +2025-07-17 14:34:40.399,0.0,0.0763888955116272 +2025-07-17 14:34:40.507,0.0,0.0763888955116272 +2025-07-17 14:34:40.616,0.0,0.0763888955116272 +2025-07-17 14:34:40.725,0.0,0.0763888955116272 +2025-07-17 14:34:40.820,0.0,0.0763888955116272 +2025-07-17 14:34:40.945,0.0,0.0763888955116272 +2025-07-17 14:34:41.037,0.0,0.0763888955116272 +2025-07-17 14:34:41.162,0.0,0.0763888955116272 +2025-07-17 14:34:41.269,0.0,0.0763888955116272 +2025-07-17 14:34:41.378,0.0,0.0763888955116272 +2025-07-17 14:34:41.487,0.0,0.0677083358168602 +2025-07-17 14:34:41.577,0.0,0.0763888955116272 +2025-07-17 14:34:41.686,0.0,0.0763888955116272 +2025-07-17 14:34:41.812,0.0,0.0763888955116272 +2025-07-17 14:34:41.922,0.0,0.0763888955116272 +2025-07-17 14:34:42.032,0.0,0.0763888955116272 +2025-07-17 14:34:42.125,0.0,0.0763888955116272 +2025-07-17 14:34:42.232,0.0,0.0763888955116272 +2025-07-17 14:34:42.339,0.0,0.0763888955116272 +2025-07-17 14:34:42.463,0.0,0.0763888955116272 +2025-07-17 14:34:42.571,0.0,0.0763888955116272 +2025-07-17 14:34:42.679,0.0,0.0763888955116272 +2025-07-17 14:34:42.771,0.0,0.0763888955116272 +2025-07-17 14:34:42.881,0.0,0.0763888955116272 +2025-07-17 14:34:43.017,0.0,0.0763888955116272 +2025-07-17 14:34:43.112,0.0,0.0763888955116272 +2025-07-17 14:34:43.203,0.0,0.0677083358168602 +2025-07-17 14:34:43.327,0.0,0.0763888955116272 +2025-07-17 14:34:43.420,0.0,0.0763888955116272 +2025-07-17 14:34:43.525,0.0,0.0677083358168602 +2025-07-17 14:34:43.635,0.0,0.0763888955116272 +2025-07-17 14:34:43.759,0.0,0.0677083358168602 +2025-07-17 14:34:43.870,0.0,0.0677083358168602 +2025-07-17 14:34:43.975,0.0,0.0677083358168602 +2025-07-17 14:34:44.069,0.0,0.0677083358168602 +2025-07-17 14:34:44.195,0.0,0.0677083358168602 +2025-07-17 14:34:44.304,0.0,0.0677083358168602 +2025-07-17 14:34:44.397,0.0,0.0763888955116272 +2025-07-17 14:34:44.504,0.0,0.0763888955116272 +2025-07-17 14:34:44.614,0.0,0.0763888955116272 +2025-07-17 14:34:44.739,0.0,0.0763888955116272 +2025-07-17 14:34:44.847,0.0,0.0763888955116272 +2025-07-17 14:34:44.939,0.0,0.0763888955116272 +2025-07-17 14:34:45.063,0.0,0.0763888955116272 +2025-07-17 14:34:45.185,0.0,0.0763888955116272 +2025-07-17 14:34:45.277,0.0,0.0763888955116272 +2025-07-17 14:34:45.369,0.0,0.0763888955116272 +2025-07-17 14:34:45.477,0.0,0.0763888955116272 +2025-07-17 14:34:45.601,0.0,0.0677083358168602 +2025-07-17 14:34:45.712,0.0,0.0677083358168602 +2025-07-17 14:34:45.819,0.0,0.0677083358168602 +2025-07-17 14:34:45.913,0.0,0.0677083358168602 +2025-07-17 14:34:46.025,0.0,0.0677083358168602 +2025-07-17 14:34:46.132,0.0,0.0763888955116272 +2025-07-17 14:34:46.255,0.0,0.0677083358168602 +2025-07-17 14:34:46.363,0.0,0.0763888955116272 +2025-07-17 14:34:46.471,0.0,0.0763888955116272 +2025-07-17 14:34:46.564,0.0,0.0763888955116272 +2025-07-17 14:34:46.674,0.0,0.0763888955116272 +2025-07-17 14:34:46.796,0.0,0.0763888955116272 +2025-07-17 14:34:46.888,0.0,0.0763888955116272 +2025-07-17 14:34:47.013,0.0,0.0763888955116272 +2025-07-17 14:34:47.121,0.0,0.0763888955116272 +2025-07-17 14:34:47.242,0.0,0.0763888955116272 +2025-07-17 14:34:47.337,0.0,0.0763888955116272 +2025-07-17 14:34:47.429,0.0,0.0763888955116272 +2025-07-17 14:34:47.552,0.0,0.0763888955116272 +2025-07-17 14:34:47.645,0.0,0.0763888955116272 +2025-07-17 14:34:47.768,0.0,0.0763888955116272 +2025-07-17 14:34:47.876,0.0,0.0763888955116272 +2025-07-17 14:34:47.967,0.0,0.0763888955116272 +2025-07-17 14:34:48.107,0.0,0.0763888955116272 +2025-07-17 14:34:48.201,0.0,0.0763888955116272 +2025-07-17 14:34:48.308,0.0,0.0763888955116272 +2025-07-17 14:34:48.416,0.0,0.0763888955116272 +2025-07-17 14:34:48.523,0.0,0.0763888955116272 +2025-07-17 14:34:48.614,0.0,0.0763888955116272 +2025-07-17 14:34:48.735,0.0,0.0763888955116272 +2025-07-17 14:34:48.843,0.0,0.0763888955116272 +2025-07-17 14:34:48.935,0.0,0.0763888955116272 +2025-07-17 14:34:49.040,0.0,0.0763888955116272 +2025-07-17 14:34:49.161,0.0,0.0763888955116272 +2025-07-17 14:34:49.253,0.0,0.0763888955116272 +2025-07-17 14:34:49.361,0.0,0.0763888955116272 +2025-07-17 14:34:49.483,0.0,0.0763888955116272 +2025-07-17 14:34:49.591,0.0,0.0763888955116272 +2025-07-17 14:34:49.683,0.0,0.0763888955116272 +2025-07-17 14:34:49.792,0.0,0.0763888955116272 +2025-07-17 14:34:49.914,0.0,0.0763888955116272 +2025-07-17 14:34:50.021,0.0,0.0763888955116272 +2025-07-17 14:34:50.115,0.0,0.0763888955116272 +2025-07-17 14:34:50.222,0.0,0.0763888955116272 +2025-07-17 14:34:50.362,0.0,0.0677083358168602 +2025-07-17 14:34:50.452,0.0,0.0677083358168602 +2025-07-17 14:34:50.545,0.0,0.0677083358168602 +2025-07-17 14:34:50.666,0.0,0.0677083358168602 +2025-07-17 14:34:50.774,0.0,0.0677083358168602 +2025-07-17 14:34:50.881,0.0,0.0677083358168602 +2025-07-17 14:34:50.973,0.0,0.0763888955116272 +2025-07-17 14:34:51.110,0.0,0.0763888955116272 +2025-07-17 14:34:51.187,0.0,0.0763888955116272 +2025-07-17 14:34:51.313,0.0,0.0763888955116272 +2025-07-17 14:34:51.424,0.0,0.0763888955116272 +2025-07-17 14:34:51.544,0.0,0.0677083358168602 +2025-07-17 14:34:51.637,0.0,0.0677083358168602 +2025-07-17 14:34:51.760,0.0,0.0677083358168602 +2025-07-17 14:34:51.851,0.0,0.0677083358168602 +2025-07-17 14:34:51.944,0.0,0.0677083358168602 +2025-07-17 14:34:52.052,0.0,0.0677083358168602 +2025-07-17 14:34:52.173,0.0,0.0677083358168602 +2025-07-17 14:34:52.266,0.0,0.0763888955116272 +2025-07-17 14:34:52.404,0.0,0.0763888955116272 +2025-07-17 14:34:52.513,0.0,0.0763888955116272 +2025-07-17 14:34:52.606,0.0,0.0763888955116272 +2025-07-17 14:34:52.714,0.0,0.0763888955116272 +2025-07-17 14:34:52.804,0.0,0.0763888955116272 +2025-07-17 14:34:52.942,0.0,0.0763888955116272 +2025-07-17 14:34:53.033,0.0,0.0763888955116272 +2025-07-17 14:34:53.124,0.0,0.0763888955116272 +2025-07-17 14:34:53.246,0.0,0.0763888955116272 +2025-07-17 14:34:53.337,0.0,0.0763888955116272 +2025-07-17 14:34:53.461,0.0,0.0763888955116272 +2025-07-17 14:34:53.569,0.0,0.0763888955116272 +2025-07-17 14:34:53.679,0.0,0.0763888955116272 +2025-07-17 14:34:53.773,0.0,0.0763888955116272 +2025-07-17 14:34:53.881,0.0,0.0763888955116272 +2025-07-17 14:34:53.991,0.0,0.0763888955116272 +2025-07-17 14:34:54.112,0.0,0.0763888955116272 +2025-07-17 14:34:54.205,0.0,0.0763888955116272 +2025-07-17 14:34:54.332,0.0,0.0763888955116272 +2025-07-17 14:34:54.442,0.0,0.0763888955116272 +2025-07-17 14:34:54.535,0.0,0.0763888955116272 +2025-07-17 14:34:54.660,0.0,0.0763888955116272 +2025-07-17 14:34:54.766,0.0,0.0763888955116272 +2025-07-17 14:34:54.860,0.0,0.0763888955116272 +2025-07-17 14:34:54.981,0.0,0.0763888955116272 +2025-07-17 14:34:55.073,0.0,0.0763888955116272 +2025-07-17 14:34:55.194,0.0,0.0763888955116272 +2025-07-17 14:34:55.301,0.0,0.0763888955116272 +2025-07-17 14:34:55.392,0.0,0.0763888955116272 +2025-07-17 14:34:55.514,0.0,0.0763888955116272 +2025-07-17 14:34:55.622,0.0,0.0763888955116272 +2025-07-17 14:34:55.729,0.0,0.0763888955116272 +2025-07-17 14:34:55.837,0.0,0.0763888955116272 +2025-07-17 14:34:55.929,0.0,0.0763888955116272 +2025-07-17 14:34:56.049,0.0,0.0763888955116272 +2025-07-17 14:34:56.156,0.0,0.0763888955116272 +2025-07-17 14:34:56.265,0.0,0.0763888955116272 +2025-07-17 14:34:56.373,0.0,0.0763888955116272 +2025-07-17 14:34:56.480,0.0,0.0763888955116272 +2025-07-17 14:34:56.607,0.0,0.0763888955116272 +2025-07-17 14:34:56.696,0.0,0.0763888955116272 +2025-07-17 14:34:56.802,0.0,0.0677083358168602 +2025-07-17 14:34:56.895,0.0,0.0763888955116272 +2025-07-17 14:34:57.019,0.0,0.0763888955116272 +2025-07-17 14:34:57.128,0.0,0.0763888955116272 +2025-07-17 14:34:57.235,0.0,0.0763888955116272 +2025-07-17 14:34:57.345,0.0,0.0763888955116272 +2025-07-17 14:34:57.453,0.0,0.0763888955116272 +2025-07-17 14:34:57.545,0.0,0.0763888955116272 +2025-07-17 14:34:57.669,0.0,0.0763888955116272 +2025-07-17 14:34:57.779,0.0,0.0763888955116272 +2025-07-17 14:34:57.874,0.0,0.0763888955116272 +2025-07-17 14:34:57.995,0.0,0.0763888955116272 +2025-07-17 14:34:58.101,0.0,0.0677083358168602 +2025-07-17 14:34:58.207,0.0,0.0763888955116272 +2025-07-17 14:34:58.315,0.0,0.0763888955116272 +2025-07-17 14:34:58.423,0.0,0.0763888955116272 +2025-07-17 14:34:58.546,0.0,0.0763888955116272 +2025-07-17 14:34:58.640,0.0,0.0763888955116272 +2025-07-17 14:34:58.748,0.0,0.0763888955116272 +2025-07-17 14:34:58.858,0.0,0.0763888955116272 +2025-07-17 14:34:58.964,0.0,0.0763888955116272 +2025-07-17 14:34:59.072,0.0,0.0763888955116272 +2025-07-17 14:34:59.164,0.0,0.0763888955116272 +2025-07-17 14:34:59.287,0.0,0.0763888955116272 +2025-07-17 14:34:59.382,0.0,0.0763888955116272 +2025-07-17 14:34:59.504,0.0,0.0763888955116272 +2025-07-17 14:34:59.597,0.0,0.0763888955116272 +2025-07-17 14:34:59.719,0.0,0.0763888955116272 +2025-07-17 14:34:59.826,0.0,0.0763888955116272 +2025-07-17 14:34:59.933,0.0,0.0763888955116272 +2025-07-17 14:35:00.025,0.0,0.0763888955116272 +2025-07-17 14:35:00.149,0.0,0.0677083358168602 +2025-07-17 14:35:00.243,0.0,0.0677083358168602 +2025-07-17 14:35:00.365,0.0,0.0763888955116272 +2025-07-17 14:35:00.470,0.0,0.0763888955116272 +2025-07-17 14:35:00.575,0.0,0.0677083358168602 +2025-07-17 14:35:00.683,0.0,0.0677083358168602 +2025-07-17 14:35:00.790,0.0,0.0677083358168602 +2025-07-17 14:35:00.896,0.0,0.0677083358168602 +2025-07-17 14:35:00.986,0.0,0.0677083358168602 +2025-07-17 14:35:01.110,0.0,0.0677083358168602 +2025-07-17 14:35:01.202,0.0,0.0763888955116272 +2025-07-17 14:35:01.326,0.0,0.0763888955116272 +2025-07-17 14:35:01.418,0.0,0.0763888955116272 +2025-07-17 14:35:01.540,0.0,0.0763888955116272 +2025-07-17 14:35:01.634,0.0,0.0763888955116272 +2025-07-17 14:35:01.758,0.0,0.0677083358168602 +2025-07-17 14:35:01.866,0.0,0.0677083358168602 +2025-07-17 14:35:02.005,0.0,0.0677083358168602 +2025-07-17 14:35:02.082,0.0,0.0677083358168602 +2025-07-17 14:35:02.187,0.0,0.0677083358168602 +2025-07-17 14:35:02.278,0.0,0.0677083358168602 +2025-07-17 14:35:02.401,0.0,0.0677083358168602 +2025-07-17 14:35:02.508,0.0,0.0763888955116272 +2025-07-17 14:35:02.613,0.0,0.0763888955116272 +2025-07-17 14:35:02.720,0.0,0.0763888955116272 +2025-07-17 14:35:02.829,0.0,0.0763888955116272 +2025-07-17 14:35:02.935,0.0,0.0763888955116272 +2025-07-17 14:35:03.042,0.0,0.0763888955116272 +2025-07-17 14:35:03.135,0.0,0.0763888955116272 +2025-07-17 14:35:03.256,0.0,0.0763888955116272 +2025-07-17 14:35:03.349,0.0,0.0763888955116272 +2025-07-17 14:35:03.488,0.0,0.0763888955116272 +2025-07-17 14:35:03.581,0.0,0.0763888955116272 +2025-07-17 14:35:03.675,0.0,0.0763888955116272 +2025-07-17 14:35:03.795,0.0,0.0763888955116272 +2025-07-17 14:35:03.887,0.0,0.0763888955116272 +2025-07-17 14:35:04.009,0.0,0.0763888955116272 +2025-07-17 14:35:04.102,0.0,0.0763888955116272 +2025-07-17 14:35:04.226,0.0,0.0763888955116272 +2025-07-17 14:35:04.319,0.0,0.0763888955116272 +2025-07-17 14:35:04.443,0.0,0.0763888955116272 +2025-07-17 14:35:04.551,0.0,0.0763888955116272 +2025-07-17 14:35:04.642,0.0,0.0763888955116272 +2025-07-17 14:35:04.764,0.0,0.0763888955116272 +2025-07-17 14:35:04.872,0.0,0.0763888955116272 +2025-07-17 14:35:04.980,0.0,0.0763888955116272 +2025-07-17 14:35:05.089,0.0,0.0763888955116272 +2025-07-17 14:35:05.183,0.0,0.0763888955116272 +2025-07-17 14:35:05.290,0.0,0.0763888955116272 +2025-07-17 14:35:05.415,0.0,0.0763888955116272 +2025-07-17 14:35:05.505,0.0,0.0763888955116272 +2025-07-17 14:35:05.630,0.0,0.0763888955116272 +2025-07-17 14:35:05.754,0.0,0.0763888955116272 +2025-07-17 14:35:05.862,0.0,0.0763888955116272 +2025-07-17 14:35:05.955,0.0,0.0763888955116272 +2025-07-17 14:35:06.062,0.0,0.0677083358168602 +2025-07-17 14:35:06.170,0.0,0.0677083358168602 +2025-07-17 14:35:06.277,0.0,0.0677083358168602 +2025-07-17 14:35:06.368,0.0,0.0677083358168602 +2025-07-17 14:35:06.476,0.0,0.0677083358168602 +2025-07-17 14:35:06.618,0.0,0.0763888955116272 +2025-07-17 14:35:06.710,0.0,0.0763888955116272 +2025-07-17 14:35:06.802,0.0,0.0763888955116272 +2025-07-17 14:35:06.953,0.0,0.0763888955116272 +2025-07-17 14:35:07.031,0.0,0.0763888955116272 +2025-07-17 14:35:07.126,0.0,0.0763888955116272 +2025-07-17 14:35:07.236,0.0,0.0763888955116272 +2025-07-17 14:35:07.343,0.0,0.0763888955116272 +2025-07-17 14:35:07.466,0.0,0.0763888955116272 +2025-07-17 14:35:07.558,0.0,0.0763888955116272 +2025-07-17 14:35:07.684,0.0,0.0763888955116272 +2025-07-17 14:35:07.776,0.0,0.0763888955116272 +2025-07-17 14:35:07.899,0.0,0.0763888955116272 +2025-07-17 14:35:07.995,0.0,0.0763888955116272 +2025-07-17 14:35:08.117,0.0,0.0763888955116272 +2025-07-17 14:35:08.211,0.0,0.0763888955116272 +2025-07-17 14:35:08.331,0.0,0.0763888955116272 +2025-07-17 14:35:08.425,0.0,0.0677083358168602 +2025-07-17 14:35:08.534,0.0,0.0677083358168602 +2025-07-17 14:35:08.657,0.0,0.0677083358168602 +2025-07-17 14:35:08.762,0.0,0.0677083358168602 +2025-07-17 14:35:08.854,0.0,0.0677083358168602 +2025-07-17 14:35:08.977,0.0,0.0677083358168602 +2025-07-17 14:35:09.071,0.0,0.0763888955116272 +2025-07-17 14:35:09.193,0.0,0.0763888955116272 +2025-07-17 14:35:09.283,0.0,0.0763888955116272 +2025-07-17 14:35:09.403,0.0,0.0763888955116272 +2025-07-17 14:35:09.498,0.0,0.0763888955116272 +2025-07-17 14:35:09.619,0.0,0.0763888955116272 +2025-07-17 14:35:09.712,0.0,0.0763888955116272 +2025-07-17 14:35:09.834,0.0,0.0763888955116272 +2025-07-17 14:35:09.925,0.0,0.0763888955116272 +2025-07-17 14:35:10.048,0.0,0.0763888955116272 +2025-07-17 14:35:10.139,0.0,0.0763888955116272 +2025-07-17 14:35:10.245,0.0,0.0763888955116272 +2025-07-17 14:35:10.367,0.0,0.0763888955116272 +2025-07-17 14:35:10.477,0.0,0.0763888955116272 +2025-07-17 14:35:10.585,0.0,0.0763888955116272 +2025-07-17 14:35:10.676,0.0,0.0763888955116272 +2025-07-17 14:35:10.785,0.0,0.0763888955116272 +2025-07-17 14:35:10.907,0.0,0.0763888955116272 +2025-07-17 14:35:11.017,0.0,0.0763888955116272 +2025-07-17 14:35:11.125,0.0,0.0763888955116272 +2025-07-17 14:35:11.216,0.0,0.0763888955116272 +2025-07-17 14:35:11.339,0.0,0.0763888955116272 +2025-07-17 14:35:11.448,0.0,0.0763888955116272 +2025-07-17 14:35:11.539,0.0,0.0763888955116272 +2025-07-17 14:35:11.664,0.0,0.0763888955116272 +2025-07-17 14:35:11.771,0.0,0.0763888955116272 +2025-07-17 14:35:11.879,0.0,0.0763888955116272 +2025-07-17 14:35:11.969,0.0,0.0763888955116272 +2025-07-17 14:35:12.092,0.0,0.0677083358168602 +2025-07-17 14:35:12.183,0.0,0.0677083358168602 +2025-07-17 14:35:12.306,0.0,0.0677083358168602 +2025-07-17 14:35:12.398,0.0,0.0677083358168602 +2025-07-17 14:35:12.521,0.0,0.0677083358168602 +2025-07-17 14:35:12.612,0.0,0.0763888955116272 +2025-07-17 14:35:12.733,0.0,0.0677083358168602 +2025-07-17 14:35:12.826,0.0,0.0763888955116272 +2025-07-17 14:35:12.933,0.0,0.0763888955116272 +2025-07-17 14:35:13.044,0.0,0.0677083358168602 +2025-07-17 14:35:13.165,0.0,0.0763888955116272 +2025-07-17 14:35:13.273,0.0,0.0763888955116272 +2025-07-17 14:35:13.382,0.0,0.0763888955116272 +2025-07-17 14:35:13.489,0.0,0.0763888955116272 +2025-07-17 14:35:13.580,0.0,0.0763888955116272 +2025-07-17 14:35:13.690,0.0,0.0763888955116272 +2025-07-17 14:35:13.812,0.0,0.0763888955116272 +2025-07-17 14:35:13.920,0.0,0.0763888955116272 +2025-07-17 14:35:14.028,0.0,0.0763888955116272 +2025-07-17 14:35:14.151,0.0,0.0763888955116272 +2025-07-17 14:35:14.228,0.0,0.0763888955116272 +2025-07-17 14:35:14.365,0.0,0.0763888955116272 +2025-07-17 14:35:14.455,0.0,0.0763888955116272 +2025-07-17 14:35:14.562,0.0,0.0763888955116272 +2025-07-17 14:35:14.667,0.0,0.0763888955116272 +2025-07-17 14:35:14.759,0.0,0.0763888955116272 +2025-07-17 14:35:14.882,0.0,0.0763888955116272 +2025-07-17 14:35:14.972,0.0,0.0763888955116272 +2025-07-17 14:35:15.094,0.0,0.0763888955116272 +2025-07-17 14:35:15.200,0.0,0.0763888955116272 +2025-07-17 14:35:15.321,0.0,0.0763888955116272 +2025-07-17 14:35:15.411,0.0,0.0763888955116272 +2025-07-17 14:35:15.517,0.0,0.0677083358168602 +2025-07-17 14:35:15.622,0.0,0.0677083358168602 +2025-07-17 14:35:15.721,0.0,0.0677083358168602 +2025-07-17 14:35:15.816,0.0,0.0677083358168602 +2025-07-17 14:35:15.918,0.0,0.0677083358168602 +2025-07-17 14:35:16.016,0.0,0.0677083358168602 +2025-07-17 14:35:16.132,0.0,0.0677083358168602 +2025-07-17 14:35:16.231,0.0,0.0763888955116272 +2025-07-17 14:35:16.330,0.0,0.0763888955116272 +2025-07-17 14:35:16.429,0.0,0.0763888955116272 +2025-07-17 14:35:16.529,0.0,0.0763888955116272 +2025-07-17 14:35:16.623,0.0,0.0763888955116272 +2025-07-17 14:35:16.740,0.0,0.0763888955116272 +2025-07-17 14:35:16.838,0.0,0.0677083358168602 +2025-07-17 14:35:16.935,0.0,0.0677083358168602 +2025-07-17 14:35:17.031,0.0,0.0677083358168602 +2025-07-17 14:35:17.131,0.0,0.0677083358168602 +2025-07-17 14:35:17.249,0.0,0.0677083358168602 +2025-07-17 14:35:17.349,0.0,0.0677083358168602 +2025-07-17 14:35:17.451,0.0,0.0677083358168602 +2025-07-17 14:35:17.548,0.0,0.0677083358168602 +2025-07-17 14:35:17.663,0.0,0.0677083358168602 +2025-07-17 14:35:17.760,0.0,0.0677083358168602 +2025-07-17 14:35:17.859,0.0,0.0677083358168602 +2025-07-17 14:35:17.959,0.0,0.0677083358168602 +2025-07-17 14:35:18.059,0.0,0.0763888955116272 +2025-07-17 14:35:18.156,0.0,0.0763888955116272 +2025-07-17 14:35:18.255,0.0,0.0763888955116272 +2025-07-17 14:35:18.373,0.0,0.0763888955116272 +2025-07-17 14:35:18.468,0.0,0.0763888955116272 +2025-07-17 14:35:18.565,0.0,0.0763888955116272 +2025-07-17 14:35:18.664,0.0,0.0763888955116272 +2025-07-17 14:35:18.763,0.0,0.0763888955116272 +2025-07-17 14:35:18.881,0.0,0.0763888955116272 +2025-07-17 14:35:18.981,0.0,0.0763888955116272 +2025-07-17 14:35:19.077,0.0,0.0763888955116272 +2025-07-17 14:35:19.176,0.0,0.0763888955116272 +2025-07-17 14:35:19.277,0.0,0.0763888955116272 +2025-07-17 14:35:19.373,0.0,0.0763888955116272 +2025-07-17 14:35:19.469,0.0,0.0763888955116272 +2025-07-17 14:35:19.584,0.0,0.0763888955116272 +2025-07-17 14:35:19.678,0.0,0.0763888955116272 +2025-07-17 14:35:19.777,0.0,0.0763888955116272 +2025-07-17 14:35:19.896,0.0,0.0763888955116272 +2025-07-17 14:35:19.994,0.0,0.0763888955116272 +2025-07-17 14:35:20.090,0.0,0.0763888955116272 +2025-07-17 14:35:20.190,0.0,0.0763888955116272 +2025-07-17 14:35:20.289,0.0,0.0763888955116272 +2025-07-17 14:35:20.389,0.0,0.0763888955116272 +2025-07-17 14:35:20.488,0.0,0.0763888955116272 +2025-07-17 14:35:20.607,0.0,0.0763888955116272 +2025-07-17 14:35:20.705,0.0,0.0763888955116272 +2025-07-17 14:35:20.802,0.0,0.0763888955116272 +2025-07-17 14:35:20.898,0.0,0.0763888955116272 +2025-07-17 14:35:21.001,0.0,0.0763888955116272 +2025-07-17 14:35:21.101,0.0,0.0763888955116272 +2025-07-17 14:35:21.216,0.0,0.0763888955116272 +2025-07-17 14:35:21.317,0.0,0.0763888955116272 +2025-07-17 14:35:21.415,0.0,0.0763888955116272 +2025-07-17 14:35:21.513,0.0,0.0763888955116272 +2025-07-17 14:35:21.612,0.0,0.0763888955116272 +2025-07-17 14:35:21.726,0.0,0.0763888955116272 +2025-07-17 14:35:21.826,0.0,0.0763888955116272 +2025-07-17 14:35:21.927,0.0,0.0763888955116272 +2025-07-17 14:35:22.025,0.0,0.0763888955116272 +2025-07-17 14:35:22.121,0.0,0.0763888955116272 +2025-07-17 14:35:22.223,0.0,0.0763888955116272 +2025-07-17 14:35:22.322,0.0,0.0763888955116272 +2025-07-17 14:35:22.439,0.0,0.0763888955116272 +2025-07-17 14:35:22.535,0.0,0.0763888955116272 +2025-07-17 14:35:22.636,0.0,0.0763888955116272 +2025-07-17 14:35:22.734,0.0,0.0763888955116272 +2025-07-17 14:35:22.833,0.0,0.0763888955116272 +2025-07-17 14:35:22.932,0.0,0.0763888955116272 +2025-07-17 14:35:23.051,0.0,0.0763888955116272 +2025-07-17 14:35:23.151,0.0,0.0763888955116272 +2025-07-17 14:35:23.246,0.0,0.0763888955116272 +2025-07-17 14:35:23.348,0.0,0.0763888955116272 +2025-07-17 14:35:23.447,0.0,0.0763888955116272 +2025-07-17 14:35:23.563,0.0,0.0763888955116272 +2025-07-17 14:35:23.660,0.0,0.0763888955116272 +2025-07-17 14:35:23.759,0.0,0.0763888955116272 +2025-07-17 14:35:23.858,0.0,0.0763888955116272 +2025-07-17 14:35:23.958,0.0,0.0763888955116272 +2025-07-17 14:35:24.059,0.0,0.0763888955116272 +2025-07-17 14:35:24.157,0.0,0.0763888955116272 +2025-07-17 14:35:24.270,0.0,0.0763888955116272 +2025-07-17 14:35:24.370,0.0,0.0763888955116272 +2025-07-17 14:35:24.470,0.0,0.0763888955116272 +2025-07-17 14:35:24.566,0.0,0.0677083358168602 +2025-07-17 14:35:24.668,0.0,0.0677083358168602 +2025-07-17 14:35:24.765,0.0,0.0677083358168602 +2025-07-17 14:35:24.882,0.0,0.0677083358168602 +2025-07-17 14:35:24.978,0.0,0.0677083358168602 +2025-07-17 14:35:25.079,0.0,0.0677083358168602 +2025-07-17 14:35:25.178,0.0,0.0763888955116272 +2025-07-17 14:35:25.276,0.0,0.0763888955116272 +2025-07-17 14:35:25.376,0.0,0.0763888955116272 +2025-07-17 14:35:25.476,0.0,0.0763888955116272 +2025-07-17 14:35:25.572,0.0,0.0763888955116272 +2025-07-17 14:35:25.689,0.0,0.0763888955116272 +2025-07-17 14:35:25.790,0.0,0.0763888955116272 +2025-07-17 14:35:25.888,0.0,0.0763888955116272 +2025-07-17 14:35:25.984,0.0,0.0763888955116272 +2025-07-17 14:35:26.081,0.0,0.0763888955116272 +2025-07-17 14:35:26.204,0.0,0.0763888955116272 +2025-07-17 14:35:26.301,0.0,0.0763888955116272 +2025-07-17 14:35:26.403,0.0,0.0677083358168602 +2025-07-17 14:35:26.501,0.0,0.0677083358168602 +2025-07-17 14:35:26.600,0.0,0.0677083358168602 +2025-07-17 14:35:26.699,0.0,0.0677083358168602 +2025-07-17 14:35:26.799,0.0,0.0677083358168602 +2025-07-17 14:35:26.896,0.0,0.0677083358168602 +2025-07-17 14:35:27.013,0.0,0.0677083358168602 +2025-07-17 14:35:27.113,0.0,0.0763888955116272 +2025-07-17 14:35:27.210,0.0,0.0763888955116272 +2025-07-17 14:35:27.311,0.0,0.0763888955116272 +2025-07-17 14:35:27.411,0.0,0.0763888955116272 +2025-07-17 14:35:27.509,0.0,0.0763888955116272 +2025-07-17 14:35:27.623,0.0,0.0763888955116272 +2025-07-17 14:35:27.724,0.0,0.0763888955116272 +2025-07-17 14:35:27.821,0.0,0.0763888955116272 +2025-07-17 14:35:27.919,0.0,0.0763888955116272 +2025-07-17 14:35:28.019,0.0,0.0763888955116272 +2025-07-17 14:35:28.117,0.0,0.0763888955116272 +2025-07-17 14:35:28.218,0.0,0.0763888955116272 +2025-07-17 14:35:28.317,0.0,0.0763888955116272 +2025-07-17 14:35:28.433,0.0,0.0763888955116272 +2025-07-17 14:35:28.532,0.0,0.0763888955116272 +2025-07-17 14:35:28.631,0.0,0.0763888955116272 +2025-07-17 14:35:28.730,0.0,0.0763888955116272 +2025-07-17 14:35:28.831,0.0,0.0763888955116272 +2025-07-17 14:35:28.928,0.0,0.0763888955116272 +2025-07-17 14:35:29.024,0.0,0.0763888955116272 +2025-07-17 14:35:29.146,0.0,0.0763888955116272 +2025-07-17 14:35:29.242,0.0,0.0763888955116272 +2025-07-17 14:35:29.339,0.0,0.0763888955116272 +2025-07-17 14:35:29.442,0.0,0.0763888955116272 +2025-07-17 14:35:29.540,0.0,0.0763888955116272 +2025-07-17 14:35:29.640,0.0,0.0763888955116272 +2025-07-17 14:35:29.739,0.0,0.0763888955116272 +2025-07-17 14:35:29.839,0.0,0.0763888955116272 +2025-07-17 14:35:29.957,0.0,0.0763888955116272 +2025-07-17 14:35:30.055,0.0,0.0763888955116272 +2025-07-17 14:35:30.154,0.0,0.0763888955116272 +2025-07-17 14:35:30.254,0.0,0.0763888955116272 +2025-07-17 14:35:30.353,0.0,0.0763888955116272 +2025-07-17 14:35:30.452,0.0,0.0763888955116272 +2025-07-17 14:35:30.569,0.0,0.0763888955116272 +2025-07-17 14:35:30.669,0.0,0.0763888955116272 +2025-07-17 14:35:30.764,0.0,0.0763888955116272 +2025-07-17 14:35:30.865,0.0,0.0763888955116272 +2025-07-17 14:35:30.966,0.0,0.0763888955116272 +2025-07-17 14:35:31.066,0.0,0.0763888955116272 +2025-07-17 14:35:31.161,0.0,0.0677083358168602 +2025-07-17 14:35:31.280,0.0,0.0763888955116272 +2025-07-17 14:35:31.379,0.0,0.0763888955116272 +2025-07-17 14:35:31.478,0.0,0.0763888955116272 +2025-07-17 14:35:31.578,0.0,0.0763888955116272 +2025-07-17 14:35:31.676,0.0,0.0763888955116272 +2025-07-17 14:35:31.773,0.0,0.0763888955116272 +2025-07-17 14:35:31.874,0.0,0.0763888955116272 +2025-07-17 14:35:31.987,0.0,0.0763888955116272 +2025-07-17 14:35:32.085,0.0,0.0763888955116272 +2025-07-17 14:35:32.186,0.0,0.0763888955116272 +2025-07-17 14:35:32.285,0.0,0.0763888955116272 +2025-07-17 14:35:32.382,0.0,0.0763888955116272 +2025-07-17 14:35:32.484,0.0,0.0763888955116272 +2025-07-17 14:35:32.604,0.0,0.0763888955116272 +2025-07-17 14:35:32.700,0.0,0.0763888955116272 +2025-07-17 14:35:32.800,0.0,0.0763888955116272 +2025-07-17 14:35:32.897,0.0,0.0763888955116272 +2025-07-17 14:35:32.997,0.0,0.0763888955116272 +2025-07-17 14:35:33.116,0.0,0.0763888955116272 +2025-07-17 14:35:33.213,0.0,0.0763888955116272 +2025-07-17 14:35:33.314,0.0,0.0763888955116272 +2025-07-17 14:35:33.412,0.0,0.0763888955116272 +2025-07-17 14:35:33.512,0.0,0.0763888955116272 +2025-07-17 14:35:33.608,0.0,0.0763888955116272 +2025-07-17 14:35:33.709,0.0,0.0763888955116272 +2025-07-17 14:35:33.808,0.0,0.0763888955116272 +2025-07-17 14:35:33.918,0.0,0.0763888955116272 +2025-07-17 14:35:34.018,0.0,0.0763888955116272 +2025-07-17 14:35:34.114,0.0,0.0763888955116272 +2025-07-17 14:35:34.214,0.0,0.0763888955116272 +2025-07-17 14:35:34.315,0.0,0.0763888955116272 +2025-07-17 14:35:34.431,0.0,0.0763888955116272 +2025-07-17 14:35:34.530,0.0,0.0763888955116272 +2025-07-17 14:35:34.629,0.0,0.0763888955116272 +2025-07-17 14:35:34.728,0.0,0.0763888955116272 +2025-07-17 14:35:34.828,0.0,0.0763888955116272 +2025-07-17 14:35:34.924,0.0,0.0763888955116272 +2025-07-17 14:35:35.038,0.0,0.0763888955116272 +2025-07-17 14:35:35.139,0.0,0.0763888955116272 +2025-07-17 14:35:35.238,0.0,0.0763888955116272 +2025-07-17 14:35:35.338,0.0,0.0677083358168602 +2025-07-17 14:35:35.439,0.0,0.0677083358168602 +2025-07-17 14:35:35.536,0.0,0.0763888955116272 +2025-07-17 14:35:35.657,0.0,0.0763888955116272 +2025-07-17 14:35:35.755,0.0,0.0763888955116272 +2025-07-17 14:35:35.854,0.0,0.0763888955116272 +2025-07-17 14:35:35.952,0.0,0.0763888955116272 +2025-07-17 14:35:36.053,0.0,0.0763888955116272 +2025-07-17 14:35:36.147,0.0,0.0763888955116272 +2025-07-17 14:35:36.264,0.0,0.0763888955116272 +2025-07-17 14:35:36.362,0.0,0.0763888955116272 +2025-07-17 14:35:36.463,0.0,0.0763888955116272 +2025-07-17 14:35:36.561,0.0,0.0763888955116272 +2025-07-17 14:35:36.660,0.0,0.0677083358168602 +2025-07-17 14:35:36.754,0.0,0.0677083358168602 +2025-07-17 14:35:36.872,0.0,0.0677083358168602 +2025-07-17 14:35:36.971,0.0,0.0677083358168602 +2025-07-17 14:35:37.068,0.0,0.0677083358168602 +2025-07-17 14:35:37.169,0.0,0.0677083358168602 +2025-07-17 14:35:37.268,0.0,0.0763888955116272 +2025-07-17 14:35:37.365,0.0,0.0763888955116272 +2025-07-17 14:35:37.483,0.0,0.0763888955116272 +2025-07-17 14:35:37.582,0.0,0.0763888955116272 +2025-07-17 14:35:37.680,0.0,0.0763888955116272 +2025-07-17 14:35:37.778,0.0,0.0763888955116272 +2025-07-17 14:35:37.877,0.0,0.0763888955116272 +2025-07-17 14:35:37.976,0.0,0.0763888955116272 +2025-07-17 14:35:38.096,0.0,0.0763888955116272 +2025-07-17 14:35:38.191,0.0,0.0763888955116272 +2025-07-17 14:35:38.290,0.0,0.0763888955116272 +2025-07-17 14:35:38.390,0.0,0.0763888955116272 +2025-07-17 14:35:38.489,0.0,0.0677083358168602 +2025-07-17 14:35:38.590,0.0,0.0677083358168602 +2025-07-17 14:35:38.687,0.0,0.0677083358168602 +2025-07-17 14:35:38.786,0.0,0.0677083358168602 +2025-07-17 14:35:38.902,0.0,0.0677083358168602 +2025-07-17 14:35:39.003,0.0,0.0677083358168602 +2025-07-17 14:35:39.102,0.0,0.0763888955116272 +2025-07-17 14:35:39.200,0.0,0.0763888955116272 +2025-07-17 14:35:39.298,0.0,0.0763888955116272 +2025-07-17 14:35:39.399,0.0,0.0763888955116272 +2025-07-17 14:35:39.530,0.0,0.0763888955116272 +2025-07-17 14:35:39.610,0.0,0.0763888955116272 +2025-07-17 14:35:39.711,0.0,0.0763888955116272 +2025-07-17 14:35:39.807,0.0,0.0763888955116272 +2025-07-17 14:35:39.908,0.0,0.0763888955116272 +2025-07-17 14:35:40.008,0.0,0.0763888955116272 +2025-07-17 14:35:40.121,0.0,0.0763888955116272 +2025-07-17 14:35:40.222,0.0,0.0763888955116272 +2025-07-17 14:35:40.323,0.0,0.0763888955116272 +2025-07-17 14:35:40.417,0.0,0.0763888955116272 +2025-07-17 14:35:40.516,0.0,0.0763888955116272 +2025-07-17 14:35:40.615,0.0,0.0677083358168602 +2025-07-17 14:35:40.732,0.0,0.0763888955116272 +2025-07-17 14:35:40.830,0.0,0.0763888955116272 +2025-07-17 14:35:40.929,0.0,0.0677083358168602 +2025-07-17 14:35:41.025,0.0,0.0677083358168602 +2025-07-17 14:35:41.125,0.0,0.0677083358168602 +2025-07-17 14:35:41.224,0.0,0.0677083358168602 +2025-07-17 14:35:41.341,0.0,0.0677083358168602 +2025-07-17 14:35:41.440,0.0,0.0677083358168602 +2025-07-17 14:35:41.541,0.0,0.0763888955116272 +2025-07-17 14:35:41.639,0.0,0.0763888955116272 +2025-07-17 14:35:41.736,0.0,0.0763888955116272 +2025-07-17 14:35:41.836,0.0,0.0763888955116272 +2025-07-17 14:35:41.955,0.0,0.0763888955116272 +2025-07-17 14:35:42.056,0.0,0.0763888955116272 +2025-07-17 14:35:42.152,0.0,0.0763888955116272 +2025-07-17 14:35:42.252,0.0,0.0763888955116272 +2025-07-17 14:35:42.351,0.0,0.0763888955116272 +2025-07-17 14:35:42.450,0.0,0.0763888955116272 +2025-07-17 14:35:42.549,0.0,0.0763888955116272 +2025-07-17 14:35:42.665,0.0,0.0763888955116272 +2025-07-17 14:35:42.763,0.0,0.0763888955116272 +2025-07-17 14:35:42.861,0.0,0.0763888955116272 +2025-07-17 14:35:42.961,0.0,0.0763888955116272 +2025-07-17 14:35:43.059,0.0,0.0763888955116272 +2025-07-17 14:35:43.158,0.0,0.0763888955116272 +2025-07-17 14:35:43.260,0.0,0.0763888955116272 +2025-07-17 14:35:43.374,0.0,0.0763888955116272 +2025-07-17 14:35:43.472,0.0,0.0763888955116272 +2025-07-17 14:35:43.572,0.0,0.0763888955116272 +2025-07-17 14:35:43.667,0.0,0.0763888955116272 +2025-07-17 14:35:43.767,0.0,0.0763888955116272 +2025-07-17 14:35:43.870,0.0,0.0763888955116272 +2025-07-17 14:35:43.965,0.0,0.0763888955116272 +2025-07-17 14:35:44.082,0.0,0.0677083358168602 +2025-07-17 14:35:44.180,0.0,0.0677083358168602 +2025-07-17 14:35:44.280,0.0,0.0763888955116272 +2025-07-17 14:35:44.378,0.0,0.0763888955116272 +2025-07-17 14:35:44.480,0.0,0.0763888955116272 +2025-07-17 14:35:44.576,0.0,0.0763888955116272 +2025-07-17 14:35:44.693,0.0,0.0763888955116272 +2025-07-17 14:35:44.791,0.0,0.0763888955116272 +2025-07-17 14:35:44.890,0.0,0.0763888955116272 +2025-07-17 14:35:44.988,0.0,0.0763888955116272 +2025-07-17 14:35:45.088,0.0,0.0763888955116272 +2025-07-17 14:35:45.187,0.0,0.0763888955116272 +2025-07-17 14:35:45.306,0.0,0.0763888955116272 +2025-07-17 14:35:45.405,0.0,0.0763888955116272 +2025-07-17 14:35:45.502,0.0,0.0763888955116272 +2025-07-17 14:35:45.601,0.0,0.0763888955116272 +2025-07-17 14:35:45.698,0.0,0.0677083358168602 +2025-07-17 14:35:45.815,0.0,0.0677083358168602 +2025-07-17 14:35:45.914,0.0,0.0677083358168602 +2025-07-17 14:35:46.013,0.0,0.0677083358168602 +2025-07-17 14:35:46.111,0.0,0.0677083358168602 +2025-07-17 14:35:46.210,0.0,0.0677083358168602 +2025-07-17 14:35:46.310,0.0,0.0763888955116272 +2025-07-17 14:35:46.409,0.0,0.0763888955116272 +2025-07-17 14:35:46.524,0.0,0.0763888955116272 +2025-07-17 14:35:46.621,0.0,0.0763888955116272 +2025-07-17 14:35:46.719,0.0,0.0763888955116272 +2025-07-17 14:35:46.822,0.0,0.0763888955116272 +2025-07-17 14:35:46.920,0.0,0.0763888955116272 +2025-07-17 14:35:47.018,0.0,0.0763888955116272 +2025-07-17 14:35:47.116,0.0,0.0763888955116272 +2025-07-17 14:35:47.234,0.0,0.0763888955116272 +2025-07-17 14:35:47.332,0.0,0.0763888955116272 +2025-07-17 14:35:47.432,0.0,0.0763888955116272 +2025-07-17 14:35:47.531,0.0,0.0763888955116272 +2025-07-17 14:35:47.628,0.0,0.0763888955116272 +2025-07-17 14:35:47.729,0.0,0.0763888955116272 +2025-07-17 14:35:47.826,0.0,0.0763888955116272 +2025-07-17 14:35:47.961,0.0,0.0763888955116272 +2025-07-17 14:35:48.041,0.0,0.0763888955116272 +2025-07-17 14:35:48.139,0.0,0.0763888955116272 +2025-07-17 14:35:48.236,0.0,0.0763888955116272 +2025-07-17 14:35:48.336,0.0,0.0763888955116272 +2025-07-17 14:35:48.455,0.0,0.0763888955116272 +2025-07-17 14:35:48.554,0.0,0.0763888955116272 +2025-07-17 14:35:48.654,0.0,0.0763888955116272 +2025-07-17 14:35:48.752,0.0,0.0763888955116272 +2025-07-17 14:35:48.850,0.0,0.0763888955116272 +2025-07-17 14:35:48.968,0.0,0.0763888955116272 +2025-07-17 14:35:49.063,0.0,0.0763888955116272 +2025-07-17 14:35:49.164,0.0,0.0763888955116272 +2025-07-17 14:35:49.264,0.0,0.0677083358168602 +2025-07-17 14:35:49.363,0.0,0.0763888955116272 +2025-07-17 14:35:49.460,0.0,0.0763888955116272 +2025-07-17 14:35:49.579,0.0,0.0763888955116272 +2025-07-17 14:35:49.674,0.0,0.0763888955116272 +2025-07-17 14:35:49.774,0.0,0.0763888955116272 +2025-07-17 14:35:49.874,0.0,0.0763888955116272 +2025-07-17 14:35:49.971,0.0,0.0763888955116272 +2025-07-17 14:35:50.066,0.0,0.0763888955116272 +2025-07-17 14:35:50.182,0.0,0.0763888955116272 +2025-07-17 14:35:50.281,0.0,0.0763888955116272 +2025-07-17 14:35:50.381,0.0,0.0763888955116272 +2025-07-17 14:35:50.481,0.0,0.0763888955116272 +2025-07-17 14:35:50.578,0.0,0.0763888955116272 +2025-07-17 14:35:50.677,0.0,0.0763888955116272 +2025-07-17 14:35:50.776,0.0,0.0763888955116272 +2025-07-17 14:35:50.892,0.0,0.0763888955116272 +2025-07-17 14:35:50.990,0.0,0.0763888955116272 +2025-07-17 14:35:51.090,0.0,0.0763888955116272 +2025-07-17 14:35:51.189,0.0,0.0763888955116272 +2025-07-17 14:35:51.308,0.0,0.0763888955116272 +2025-07-17 14:35:51.406,0.0,0.0763888955116272 +2025-07-17 14:35:51.504,0.0,0.0763888955116272 +2025-07-17 14:35:51.604,0.0,0.0763888955116272 +2025-07-17 14:35:51.704,0.0,0.0850694477558136 +2025-07-17 14:35:51.801,0.0,0.0850694477558136 +2025-07-17 14:35:51.920,0.0,0.0763888955116272 +2025-07-17 14:35:52.016,0.0,0.0850694477558136 +2025-07-17 14:35:52.114,0.0,0.0850694477558136 +2025-07-17 14:35:52.215,0.0,0.0850694477558136 +2025-07-17 14:35:52.314,0.0,0.0763888955116272 +2025-07-17 14:35:52.415,0.0,0.0763888955116272 +2025-07-17 14:35:52.513,0.0,0.0763888955116272 +2025-07-17 14:35:52.628,0.0,0.0763888955116272 +2025-07-17 14:35:52.728,0.0,0.0763888955116272 +2025-07-17 14:35:52.828,0.0,0.0677083358168602 +2025-07-17 14:35:52.927,0.0,0.0677083358168602 +2025-07-17 14:35:53.027,0.0,0.0677083358168602 +2025-07-17 14:35:53.120,0.0,0.0677083358168602 +2025-07-17 14:35:53.222,0.0,0.0677083358168602 +2025-07-17 14:35:53.338,0.0,0.0677083358168602 +2025-07-17 14:35:53.438,0.0,0.0763888955116272 +2025-07-17 14:35:53.538,0.0,0.0763888955116272 +2025-07-17 14:35:53.636,0.0,0.0763888955116272 +2025-07-17 14:35:53.732,0.0,0.0763888955116272 +2025-07-17 14:35:53.833,0.0,0.0763888955116272 +2025-07-17 14:35:53.931,0.0,0.0763888955116272 +2025-07-17 14:35:54.049,0.0,0.0677083358168602 +2025-07-17 14:35:54.149,0.0,0.0677083358168602 +2025-07-17 14:35:54.247,0.0,0.0677083358168602 +2025-07-17 14:35:54.341,0.0,0.0677083358168602 +2025-07-17 14:35:54.441,0.0,0.0677083358168602 +2025-07-17 14:35:54.558,0.0,0.0677083358168602 +2025-07-17 14:35:54.658,0.0,0.0763888955116272 +2025-07-17 14:35:54.758,0.0,0.0763888955116272 +2025-07-17 14:35:54.857,0.0,0.0763888955116272 +2025-07-17 14:35:54.957,0.0,0.0763888955116272 +2025-07-17 14:35:55.056,0.0,0.0763888955116272 +2025-07-17 14:35:55.153,0.0,0.0763888955116272 +2025-07-17 14:35:55.271,0.0,0.0763888955116272 +2025-07-17 14:35:55.369,0.0,0.0763888955116272 +2025-07-17 14:35:55.468,0.0,0.0763888955116272 +2025-07-17 14:35:55.567,0.0,0.0763888955116272 +2025-07-17 14:35:55.663,0.0,0.0763888955116272 +2025-07-17 14:35:55.781,0.0,0.0763888955116272 +2025-07-17 14:35:55.881,0.0,0.0763888955116272 +2025-07-17 14:35:55.976,0.0,0.0763888955116272 +2025-07-17 14:35:56.077,0.0,0.0763888955116272 +2025-07-17 14:35:56.171,0.0,0.0763888955116272 +2025-07-17 14:35:56.272,0.0,0.0763888955116272 +2025-07-17 14:35:56.387,0.0,0.0763888955116272 +2025-07-17 14:35:56.489,0.0,0.0763888955116272 +2025-07-17 14:35:56.586,0.0,0.0763888955116272 +2025-07-17 14:35:56.685,0.0,0.0763888955116272 +2025-07-17 14:35:56.784,0.0,0.0763888955116272 +2025-07-17 14:35:56.882,0.0,0.0763888955116272 +2025-07-17 14:35:56.979,0.0,0.0763888955116272 +2025-07-17 14:35:57.102,0.0,0.0763888955116272 +2025-07-17 14:35:57.200,0.0,0.0763888955116272 +2025-07-17 14:35:57.299,0.0,0.0763888955116272 +2025-07-17 14:35:57.397,0.0,0.0763888955116272 +2025-07-17 14:35:57.492,0.0,0.0763888955116272 +2025-07-17 14:35:57.591,0.0,0.0763888955116272 +2025-07-17 14:35:57.709,0.0,0.0763888955116272 +2025-07-17 14:35:57.809,0.0,0.0763888955116272 +2025-07-17 14:35:57.905,0.0,0.0763888955116272 +2025-07-17 14:35:58.001,0.0,0.0763888955116272 +2025-07-17 14:35:58.115,0.0,0.0763888955116272 +2025-07-17 14:35:58.215,0.0,0.0763888955116272 +2025-07-17 14:35:58.315,0.0,0.0763888955116272 +2025-07-17 14:35:58.413,0.0,0.0763888955116272 +2025-07-17 14:35:58.512,0.0,0.0763888955116272 +2025-07-17 14:35:58.628,0.0,0.0763888955116272 +2025-07-17 14:35:58.728,0.0,0.0763888955116272 +2025-07-17 14:35:58.827,0.0,0.0763888955116272 +2025-07-17 14:35:58.927,0.0,0.0763888955116272 +2025-07-17 14:35:59.023,0.0,0.0763888955116272 +2025-07-17 14:35:59.120,0.0,0.0763888955116272 +2025-07-17 14:35:59.221,0.0,0.0763888955116272 +2025-07-17 14:35:59.318,0.0,0.0763888955116272 +2025-07-17 14:35:59.435,0.0,0.0763888955116272 +2025-07-17 14:35:59.536,0.0,0.0763888955116272 +2025-07-17 14:35:59.632,0.0,0.0763888955116272 +2025-07-17 14:35:59.728,0.0,0.0763888955116272 +2025-07-17 14:35:59.826,0.0,0.0763888955116272 +2025-07-17 14:35:59.942,0.0,0.0763888955116272 +2025-07-17 14:36:00.041,0.0,0.0763888955116272 +2025-07-17 14:36:00.140,0.0,0.0763888955116272 +2025-07-17 14:36:00.239,0.0,0.0763888955116272 +2025-07-17 14:36:00.337,0.0,0.0763888955116272 +2025-07-17 14:36:00.436,0.0,0.0763888955116272 +2025-07-17 14:36:00.555,0.0,0.0763888955116272 +2025-07-17 14:36:00.653,0.0,0.0763888955116272 +2025-07-17 14:36:00.750,0.0,0.0763888955116272 +2025-07-17 14:36:00.851,0.0,0.0763888955116272 +2025-07-17 14:36:00.949,0.0,0.0763888955116272 +2025-07-17 14:36:01.061,0.0,0.0763888955116272 +2025-07-17 14:36:01.160,0.0,0.0763888955116272 +2025-07-17 14:36:01.260,0.0,0.0763888955116272 +2025-07-17 14:36:01.361,0.0,0.0763888955116272 +2025-07-17 14:36:01.459,0.0,0.0763888955116272 +2025-07-17 14:36:01.574,0.0,0.0763888955116272 +2025-07-17 14:36:01.672,0.0,0.0763888955116272 +2025-07-17 14:36:01.771,0.0,0.0763888955116272 +2025-07-17 14:36:01.870,0.0,0.0763888955116272 +2025-07-17 14:36:01.969,0.0,0.0763888955116272 +2025-07-17 14:36:02.067,0.0,0.0763888955116272 +2025-07-17 14:36:02.181,0.0,0.0763888955116272 +2025-07-17 14:36:02.282,0.0,0.0763888955116272 +2025-07-17 14:36:02.380,0.0,0.0763888955116272 +2025-07-17 14:36:02.480,0.0,0.0763888955116272 +2025-07-17 14:36:02.577,0.0,0.0763888955116272 +2025-07-17 14:36:02.673,0.0,0.0763888955116272 +2025-07-17 14:36:02.773,0.0,0.0763888955116272 +2025-07-17 14:36:02.891,0.0,0.0763888955116272 +2025-07-17 14:36:02.986,0.0,0.0763888955116272 +2025-07-17 14:36:03.087,0.0,0.0763888955116272 +2025-07-17 14:36:03.186,0.0,0.0763888955116272 +2025-07-17 14:36:03.284,0.0,0.0763888955116272 +2025-07-17 14:36:03.383,0.0,0.0763888955116272 +2025-07-17 14:36:03.501,0.0,0.0763888955116272 +2025-07-17 14:36:03.600,0.0,0.0763888955116272 +2025-07-17 14:36:03.699,0.0,0.0763888955116272 +2025-07-17 14:36:03.796,0.0,0.0763888955116272 +2025-07-17 14:36:03.898,0.0,0.0763888955116272 +2025-07-17 14:36:03.997,0.0,0.0763888955116272 +2025-07-17 14:36:04.093,0.0,0.0763888955116272 +2025-07-17 14:36:04.211,0.0,0.0763888955116272 +2025-07-17 14:36:04.310,0.0,0.0763888955116272 +2025-07-17 14:36:04.407,0.0,0.0763888955116272 +2025-07-17 14:36:04.506,0.0,0.0763888955116272 +2025-07-17 14:36:04.602,0.0,0.0763888955116272 +2025-07-17 14:36:04.719,0.0,0.0763888955116272 +2025-07-17 14:36:04.818,0.0,0.0763888955116272 +2025-07-17 14:36:04.918,0.0,0.0763888955116272 +2025-07-17 14:36:05.016,0.0,0.0763888955116272 +2025-07-17 14:36:05.114,0.0,0.0763888955116272 +2025-07-17 14:36:05.230,0.0,0.0763888955116272 +2025-07-17 14:36:05.329,0.0,0.0763888955116272 +2025-07-17 14:36:05.429,0.0,0.0763888955116272 +2025-07-17 14:36:05.529,0.0,0.0763888955116272 +2025-07-17 14:36:05.626,0.0,0.0763888955116272 +2025-07-17 14:36:05.722,0.0,0.0763888955116272 +2025-07-17 14:36:05.838,0.0,0.0763888955116272 +2025-07-17 14:36:05.937,0.0,0.0763888955116272 +2025-07-17 14:36:06.035,0.0,0.0763888955116272 +2025-07-17 14:36:06.134,0.0,0.0763888955116272 +2025-07-17 14:36:06.230,0.0,0.0763888955116272 +2025-07-17 14:36:06.331,0.0,0.0763888955116272 +2025-07-17 14:36:06.448,0.0,0.0763888955116272 +2025-07-17 14:36:06.548,0.0,0.0763888955116272 +2025-07-17 14:36:06.642,0.0,0.0763888955116272 +2025-07-17 14:36:06.741,0.0,0.0763888955116272 +2025-07-17 14:36:06.839,0.0,0.0763888955116272 +2025-07-17 14:36:06.960,0.0,0.0763888955116272 +2025-07-17 14:36:07.058,0.0,0.0763888955116272 +2025-07-17 14:36:07.155,0.0,0.0763888955116272 +2025-07-17 14:36:07.256,0.0,0.0763888955116272 +2025-07-17 14:36:07.354,0.0,0.0763888955116272 +2025-07-17 14:36:07.468,0.0,0.0763888955116272 +2025-07-17 14:36:07.567,0.0,0.0763888955116272 +2025-07-17 14:36:07.662,0.0,0.0763888955116272 +2025-07-17 14:36:07.762,0.0,0.0763888955116272 +2025-07-17 14:36:07.861,0.0,0.0763888955116272 +2025-07-17 14:36:07.975,0.0,0.0677083358168602 +2025-07-17 14:36:08.073,0.0,0.0677083358168602 +2025-07-17 14:36:08.172,0.0,0.0677083358168602 +2025-07-17 14:36:08.268,0.0,0.0677083358168602 +2025-07-17 14:36:08.370,0.0,0.0677083358168602 +2025-07-17 14:36:08.468,0.0,0.0677083358168602 +2025-07-17 14:36:08.585,0.0,0.0763888955116272 +2025-07-17 14:36:08.681,0.0,0.0763888955116272 +2025-07-17 14:36:08.781,0.0,0.0763888955116272 +2025-07-17 14:36:08.881,0.0,0.0763888955116272 +2025-07-17 14:36:08.977,0.0,0.0763888955116272 +2025-07-17 14:36:09.077,0.0,0.0763888955116272 +2025-07-17 14:36:09.196,0.0,0.0763888955116272 +2025-07-17 14:36:09.295,0.0,0.0763888955116272 +2025-07-17 14:36:09.392,0.0,0.0763888955116272 +2025-07-17 14:36:09.492,0.0,0.0763888955116272 +2025-07-17 14:36:09.587,0.0,0.0763888955116272 +2025-07-17 14:36:09.689,0.0,0.0763888955116272 +2025-07-17 14:36:09.804,0.0,0.0763888955116272 +2025-07-17 14:36:09.905,0.0,0.0763888955116272 +2025-07-17 14:36:10.005,0.0,0.0763888955116272 +2025-07-17 14:36:10.104,0.0,0.0763888955116272 +2025-07-17 14:36:10.201,0.0,0.0763888955116272 +2025-07-17 14:36:10.303,0.0,0.0763888955116272 +2025-07-17 14:36:10.400,0.0,0.0763888955116272 +2025-07-17 14:36:10.516,0.0,0.0763888955116272 +2025-07-17 14:36:10.616,0.0,0.0763888955116272 +2025-07-17 14:36:10.712,0.0,0.0763888955116272 +2025-07-17 14:36:10.810,0.0,0.0763888955116272 +2025-07-17 14:36:10.913,0.0,0.0763888955116272 +2025-07-17 14:36:11.028,0.0,0.0763888955116272 +2025-07-17 14:36:11.126,0.0,0.0763888955116272 +2025-07-17 14:36:11.224,0.0,0.0763888955116272 +2025-07-17 14:36:11.320,0.0,0.0763888955116272 +2025-07-17 14:36:11.418,0.0,0.0763888955116272 +2025-07-17 14:36:11.520,0.0,0.0763888955116272 +2025-07-17 14:36:11.618,0.0,0.0763888955116272 +2025-07-17 14:36:11.733,0.0,0.0763888955116272 +2025-07-17 14:36:11.834,0.0,0.0763888955116272 +2025-07-17 14:36:11.932,0.0,0.0763888955116272 +2025-07-17 14:36:12.028,0.0,0.0763888955116272 +2025-07-17 14:36:12.130,0.0,0.0763888955116272 +2025-07-17 14:36:12.226,0.0,0.0763888955116272 +2025-07-17 14:36:12.341,0.0,0.0763888955116272 +2025-07-17 14:36:12.441,0.0,0.0763888955116272 +2025-07-17 14:36:12.537,0.0,0.0763888955116272 +2025-07-17 14:36:12.637,0.0,0.0763888955116272 +2025-07-17 14:36:12.757,0.0,0.0763888955116272 +2025-07-17 14:36:12.855,0.0,0.0763888955116272 +2025-07-17 14:36:12.956,0.0,0.0763888955116272 +2025-07-17 14:36:13.053,0.0,0.0763888955116272 +2025-07-17 14:36:13.149,0.0,0.0763888955116272 +2025-07-17 14:36:13.266,0.0,0.0763888955116272 +2025-07-17 14:36:13.363,0.0,0.0763888955116272 +2025-07-17 14:36:13.463,0.0,0.0763888955116272 +2025-07-17 14:36:13.563,0.0,0.0763888955116272 +2025-07-17 14:36:13.659,0.0,0.0763888955116272 +2025-07-17 14:36:13.773,0.0,0.0763888955116272 +2025-07-17 14:36:13.873,0.0,0.0763888955116272 +2025-07-17 14:36:13.973,0.0,0.0677083358168602 +2025-07-17 14:36:14.071,0.0,0.0677083358168602 +2025-07-17 14:36:14.169,0.0,0.0677083358168602 +2025-07-17 14:36:14.283,0.0,0.0677083358168602 +2025-07-17 14:36:14.383,0.0,0.0677083358168602 +2025-07-17 14:36:14.483,0.0,0.0677083358168602 +2025-07-17 14:36:14.580,0.0,0.0763888955116272 +2025-07-17 14:36:14.679,0.0,0.0763888955116272 +2025-07-17 14:36:14.777,0.0,0.0763888955116272 +2025-07-17 14:36:14.875,0.0,0.0763888955116272 +2025-07-17 14:36:14.992,0.0,0.0763888955116272 +2025-07-17 14:36:15.096,0.0,0.0763888955116272 +2025-07-17 14:36:15.190,0.0,0.0763888955116272 +2025-07-17 14:36:15.292,0.0,0.0763888955116272 +2025-07-17 14:36:15.392,0.0,0.0763888955116272 +2025-07-17 14:36:15.488,0.0,0.0763888955116272 +2025-07-17 14:36:15.606,0.0,0.0763888955116272 +2025-07-17 14:36:15.706,0.0,0.0763888955116272 +2025-07-17 14:36:15.805,0.0,0.0763888955116272 +2025-07-17 14:36:15.905,0.0,0.0763888955116272 +2025-07-17 14:36:16.004,0.0,0.0763888955116272 +2025-07-17 14:36:16.101,0.0,0.0763888955116272 +2025-07-17 14:36:16.202,0.0,0.0763888955116272 +2025-07-17 14:36:16.318,0.0,0.0763888955116272 +2025-07-17 14:36:16.418,0.0,0.0763888955116272 +2025-07-17 14:36:16.516,0.0,0.0763888955116272 +2025-07-17 14:36:16.615,0.0,0.0763888955116272 +2025-07-17 14:36:16.728,0.0,0.0763888955116272 +2025-07-17 14:36:16.809,0.0,0.0763888955116272 +2025-07-17 14:36:16.925,0.0,0.0763888955116272 +2025-07-17 14:36:17.026,0.0,0.0763888955116272 +2025-07-17 14:36:17.125,0.0,0.0763888955116272 +2025-07-17 14:36:17.222,0.0,0.0763888955116272 +2025-07-17 14:36:17.319,0.0,0.0763888955116272 +2025-07-17 14:36:17.420,0.0,0.0763888955116272 +2025-07-17 14:36:17.520,0.0,0.0763888955116272 +2025-07-17 14:36:17.621,0.0,0.0763888955116272 +2025-07-17 14:36:17.736,0.0,0.0763888955116272 +2025-07-17 14:36:17.836,0.0,0.0763888955116272 +2025-07-17 14:36:17.932,0.0,0.0763888955116272 +2025-07-17 14:36:18.031,0.0,0.0763888955116272 +2025-07-17 14:36:18.130,0.0,0.0677083358168602 +2025-07-17 14:36:18.230,0.0,0.0677083358168602 +2025-07-17 14:36:18.349,0.0,0.0677083358168602 +2025-07-17 14:36:18.445,0.0,0.0677083358168602 +2025-07-17 14:36:18.540,0.0,0.0677083358168602 +2025-07-17 14:36:18.637,0.0,0.0677083358168602 +2025-07-17 14:36:18.738,0.0,0.0763888955116272 +2025-07-17 14:36:18.856,0.0,0.0763888955116272 +2025-07-17 14:36:18.953,0.0,0.0763888955116272 +2025-07-17 14:36:19.052,0.0,0.0763888955116272 +2025-07-17 14:36:19.147,0.0,0.0763888955116272 +2025-07-17 14:36:19.266,0.0,0.0763888955116272 +2025-07-17 14:36:19.363,0.0,0.0763888955116272 +2025-07-17 14:36:19.461,0.0,0.0763888955116272 +2025-07-17 14:36:19.559,0.0,0.0763888955116272 +2025-07-17 14:36:19.656,0.0,0.0763888955116272 +2025-07-17 14:36:19.771,0.0,0.0763888955116272 +2025-07-17 14:36:19.867,0.0,0.0763888955116272 +2025-07-17 14:36:19.969,0.0,0.0763888955116272 +2025-07-17 14:36:20.065,0.0,0.0763888955116272 +2025-07-17 14:36:20.182,0.0,0.0763888955116272 +2025-07-17 14:36:20.279,0.0,0.0763888955116272 +2025-07-17 14:36:20.378,0.0,0.0763888955116272 +2025-07-17 14:36:20.475,0.0,0.0763888955116272 +2025-07-17 14:36:20.573,0.0,0.0677083358168602 +2025-07-17 14:36:20.671,0.0,0.0677083358168602 +2025-07-17 14:36:20.785,0.0,0.0677083358168602 +2025-07-17 14:36:20.884,0.0,0.0677083358168602 +2025-07-17 14:36:20.983,0.0,0.0677083358168602 +2025-07-17 14:36:21.081,0.0,0.0677083358168602 +2025-07-17 14:36:21.180,0.0,0.0763888955116272 +2025-07-17 14:36:21.298,0.0,0.0763888955116272 +2025-07-17 14:36:21.395,0.0,0.0763888955116272 +2025-07-17 14:36:21.492,0.0,0.0763888955116272 +2025-07-17 14:36:21.585,0.0,0.0763888955116272 +2025-07-17 14:36:21.687,0.0,0.0763888955116272 +2025-07-17 14:36:21.805,0.0,0.0763888955116272 +2025-07-17 14:36:21.901,0.0,0.0763888955116272 +2025-07-17 14:36:21.999,0.0,0.0763888955116272 +2025-07-17 14:36:22.098,0.0,0.0763888955116272 +2025-07-17 14:36:22.212,0.0,0.0763888955116272 +2025-07-17 14:36:22.312,0.0,0.0763888955116272 +2025-07-17 14:36:22.409,0.0,0.0763888955116272 +2025-07-17 14:36:22.507,0.0,0.0763888955116272 +2025-07-17 14:36:22.604,0.0,0.0763888955116272 +2025-07-17 14:36:22.720,0.0,0.0763888955116272 +2025-07-17 14:36:22.818,0.0,0.0763888955116272 +2025-07-17 14:36:22.919,0.0,0.0763888955116272 +2025-07-17 14:36:23.012,0.0,0.0763888955116272 +2025-07-17 14:36:23.123,0.0,0.0763888955116272 +2025-07-17 14:36:23.220,0.0,0.0763888955116272 +2025-07-17 14:36:23.318,0.0,0.0763888955116272 +2025-07-17 14:36:23.431,0.0,0.0763888955116272 +2025-07-17 14:36:23.530,0.0,0.0763888955116272 +2025-07-17 14:36:23.628,0.0,0.0763888955116272 +2025-07-17 14:36:23.723,0.0,0.0763888955116272 +2025-07-17 14:36:23.824,0.0,0.0763888955116272 +2025-07-17 14:36:23.938,0.0,0.0763888955116272 +2025-07-17 14:36:24.035,0.0,0.0763888955116272 +2025-07-17 14:36:24.133,0.0,0.0677083358168602 +2025-07-17 14:36:24.231,0.0,0.0677083358168602 +2025-07-17 14:36:24.330,0.0,0.0677083358168602 +2025-07-17 14:36:24.448,0.0,0.0677083358168602 +2025-07-17 14:36:24.542,0.0,0.0677083358168602 +2025-07-17 14:36:24.639,0.0,0.0677083358168602 +2025-07-17 14:36:24.739,0.0,0.0763888955116272 +2025-07-17 14:36:24.836,0.0,0.0763888955116272 +2025-07-17 14:36:24.953,0.0,0.0763888955116272 +2025-07-17 14:36:25.050,0.0,0.0763888955116272 +2025-07-17 14:36:25.148,0.0,0.0763888955116272 +2025-07-17 14:36:25.261,0.0,0.0763888955116272 +2025-07-17 14:36:25.362,0.0,0.0763888955116272 +2025-07-17 14:36:25.460,0.0,0.0763888955116272 +2025-07-17 14:36:25.557,0.0,0.0763888955116272 +2025-07-17 14:36:25.656,0.0,0.0763888955116272 +2025-07-17 14:36:25.771,0.0,0.0763888955116272 +2025-07-17 14:36:25.868,0.0,0.0763888955116272 +2025-07-17 14:36:25.966,0.0,0.0763888955116272 +2025-07-17 14:36:26.063,0.0,0.0763888955116272 +2025-07-17 14:36:26.177,0.0,0.0763888955116272 +2025-07-17 14:36:26.273,0.0,0.0763888955116272 +2025-07-17 14:36:26.372,0.0,0.0763888955116272 +2025-07-17 14:36:26.470,0.0,0.0763888955116272 +2025-07-17 14:36:26.584,0.0,0.0763888955116272 +2025-07-17 14:36:26.680,0.0,0.0763888955116272 +2025-07-17 14:36:26.776,0.0,0.0763888955116272 +2025-07-17 14:36:26.874,0.0,0.0763888955116272 +2025-07-17 14:36:26.989,0.0,0.0763888955116272 +2025-07-17 14:36:27.088,0.0,0.0763888955116272 +2025-07-17 14:36:27.183,0.0,0.0763888955116272 +2025-07-17 14:36:27.297,0.0,0.0763888955116272 +2025-07-17 14:36:27.395,0.0,0.0763888955116272 +2025-07-17 14:36:27.491,0.0,0.0763888955116272 +2025-07-17 14:36:27.587,0.0,0.0763888955116272 +2025-07-17 14:36:27.686,0.0,0.0763888955116272 +2025-07-17 14:36:27.804,0.0,0.0763888955116272 +2025-07-17 14:36:27.902,0.0,0.0763888955116272 +2025-07-17 14:36:28.001,0.0,0.0763888955116272 +2025-07-17 14:36:28.097,0.0,0.0763888955116272 +2025-07-17 14:36:28.194,0.0,0.0763888955116272 +2025-07-17 14:36:28.311,0.0,0.0763888955116272 +2025-07-17 14:36:28.407,0.0,0.0763888955116272 +2025-07-17 14:36:28.506,0.0,0.0763888955116272 +2025-07-17 14:36:28.618,0.0,0.0763888955116272 +2025-07-17 14:36:28.715,0.0,0.0677083358168602 +2025-07-17 14:36:28.812,0.0,0.0763888955116272 +2025-07-17 14:36:28.913,0.0,0.0763888955116272 +2025-07-17 14:36:29.011,0.0,0.0763888955116272 +2025-07-17 14:36:29.126,0.0,0.0763888955116272 +2025-07-17 14:36:29.223,0.0,0.0763888955116272 +2025-07-17 14:36:29.322,0.0,0.0763888955116272 +2025-07-17 14:36:29.420,0.0,0.0763888955116272 +2025-07-17 14:36:29.517,0.0,0.0763888955116272 +2025-07-17 14:36:29.616,0.0,0.0763888955116272 +2025-07-17 14:36:29.731,0.0,0.0763888955116272 +2025-07-17 14:36:29.828,0.0,0.0763888955116272 +2025-07-17 14:36:29.924,0.0,0.0763888955116272 +2025-07-17 14:36:30.038,0.0,0.0763888955116272 +2025-07-17 14:36:30.136,0.0,0.0763888955116272 +2025-07-17 14:36:30.234,0.0,0.0763888955116272 +2025-07-17 14:36:30.330,0.0,0.0763888955116272 +2025-07-17 14:36:30.429,0.0,0.0763888955116272 +2025-07-17 14:36:30.546,0.0,0.0763888955116272 +2025-07-17 14:36:30.642,0.0,0.0677083358168602 +2025-07-17 14:36:30.742,0.0,0.0763888955116272 +2025-07-17 14:36:30.837,0.0,0.0677083358168602 +2025-07-17 14:36:30.934,0.0,0.0677083358168602 +2025-07-17 14:36:31.054,0.0,0.0677083358168602 +2025-07-17 14:36:31.152,0.0,0.0677083358168602 +2025-07-17 14:36:31.247,0.0,0.0677083358168602 +2025-07-17 14:36:31.361,0.0,0.0677083358168602 +2025-07-17 14:36:31.459,0.0,0.0677083358168602 +2025-07-17 14:36:31.557,0.0,0.0763888955116272 +2025-07-17 14:36:31.653,0.0,0.0763888955116272 +2025-07-17 14:36:31.769,0.0,0.0763888955116272 +2025-07-17 14:36:31.866,0.0,0.0763888955116272 +2025-07-17 14:36:31.965,0.0,0.0763888955116272 +2025-07-17 14:36:32.061,0.0,0.0763888955116272 +2025-07-17 14:36:32.160,0.0,0.0763888955116272 +2025-07-17 14:36:32.275,0.0,0.0763888955116272 +2025-07-17 14:36:32.372,0.0,0.0763888955116272 +2025-07-17 14:36:32.469,0.0,0.0763888955116272 +2025-07-17 14:36:32.567,0.0,0.0763888955116272 +2025-07-17 14:36:32.665,0.0,0.0763888955116272 +2025-07-17 14:36:32.780,0.0,0.0763888955116272 +2025-07-17 14:36:32.878,0.0,0.0763888955116272 +2025-07-17 14:36:32.975,0.0,0.0763888955116272 +2025-07-17 14:36:33.073,0.0,0.0763888955116272 +2025-07-17 14:36:33.172,0.0,0.0763888955116272 +2025-07-17 14:36:33.270,0.0,0.0763888955116272 +2025-07-17 14:36:33.386,0.0,0.0763888955116272 +2025-07-17 14:36:33.483,0.0,0.0763888955116272 +2025-07-17 14:36:33.580,0.0,0.0763888955116272 +2025-07-17 14:36:33.677,0.0,0.0763888955116272 +2025-07-17 14:36:33.790,0.0,0.0763888955116272 +2025-07-17 14:36:33.889,0.0,0.0763888955116272 +2025-07-17 14:36:33.986,0.0,0.0763888955116272 +2025-07-17 14:36:34.082,0.0,0.0763888955116272 +2025-07-17 14:36:34.203,0.0,0.0763888955116272 +2025-07-17 14:36:34.299,0.0,0.0763888955116272 +2025-07-17 14:36:34.397,0.0,0.0763888955116272 +2025-07-17 14:36:34.493,0.0,0.0763888955116272 +2025-07-17 14:36:34.590,0.0,0.0763888955116272 +2025-07-17 14:36:34.689,0.0,0.0763888955116272 +2025-07-17 14:36:34.807,0.0,0.0763888955116272 +2025-07-17 14:36:34.904,0.0,0.0763888955116272 +2025-07-17 14:36:35.003,0.0,0.0763888955116272 +2025-07-17 14:36:35.098,0.0,0.0763888955116272 +2025-07-17 14:36:35.211,0.0,0.0763888955116272 +2025-07-17 14:36:35.309,0.0,0.0763888955116272 +2025-07-17 14:36:35.404,0.0,0.0763888955116272 +2025-07-17 14:36:35.504,0.0,0.0763888955116272 +2025-07-17 14:36:35.620,0.0,0.0763888955116272 +2025-07-17 14:36:35.714,0.0,0.0763888955116272 +2025-07-17 14:36:35.813,0.0,0.0763888955116272 +2025-07-17 14:36:35.913,0.0,0.0677083358168602 +2025-07-17 14:36:36.027,0.0,0.0677083358168602 +2025-07-17 14:36:36.127,0.0,0.0763888955116272 +2025-07-17 14:36:36.225,0.0,0.0763888955116272 +2025-07-17 14:36:36.322,0.0,0.0763888955116272 +2025-07-17 14:36:36.420,0.0,0.0763888955116272 +2025-07-17 14:36:36.519,0.0,0.0763888955116272 +2025-07-17 14:36:36.631,0.0,0.0763888955116272 +2025-07-17 14:36:36.730,0.0,0.0763888955116272 +2025-07-17 14:36:36.825,0.0,0.0677083358168602 +2025-07-17 14:36:36.923,0.0,0.0677083358168602 +2025-07-17 14:36:37.039,0.0,0.0677083358168602 +2025-07-17 14:36:37.137,0.0,0.0677083358168602 +2025-07-17 14:36:37.233,0.0,0.0677083358168602 +2025-07-17 14:36:37.333,0.0,0.0677083358168602 +2025-07-17 14:36:37.450,0.0,0.0763888955116272 +2025-07-17 14:36:37.548,0.0,0.0763888955116272 +2025-07-17 14:36:37.646,0.0,0.0763888955116272 +2025-07-17 14:36:37.741,0.0,0.0763888955116272 +2025-07-17 14:36:37.860,0.0,0.0763888955116272 +2025-07-17 14:36:37.959,0.0,0.0763888955116272 +2025-07-17 14:36:38.057,0.0,0.0763888955116272 +2025-07-17 14:36:38.153,0.0,0.0763888955116272 +2025-07-17 14:36:38.250,0.0,0.0763888955116272 +2025-07-17 14:36:38.365,0.0,0.0763888955116272 +2025-07-17 14:36:38.465,0.0,0.0763888955116272 +2025-07-17 14:36:38.561,0.0,0.0763888955116272 +2025-07-17 14:36:38.658,0.0,0.0763888955116272 +2025-07-17 14:36:38.774,0.0,0.0763888955116272 +2025-07-17 14:36:38.866,0.0,0.0763888955116272 +2025-07-17 14:36:38.960,0.0,0.0763888955116272 +2025-07-17 14:36:39.071,0.0,0.0763888955116272 +2025-07-17 14:36:39.165,0.0,0.0763888955116272 +2025-07-17 14:36:39.275,0.0,0.0763888955116272 +2025-07-17 14:36:39.372,0.0,0.0763888955116272 +2025-07-17 14:36:39.466,0.0,0.0763888955116272 +2025-07-17 14:36:39.581,0.0,0.0763888955116272 +2025-07-17 14:36:39.678,0.0,0.0763888955116272 +2025-07-17 14:36:39.779,0.0,0.0763888955116272 +2025-07-17 14:36:39.875,0.0,0.0763888955116272 +2025-07-17 14:36:39.973,0.0,0.0763888955116272 +2025-07-17 14:36:40.087,0.0,0.0763888955116272 +2025-07-17 14:36:40.185,0.0,0.0763888955116272 +2025-07-17 14:36:40.284,0.0,0.0763888955116272 +2025-07-17 14:36:40.382,0.0,0.0763888955116272 +2025-07-17 14:36:40.478,0.0,0.0763888955116272 +2025-07-17 14:36:40.597,0.0,0.0763888955116272 +2025-07-17 14:36:40.697,0.0,0.0763888955116272 +2025-07-17 14:36:40.791,0.0,0.0763888955116272 +2025-07-17 14:36:40.889,0.0,0.0677083358168602 +2025-07-17 14:36:40.986,0.0,0.0763888955116272 +2025-07-17 14:36:41.100,0.0,0.0763888955116272 +2025-07-17 14:36:41.195,0.0,0.0763888955116272 +2025-07-17 14:36:41.306,0.0,0.0763888955116272 +2025-07-17 14:36:41.399,0.0,0.0677083358168602 +2025-07-17 14:36:41.509,0.0,0.0763888955116272 +2025-07-17 14:36:41.609,0.0,0.0763888955116272 +2025-07-17 14:36:41.702,0.0,0.0763888955116272 +2025-07-17 14:36:41.819,0.0,0.0763888955116272 +2025-07-17 14:36:41.914,0.0,0.0763888955116272 +2025-07-17 14:36:42.014,0.0,0.0763888955116272 +2025-07-17 14:36:42.111,0.0,0.0763888955116272 +2025-07-17 14:36:42.213,0.0,0.0763888955116272 +2025-07-17 14:36:42.325,0.0,0.0763888955116272 +2025-07-17 14:36:42.424,0.0,0.0763888955116272 +2025-07-17 14:36:42.523,0.0,0.0763888955116272 +2025-07-17 14:36:42.620,0.0,0.0763888955116272 +2025-07-17 14:36:42.716,0.0,0.0763888955116272 +2025-07-17 14:36:42.834,0.0,0.0763888955116272 +2025-07-17 14:36:42.933,0.0,0.0763888955116272 +2025-07-17 14:36:43.029,0.0,0.0763888955116272 +2025-07-17 14:36:43.128,0.0,0.0763888955116272 +2025-07-17 14:36:43.226,0.0,0.0763888955116272 +2025-07-17 14:36:43.340,0.0,0.0763888955116272 +2025-07-17 14:36:43.438,0.0,0.0763888955116272 +2025-07-17 14:36:43.534,0.0,0.0763888955116272 +2025-07-17 14:36:43.648,0.0,0.0763888955116272 +2025-07-17 14:36:43.739,0.0,0.0763888955116272 +2025-07-17 14:36:43.836,0.0,0.0763888955116272 +2025-07-17 14:36:43.950,0.0,0.0763888955116272 +2025-07-17 14:36:44.045,0.0,0.0763888955116272 +2025-07-17 14:36:44.161,0.0,0.0763888955116272 +2025-07-17 14:36:44.260,0.0,0.0763888955116272 +2025-07-17 14:36:44.356,0.0,0.0763888955116272 +2025-07-17 14:36:44.455,0.0,0.0763888955116272 +2025-07-17 14:36:44.576,0.0,0.0763888955116272 +2025-07-17 14:36:44.680,0.0,0.0763888955116272 +2025-07-17 14:36:44.772,0.0,0.0763888955116272 +2025-07-17 14:36:44.883,0.0,0.0763888955116272 +2025-07-17 14:36:45.004,0.0,0.0763888955116272 +2025-07-17 14:36:45.098,0.0,0.0763888955116272 +2025-07-17 14:36:45.218,0.0,0.0763888955116272 +2025-07-17 14:36:45.311,0.0,0.0763888955116272 +2025-07-17 14:36:45.434,0.0,0.0763888955116272 +2025-07-17 14:36:45.524,0.0,0.0763888955116272 +2025-07-17 14:36:45.646,0.0,0.0763888955116272 +2025-07-17 14:36:45.738,0.0,0.0763888955116272 +2025-07-17 14:36:45.860,0.0,0.0763888955116272 +2025-07-17 14:36:45.968,0.0,0.0677083358168602 +2025-07-17 14:36:46.077,0.0,0.0763888955116272 +2025-07-17 14:36:46.186,0.0,0.0763888955116272 +2025-07-17 14:36:46.294,0.0,0.0763888955116272 +2025-07-17 14:36:46.384,0.0,0.0763888955116272 +2025-07-17 14:36:46.506,0.0,0.0763888955116272 +2025-07-17 14:36:46.597,0.0,0.0763888955116272 +2025-07-17 14:36:46.720,0.0,0.0677083358168602 +2025-07-17 14:36:46.828,0.0,0.0763888955116272 +2025-07-17 14:36:46.950,0.0,0.0763888955116272 +2025-07-17 14:36:47.027,0.0,0.0763888955116272 +2025-07-17 14:36:47.153,0.0,0.0763888955116272 +2025-07-17 14:36:47.260,0.0,0.0763888955116272 +2025-07-17 14:36:47.367,0.0,0.0763888955116272 +2025-07-17 14:36:47.475,0.0,0.0763888955116272 +2025-07-17 14:36:47.584,0.0,0.0763888955116272 +2025-07-17 14:36:47.694,0.0,0.0763888955116272 +2025-07-17 14:36:47.786,0.0,0.0763888955116272 +2025-07-17 14:36:47.909,0.0,0.0763888955116272 +2025-07-17 14:36:48.016,0.0,0.0763888955116272 +2025-07-17 14:36:48.123,0.0,0.0763888955116272 +2025-07-17 14:36:48.232,0.0,0.0763888955116272 +2025-07-17 14:36:48.326,0.0,0.0763888955116272 +2025-07-17 14:36:48.436,0.0,0.0763888955116272 +2025-07-17 14:36:48.561,0.0,0.0763888955116272 +2025-07-17 14:36:48.668,0.0,0.0763888955116272 +2025-07-17 14:36:48.776,0.0,0.0763888955116272 +2025-07-17 14:36:48.869,0.0,0.0763888955116272 +2025-07-17 14:36:48.990,0.0,0.0763888955116272 +2025-07-17 14:36:49.084,0.0,0.0763888955116272 +2025-07-17 14:36:49.207,0.0,0.0763888955116272 +2025-07-17 14:36:49.299,0.0,0.0763888955116272 +2025-07-17 14:36:49.420,0.0,0.0763888955116272 +2025-07-17 14:36:49.513,0.0,0.0763888955116272 +2025-07-17 14:36:49.653,0.0,0.0763888955116272 +2025-07-17 14:36:49.747,0.0,0.0763888955116272 +2025-07-17 14:36:49.839,0.0,0.0763888955116272 +2025-07-17 14:36:49.961,0.0,0.0763888955116272 +2025-07-17 14:36:50.053,0.0,0.0763888955116272 +2025-07-17 14:36:50.192,0.0,0.0763888955116272 +2025-07-17 14:36:50.283,0.0,0.0763888955116272 +2025-07-17 14:36:50.390,0.0,0.0763888955116272 +2025-07-17 14:36:50.496,0.0,0.0763888955116272 +2025-07-17 14:36:50.588,0.0,0.0677083358168602 +2025-07-17 14:36:50.710,0.0,0.0763888955116272 +2025-07-17 14:36:50.803,0.0,0.0763888955116272 +2025-07-17 14:36:50.925,0.0,0.0763888955116272 +2025-07-17 14:36:51.014,0.0,0.0763888955116272 +2025-07-17 14:36:51.157,0.0,0.0763888955116272 +2025-07-17 14:36:51.248,0.0,0.0677083358168602 +2025-07-17 14:36:51.343,0.0,0.0677083358168602 +2025-07-17 14:36:51.465,0.0,0.0677083358168602 +2025-07-17 14:36:51.572,0.0,0.0677083358168602 +2025-07-17 14:36:51.663,0.0,0.0677083358168602 +2025-07-17 14:36:51.770,0.0,0.0677083358168602 +2025-07-17 14:36:51.892,0.0,0.0763888955116272 +2025-07-17 14:36:51.999,0.0,0.0763888955116272 +2025-07-17 14:36:52.091,0.0,0.0763888955116272 +2025-07-17 14:36:52.215,0.0,0.0763888955116272 +2025-07-17 14:36:52.321,0.0,0.0763888955116272 +2025-07-17 14:36:52.431,0.0,0.0763888955116272 +2025-07-17 14:36:52.538,0.0,0.0763888955116272 +2025-07-17 14:36:52.629,0.0,0.0763888955116272 +2025-07-17 14:36:52.770,0.0,0.0763888955116272 +2025-07-17 14:36:52.861,0.0,0.0763888955116272 +2025-07-17 14:36:52.955,0.0,0.0763888955116272 +2025-07-17 14:36:53.076,0.0,0.0763888955116272 +2025-07-17 14:36:53.183,0.0,0.0763888955116272 +2025-07-17 14:36:53.290,0.0,0.0763888955116272 +2025-07-17 14:36:53.396,0.0,0.0763888955116272 +2025-07-17 14:36:53.502,0.0,0.0763888955116272 +2025-07-17 14:36:53.611,0.0,0.0763888955116272 +2025-07-17 14:36:53.717,0.0,0.0763888955116272 +2025-07-17 14:36:53.825,0.0,0.0763888955116272 +2025-07-17 14:36:53.918,0.0,0.0763888955116272 +2025-07-17 14:36:54.039,0.0,0.0763888955116272 +2025-07-17 14:36:54.131,0.0,0.0763888955116272 +2025-07-17 14:36:54.254,0.0,0.0763888955116272 +2025-07-17 14:36:54.347,0.0,0.0763888955116272 +2025-07-17 14:36:54.469,0.0,0.0763888955116272 +2025-07-17 14:36:54.560,0.0,0.0763888955116272 +2025-07-17 14:36:54.684,0.0,0.0763888955116272 +2025-07-17 14:36:54.776,0.0,0.0763888955116272 +2025-07-17 14:36:54.915,0.0,0.0763888955116272 +2025-07-17 14:36:54.992,0.0,0.0763888955116272 +2025-07-17 14:36:55.114,0.0,0.0763888955116272 +2025-07-17 14:36:55.222,0.0,0.0763888955116272 +2025-07-17 14:36:55.328,0.0,0.0763888955116272 +2025-07-17 14:36:55.420,0.0,0.0677083358168602 +2025-07-17 14:36:55.546,0.0,0.0677083358168602 +2025-07-17 14:36:55.638,0.0,0.0677083358168602 +2025-07-17 14:36:55.761,0.0,0.0677083358168602 +2025-07-17 14:36:55.869,0.0,0.0677083358168602 +2025-07-17 14:36:55.964,0.0,0.0763888955116272 +2025-07-17 14:36:56.086,0.0,0.0763888955116272 +2025-07-17 14:36:56.178,0.0,0.0763888955116272 +2025-07-17 14:36:56.300,0.0,0.0763888955116272 +2025-07-17 14:36:56.392,0.0,0.0763888955116272 +2025-07-17 14:36:56.512,0.0,0.0763888955116272 +2025-07-17 14:36:56.619,0.0,0.0763888955116272 +2025-07-17 14:36:56.727,0.0,0.0763888955116272 +2025-07-17 14:36:56.836,0.0,0.0763888955116272 +2025-07-17 14:36:56.929,0.0,0.0763888955116272 +2025-07-17 14:36:57.054,0.0,0.0763888955116272 +2025-07-17 14:36:57.147,0.0,0.0763888955116272 +2025-07-17 14:36:57.269,0.0,0.0763888955116272 +2025-07-17 14:36:57.376,0.0,0.0763888955116272 +2025-07-17 14:36:57.483,0.0,0.0763888955116272 +2025-07-17 14:36:57.590,0.0,0.0763888955116272 +2025-07-17 14:36:57.683,0.0,0.0763888955116272 +2025-07-17 14:36:57.808,0.0,0.0677083358168602 +2025-07-17 14:36:57.916,0.0,0.0677083358168602 +2025-07-17 14:36:58.021,0.0,0.0677083358168602 +2025-07-17 14:36:58.129,0.0,0.0677083358168602 +2025-07-17 14:36:58.237,0.0,0.0677083358168602 +2025-07-17 14:36:58.331,0.0,0.0677083358168602 +2025-07-17 14:36:58.455,0.0,0.0677083358168602 +2025-07-17 14:36:58.563,0.0,0.0677083358168602 +2025-07-17 14:36:58.656,0.0,0.0677083358168602 +2025-07-17 14:36:58.795,0.0,0.0677083358168602 +2025-07-17 14:36:58.871,0.0,0.0677083358168602 +2025-07-17 14:36:58.995,0.0,0.0677083358168602 +2025-07-17 14:36:59.086,0.0,0.0763888955116272 +2025-07-17 14:36:59.194,0.0,0.0763888955116272 +2025-07-17 14:36:59.318,0.0,0.0763888955116272 +2025-07-17 14:36:59.409,0.0,0.0763888955116272 +2025-07-17 14:36:59.548,0.0,0.0763888955116272 +2025-07-17 14:36:59.625,0.0,0.0763888955116272 +2025-07-17 14:36:59.748,0.0,0.0763888955116272 +2025-07-17 14:36:59.856,0.0,0.0763888955116272 +2025-07-17 14:36:59.964,0.0,0.0763888955116272 +2025-07-17 14:37:00.070,0.0,0.0763888955116272 +2025-07-17 14:37:00.165,0.0,0.0763888955116272 +2025-07-17 14:37:00.290,0.0,0.0763888955116272 +2025-07-17 14:37:00.384,0.0,0.0763888955116272 +2025-07-17 14:37:00.507,0.0,0.0763888955116272 +2025-07-17 14:37:00.616,0.0,0.0677083358168602 +2025-07-17 14:37:00.710,0.0,0.0763888955116272 +2025-07-17 14:37:00.834,0.0,0.0763888955116272 +2025-07-17 14:37:00.927,0.0,0.0763888955116272 +2025-07-17 14:37:01.036,0.0,0.0763888955116272 +2025-07-17 14:37:01.159,0.0,0.0763888955116272 +2025-07-17 14:37:01.252,0.0,0.0763888955116272 +2025-07-17 14:37:01.360,0.0,0.0763888955116272 +2025-07-17 14:37:01.483,0.0,0.0763888955116272 +2025-07-17 14:37:01.578,0.0,0.0763888955116272 +2025-07-17 14:37:01.700,0.0,0.0763888955116272 +2025-07-17 14:37:01.808,0.0,0.0763888955116272 +2025-07-17 14:37:01.915,0.0,0.0763888955116272 +2025-07-17 14:37:02.020,0.0,0.0763888955116272 +2025-07-17 14:37:02.127,0.0,0.0763888955116272 +2025-07-17 14:37:02.268,0.0,0.0763888955116272 +2025-07-17 14:37:02.343,0.0,0.0763888955116272 +2025-07-17 14:37:02.436,0.0,0.0763888955116272 +2025-07-17 14:37:02.564,0.0,0.0763888955116272 +2025-07-17 14:37:02.670,0.0,0.0677083358168602 +2025-07-17 14:37:02.779,0.0,0.0677083358168602 +2025-07-17 14:37:02.886,0.0,0.0763888955116272 +2025-07-17 14:37:02.977,0.0,0.0763888955116272 +2025-07-17 14:37:03.097,0.0,0.0763888955116272 +2025-07-17 14:37:03.205,0.0,0.0763888955116272 +2025-07-17 14:37:03.312,0.0,0.0763888955116272 +2025-07-17 14:37:03.420,0.0,0.0763888955116272 +2025-07-17 14:37:03.528,0.0,0.0763888955116272 +2025-07-17 14:37:03.621,0.0,0.0763888955116272 +2025-07-17 14:37:03.743,0.0,0.0763888955116272 +2025-07-17 14:37:03.834,0.0,0.0763888955116272 +2025-07-17 14:37:03.958,0.0,0.0763888955116272 +2025-07-17 14:37:04.050,0.0,0.0763888955116272 +2025-07-17 14:37:04.174,0.0,0.0763888955116272 +2025-07-17 14:37:04.283,0.0,0.0763888955116272 +2025-07-17 14:37:04.389,0.0,0.0763888955116272 +2025-07-17 14:37:04.485,0.0,0.0763888955116272 +2025-07-17 14:37:04.605,0.0,0.0763888955116272 +2025-07-17 14:37:04.713,0.0,0.0763888955116272 +2025-07-17 14:37:04.820,0.0,0.0763888955116272 +2025-07-17 14:37:04.928,0.0,0.0677083358168602 +2025-07-17 14:37:05.037,0.0,0.0763888955116272 +2025-07-17 14:37:05.147,0.0,0.0763888955116272 +2025-07-17 14:37:05.240,0.0,0.0763888955116272 +2025-07-17 14:37:05.364,0.0,0.0763888955116272 +2025-07-17 14:37:05.474,0.0,0.0763888955116272 +2025-07-17 14:37:05.580,0.0,0.0763888955116272 +2025-07-17 14:37:05.686,0.0,0.0763888955116272 +2025-07-17 14:37:05.792,0.0,0.0763888955116272 +2025-07-17 14:37:05.884,0.0,0.0763888955116272 +2025-07-17 14:37:05.992,0.0,0.0763888955116272 +2025-07-17 14:37:06.113,0.0,0.0763888955116272 +2025-07-17 14:37:06.205,0.0,0.0763888955116272 +2025-07-17 14:37:06.330,0.0,0.0763888955116272 +2025-07-17 14:37:06.422,0.0,0.0677083358168602 +2025-07-17 14:37:06.560,0.0,0.0763888955116272 +2025-07-17 14:37:06.639,0.0,0.0763888955116272 +2025-07-17 14:37:06.759,0.0,0.0763888955116272 +2025-07-17 14:37:06.852,0.0,0.0763888955116272 +2025-07-17 14:37:06.976,0.0,0.0763888955116272 +2025-07-17 14:37:07.083,0.0,0.0763888955116272 +2025-07-17 14:37:07.205,0.0,0.0763888955116272 +2025-07-17 14:37:07.280,0.0,0.0763888955116272 +2025-07-17 14:37:07.416,0.0,0.0763888955116272 +2025-07-17 14:37:07.493,0.0,0.0763888955116272 +2025-07-17 14:37:07.614,0.0,0.0763888955116272 +2025-07-17 14:37:07.719,0.0,0.0763888955116272 +2025-07-17 14:37:07.828,0.0,0.0763888955116272 +2025-07-17 14:37:07.920,0.0,0.0763888955116272 +2025-07-17 14:37:08.041,0.0,0.0763888955116272 +2025-07-17 14:37:08.135,0.0,0.0763888955116272 +2025-07-17 14:37:08.260,0.0,0.0763888955116272 +2025-07-17 14:37:08.366,0.0,0.0763888955116272 +2025-07-17 14:37:08.457,0.0,0.0763888955116272 +2025-07-17 14:37:08.581,0.0,0.0763888955116272 +2025-07-17 14:37:08.688,0.0,0.0763888955116272 +2025-07-17 14:37:08.779,0.0,0.0763888955116272 +2025-07-17 14:37:08.886,0.0,0.0763888955116272 +2025-07-17 14:37:09.009,0.0,0.0763888955116272 +2025-07-17 14:37:09.101,0.0,0.0763888955116272 +2025-07-17 14:37:09.221,0.0,0.0763888955116272 +2025-07-17 14:37:09.329,0.0,0.0763888955116272 +2025-07-17 14:37:09.421,0.0,0.0763888955116272 +2025-07-17 14:37:09.544,0.0,0.0763888955116272 +2025-07-17 14:37:09.652,0.0,0.0763888955116272 +2025-07-17 14:37:09.759,0.0,0.0763888955116272 +2025-07-17 14:37:09.852,0.0,0.0763888955116272 +2025-07-17 14:37:09.972,0.0,0.0763888955116272 +2025-07-17 14:37:10.077,0.0,0.0763888955116272 +2025-07-17 14:37:10.184,0.0,0.0763888955116272 +2025-07-17 14:37:10.279,0.0,0.0763888955116272 +2025-07-17 14:37:10.386,0.0,0.0763888955116272 +2025-07-17 14:37:10.509,0.0,0.0763888955116272 +2025-07-17 14:37:10.602,0.0,0.0763888955116272 +2025-07-17 14:37:10.727,0.0,0.0763888955116272 +2025-07-17 14:37:10.833,0.0,0.0763888955116272 +2025-07-17 14:37:10.925,0.0,0.0763888955116272 +2025-07-17 14:37:11.048,0.0,0.0763888955116272 +2025-07-17 14:37:11.157,0.0,0.0763888955116272 +2025-07-17 14:37:11.250,0.0,0.0763888955116272 +2025-07-17 14:37:11.374,0.0,0.0763888955116272 +2025-07-17 14:37:11.480,0.0,0.0763888955116272 +2025-07-17 14:37:11.572,0.0,0.0763888955116272 +2025-07-17 14:37:11.694,0.0,0.0763888955116272 +2025-07-17 14:37:11.789,0.0,0.0763888955116272 +2025-07-17 14:37:11.913,0.0,0.0763888955116272 +2025-07-17 14:37:12.007,0.0,0.0763888955116272 +2025-07-17 14:37:12.130,0.0,0.0763888955116272 +2025-07-17 14:37:12.237,0.0,0.0763888955116272 +2025-07-17 14:37:12.330,0.0,0.0763888955116272 +2025-07-17 14:37:12.469,0.0,0.0763888955116272 +2025-07-17 14:37:12.544,0.0,0.0763888955116272 +2025-07-17 14:37:12.667,0.0,0.0763888955116272 +2025-07-17 14:37:12.773,0.0,0.0763888955116272 +2025-07-17 14:37:12.896,0.0,0.0763888955116272 +2025-07-17 14:37:12.988,0.0,0.0763888955116272 +2025-07-17 14:37:13.112,0.0,0.0763888955116272 +2025-07-17 14:37:13.203,0.0,0.0763888955116272 +2025-07-17 14:37:13.309,0.0,0.0763888955116272 +2025-07-17 14:37:13.416,0.0,0.0763888955116272 +2025-07-17 14:37:13.523,0.0,0.0677083358168602 +2025-07-17 14:37:13.629,0.0,0.0677083358168602 +2025-07-17 14:37:13.736,0.0,0.0677083358168602 +2025-07-17 14:37:13.844,0.0,0.0677083358168602 +2025-07-17 14:37:13.954,0.0,0.0677083358168602 +2025-07-17 14:37:14.077,0.0,0.0763888955116272 +2025-07-17 14:37:14.170,0.0,0.0763888955116272 +2025-07-17 14:37:14.292,0.0,0.0763888955116272 +2025-07-17 14:37:14.369,0.0,0.0763888955116272 +2025-07-17 14:37:14.475,0.0,0.0763888955116272 +2025-07-17 14:37:14.599,0.0,0.0763888955116272 +2025-07-17 14:37:14.708,0.0,0.0763888955116272 +2025-07-17 14:37:14.816,0.0,0.0677083358168602 +2025-07-17 14:37:14.926,0.0,0.0763888955116272 +2025-07-17 14:37:15.034,0.0,0.0763888955116272 +2025-07-17 14:37:15.128,0.0,0.0763888955116272 +2025-07-17 14:37:15.250,0.0,0.0763888955116272 +2025-07-17 14:37:15.358,0.0,0.0763888955116272 +2025-07-17 14:37:15.465,0.0,0.0763888955116272 +2025-07-17 14:37:15.574,0.0,0.0763888955116272 +2025-07-17 14:37:15.680,0.0,0.0763888955116272 +2025-07-17 14:37:15.788,0.0,0.0763888955116272 +2025-07-17 14:37:15.880,0.0,0.0763888955116272 +2025-07-17 14:37:15.987,0.0,0.0763888955116272 +2025-07-17 14:37:16.108,0.0,0.0763888955116272 +2025-07-17 14:37:16.219,0.0,0.0763888955116272 +2025-07-17 14:37:16.329,0.0,0.0763888955116272 +2025-07-17 14:37:16.438,0.0,0.0763888955116272 +2025-07-17 14:37:16.530,0.0,0.0763888955116272 +2025-07-17 14:37:16.653,0.0,0.0763888955116272 +2025-07-17 14:37:16.746,0.0,0.0763888955116272 +2025-07-17 14:37:16.868,0.0,0.0763888955116272 +2025-07-17 14:37:16.975,0.0,0.0763888955116272 +2025-07-17 14:37:17.067,0.0,0.0677083358168602 +2025-07-17 14:37:17.190,0.0,0.0677083358168602 +2025-07-17 14:37:17.282,0.0,0.0677083358168602 +2025-07-17 14:37:17.388,0.0,0.0677083358168602 +2025-07-17 14:37:17.514,0.0,0.0677083358168602 +2025-07-17 14:37:17.637,0.0,0.0677083358168602 +2025-07-17 14:37:17.729,0.0,0.0763888955116272 +2025-07-17 14:37:17.837,0.0,0.0763888955116272 +2025-07-17 14:37:17.929,0.0,0.0763888955116272 +2025-07-17 14:37:18.051,0.0,0.0763888955116272 +2025-07-17 14:37:18.157,0.0,0.0763888955116272 +2025-07-17 14:37:18.264,0.0,0.0763888955116272 +2025-07-17 14:37:18.371,0.0,0.0763888955116272 +2025-07-17 14:37:18.479,0.0,0.0763888955116272 +2025-07-17 14:37:18.588,0.0,0.0763888955116272 +2025-07-17 14:37:18.682,0.0,0.0763888955116272 +2025-07-17 14:37:18.804,0.0,0.0763888955116272 +2025-07-17 14:37:18.912,0.0,0.0763888955116272 +2025-07-17 14:37:19.020,0.0,0.0763888955116272 +2025-07-17 14:37:19.111,0.0,0.0763888955116272 +2025-07-17 14:37:19.231,0.0,0.0763888955116272 +2025-07-17 14:37:19.337,0.0,0.0763888955116272 +2025-07-17 14:37:19.446,0.0,0.0677083358168602 +2025-07-17 14:37:19.535,0.0,0.0677083358168602 +2025-07-17 14:37:19.672,0.0,0.0677083358168602 +2025-07-17 14:37:19.765,0.0,0.0677083358168602 +2025-07-17 14:37:19.872,0.0,0.0677083358168602 +2025-07-17 14:37:19.980,0.0,0.0677083358168602 +2025-07-17 14:37:20.072,0.0,0.0677083358168602 +2025-07-17 14:37:20.194,0.0,0.0677083358168602 +2025-07-17 14:37:20.317,0.0,0.0677083358168602 +2025-07-17 14:37:20.408,0.0,0.0677083358168602 +2025-07-17 14:37:20.498,0.0,0.0677083358168602 +2025-07-17 14:37:20.619,0.0,0.0677083358168602 +2025-07-17 14:37:20.728,0.0,0.0763888955116272 +2025-07-17 14:37:20.836,0.0,0.0763888955116272 +2025-07-17 14:37:20.928,0.0,0.0763888955116272 +2025-07-17 14:37:21.051,0.0,0.0763888955116272 +2025-07-17 14:37:21.161,0.0,0.0763888955116272 +2025-07-17 14:37:21.284,0.0,0.0763888955116272 +2025-07-17 14:37:21.378,0.0,0.0763888955116272 +2025-07-17 14:37:21.486,0.0,0.0763888955116272 +2025-07-17 14:37:21.579,0.0,0.0763888955116272 +2025-07-17 14:37:21.703,0.0,0.0763888955116272 +2025-07-17 14:37:21.809,0.0,0.0763888955116272 +2025-07-17 14:37:21.902,0.0,0.0763888955116272 +2025-07-17 14:37:22.040,0.0,0.0763888955116272 +2025-07-17 14:37:22.131,0.0,0.0763888955116272 +2025-07-17 14:37:22.238,0.0,0.0763888955116272 +2025-07-17 14:37:22.359,0.0,0.0763888955116272 +2025-07-17 14:37:22.437,0.0,0.0763888955116272 +2025-07-17 14:37:22.560,0.0,0.0763888955116272 +2025-07-17 14:37:22.666,0.0,0.0763888955116272 +2025-07-17 14:37:22.774,0.0,0.0763888955116272 +2025-07-17 14:37:22.898,0.0,0.0763888955116272 +2025-07-17 14:37:22.990,0.0,0.0763888955116272 +2025-07-17 14:37:23.097,0.0,0.0763888955116272 +2025-07-17 14:37:23.191,0.0,0.0763888955116272 +2025-07-17 14:37:23.328,0.0,0.0763888955116272 +2025-07-17 14:37:23.420,0.0,0.0763888955116272 +2025-07-17 14:37:23.526,0.0,0.0763888955116272 +2025-07-17 14:37:23.618,0.0,0.0763888955116272 +2025-07-17 14:37:23.725,0.0,0.0763888955116272 +2025-07-17 14:37:23.863,0.0,0.0763888955116272 +2025-07-17 14:37:23.955,0.0,0.0763888955116272 +2025-07-17 14:37:24.064,0.0,0.0677083358168602 +2025-07-17 14:37:24.189,0.0,0.0763888955116272 +2025-07-17 14:37:24.281,0.0,0.0763888955116272 +2025-07-17 14:37:24.406,0.0,0.0763888955116272 +2025-07-17 14:37:24.482,0.0,0.0763888955116272 +2025-07-17 14:37:24.605,0.0,0.0763888955116272 +2025-07-17 14:37:24.712,0.0,0.0763888955116272 +2025-07-17 14:37:24.821,0.0,0.0763888955116272 +2025-07-17 14:37:24.926,0.0,0.0677083358168602 +2025-07-17 14:37:25.033,0.0,0.0677083358168602 +2025-07-17 14:37:25.142,0.0,0.0677083358168602 +2025-07-17 14:37:25.249,0.0,0.0677083358168602 +2025-07-17 14:37:25.343,0.0,0.0677083358168602 +2025-07-17 14:37:25.466,0.0,0.0677083358168602 +2025-07-17 14:37:25.574,0.0,0.0763888955116272 +2025-07-17 14:37:25.680,0.0,0.0763888955116272 +2025-07-17 14:37:25.788,0.0,0.0763888955116272 +2025-07-17 14:37:25.913,0.0,0.0763888955116272 +2025-07-17 14:37:25.989,0.0,0.0763888955116272 +2025-07-17 14:37:26.115,0.0,0.0763888955116272 +2025-07-17 14:37:26.222,0.0,0.0763888955116272 +2025-07-17 14:37:26.328,0.0,0.0763888955116272 +2025-07-17 14:37:26.435,0.0,0.0763888955116272 +2025-07-17 14:37:26.528,0.0,0.0763888955116272 +2025-07-17 14:37:26.651,0.0,0.0763888955116272 +2025-07-17 14:37:26.757,0.0,0.0763888955116272 +2025-07-17 14:37:26.864,0.0,0.0763888955116272 +2025-07-17 14:37:26.972,0.0,0.0763888955116272 +2025-07-17 14:37:27.080,0.0,0.0763888955116272 +2025-07-17 14:37:27.204,0.0,0.0763888955116272 +2025-07-17 14:37:27.297,0.0,0.0677083358168602 +2025-07-17 14:37:27.388,0.0,0.0677083358168602 +2025-07-17 14:37:27.527,0.0,0.0677083358168602 +2025-07-17 14:37:27.620,0.0,0.0677083358168602 +2025-07-17 14:37:27.713,0.0,0.0677083358168602 +2025-07-17 14:37:27.833,0.0,0.0677083358168602 +2025-07-17 14:37:27.939,0.0,0.0763888955116272 +2025-07-17 14:37:28.063,0.0,0.0763888955116272 +2025-07-17 14:37:28.155,0.0,0.0763888955116272 +2025-07-17 14:37:28.248,0.0,0.0763888955116272 +2025-07-17 14:37:28.374,0.0,0.0763888955116272 +2025-07-17 14:37:28.481,0.0,0.0763888955116272 +2025-07-17 14:37:28.587,0.0,0.0763888955116272 +2025-07-17 14:37:28.677,0.0,0.0763888955116272 +2025-07-17 14:37:28.815,0.0,0.0763888955116272 +2025-07-17 14:37:28.908,0.0,0.0763888955116272 +2025-07-17 14:37:29.015,0.0,0.0763888955116272 +2025-07-17 14:37:29.122,0.0,0.0763888955116272 +2025-07-17 14:37:29.215,0.0,0.0763888955116272 +2025-07-17 14:37:29.341,0.0,0.0763888955116272 +2025-07-17 14:37:29.433,0.0,0.0763888955116272 +2025-07-17 14:37:29.559,0.0,0.0763888955116272 +2025-07-17 14:37:29.665,0.0,0.0763888955116272 +2025-07-17 14:37:29.774,0.0,0.0763888955116272 +2025-07-17 14:37:29.883,0.0,0.0763888955116272 +2025-07-17 14:37:30.008,0.0,0.0763888955116272 +2025-07-17 14:37:30.083,0.0,0.0763888955116272 +2025-07-17 14:37:30.221,0.0,0.0763888955116272 +2025-07-17 14:37:30.314,0.0,0.0763888955116272 +2025-07-17 14:37:30.406,0.0,0.0763888955116272 +2025-07-17 14:37:30.531,0.0,0.0763888955116272 +2025-07-17 14:37:30.639,0.0,0.0763888955116272 +2025-07-17 14:37:30.746,0.0,0.0763888955116272 +2025-07-17 14:37:30.869,0.0,0.0763888955116272 +2025-07-17 14:37:30.961,0.0,0.0763888955116272 +2025-07-17 14:37:31.070,0.0,0.0763888955116272 +2025-07-17 14:37:31.161,0.0,0.0763888955116272 +2025-07-17 14:37:31.285,0.0,0.0763888955116272 +2025-07-17 14:37:31.393,0.0,0.0763888955116272 +2025-07-17 14:37:31.486,0.0,0.0763888955116272 +2025-07-17 14:37:31.609,0.0,0.0763888955116272 +2025-07-17 14:37:31.719,0.0,0.0763888955116272 +2025-07-17 14:37:31.829,0.0,0.0763888955116272 +2025-07-17 14:37:31.936,0.0,0.0763888955116272 +2025-07-17 14:37:32.045,0.0,0.0763888955116272 +2025-07-17 14:37:32.139,0.0,0.0763888955116272 +2025-07-17 14:37:32.262,0.0,0.0763888955116272 +2025-07-17 14:37:32.371,0.0,0.0763888955116272 +2025-07-17 14:37:32.478,0.0,0.0763888955116272 +2025-07-17 14:37:32.584,0.0,0.0763888955116272 +2025-07-17 14:37:32.690,0.0,0.0763888955116272 +2025-07-17 14:37:32.782,0.0,0.0763888955116272 +2025-07-17 14:37:32.908,0.0,0.0763888955116272 +2025-07-17 14:37:33.018,0.0,0.0763888955116272 +2025-07-17 14:37:33.124,0.0,0.0763888955116272 +2025-07-17 14:37:33.230,0.0,0.0677083358168602 +2025-07-17 14:37:33.324,0.0,0.0677083358168602 +2025-07-17 14:37:33.447,0.0,0.0677083358168602 +2025-07-17 14:37:33.541,0.0,0.0677083358168602 +2025-07-17 14:37:33.646,0.0,0.0677083358168602 +2025-07-17 14:37:33.768,0.0,0.0677083358168602 +2025-07-17 14:37:33.874,0.0,0.0677083358168602 +2025-07-17 14:37:33.999,0.0,0.0677083358168602 +2025-07-17 14:37:34.076,0.0,0.0677083358168602 +2025-07-17 14:37:34.200,0.0,0.0677083358168602 +2025-07-17 14:37:34.307,0.0,0.0677083358168602 +2025-07-17 14:37:34.415,0.0,0.0677083358168602 +2025-07-17 14:37:34.521,0.0,0.0677083358168602 +2025-07-17 14:37:34.631,0.0,0.0677083358168602 +2025-07-17 14:37:34.739,0.0,0.0677083358168602 +2025-07-17 14:37:34.832,0.0,0.0677083358168602 +2025-07-17 14:37:34.939,0.0,0.0677083358168602 +2025-07-17 14:37:35.065,0.0,0.0677083358168602 +2025-07-17 14:37:35.174,0.0,0.0763888955116272 +2025-07-17 14:37:35.282,0.0,0.0763888955116272 +2025-07-17 14:37:35.389,0.0,0.0763888955116272 +2025-07-17 14:37:35.514,0.0,0.0763888955116272 +2025-07-17 14:37:35.592,0.0,0.0763888955116272 +2025-07-17 14:37:35.700,0.0,0.0763888955116272 +2025-07-17 14:37:35.822,0.0,0.0677083358168602 +2025-07-17 14:37:35.930,0.0,0.0677083358168602 +2025-07-17 14:37:36.038,0.0,0.0677083358168602 +2025-07-17 14:37:36.130,0.0,0.0677083358168602 +2025-07-17 14:37:36.254,0.0,0.0677083358168602 +2025-07-17 14:37:36.361,0.0,0.0763888955116272 +2025-07-17 14:37:36.469,0.0,0.0763888955116272 +2025-07-17 14:37:36.576,0.0,0.0763888955116272 +2025-07-17 14:37:36.697,0.0,0.0763888955116272 +2025-07-17 14:37:36.788,0.0,0.0763888955116272 +2025-07-17 14:37:36.897,0.0,0.0763888955116272 +2025-07-17 14:37:36.993,0.0,0.0763888955116272 +2025-07-17 14:37:37.116,0.0,0.0763888955116272 +2025-07-17 14:37:37.224,0.0,0.0763888955116272 +2025-07-17 14:37:37.318,0.0,0.0763888955116272 +2025-07-17 14:37:37.439,0.0,0.0763888955116272 +2025-07-17 14:37:37.547,0.0,0.0763888955116272 +2025-07-17 14:37:37.654,0.0,0.0763888955116272 +2025-07-17 14:37:37.761,0.0,0.0763888955116272 +2025-07-17 14:37:37.868,0.0,0.0763888955116272 +2025-07-17 14:37:37.974,0.0,0.0763888955116272 +2025-07-17 14:37:38.085,0.0,0.0763888955116272 +2025-07-17 14:37:38.176,0.0,0.0763888955116272 +2025-07-17 14:37:38.301,0.0,0.0763888955116272 +2025-07-17 14:37:38.424,0.0,0.0763888955116272 +2025-07-17 14:37:38.501,0.0,0.0763888955116272 +2025-07-17 14:37:38.623,0.0,0.0763888955116272 +2025-07-17 14:37:38.731,0.0,0.0763888955116272 +2025-07-17 14:37:38.841,0.0,0.0763888955116272 +2025-07-17 14:37:38.932,0.0,0.0763888955116272 +2025-07-17 14:37:39.056,0.0,0.0763888955116272 +2025-07-17 14:37:39.162,0.0,0.0763888955116272 +2025-07-17 14:37:39.269,0.0,0.0763888955116272 +2025-07-17 14:37:39.362,0.0,0.0763888955116272 +2025-07-17 14:37:39.503,0.0,0.0763888955116272 +2025-07-17 14:37:39.595,0.0,0.0763888955116272 +2025-07-17 14:37:39.716,0.0,0.0763888955116272 +2025-07-17 14:37:39.792,0.0,0.0763888955116272 +2025-07-17 14:37:39.914,0.0,0.0763888955116272 +2025-07-17 14:37:40.021,0.0,0.0763888955116272 +2025-07-17 14:37:40.113,0.0,0.0763888955116272 +2025-07-17 14:37:40.236,0.0,0.0763888955116272 +2025-07-17 14:37:40.342,0.0,0.0763888955116272 +2025-07-17 14:37:40.435,0.0,0.0763888955116272 +2025-07-17 14:37:40.577,0.0,0.0677083358168602 +2025-07-17 14:37:40.670,0.0,0.0677083358168602 +2025-07-17 14:37:40.780,0.0,0.0677083358168602 +2025-07-17 14:37:40.872,0.0,0.0677083358168602 +2025-07-17 14:37:40.997,0.0,0.0677083358168602 +2025-07-17 14:37:41.090,0.0,0.0677083358168602 +2025-07-17 14:37:41.212,0.0,0.0763888955116272 +2025-07-17 14:37:41.321,0.0,0.0763888955116272 +2025-07-17 14:37:41.445,0.0,0.0763888955116272 +2025-07-17 14:37:41.522,0.0,0.0763888955116272 +2025-07-17 14:37:41.645,0.0,0.0763888955116272 +2025-07-17 14:37:41.755,0.0,0.0763888955116272 +2025-07-17 14:37:41.846,0.0,0.0763888955116272 +2025-07-17 14:37:41.971,0.0,0.0763888955116272 +2025-07-17 14:37:42.077,0.0,0.0763888955116272 +2025-07-17 14:37:42.183,0.0,0.0763888955116272 +2025-07-17 14:37:42.290,0.0,0.0763888955116272 +2025-07-17 14:37:42.397,0.0,0.0763888955116272 +2025-07-17 14:37:42.490,0.0,0.0763888955116272 +2025-07-17 14:37:42.614,0.0,0.0763888955116272 +2025-07-17 14:37:42.720,0.0,0.0763888955116272 +2025-07-17 14:37:42.828,0.0,0.0677083358168602 +2025-07-17 14:37:42.936,0.0,0.0763888955116272 +2025-07-17 14:37:43.044,0.0,0.0763888955116272 +2025-07-17 14:37:43.152,0.0,0.0763888955116272 +2025-07-17 14:37:43.244,0.0,0.0763888955116272 +2025-07-17 14:37:43.367,0.0,0.0763888955116272 +2025-07-17 14:37:43.460,0.0,0.0763888955116272 +2025-07-17 14:37:43.582,0.0,0.0763888955116272 +2025-07-17 14:37:43.718,0.0,0.0763888955116272 +2025-07-17 14:37:43.796,0.0,0.0763888955116272 +2025-07-17 14:37:43.906,0.0,0.0763888955116272 +2025-07-17 14:37:44.012,0.0,0.0763888955116272 +2025-07-17 14:37:44.119,0.0,0.0677083358168602 +2025-07-17 14:37:44.319,0.0,0.0677083358168602 +2025-07-17 14:37:44.426,0.0,0.0677083358168602 +2025-07-17 14:37:44.639,0.0,0.0677083358168602 +2025-07-17 14:37:44.855,0.0,0.0677083358168602 +2025-07-17 14:37:45.069,0.0,0.0677083358168602 +2025-07-17 14:37:45.285,0.0,0.0677083358168602 +2025-07-17 14:37:45.497,0.0,0.0677083358168602 +2025-07-17 14:37:45.711,0.0,0.0677083358168602 +2025-07-17 14:37:45.924,0.0,0.0763888955116272 +2025-07-17 14:37:46.138,0.0,0.0763888955116272 +2025-07-17 14:37:46.352,0.0,0.0763888955116272 +2025-07-17 14:37:46.564,0.0,0.0763888955116272 +2025-07-17 14:37:46.782,0.0,0.0763888955116272 +2025-07-17 14:37:46.998,0.0,0.0763888955116272 +2025-07-17 14:37:47.214,0.0,0.0763888955116272 +2025-07-17 14:37:47.426,0.0,0.0763888955116272 +2025-07-17 14:37:47.645,0.0,0.0763888955116272 +2025-07-17 14:37:47.861,0.0,0.0763888955116272 +2025-07-17 14:37:48.061,0.0,0.0763888955116272 +2025-07-17 14:37:48.274,0.0,0.0677083358168602 +2025-07-17 14:37:48.490,0.0,0.0763888955116272 +2025-07-17 14:37:48.704,0.0,0.0763888955116272 +2025-07-17 14:37:48.916,0.0,0.0763888955116272 +2025-07-17 14:37:49.130,0.0,0.0763888955116272 +2025-07-17 14:37:49.344,0.0,0.0763888955116272 +2025-07-17 14:37:49.558,0.0,0.0763888955116272 +2025-07-17 14:37:49.773,0.0,0.0763888955116272 +2025-07-17 14:37:49.988,0.0,0.0763888955116272 +2025-07-17 14:37:50.200,0.0,0.0763888955116272 +2025-07-17 14:37:50.405,0.0,0.0763888955116272 +2025-07-17 14:37:50.622,0.0,0.0763888955116272 +2025-07-17 14:37:50.836,0.0,0.0763888955116272 +2025-07-17 14:37:51.156,0.0,0.0763888955116272 +2025-07-17 14:37:51.372,0.0,0.0763888955116272 +2025-07-17 14:37:51.587,0.0,0.0763888955116272 +2025-07-17 14:37:51.802,0.0,0.0763888955116272 +2025-07-17 14:37:52.017,0.0,0.0677083358168602 +2025-07-17 14:37:52.220,0.0,0.0677083358168602 +2025-07-17 14:37:52.435,0.0,0.0677083358168602 +2025-07-17 14:37:52.651,0.0,0.0763888955116272 +2025-07-17 14:37:52.867,0.0,0.0763888955116272 +2025-07-17 14:37:53.085,0.0,0.0763888955116272 +2025-07-17 14:39:04.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.108,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.290,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.390,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.594,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:04.703,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:04.798,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:04.904,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:05.008,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:05.112,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:05.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:05.318,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:05.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:05.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:05.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:05.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:05.823,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:05.930,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:06.029,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:06.130,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:06.235,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:06.332,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:06.438,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:06.542,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:06.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:06.741,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:06.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:06.938,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:07.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:07.138,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:07.242,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:07.343,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:07.452,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:07.556,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:07.658,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:07.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:07.859,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:07.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:08.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:08.162,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:08.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:08.360,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:08.461,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:08.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:08.662,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:08.765,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:08.865,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:08.971,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:09.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:09.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:09.275,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:09.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:09.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:09.582,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:09.687,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:09.788,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:09.888,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:09.990,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.090,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.192,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.315,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.400,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.499,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.605,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:10.708,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:10.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:10.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.540,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.679,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.755,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:11.986,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:12.081,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:12.206,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:12.313,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:12.420,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:12.528,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:12.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:12.728,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:12.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:12.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.807,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:13.945,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:14.022,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:14.128,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:14.235,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:14.343,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:14.466,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:14.572,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:14.678,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:14.770,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:14.878,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:15.018,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:15.109,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:15.215,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:15.305,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:15.414,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:15.555,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:15.646,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:15.739,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:15.876,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:15.953,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:16.076,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:16.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:16.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:16.382,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:16.489,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:16.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:16.707,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:16.814,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:16.921,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:17.017,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:17.156,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:17.278,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:17.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:17.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:17.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:17.683,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:17.791,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:17.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:17.990,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:18.126,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:18.218,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:18.324,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:18.433,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:18.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:18.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:18.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:18.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:18.986,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:19.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:19.186,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.293,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.400,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.493,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.631,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.725,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.834,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:19.955,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.061,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.154,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.275,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.367,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.475,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.610,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.686,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.791,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:20.897,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:21.005,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:21.113,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:21.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.436,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:21.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:22.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:22.189,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:22.297,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:22.404,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:22.511,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:22.619,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:22.725,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:22.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:22.943,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.262,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.476,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.583,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:23.903,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:24.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:24.147,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:24.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:24.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:24.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:24.550,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:24.656,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:24.765,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:24.888,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:24.982,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:25.088,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:25.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:25.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:25.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:25.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:25.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:25.735,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:25.841,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:25.963,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.055,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.179,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.271,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.378,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.612,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.689,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.812,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:26.920,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:27.028,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:27.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:27.246,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:27.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:27.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:27.574,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:27.680,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:27.786,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:27.894,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.001,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.093,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.232,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.325,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.463,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.569,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.676,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:28.769,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:28.862,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:28.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.313,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:29.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.512,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:29.946,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:30.070,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.177,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.257,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.378,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.594,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.703,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.814,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:30.921,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:31.028,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:31.136,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:31.259,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:31.350,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:31.459,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:31.583,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:31.675,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:31.783,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:31.908,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:32.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:32.109,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:32.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:32.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:32.450,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:32.542,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:32.664,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:32.755,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:32.863,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:32.970,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:39:33.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:33.186,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:33.308,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:33.417,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:33.510,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:33.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:33.727,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:33.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:33.928,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:34.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.809,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:34.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:35.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:35.135,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:35.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:35.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:35.456,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:35.563,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:35.672,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:35.770,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:35.872,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:35.974,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:36.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:36.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:36.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:36.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:36.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:36.593,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:36.699,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:36.799,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:36.893,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:36.993,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:37.092,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:37.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:37.293,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:37.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:37.494,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:37.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:37.698,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:37.801,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:37.899,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:37.999,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:38.118,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:38.214,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:38.315,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:38.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:38.516,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:38.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:38.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:38.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:38.921,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.542,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:39.641,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:39.741,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:39.842,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:39.941,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:40.038,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:40.138,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:40.243,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:40.341,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:40.441,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:40.540,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:40.641,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:40.761,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:40.862,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:40.941,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.061,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.164,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:41.964,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:42.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:42.170,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:42.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:42.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:42.469,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:42.569,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:39:42.690,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:39:42.788,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:39:42.888,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:39:42.985,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:39:43.085,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:39:43.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.389,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:43.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.108,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.207,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.707,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.806,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:44.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.023,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.224,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:45.323,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:45.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.526,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.837,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:45.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:46.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:46.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:46.245,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:46.351,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:46.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:46.550,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:46.648,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:46.744,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:46.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:46.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.450,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.655,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:47.962,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.459,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:48.974,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.272,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.373,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.477,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:49.577,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.784,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.889,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:49.986,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.302,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:50.816,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:50.900,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.004,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.202,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:51.614,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:51.713,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:51.815,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:51.936,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:52.020,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:52.119,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:52.218,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:39:52.320,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:52.422,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:52.524,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:52.624,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:52.740,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:52.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:52.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:53.039,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:53.140,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:53.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:53.341,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:53.444,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:39:53.551,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:53.651,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:53.755,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:53.853,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:53.957,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:54.062,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:39:54.165,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:54.266,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:54.369,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:54.470,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:54.576,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:54.657,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:39:54.759,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:54.862,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:54.967,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:55.067,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:55.171,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:55.275,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:55.378,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:55.479,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:55.585,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:55.686,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:39:55.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:55.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:55.992,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:56.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:56.198,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:56.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:56.405,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:39:56.509,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:56.588,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:56.690,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:56.793,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:56.901,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.003,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.110,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.207,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.310,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.415,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.518,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:57.619,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:39:57.719,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:57.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:57.925,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.424,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.526,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:58.936,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:59.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:59.140,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:59.243,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:59.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:39:59.453,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:39:59.555,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:59.654,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:59.761,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:59.841,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:39:59.944,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:00.053,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:00.158,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:00.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:00.358,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:00.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:00.566,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:00.665,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:00.768,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:00.872,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:00.979,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:01.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:01.178,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:01.281,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:01.366,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:01.470,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:01.573,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:01.675,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:01.780,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:01.883,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:01.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.089,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.294,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.399,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.686,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:02.897,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.108,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.310,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.701,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:03.803,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:03.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.420,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.623,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.726,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:04.934,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.037,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.139,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.451,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.535,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.738,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:05.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.154,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.252,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.352,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.452,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.556,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.659,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.857,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:06.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.570,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:07.672,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:07.980,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:08.081,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:08.186,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.287,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.488,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.695,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.799,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:08.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:09.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:09.112,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.192,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.293,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.400,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.506,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.610,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.713,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.814,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:09.918,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.004,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.106,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.409,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.515,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.618,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.720,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.824,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:10.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.028,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.131,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.462,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.629,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:11.935,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:12.041,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:12.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:12.250,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:12.355,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:12.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:12.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:12.665,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:12.768,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:12.849,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:12.952,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:13.057,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:13.157,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:13.261,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:13.359,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:13.464,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:13.570,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:13.673,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:13.776,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:13.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:13.981,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.275,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.483,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.586,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:14.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:15.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:15.100,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.206,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.309,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.411,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.491,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.593,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.702,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.805,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:15.903,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:16.009,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:16.111,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:16.216,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:16.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:16.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:16.525,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:16.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:16.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:16.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:16.920,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.022,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.126,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.228,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.329,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.431,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.519,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.623,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.725,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.825,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:17.931,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:18.034,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:18.137,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:18.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:18.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:18.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:18.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:18.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:18.736,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:18.841,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:18.939,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:19.044,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:19.151,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:19.255,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:40:19.354,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:19.451,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:19.553,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:19.655,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:19.758,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:19.859,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:19.964,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:20.067,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:20.154,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:20.254,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:20.354,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:20.460,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:20.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:20.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:20.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:20.870,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:20.975,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:21.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.180,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.694,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:21.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.705,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:22.904,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:23.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:23.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:23.205,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:23.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:23.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:23.507,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:23.613,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:23.713,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:23.814,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:23.914,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.018,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.123,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.225,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.331,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.432,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.638,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:24.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:24.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:24.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.136,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:25.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.444,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.742,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:25.951,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:26.056,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:26.155,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:26.259,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:26.358,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:26.464,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:26.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:26.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:26.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:26.868,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:26.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:27.071,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:40:27.168,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.271,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.376,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.473,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.576,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.683,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.785,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.889,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:27.993,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:28.073,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:28.176,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:28.279,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:40:28.384,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:28.488,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:28.592,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:28.691,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:28.794,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:28.902,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:29.006,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:29.106,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:29.209,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:29.313,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:29.393,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:29.497,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:40:29.600,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:29.700,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:29.803,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:29.906,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.009,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.114,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.213,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.337,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.421,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.524,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.625,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.730,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.834,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:30.920,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:31.020,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:31.126,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:31.225,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:31.332,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:31.435,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:31.536,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:31.637,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:31.740,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:31.842,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:31.946,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.049,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.155,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.256,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.360,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.566,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.645,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.745,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.844,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:32.970,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:33.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:33.152,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:33.251,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:33.370,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:33.469,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:33.571,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:33.674,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:33.755,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:33.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:33.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.076,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.371,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.470,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.571,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.688,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:34.892,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:34.974,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:35.090,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:35.194,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:35.293,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:35.392,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:35.500,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:35.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:35.707,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:35.804,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:35.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.094,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.200,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.400,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.505,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:36.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.326,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:37.430,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:37.535,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.722,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.823,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:37.927,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:38.027,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:38.133,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:38.235,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:38.334,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:38.438,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:38.543,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:38.646,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:38.754,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:38.853,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:38.957,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:39.040,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:39.145,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:39.251,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:39.354,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:39.456,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:39.559,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:39.662,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:39.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:39.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:39.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:40.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:40.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:40.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:40.374,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:40.480,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:40.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:40.667,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:40.768,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:40.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:40.973,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.181,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.283,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.382,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.482,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.587,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.689,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.796,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.892,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:41.991,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.092,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.193,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.290,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.391,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.493,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.600,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.707,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:42.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:42.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:43.930,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:44.033,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:44.137,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:44.239,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:44.340,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:44.445,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:44.528,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:44.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:44.735,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:44.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:44.940,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.039,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.245,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.352,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.453,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.556,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.661,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:45.761,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:45.865,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:45.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:46.068,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:46.171,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:46.256,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:46.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:46.458,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:46.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:46.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:46.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:46.874,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:46.976,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:47.080,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:47.181,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:47.285,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:47.384,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:47.489,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:47.591,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:47.678,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:47.781,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:47.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:47.980,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:48.086,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:48.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:48.292,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:48.418,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:48.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:48.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:48.708,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:48.808,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:48.912,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:49.013,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:49.116,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:49.202,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:49.303,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:49.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:49.507,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:49.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:49.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:49.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:49.920,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:50.019,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:50.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:50.224,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:50.329,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:50.429,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:50.534,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:40:50.619,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:40:50.722,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:40:50.824,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:40:50.925,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:40:51.043,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:40:51.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:51.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:51.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:51.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:51.541,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:51.645,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:51.753,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:40:51.856,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:51.958,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.062,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.161,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.242,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.370,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.453,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.556,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.660,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.764,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.864,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:52.969,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:53.088,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:53.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:53.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:53.360,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:53.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:53.568,0.0,0.0763888955116272,0.06750047206878662 +2025-07-17 14:40:53.668,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:53.773,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:53.874,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:53.977,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:54.082,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:40:54.185,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:40:54.288,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:54.411,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:54.488,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:54.593,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:54.696,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:54.782,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:54.884,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:54.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:55.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:55.186,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:55.287,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:55.390,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:55.488,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:55.588,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:55.693,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:55.818,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:55.900,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:56.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:56.102,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:56.199,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:56.301,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:56.406,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:56.505,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:40:56.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:56.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:56.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:56.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:57.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:57.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:57.216,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.322,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.426,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.526,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.627,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.730,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.835,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:57.936,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.041,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.140,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.244,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.352,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.456,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.554,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.660,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.741,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.845,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:40:58.952,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:59.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.566,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.669,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:40:59.773,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:40:59.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:00.059,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:00.162,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:00.264,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:00.370,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:00.472,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:00.571,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:00.675,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:00.780,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:00.883,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:00.983,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:01.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:01.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:01.292,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:01.395,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:01.502,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:01.601,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:01.707,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:01.811,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:01.892,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:01.993,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:02.094,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:02.203,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:02.301,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:02.408,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:02.510,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:02.608,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:41:02.707,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:41:02.805,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:41:02.923,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:41:03.025,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:41:03.129,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:41:03.214,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:03.317,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:03.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:03.522,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:03.622,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:03.727,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:03.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:03.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.133,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.232,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.443,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.742,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:04.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:05.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:05.150,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:05.253,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:05.353,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:05.456,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:05.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:05.663,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:05.765,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:05.846,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:05.945,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:06.054,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:06.158,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:06.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:06.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:06.459,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:06.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:06.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:06.765,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:06.866,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:06.969,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:07.070,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:07.173,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:07.274,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:07.371,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:07.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:07.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:07.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:07.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:07.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:07.980,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:08.078,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:08.201,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:08.304,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:08.401,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:08.501,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:08.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:08.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:08.807,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:08.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:09.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:09.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:09.203,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:09.299,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:09.403,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:09.502,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:09.622,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:09.725,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:09.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:09.910,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.328,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:10.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.335,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.538,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.746,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:11.954,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.155,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.465,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:12.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.672,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:12.963,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:13.064,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:13.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:13.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:13.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:13.475,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:13.571,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:13.672,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:13.777,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:13.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:13.986,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:14.084,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:14.186,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:14.286,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:14.392,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:14.491,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:14.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:14.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:14.785,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:14.889,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:14.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.093,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.505,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:15.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:16.001,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:16.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:16.206,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:16.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:16.417,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:16.517,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:16.621,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:16.725,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:16.827,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:16.931,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:17.034,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:17.119,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:17.222,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:17.326,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:17.428,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:17.531,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:17.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:17.742,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:17.844,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:17.951,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:18.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:18.156,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:18.239,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:18.343,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:18.447,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:18.550,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:18.656,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:18.759,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:18.864,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:18.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.660,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.764,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:19.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:20.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:20.174,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:20.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:20.379,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:20.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:20.586,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:20.691,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:20.796,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:20.880,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:20.983,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:21.082,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:21.190,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:21.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:21.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:21.497,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:21.600,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:21.706,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:21.811,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:21.889,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:21.995,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:22.096,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:22.204,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:22.307,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:22.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:22.512,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:22.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:22.717,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:22.818,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:22.919,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:23.022,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:23.124,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:23.226,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:23.330,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:23.434,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:23.516,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:23.658,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:23.717,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:23.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:23.937,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:24.039,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.238,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.535,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.639,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.738,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:24.845,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:24.951,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:25.056,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:25.155,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:25.260,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:25.344,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:25.447,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:25.554,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:25.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:25.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:25.862,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:25.964,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:26.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:26.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:26.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:26.372,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:26.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:26.575,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:26.675,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:26.777,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:26.880,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:26.981,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:27.083,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:27.185,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:27.284,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:27.386,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:27.484,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:27.582,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:27.686,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:27.786,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:27.891,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:27.996,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.201,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.301,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.403,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.504,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.707,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:28.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:29.021,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:29.119,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:29.224,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:29.325,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:29.427,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:29.529,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:29.633,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:29.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:29.833,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:29.937,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:30.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:30.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:30.242,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:30.323,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:30.424,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:30.540,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:30.642,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:30.742,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:30.842,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:41:30.941,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:31.046,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:31.152,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:31.256,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:31.357,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:31.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:31.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:31.645,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:31.750,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:31.853,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:31.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:32.060,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:32.164,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:32.263,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:32.367,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:32.471,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:32.574,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:32.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:32.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:32.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:32.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:33.071,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:33.171,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:33.278,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:33.380,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:33.483,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:33.587,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:33.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:33.791,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:33.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:33.998,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:34.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:34.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:34.287,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:34.388,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:34.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:34.601,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:34.704,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:34.803,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:34.901,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:35.003,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:35.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:35.207,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:35.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:35.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:35.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:35.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:35.715,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:35.819,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:35.916,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:36.020,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:36.122,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:36.226,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:36.330,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:36.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:36.527,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:36.627,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:36.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:36.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:36.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.028,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.128,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.733,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:37.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:38.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:38.135,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:38.257,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:38.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:38.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:38.557,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:38.659,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:38.757,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:38.858,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:38.957,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:39.055,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:39.155,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:39.257,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:39.359,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:39.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:39.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:39.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:39.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:39.883,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:39.982,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:40.081,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:40.180,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:40.279,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:40.378,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:40.479,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:40.583,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:40.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:40.785,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:40.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:40.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:41.089,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:41.193,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:41.292,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:41.397,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:41.499,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:41.601,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:41.702,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:41.803,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:41.910,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.010,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.117,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.214,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.316,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.415,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.513,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.613,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.711,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.810,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:42.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.130,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:43.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.432,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.531,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:43.934,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.129,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.445,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.645,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:44.751,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:44.850,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:44.965,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.054,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.149,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.255,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.360,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.460,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.563,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.668,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.770,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.873,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:45.970,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:46.072,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:46.175,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:46.280,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:46.365,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:46.466,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:46.569,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:46.675,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:46.778,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:46.880,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:46.980,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:47.086,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:41:47.187,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:47.291,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:47.394,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:47.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:47.600,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:47.706,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:47.810,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:47.909,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:48.010,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:48.093,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:48.195,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:48.303,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:48.407,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:48.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:48.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:48.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:48.818,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:48.923,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:49.021,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:49.120,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:49.225,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:49.331,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:49.428,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:49.531,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:41:49.634,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:49.737,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:49.818,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:49.924,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.025,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.125,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.226,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.329,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.452,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.551,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.654,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:50.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:50.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:50.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:51.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:51.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:51.252,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:51.357,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:51.459,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:51.556,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:51.659,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:51.762,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:51.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:51.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:52.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:52.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:52.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:52.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:52.477,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:52.576,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:52.677,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:52.777,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:52.881,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:52.982,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:53.082,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:41:53.185,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.285,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.383,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.510,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.587,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.688,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.789,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.894,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:53.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:54.100,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:54.201,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:54.306,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:54.409,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:54.510,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:54.612,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:54.715,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:54.818,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:54.920,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:41:55.023,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:55.122,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:55.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:55.318,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:55.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:55.517,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:41:55.635,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:55.717,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:55.833,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:55.933,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:56.033,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:56.133,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.540,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.852,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:56.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.035,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.140,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.450,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.555,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.656,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.755,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.857,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:57.956,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:58.058,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:58.156,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:58.256,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:58.353,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:58.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:58.556,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:58.654,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:58.773,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:58.870,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:58.969,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:59.068,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:41:59.166,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:59.272,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:59.370,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:59.467,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:59.568,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:41:59.686,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:59.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:59.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:41:59.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:00.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:00.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:00.291,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:00.393,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:00.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:00.589,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:00.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:00.786,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:00.909,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:01.010,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:01.088,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:01.214,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:01.295,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:01.403,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:01.503,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:01.611,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:01.710,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:01.814,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:01.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.122,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.324,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:02.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.526,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.626,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.833,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:02.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:03.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:03.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:03.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:03.337,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:03.439,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:03.536,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:03.639,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:03.743,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:03.844,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:03.951,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.154,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.462,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.755,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:04.962,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.062,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.269,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.371,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.577,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.784,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:05.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:06.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:06.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:06.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:06.385,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:06.488,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:06.586,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:06.709,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:06.792,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:06.896,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:07.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:07.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:07.205,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:07.305,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:07.411,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:07.513,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:07.595,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:07.719,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:07.805,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:07.906,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:08.011,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:08.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.215,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.318,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.522,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:08.919,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.125,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:09.226,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.432,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.636,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.741,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:09.953,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:10.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:10.153,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:10.257,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:10.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:10.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:10.543,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:10.647,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:10.745,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:10.856,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:10.959,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:11.057,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:11.164,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:11.266,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:11.369,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:11.469,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:11.572,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:11.656,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:11.762,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:42:11.866,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:11.969,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:12.069,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:12.173,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:12.276,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:12.380,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:12.482,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:12.582,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:12.688,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:12.788,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:12.892,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:12.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.093,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.386,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:13.490,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:13.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.694,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:13.904,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.107,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.820,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:14.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:15.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:15.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:15.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:15.333,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:15.432,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:15.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:15.639,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:15.740,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:15.825,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:15.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:16.029,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:16.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:16.238,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:16.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:16.436,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:16.562,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:16.645,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:16.753,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:16.861,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:16.964,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:17.044,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:17.155,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:17.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:17.358,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:17.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:17.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:17.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:17.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:17.864,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:17.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:18.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:18.176,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:18.277,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:18.381,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:42:18.484,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:18.588,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:18.690,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:18.793,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:18.877,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:18.986,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:19.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.191,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.296,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.402,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:19.903,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:20.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:20.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:20.201,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.306,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.412,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.516,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.604,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.703,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.812,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:20.913,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:21.020,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:21.127,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:21.227,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:21.312,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:21.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:21.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:21.626,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:21.726,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:21.826,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:21.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:22.032,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.132,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.238,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.340,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.429,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.638,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.742,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.868,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:22.955,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:23.035,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:23.137,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:42:23.238,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:23.341,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:23.444,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:23.551,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:23.655,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:23.761,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:42:23.844,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:23.954,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:24.057,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:24.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:24.266,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:24.371,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:24.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:24.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:24.662,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:24.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:24.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:24.974,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:25.077,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:25.180,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:25.289,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:25.373,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:25.475,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:25.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:25.687,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:25.791,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:25.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:25.979,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:26.909,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.505,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:27.817,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:27.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:28.028,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:28.111,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:28.213,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:28.319,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:28.424,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:28.528,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:28.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:28.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:28.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:28.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.232,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.335,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.646,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:29.835,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:29.938,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:30.042,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:30.147,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:30.255,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:30.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:30.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:30.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:30.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:30.750,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:30.854,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:30.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:31.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:31.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:31.272,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:31.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:31.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:31.567,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:31.672,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:31.775,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:31.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:31.960,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:32.061,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:32.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.488,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.575,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.787,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:32.981,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.501,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.704,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:33.806,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:33.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:33.990,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:34.093,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:34.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:34.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:34.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:34.514,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:34.617,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:34.717,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:34.825,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:34.912,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:35.013,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:35.118,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:35.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:35.319,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:35.425,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:35.526,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:35.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:35.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:35.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:35.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:36.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:36.139,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:36.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:36.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:36.439,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:36.545,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:36.656,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:36.742,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:36.847,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:36.959,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:37.047,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.347,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.456,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.557,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:37.889,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:37.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.476,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:38.777,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:38.885,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:38.989,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:39.073,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:39.175,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:39.280,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:39.383,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:39.484,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:39.588,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:39.697,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:39.804,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:39.888,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:39.997,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:40.109,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:40.189,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:40.297,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:40.404,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:40.513,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:40.597,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:40.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:40.804,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:40.912,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:41.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:41.119,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:41.205,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:42:41.324,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:42:41.422,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:42:41.520,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:42:41.622,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:42:41.723,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:42:41.826,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:41.926,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:42.025,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:42.125,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:42.226,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:42.334,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:42.439,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:42.540,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:42.640,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:42.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:42.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:42.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:43.052,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:43.152,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:43.256,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:43.345,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:43.453,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:43.560,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:43.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:43.753,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:43.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:43.961,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.174,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.366,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.580,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:44.883,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:44.967,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:45.076,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:45.185,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:45.275,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:45.385,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:42:45.489,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:45.597,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:45.684,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:45.792,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:45.892,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:46.002,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:42:46.103,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:46.202,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:46.302,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:46.404,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:46.504,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:46.615,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:42:46.694,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:46.805,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:46.914,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:47.018,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:47.105,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:42:47.213,0.0,0.0850694477558136,0.07125020027160645 +2025-07-17 14:42:47.317,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:47.422,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:47.513,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:47.619,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:47.725,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:47.816,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:47.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.019,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:48.116,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.215,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.635,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.735,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:48.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.049,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.249,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.353,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.554,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.846,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:49.950,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:50.057,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.358,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:50.874,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:50.983,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.067,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.173,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.277,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.387,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.468,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.576,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.683,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.791,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.881,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:51.992,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:52.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:52.186,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:52.293,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:52.399,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:52.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:52.593,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:52.720,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:52.805,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:52.915,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:53.018,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:53.103,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:53.214,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:53.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:53.404,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:53.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:53.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:53.701,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:53.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:53.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:54.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:54.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:54.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:54.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:54.417,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:54.524,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:54.633,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:54.719,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:54.825,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:54.930,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:42:55.031,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:55.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.232,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.645,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.746,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.859,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:55.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.036,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.456,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:56.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.647,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:56.864,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:56.963,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:57.065,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:57.169,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:57.269,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:57.374,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:42:57.459,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:57.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:57.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:57.777,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:57.862,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:57.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.079,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.272,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.787,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:58.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.198,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.496,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:42:59.806,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:42:59.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.105,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.624,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.728,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:00.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:01.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:01.119,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:01.224,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:01.324,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:01.422,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:01.522,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:01.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:01.738,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:01.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:01.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:02.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:02.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:02.238,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:02.337,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:02.438,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:02.558,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:02.643,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:02.746,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:02.850,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:02.950,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:03.046,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:03.154,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:03.257,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:03.365,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:03.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:03.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:03.661,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:03.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:03.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:03.967,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:04.071,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.287,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.580,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.875,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:04.978,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:05.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:05.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:05.275,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:05.378,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:05.482,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:05.584,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:05.687,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:05.796,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:05.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:05.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.403,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:06.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.107,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.515,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:07.621,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:07.727,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:07.835,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:07.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.031,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.139,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.244,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.437,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:08.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.651,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:08.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:08.839,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:08.947,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:09.051,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:09.154,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:09.254,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:09.357,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:09.462,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:09.540,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:09.648,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:09.756,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:09.859,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:09.967,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.049,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.156,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.262,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.368,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.471,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.575,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:10.660,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:10.782,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:10.870,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:10.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:11.075,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:11.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:11.290,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:11.394,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:11.479,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:11.587,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:11.693,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:11.801,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:11.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:11.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:12.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:12.205,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:12.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:12.393,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:12.499,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:12.607,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:12.717,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:12.799,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:12.903,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:13.008,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:13.119,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:13.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:13.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:13.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:13.519,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:13.625,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:13.706,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:13.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:13.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:14.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:14.128,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:14.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:14.320,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:14.423,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:14.530,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:14.631,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:14.735,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:14.840,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:14.945,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:15.026,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:15.131,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:15.235,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:15.343,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:15.445,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:15.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:15.655,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:15.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:15.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:15.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:16.051,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:16.161,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:43:16.247,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:43:16.356,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:43:16.461,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:43:16.565,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:43:16.672,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:43:16.756,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:16.859,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:16.962,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:17.069,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:17.177,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:17.262,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:43:17.361,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:17.465,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:17.573,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:17.675,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:17.780,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:17.889,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:43:17.968,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:18.075,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:18.179,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:18.283,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:18.390,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:18.500,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:18.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:18.688,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:18.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:18.896,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.007,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.297,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.516,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.806,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:19.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:20.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:20.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:20.207,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:20.312,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:43:20.416,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:20.528,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:20.632,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:20.715,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:20.821,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:20.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.035,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.122,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.328,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.544,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:21.942,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:22.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.155,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.343,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.446,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:22.763,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:22.866,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:22.967,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:23.071,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:23.157,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:23.259,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:23.360,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:23.459,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:23.558,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:23.659,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:23.763,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:23.868,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:23.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.572,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.692,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.890,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:24.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.096,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.195,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:25.294,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.394,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.491,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:25.909,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:26.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.420,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.638,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:27.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.244,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.446,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.653,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.756,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.857,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:28.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.057,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.769,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.870,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:29.951,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:30.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:30.174,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:30.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:30.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:30.479,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:30.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:30.680,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:30.782,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:30.883,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:30.986,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.086,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.185,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.284,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.387,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.488,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.591,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.790,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.891,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:31.993,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:32.093,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:32.197,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:32.296,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:32.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:32.504,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:32.603,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:32.706,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:32.804,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:32.903,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:33.008,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:33.107,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:33.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:33.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:33.410,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:33.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:33.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:33.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:33.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:33.926,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.027,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.425,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.540,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:34.640,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.739,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:34.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:35.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:35.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:35.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:35.353,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:35.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:35.547,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:35.647,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:35.745,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:35.845,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:35.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.153,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.251,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.353,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.489,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:36.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.673,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:36.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:36.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:37.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:37.169,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:37.268,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:37.367,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:37.485,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:37.589,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:37.688,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:37.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:37.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:37.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:38.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:38.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:38.308,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:38.411,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:38.512,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:38.591,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:38.695,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:38.800,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:38.905,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:39.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:39.108,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:39.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:39.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:39.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:39.507,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:39.605,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:39.723,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:39.824,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:39.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.026,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.130,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.234,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.337,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.438,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.524,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.623,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:40.725,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:40.828,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:40.928,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:41.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:41.142,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:41.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:41.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:41.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:41.539,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:41.637,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:41.735,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:41.855,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:41.955,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.057,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.158,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.259,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.359,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.459,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.560,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.660,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.758,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.859,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:42.958,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:43.056,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:43.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:43.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:44.087,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:44.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:44.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:44.386,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:44.490,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:44.592,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:44.695,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:44.821,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:44.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:44.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:45.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:45.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:45.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:45.408,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:45.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:45.605,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:45.706,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:45.803,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:45.902,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.001,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.102,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.220,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.320,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.419,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.522,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.622,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:46.728,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:46.829,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:46.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:47.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:47.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:47.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:47.332,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:47.435,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:47.534,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:47.637,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:47.739,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:47.839,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:47.940,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:43:48.041,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:48.141,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:48.238,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:48.339,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:48.440,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:48.540,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:48.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:48.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:48.857,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:48.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:49.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:49.158,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:49.262,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:49.363,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:49.465,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:49.568,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:49.655,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:49.755,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:49.858,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:49.957,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.075,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.261,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.483,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.669,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.770,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:50.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.078,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:43:51.181,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.705,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:51.893,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:52.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:52.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:52.196,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:52.304,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:52.411,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:52.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:52.602,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:52.701,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:52.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:52.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.223,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.525,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.629,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.824,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:53.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:54.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:54.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:54.226,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:54.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:54.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:54.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:54.634,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:54.743,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:54.833,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:54.938,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.047,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.241,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.347,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.447,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.655,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:43:55.765,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:55.848,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:55.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.064,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.369,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.451,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.777,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:56.988,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.686,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:57.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:58.092,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:58.198,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:58.286,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:58.391,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:58.497,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:58.611,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:58.697,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:43:58.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:58.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:58.997,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.107,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:43:59.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.321,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.536,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:00.620,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:00.730,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:00.837,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:00.925,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:01.033,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:01.139,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:01.247,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:01.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:01.443,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:01.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:01.635,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:01.744,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:01.854,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:01.944,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:02.049,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:02.160,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:02.248,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:02.357,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:02.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:02.550,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:02.661,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:02.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:02.853,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:02.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:03.069,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:03.155,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:03.262,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:03.370,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:03.459,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:03.569,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:03.676,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:03.765,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:03.872,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:03.978,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:04.087,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:04.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.284,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.390,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.476,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.586,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.691,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:04.989,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.604,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:05.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:06.014,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:06.099,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:06.208,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:06.317,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:06.401,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:06.506,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:06.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:06.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:06.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:06.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:07.023,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:07.129,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:07.222,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:07.329,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:07.435,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:07.520,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:07.624,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:07.734,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:07.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:07.931,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.338,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.534,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:08.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:08.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:09.056,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:09.165,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:09.253,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:09.360,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:09.467,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:09.555,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:09.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:09.773,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:09.857,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:09.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.071,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.181,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.483,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:10.983,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:11.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:11.196,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:11.284,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:11.393,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:11.499,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:11.586,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:11.694,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:11.802,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:11.910,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:11.997,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:12.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:12.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:12.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:12.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:12.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:12.608,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:44:12.718,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:12.841,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:12.911,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:13.019,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:13.126,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:13.211,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:44:13.321,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:13.429,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:13.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:13.624,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:13.731,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:13.840,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:44:13.929,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:14.034,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:14.141,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:14.230,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:14.339,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:14.447,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:14.531,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:14.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:14.749,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:14.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:14.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:15.052,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:44:15.159,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:15.246,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:15.356,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:44:15.464,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:15.570,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:15.659,0.0,0.0850694477558136,0.07499992847442627 +2025-07-17 14:44:15.764,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:15.874,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:15.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.171,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.581,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:16.881,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:16.989,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:17.077,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:17.188,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:17.292,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:17.377,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:17.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:17.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:17.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:17.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:17.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.007,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.600,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.709,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:18.921,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:19.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:19.117,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:19.218,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:44:19.312,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:19.419,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:19.540,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:19.630,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:19.733,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:19.844,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:44:19.931,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:20.036,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:20.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:20.227,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:20.333,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:20.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:20.540,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:20.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:20.744,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:20.847,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:20.952,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:21.058,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:21.139,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:21.238,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:21.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:21.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:21.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:21.646,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:21.748,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:21.852,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:21.957,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:22.057,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:22.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:22.265,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:22.366,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:22.470,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:22.572,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:22.675,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:22.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:22.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:22.963,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:23.067,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:23.172,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:23.273,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:23.376,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:23.482,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:23.586,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:23.687,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:23.791,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:23.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.296,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.503,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.606,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:24.918,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:25.004,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:25.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.215,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.321,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.726,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.835,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:25.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.027,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.324,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.433,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.538,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.644,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:26.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:26.949,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:27.059,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.142,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.247,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.357,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.464,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.546,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.657,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.766,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.849,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:27.959,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.065,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.169,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.257,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.363,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.467,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.579,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.668,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.776,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:28.884,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:28.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:29.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:29.180,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:29.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:29.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:29.478,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:29.583,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:29.691,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:29.779,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:29.885,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:29.992,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:30.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:30.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:30.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:30.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:30.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:30.587,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:30.693,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:30.797,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:30.909,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:31.017,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:31.098,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:31.207,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:31.318,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:31.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:31.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:31.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:31.706,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:31.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:31.923,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.030,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.115,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.223,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.331,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.422,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.529,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.636,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.742,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.832,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:32.939,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:33.046,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:33.135,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:33.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:33.371,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:33.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:33.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:33.657,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:33.737,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:33.845,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:33.957,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.062,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.150,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.258,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.368,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.455,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.561,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.668,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.759,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:34.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:34.975,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.061,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.470,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.881,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:35.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.184,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:36.290,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.397,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:36.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:37.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:37.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:37.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:37.306,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:37.414,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:37.504,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:37.612,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:37.721,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:37.808,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:37.915,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:38.023,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:38.108,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:38.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:38.341,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:38.431,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:38.520,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:38.626,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:38.732,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:38.820,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:38.928,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:39.032,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:39.121,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:44:39.230,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.338,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.443,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.530,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.636,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.747,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.834,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:39.939,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:40.045,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:40.159,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:40.242,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:40.350,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:40.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:40.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:40.647,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:40.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:40.867,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:40.955,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:41.061,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:41.171,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:41.258,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:41.364,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:41.474,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:41.558,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:41.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:41.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:41.881,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:41.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.074,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:42.179,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.374,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.479,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.586,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.891,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:42.999,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.498,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.823,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:43.911,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:44:43.994,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:44.103,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:44.212,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:44.297,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:44.407,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:44.516,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:44.622,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:44.709,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:44.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:44.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.528,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:45.936,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:46.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:46.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:46.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:46.353,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:46.438,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:46.544,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:46.655,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:46.741,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:46.849,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:46.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:47.041,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:47.150,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:47.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:47.367,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:47.453,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:47.558,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:47.663,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:47.756,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:47.864,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:47.972,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:48.059,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:48.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:48.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:48.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:48.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:48.571,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:48.675,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:48.779,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:48.881,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:48.986,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:49.076,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:49.180,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:49.290,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:44:49.395,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:49.482,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:49.587,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:49.695,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:49.807,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:49.894,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:44:50.001,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:50.109,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:50.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:50.305,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:50.411,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:50.497,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:50.607,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:50.713,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:50.799,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:50.909,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:51.016,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:51.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:51.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:51.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:51.425,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:51.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:51.621,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:51.728,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:51.837,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:51.944,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:52.029,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:52.136,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:52.222,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:52.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:52.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:52.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:52.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:52.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:52.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:52.933,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:53.042,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:53.146,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:53.257,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:53.343,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:53.471,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:44:53.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:53.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:53.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:53.859,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:53.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:54.785,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:54.871,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:54.980,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:55.085,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:55.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:55.283,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.386,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.496,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.690,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.798,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:55.996,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.104,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.299,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.711,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:56.909,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:57.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:57.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:57.212,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:57.321,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:57.409,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:57.517,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:57.619,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:57.731,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:57.821,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:57.926,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:58.033,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:58.117,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:58.223,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:44:58.332,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:58.438,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:58.527,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:58.633,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:58.740,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:58.849,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:44:58.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.148,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.560,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:44:59.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.058,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.360,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.571,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:00.768,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:00.877,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:00.982,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.071,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.176,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.283,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.372,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.480,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.586,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.694,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.779,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.888,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:01.993,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:02.082,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:02.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:02.297,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:02.407,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:02.494,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:02.597,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:02.710,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:02.793,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:02.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.319,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.404,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.711,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:03.925,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:04.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:04.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:04.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:04.337,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:04.426,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:04.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:04.620,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:04.729,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:04.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:04.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:05.030,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:05.135,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:05.245,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:05.336,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:05.443,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:05.554,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:05.638,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:05.746,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:05.859,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:05.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.056,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.162,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.247,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.362,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.660,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.769,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:06.970,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.379,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.787,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:07.981,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:08.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:08.171,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:08.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:08.387,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:08.491,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:08.580,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:08.686,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:08.794,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:08.898,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:08.985,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:09.093,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:09.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:09.310,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:09.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:09.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:09.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:09.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:09.795,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:45:09.897,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:45:10.007,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:45:10.112,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:45:10.218,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:45:10.302,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:45:10.411,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:10.520,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:10.610,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:10.721,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:10.841,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:10.913,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:11.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.127,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.539,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:11.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.253,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.336,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.548,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:12.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:12.762,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:12.840,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:12.945,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:13.049,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:13.155,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:13.257,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:13.362,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:13.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:13.554,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:13.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:13.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:13.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:13.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.476,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.581,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.669,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:14.986,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.179,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.284,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.393,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.497,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.587,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.696,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:15.805,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:15.890,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:15.998,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.106,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.211,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.299,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.412,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.513,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.599,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.707,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.815,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:16.906,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:17.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.425,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.621,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.727,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:17.923,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:18.031,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:18.142,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:45:18.226,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:18.333,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:18.438,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:18.546,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:18.637,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:18.745,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:18.854,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:18.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.047,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.158,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.764,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.845,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:19.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.369,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:20.971,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.384,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.789,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:21.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.092,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.199,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.399,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:22.500,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:22.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.696,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.808,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:22.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:23.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:23.111,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:23.218,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:23.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:23.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:23.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:23.625,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:23.714,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:23.822,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:23.910,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:24.016,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:24.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:24.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:24.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:24.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:24.537,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:24.624,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:24.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:24.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:24.942,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.030,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.139,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.245,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.337,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.443,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.551,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.639,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.747,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.859,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:25.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.267,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:26.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.762,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.870,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:26.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.264,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.477,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:27.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.782,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.889,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:27.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.324,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.382,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.491,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.604,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.798,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.908,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:28.994,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.316,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:29.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.705,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.814,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:29.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.223,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.528,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:30.831,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:30.918,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:31.027,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:31.137,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:31.242,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:31.332,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:31.437,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:31.544,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:31.632,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:31.740,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:31.846,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:31.936,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:32.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:32.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:32.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:32.348,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:32.458,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:32.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:32.655,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:32.763,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:32.848,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:32.960,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:33.068,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:33.154,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:33.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:33.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:33.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:33.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:33.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:33.780,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:33.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:33.974,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:34.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:34.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:34.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:34.384,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:34.490,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:34.581,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:34.688,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:34.796,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:34.880,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:34.987,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.095,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.188,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.292,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.422,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.509,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.596,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.701,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.813,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:35.895,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.007,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.114,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.221,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.311,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.417,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.524,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.610,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.718,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:36.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:36.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.023,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.131,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.432,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.739,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:37.935,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.129,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.434,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:38.650,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:38.737,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:38.866,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:38.954,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:39.063,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:39.148,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:39.259,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:45:39.367,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:39.453,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:39.561,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:39.667,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:39.753,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:39.865,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:39.971,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:40.059,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:40.169,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:40.278,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:40.366,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:40.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:40.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:40.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:40.772,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:40.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:40.986,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:41.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:42.004,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:42.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:42.200,0.0,0.0763888955116272,0.06750047206878662 +2025-07-17 14:45:42.309,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:42.417,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:42.501,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:42.611,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:42.717,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:42.844,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:42.912,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.018,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.127,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.212,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.319,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.427,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.533,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.624,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.732,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.838,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:43.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:44.034,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:45:44.138,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:44.247,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:44.336,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:44.443,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:44.546,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:44.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:44.739,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:44.845,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:44.949,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:45.035,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:45.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:45.244,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.345,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.458,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.651,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.759,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.864,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:45.946,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:46.054,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:46.157,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:46.260,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:46.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:46.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:46.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:46.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:46.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:46.879,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:46.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.076,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.181,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.283,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.687,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:47.978,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:48.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:48.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:48.289,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:48.390,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:48.496,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:48.604,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:48.711,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:48.794,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:48.923,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.010,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.114,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.199,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.311,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.420,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.508,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.617,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.722,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.832,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:49.912,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.020,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.129,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.236,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.323,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.431,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.539,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:50.629,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:50.727,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:50.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:50.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:51.046,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:51.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:51.242,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:51.350,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:51.437,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:51.565,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:51.646,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:51.757,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:51.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:51.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:52.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:52.156,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:52.262,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:52.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:52.455,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:52.558,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:52.664,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:52.772,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:52.859,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:52.962,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:45:53.073,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:53.182,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:53.266,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:53.374,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:53.483,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:53.569,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:53.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:53.782,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:53.872,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:53.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:54.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:54.196,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:54.285,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:54.390,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:54.499,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:54.586,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:54.694,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:54.806,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:54.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:54.997,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.106,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.408,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.717,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.799,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:55.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.518,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:56.627,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:45:56.734,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:56.817,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:56.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:57.032,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:57.124,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:45:57.233,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:57.336,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:57.445,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:57.531,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:57.640,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:45:57.745,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:57.858,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:57.942,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:58.051,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:58.162,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:58.242,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:58.346,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:45:58.455,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:58.556,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:58.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:58.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:58.856,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:58.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.257,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.879,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:45:59.983,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.171,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.384,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.694,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.780,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:00.887,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:00.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:01.108,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:01.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:01.300,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:01.407,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:01.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:01.604,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:01.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:01.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:01.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:02.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:02.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:02.210,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:02.318,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:02.423,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:02.508,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:02.613,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:02.719,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:02.826,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:02.935,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:03.013,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:03.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:03.223,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:03.329,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:03.435,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:03.522,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:03.627,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:03.734,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:03.844,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:03.931,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:04.037,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:04.143,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:04.274,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:04.339,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:04.466,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:04.544,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:04.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:04.756,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:04.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:04.948,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:05.055,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:05.163,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:05.252,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:05.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:05.467,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:05.554,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:05.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:05.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:05.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:05.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.480,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.670,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:06.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.593,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:07.896,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.198,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.415,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.496,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.604,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.805,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:08.909,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.013,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.117,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.622,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.729,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:09.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:09.934,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.331,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.433,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.539,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.745,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.855,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:10.941,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:11.048,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:11.157,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:11.259,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:11.341,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:11.453,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:11.561,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:11.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:11.757,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:11.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:11.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.374,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.566,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.670,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:12.877,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:12.981,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.069,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.178,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.280,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.384,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.491,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.578,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.790,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.898,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:13.988,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:14.098,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.206,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.698,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.806,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:14.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.217,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.626,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.824,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:15.933,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:16.037,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:16.143,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:16.230,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:16.338,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:16.428,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:16.537,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:16.644,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:16.729,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:16.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:16.944,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:17.033,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:17.141,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:17.249,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:17.334,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:17.443,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:17.555,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:17.641,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:17.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:17.853,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:17.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:18.048,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:18.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:18.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:18.354,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:18.463,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:18.570,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:18.662,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:18.769,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:18.890,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:18.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:19.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:19.180,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:19.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:19.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:19.485,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:19.573,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:19.676,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:19.782,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:19.883,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:19.989,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:20.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.197,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.379,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.593,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.706,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:20.897,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.008,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.207,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.710,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:21.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.007,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.107,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:22.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.732,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:22.919,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.330,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.436,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.648,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.845,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:23.948,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:24.055,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:24.161,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:24.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.557,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.662,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.875,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:24.964,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:25.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:25.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:25.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:25.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:25.462,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:25.569,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:25.676,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:25.783,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:25.872,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:25.981,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.089,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.175,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.280,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.386,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.493,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.578,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.683,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:26.789,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:26.895,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:26.999,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:27.086,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:27.218,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:27.301,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:46:27.410,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:27.487,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:27.588,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:27.694,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:27.796,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:27.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.109,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.317,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.408,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.742,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.833,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:28.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:29.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:29.128,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:29.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:29.336,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:29.418,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:29.522,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:29.623,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:29.741,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:29.827,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:29.931,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.039,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.149,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.259,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.342,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.642,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.754,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.858,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:30.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:31.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:31.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:31.269,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:31.358,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:31.462,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:31.568,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:31.670,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:31.773,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:31.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:31.961,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:32.066,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:32.178,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.283,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.684,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:32.995,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.098,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.177,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.587,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.692,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:33.794,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:33.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:34.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:34.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:34.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:34.295,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:34.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:34.503,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:34.608,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:34.705,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:34.808,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:34.909,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:35.015,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:35.119,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:35.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:35.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:35.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:35.522,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:35.624,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:35.727,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:46:35.830,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:46:35.937,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:46:36.040,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:46:36.130,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:46:36.235,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:46:36.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:36.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:36.535,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:36.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:36.749,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:36.855,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:36.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.048,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.347,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.655,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:37.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:37.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:38.070,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:38.156,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:38.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:38.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:38.464,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:38.571,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:38.671,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:38.779,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:46:38.880,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:38.986,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:39.075,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:39.182,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:39.290,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:39.378,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:39.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:39.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:39.679,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:39.784,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:39.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:40.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:40.087,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:40.194,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:40.304,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:40.412,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:40.497,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:40.609,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:40.715,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:40.801,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:40.910,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:41.019,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:41.106,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:41.217,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.819,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:41.925,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.338,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.530,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.639,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.744,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:42.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.765,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:43.848,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:43.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.066,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.158,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.369,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.459,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.674,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:44.761,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:44.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:44.975,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.280,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.387,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.583,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.692,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:45.996,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:46.080,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:46.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:46.298,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:46.401,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:46.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:46.599,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:46.705,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:46.793,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:46.900,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.010,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:47.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.201,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.415,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.719,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:47.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:48.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:48.104,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:48.214,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:48.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:48.427,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:48.528,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:48.631,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:48.734,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:48.820,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:48.928,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:49.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:49.133,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:49.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:49.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:49.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:49.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:49.638,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:49.748,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:49.850,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:49.936,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:50.045,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:50.150,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:50.256,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:50.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:50.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:50.548,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:50.648,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:50.755,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:46:50.855,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:50.953,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:51.059,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:51.163,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:51.268,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:51.377,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:51.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:51.563,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:51.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:51.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:51.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:51.991,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:52.075,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:52.177,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:52.284,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:52.391,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:52.479,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:52.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:52.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:52.795,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:52.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:52.992,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:53.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:53.209,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:53.293,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:53.403,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:53.512,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:53.594,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:53.703,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:53.813,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:53.896,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:54.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:55.029,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:55.137,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:55.220,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:55.330,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:55.436,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:55.542,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:55.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:55.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:55.845,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:55.948,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:56.036,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:56.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:56.239,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:56.346,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:56.450,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:56.561,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:56.667,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:56.751,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:46:56.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:56.966,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:46:57.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.162,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.674,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:57.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.284,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.893,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:58.996,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:46:59.795,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:46:59.898,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:00.005,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:00.106,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:00.207,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:00.307,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:00.408,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:00.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:00.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:00.708,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:00.808,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:00.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.008,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.108,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.226,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:01.633,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:01.728,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:01.833,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:01.936,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:02.038,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:02.139,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:02.240,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:02.336,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:02.441,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:02.544,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:02.647,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:02.730,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:02.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:02.940,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.042,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.244,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.445,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:03.542,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:03.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:03.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:04.062,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:04.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:04.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:04.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:04.455,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:04.590,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:04.674,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:04.775,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:04.878,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:04.983,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:05.092,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:05.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:05.287,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:05.391,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:05.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:05.575,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:05.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:05.791,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:05.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:05.984,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.090,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.198,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.307,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.396,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.503,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.611,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.717,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.824,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:06.931,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:07.039,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:47:07.145,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:07.286,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:07.363,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:07.470,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:07.593,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:07.686,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:07.794,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:07.903,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:08.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:08.117,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:08.225,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:47:08.332,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:08.457,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:08.583,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:08.659,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:08.771,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:08.893,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:08.985,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:09.092,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:09.201,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:09.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:09.431,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:09.525,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:09.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:09.770,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:09.846,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:09.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:10.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.146,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.360,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:11.991,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:12.097,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:12.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:12.316,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:12.438,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:12.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:12.638,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:12.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:12.856,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:12.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.397,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.505,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:13.951,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:14.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:14.152,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:14.277,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:14.371,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:14.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:14.585,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:14.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:14.818,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:47:14.911,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.017,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.125,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.232,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.339,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.446,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.567,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.659,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.766,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.889,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:15.979,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:16.086,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:16.209,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:16.332,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:16.424,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:16.530,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:16.623,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:47:16.733,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:16.840,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:16.949,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:17.070,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:17.161,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:17.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:17.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:17.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:17.623,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:17.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:17.807,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:47:17.916,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.022,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.145,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.238,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.344,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.465,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.559,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.664,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.775,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:18.898,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:19.024,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:19.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:19.253,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:19.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:19.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:19.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:19.652,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:19.745,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:19.868,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:19.961,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:20.081,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:20.188,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:20.282,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:20.390,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:20.497,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:20.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:20.744,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:20.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:20.945,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:21.051,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:21.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:21.249,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:21.356,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:21.464,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:21.586,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:21.677,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:21.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:21.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:22.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:22.106,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.198,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.320,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.443,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.551,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.658,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.750,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.856,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:22.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:23.071,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:23.177,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:23.285,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:23.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:23.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:23.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:23.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:23.825,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:23.932,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:24.054,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:24.147,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:24.269,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:24.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:24.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:24.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:24.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:24.789,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:24.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.110,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:25.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.433,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.649,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.757,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.848,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:25.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.402,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.743,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:26.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.374,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:27.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.820,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:27.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:28.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:28.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.248,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.338,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.446,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.553,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.661,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.768,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:28.875,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.106,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.213,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.322,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.428,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.519,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.624,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.764,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:29.872,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:29.947,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.055,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.164,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.304,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.383,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.489,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.597,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.749,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.811,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:30.918,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:31.025,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:31.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:31.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:31.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:31.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:31.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:31.674,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:31.780,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:31.888,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:32.012,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:32.120,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:32.229,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:32.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:32.433,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:32.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:32.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:32.759,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:32.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:32.989,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:33.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:33.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:33.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:33.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:33.513,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:33.637,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:33.729,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:33.836,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:33.944,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:34.070,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:34.177,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:34.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:34.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:34.504,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:34.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:34.721,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:34.831,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:34.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:35.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:35.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:35.260,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:35.353,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:35.476,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:35.602,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:35.680,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:35.790,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:35.914,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:36.022,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.131,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:36.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.089,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:37.184,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:37.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.738,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.847,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:37.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.049,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.821,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:38.943,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.037,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:39.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.256,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:39.934,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:40.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:40.118,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.259,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.335,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.458,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.550,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.670,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.779,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:40.978,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:41.085,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:41.192,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:41.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:41.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:41.531,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:41.639,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:41.762,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:41.855,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:41.962,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:42.070,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:42.177,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:42.285,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:42.392,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:42.499,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:42.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:42.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:42.806,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:42.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:43.022,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:43.144,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:43.236,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:43.347,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:43.454,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:43.561,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:43.698,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:43.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:43.884,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:44.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:44.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:44.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:44.326,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:47:44.434,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:44.543,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:44.653,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:44.763,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:44.871,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:44.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.299,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.512,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.623,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.731,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:45.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:45.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.269,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:46.374,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.482,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.821,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:46.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:47.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:47.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:47.238,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:47.359,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:47.467,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:47.575,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:47.666,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:47.773,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:47.881,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:48.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.202,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.830,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:48.953,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:49.043,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:49.167,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:49.246,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:49.383,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:49.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:49.603,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:49.708,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:47:49.815,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:49.922,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.029,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.138,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.244,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.351,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.472,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.548,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.672,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.764,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.872,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:47:50.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.105,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:51.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.324,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.445,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.521,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:51.646,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.753,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:51.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:52.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:52.183,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:52.273,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:52.383,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:52.505,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:52.613,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:52.723,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:52.846,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:52.923,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:53.031,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:53.154,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:53.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:53.369,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:53.475,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:53.599,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:53.707,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:53.816,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:53.908,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:54.016,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:54.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:54.229,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:54.335,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:54.427,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:47:54.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:54.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:54.766,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:54.873,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:54.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:55.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.147,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.299,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:56.362,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.578,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:56.684,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:56.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.127,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.447,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.555,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:57.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.092,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.200,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:58.849,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:58.971,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.171,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.393,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.501,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:59.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:47:59.820,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:47:59.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:00.036,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:00.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:00.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:00.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:00.467,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:00.575,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:00.682,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:00.788,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:00.896,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:01.003,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:01.097,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:01.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.546,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.698,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.897,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:01.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:02.079,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:02.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:02.323,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:02.416,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:02.523,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:02.629,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:02.753,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:02.844,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:02.953,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:48:03.061,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:03.170,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:03.279,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:03.387,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:03.497,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:03.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:03.696,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:03.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:03.923,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.572,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.773,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:04.879,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:05.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:05.107,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:05.199,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:05.308,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:05.430,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:05.553,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:05.630,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:05.752,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:05.859,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:05.965,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:06.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.197,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.500,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:06.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.825,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:06.930,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:07.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:07.146,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:48:07.252,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:07.360,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:07.469,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:07.578,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:07.701,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:07.793,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:07.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:08.026,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:08.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:08.226,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:08.335,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:08.444,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:08.564,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:08.655,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:08.763,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:08.871,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:08.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.504,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:09.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.722,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.830,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:09.954,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.046,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.152,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.394,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.701,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.808,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:10.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.483,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.560,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:11.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.098,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.205,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.512,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.728,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:12.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.264,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.479,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:13.585,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.692,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:13.799,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:13.922,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:14.014,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:14.122,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.246,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.464,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.787,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:14.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.328,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.527,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:15.635,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:15.773,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:15.850,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:15.973,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.067,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.188,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.282,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.389,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.497,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.621,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.713,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:16.823,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:16.944,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:17.053,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:17.176,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:17.270,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:17.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:17.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:17.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:17.698,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:17.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:17.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.131,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.670,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:18.979,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.300,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.500,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.835,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:19.941,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:20.049,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:20.186,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:20.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:20.368,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:48:20.474,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:20.583,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:20.704,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:20.798,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:20.922,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:21.028,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:21.120,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:21.230,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:21.351,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:21.456,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:21.566,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:48:21.671,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:21.763,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:21.872,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:21.977,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:22.084,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:22.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:22.296,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:22.420,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:22.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:22.622,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:22.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:22.836,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:22.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:23.053,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:23.159,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:23.269,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:23.377,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:23.484,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:23.593,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:23.701,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:23.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:23.915,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:24.035,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:24.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:24.250,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:24.355,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:24.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:24.571,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:24.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:24.790,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:24.896,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:24.989,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:25.096,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:25.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:25.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:25.420,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:25.528,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:25.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:25.747,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:25.873,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:25.968,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:26.093,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:26.219,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:26.325,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:26.418,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:26.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:26.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:26.755,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:26.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:26.970,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:27.063,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:27.169,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:27.262,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:27.384,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:27.492,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:27.601,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:48:27.725,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:48:27.816,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:27.925,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:28.014,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:28.122,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:48:28.229,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:28.336,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:28.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:28.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:28.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:28.769,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:28.878,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:29.002,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:29.110,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:29.221,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:29.329,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:29.438,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:29.562,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:29.655,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:29.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:29.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:29.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:30.068,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.177,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.299,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.394,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.520,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.624,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.719,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.827,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:30.951,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:31.077,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:31.169,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:31.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:31.385,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:31.494,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:31.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:31.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:31.817,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:31.909,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:32.020,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:32.142,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:32.251,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:32.344,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:32.452,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:32.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:32.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:32.780,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:32.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:33.012,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:33.120,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:33.228,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:33.337,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:33.445,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:33.556,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:33.666,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:33.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:33.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:33.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.087,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:34.197,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.844,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:34.954,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.060,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.276,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:35.400,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.722,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.818,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:35.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:36.049,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.156,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.266,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.374,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.481,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.605,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.696,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.804,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:36.911,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.018,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.110,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.218,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.328,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.577,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.670,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.779,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:37.904,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:37.997,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:38.103,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:38.212,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:38.320,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:38.427,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:38.536,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:38.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:38.754,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:38.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:38.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:39.076,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.183,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.305,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.414,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.509,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.618,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.726,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.834,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:39.942,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:40.048,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:40.157,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:40.266,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:40.374,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:40.482,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:40.591,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:40.697,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:40.806,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:40.931,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:41.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:41.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:41.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:41.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:41.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:41.572,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:41.663,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:41.771,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:41.863,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:41.971,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:42.079,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:42.200,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:42.292,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:42.402,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:42.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:42.617,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:48:42.724,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:42.832,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:42.941,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.047,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.184,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.276,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.384,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.489,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.595,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.703,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.811,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.920,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:43.998,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:44.119,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:44.225,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:44.335,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:44.457,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:44.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:44.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:44.761,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:44.870,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:44.977,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:45.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:45.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:45.301,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:45.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:45.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:45.624,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:45.731,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:45.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:45.944,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:46.053,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:46.192,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:46.301,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:46.378,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:48:46.486,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:48:46.593,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:46.734,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:46.811,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:48:46.917,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:47.055,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:47.132,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:47.237,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:47.359,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:47.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:47.575,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:47.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:47.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:47.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:47.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.116,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.224,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:48.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.066,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:49.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.498,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.606,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:49.931,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.147,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.286,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.501,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.701,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:50.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.244,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.350,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.458,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:51.566,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.674,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:51.994,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.423,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.621,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:52.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:52.947,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:53.082,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:53.174,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:53.267,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:53.373,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:53.494,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:53.603,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:53.711,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:53.819,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:53.925,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.140,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.247,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.355,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:54.679,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:54.801,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:54.923,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:55.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:55.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:55.215,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:55.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:55.401,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:55.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:55.664,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:55.773,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:55.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:55.974,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:56.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:56.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:56.295,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:56.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:56.508,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:56.618,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:56.726,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:56.818,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:56.941,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:57.049,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:57.156,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:57.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:57.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:57.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:57.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:57.681,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:57.789,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:57.894,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:58.019,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:58.125,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:58.219,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:58.326,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:58.434,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:58.542,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:58.652,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:58.759,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:48:58.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:58.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:59.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:48:59.187,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:59.295,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:59.432,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:48:59.510,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:59.618,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:59.724,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:59.832,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:48:59.941,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:00.049,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:00.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:00.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:00.385,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:00.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:00.601,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:00.706,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:00.811,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:00.919,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:01.028,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:01.134,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:01.241,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:01.333,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:49:01.441,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:01.562,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:01.673,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:01.781,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:01.903,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:01.995,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:02.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:02.213,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:02.321,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:02.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:02.552,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:02.644,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:02.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:02.856,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:02.978,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:03.072,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:49:03.179,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:03.290,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:03.395,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:03.503,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:03.625,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:03.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:03.822,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:03.912,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:04.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:04.127,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:04.235,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:04.342,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:04.450,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:04.559,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:04.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:04.771,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:04.893,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:04.998,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:05.106,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:05.211,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:05.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:05.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:05.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:05.643,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:05.753,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:05.860,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:05.969,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:06.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:06.185,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:06.293,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:06.399,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:06.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:06.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:06.722,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:06.828,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:06.918,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.025,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.134,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.240,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.346,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.455,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.564,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.673,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.783,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:07.889,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:07.998,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.316,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.640,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.747,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.872,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:08.978,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:09.071,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:49:09.193,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:09.302,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:09.423,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:09.517,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:09.625,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:09.733,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:09.826,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:09.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:10.056,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:10.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:10.270,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:10.379,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:10.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:10.595,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:10.719,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:10.810,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:10.917,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:49:11.025,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:11.149,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:11.286,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:11.361,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:11.468,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:11.560,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:11.669,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:11.778,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:11.902,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:12.011,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:12.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:12.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:12.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:12.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:12.553,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:12.659,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:12.766,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:12.856,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:12.965,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.073,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.182,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.288,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.395,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.502,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.622,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.730,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.854,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:13.931,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:14.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:14.177,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:14.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:14.374,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:14.483,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:14.591,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:14.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:14.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:14.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.022,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.434,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.556,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.649,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.757,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:15.973,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:16.083,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:16.207,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:16.316,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:16.424,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:16.530,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:16.621,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:16.727,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:16.836,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:16.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:17.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:17.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:17.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:17.385,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:17.491,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:49:17.598,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:17.721,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:17.814,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:17.923,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.034,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.142,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.252,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.357,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.468,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.578,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.686,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:18.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:18.903,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:18.997,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.336,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.659,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.751,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:19.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:19.978,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:20.101,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:20.193,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:20.318,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:20.408,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:20.517,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:20.622,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:20.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:20.838,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:20.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:21.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:21.161,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:49:21.268,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:49:21.376,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:49:21.484,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:49:21.591,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:49:21.714,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:49:21.809,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:21.917,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.025,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.134,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.256,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.349,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.455,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.563,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.671,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.766,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.889,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:22.981,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:23.102,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:23.212,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:23.321,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:23.412,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:23.518,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:23.627,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:23.750,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:23.856,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:23.950,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.072,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.163,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.270,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.381,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.486,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.593,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:24.703,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:49:24.810,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:24.921,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.029,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.154,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.677,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.891,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:25.998,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:26.106,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:26.227,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:26.336,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:26.428,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:26.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:26.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:26.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:26.872,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:26.978,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.088,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:27.858,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:27.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.362,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.469,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:28.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.684,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.794,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:28.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.660,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.768,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.874,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:29.983,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:30.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:30.194,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:49:30.302,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:49:30.410,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:49:30.516,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:49:30.626,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:49:30.750,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:30.859,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:30.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:31.057,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:31.164,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:31.271,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:31.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:31.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:31.595,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:31.720,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:31.829,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:31.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:32.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:32.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:32.262,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:32.371,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:32.448,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:32.589,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:32.697,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:32.803,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:32.909,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.018,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.113,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.235,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.343,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.453,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.671,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:33.780,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:33.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:34.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:34.105,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:34.214,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:34.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:34.429,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:34.571,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:34.649,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:34.756,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:34.863,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:34.974,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:49:35.069,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.206,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.285,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.395,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.502,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.638,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.747,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.825,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:35.934,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:36.072,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:36.147,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:36.254,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:36.393,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:36.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:36.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:36.683,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:36.793,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:36.931,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:37.007,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:37.115,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:37.250,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:37.344,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:37.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:37.546,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:37.653,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:37.773,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:37.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:37.975,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:38.083,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:38.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:38.299,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:38.453,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:38.546,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:38.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:38.745,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:38.854,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:38.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:39.088,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:39.166,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:49:39.273,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:39.382,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:39.490,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:39.617,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:39.723,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:39.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:39.924,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:40.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:40.155,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:40.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:40.357,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:40.466,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:40.589,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:40.681,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:40.807,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:40.915,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:41.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.131,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.224,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.653,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:41.975,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:42.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:42.188,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:42.296,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:42.404,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:42.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:42.621,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:42.727,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:42.835,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:42.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:43.070,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:43.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:43.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:43.376,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:43.482,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:43.590,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:43.696,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:43.803,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:43.925,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:44.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.247,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.355,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.462,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.572,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.802,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:44.909,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.546,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.653,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:45.761,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:45.869,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:45.977,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.082,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.189,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.298,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.424,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.518,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.626,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.735,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.842,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:46.950,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:47.059,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:47.168,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:47.273,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:47.381,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:47.489,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:47.613,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:47.706,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:47.812,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:47.920,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:48.026,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:48.135,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:48.241,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:48.351,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:48.459,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:48.565,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:48.672,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:48.778,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:48.887,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:49.012,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:49.118,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:49.227,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:49.321,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:49.411,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:49.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:49.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:49.765,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:49.872,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:49.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:50.077,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:50.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:50.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:50.397,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:50.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:50.627,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:50.718,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:50.827,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:50.920,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:51.073,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:51.149,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:51.244,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:51.364,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:51.470,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:51.563,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:51.687,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:51.780,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:51.903,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:52.027,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:52.118,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:52.225,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:52.317,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:52.424,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:52.549,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:52.657,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:52.766,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:52.876,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:52.982,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:53.092,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:53.212,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:53.320,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:53.415,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:53.521,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:53.628,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:53.737,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:53.848,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:53.956,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:54.050,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:54.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:54.278,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:54.386,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:54.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:54.603,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:54.698,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:54.819,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:54.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:55.037,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:55.131,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:55.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:55.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:55.469,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:55.577,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:55.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:55.822,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:55.898,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.020,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.112,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.219,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.419,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.526,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:56.635,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:56.759,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:56.850,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:56.958,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:49:57.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:57.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:49:57.279,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:57.388,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:57.515,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:57.623,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:57.729,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:57.819,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:57.926,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.034,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.267,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.376,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.486,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.597,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.830,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:58.939,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.015,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.123,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.229,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.337,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.445,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.553,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:49:59.675,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:49:59.785,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:59.878,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:49:59.987,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:00.095,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:00.217,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:00.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:00.432,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:00.571,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:00.649,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:00.755,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:00.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:00.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:01.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:01.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:01.289,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:01.397,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:01.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:01.610,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:01.700,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:01.806,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:01.914,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.022,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.161,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.237,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.344,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.454,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.575,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:02.683,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:02.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:02.900,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:02.992,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.527,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.777,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:03.962,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.070,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.284,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.516,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.821,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:04.929,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.037,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.146,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.286,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.362,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.692,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:05.799,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:05.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:06.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:06.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:06.231,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:06.340,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:06.451,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:06.575,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:06.684,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:06.794,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:06.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.548,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:07.656,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:07.762,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.853,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:07.962,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:08.068,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.176,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.283,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.391,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.497,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.607,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.714,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.822,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:08.929,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:09.037,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:09.144,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:09.250,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:09.373,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:09.483,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:09.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:09.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:09.791,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:09.899,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:10.038,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:10.144,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:10.251,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:10.344,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:10.451,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:50:10.559,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:50:10.665,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:50:10.771,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:50:10.879,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:50:10.986,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:50:11.092,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.199,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.630,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:11.952,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:12.075,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:12.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:12.276,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:12.385,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:12.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:12.598,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:12.705,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:12.812,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:12.919,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.011,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.118,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.227,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.336,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.441,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.547,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.686,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.793,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:13.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.008,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.084,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.193,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.301,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.412,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.520,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:14.659,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:14.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:14.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:14.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.092,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.198,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:15.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.595,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.700,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:15.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:16.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:16.128,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:16.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:16.341,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:16.447,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:16.555,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:16.647,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:16.786,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:16.892,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:16.999,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:17.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.199,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.415,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.539,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.646,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.848,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:17.971,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:18.062,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:18.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:18.308,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:18.402,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:18.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:18.599,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:18.708,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:18.801,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:18.938,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.031,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.138,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.275,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.367,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.460,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.568,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.675,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.784,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.905,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:19.995,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:20.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:20.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:20.318,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:20.425,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:20.549,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:20.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:20.750,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:20.857,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:20.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.088,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.196,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.290,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.411,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.824,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:21.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.040,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:22.149,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.687,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:22.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:23.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:23.119,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:23.243,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:23.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:23.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:23.551,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:23.674,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:23.779,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:23.873,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:24.009,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:24.087,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:24.192,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:24.302,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:24.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:24.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:24.624,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:24.762,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:24.855,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:24.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.165,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.381,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:25.503,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:25.581,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.701,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:25.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.147,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.253,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.684,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.776,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:26.884,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:26.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.098,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.527,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.650,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.742,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:27.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.202,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.388,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:28.494,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.722,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.845,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:28.923,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:29.046,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:29.154,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:29.245,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:29.371,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:29.463,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:29.619,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:29.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:29.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:29.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.235,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.450,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:30.867,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:30.990,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:31.084,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:31.207,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:31.316,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:31.411,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:31.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:31.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:31.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:31.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:31.953,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:32.094,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:32.201,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:32.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:32.389,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:32.496,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:32.633,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:32.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:32.820,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:32.929,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.148,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.286,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.690,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:33.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.109,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.249,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.356,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:34.467,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:34.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.789,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:34.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:35.098,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:35.220,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:35.328,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:35.436,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:35.541,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:35.648,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:35.755,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:35.864,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:35.973,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:36.081,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:36.187,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:36.295,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:36.402,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:36.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:36.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:36.725,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:36.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:36.941,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:37.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:37.156,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:37.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:37.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:37.479,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:50:37.588,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:37.697,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:37.807,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:37.916,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:38.024,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:38.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:38.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:38.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:38.452,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:38.558,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:38.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:38.773,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:38.866,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:38.975,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:39.083,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:39.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:39.315,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:50:39.423,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:39.516,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:39.639,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:39.747,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:39.896,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:40.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:40.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:40.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:40.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:40.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:40.519,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:40.626,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:40.733,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:40.843,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:40.952,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:41.062,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:41.171,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.390,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.497,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.621,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.820,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:41.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.162,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:42.920,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:43.026,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:43.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.456,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:43.888,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:44.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:44.118,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:50:44.209,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:44.316,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:44.424,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:44.530,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:44.635,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:44.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:44.831,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:44.938,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:45.062,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:45.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:45.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:45.372,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:45.479,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:45.585,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:45.694,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:45.801,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:45.907,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:46.018,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:46.126,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:46.233,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:46.338,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:46.445,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:46.554,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:46.662,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:46.770,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:46.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:46.984,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:47.089,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:47.198,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:47.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:47.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:47.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:47.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:47.735,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:47.845,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:47.954,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.062,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.171,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.278,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.385,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.493,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.599,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.723,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.832,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:48.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:49.048,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:49.154,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:49.262,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:49.370,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:49.477,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:49.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:49.688,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:49.795,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:49.903,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:50.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.119,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.226,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.656,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.765,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:50.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.299,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.389,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.498,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.717,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:51.825,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:51.948,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:52.041,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:52.164,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:52.271,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:52.363,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:52.470,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:52.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:52.688,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:52.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:52.919,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.119,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.549,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.655,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.764,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:53.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.443,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.629,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:54.952,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.060,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.384,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.604,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:55.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:56.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:56.145,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:50:56.253,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:56.360,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:56.467,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:56.577,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:56.687,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:50:56.795,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:50:56.934,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:57.013,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:57.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:57.230,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:50:57.338,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:57.462,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:57.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:57.659,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:57.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:57.904,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:57.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.104,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.196,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:58.749,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:58.855,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:58.961,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:50:59.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.173,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.499,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:50:59.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.022,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.235,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.447,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.660,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.769,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:00.983,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:01.093,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:01.200,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:01.306,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:01.416,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:01.557,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:01.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:01.741,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:01.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:01.958,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:02.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:02.172,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:02.294,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:02.388,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:02.511,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:02.602,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:02.724,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:02.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:02.958,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:03.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:03.157,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:03.263,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:03.372,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:03.479,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:03.588,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:03.695,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:03.803,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:03.909,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:04.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:04.125,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:04.216,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:04.323,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:04.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:04.538,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:04.645,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:04.769,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:04.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:04.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:05.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:05.188,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:51:05.309,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:05.400,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:05.508,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:05.615,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:05.723,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:05.860,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:05.937,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:06.044,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:06.182,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:06.259,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:06.381,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:51:06.489,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:06.582,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:06.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:06.797,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:06.904,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.027,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.136,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.243,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.350,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.457,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.577,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.669,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.776,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:07.992,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:08.115,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:08.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.318,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.425,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.656,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.732,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.856,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:08.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.181,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.385,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.710,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:09.938,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:10.989,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:11.094,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:11.231,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:11.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:11.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:11.529,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:11.655,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:11.761,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:11.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:11.963,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:12.088,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:12.196,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:12.304,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:12.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:12.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:12.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:12.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:12.858,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:12.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.058,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.581,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.691,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:13.920,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:14.011,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:14.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:14.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:14.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:14.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:14.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:14.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:14.769,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:14.876,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:14.982,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:15.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:15.203,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:15.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:15.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:15.538,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:15.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:15.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:15.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:15.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:16.071,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:16.181,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:16.306,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:16.429,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:16.521,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:16.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:16.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:16.826,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:16.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.039,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.164,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.581,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:17.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.670,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.780,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:18.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:19.103,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:19.209,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:19.316,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:19.426,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:19.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:19.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:19.762,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:19.870,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:19.979,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.283,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:20.823,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:20.931,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.038,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.145,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.266,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.373,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.465,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.573,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.666,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.774,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:21.897,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:22.004,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:22.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.436,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.544,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.759,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:22.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:23.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:23.176,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.282,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.407,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.498,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.619,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.726,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.819,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:23.928,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:24.036,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:24.162,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:24.269,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:24.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:24.469,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:24.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:24.685,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:24.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:24.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:25.026,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:25.135,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:25.259,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:25.352,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:25.476,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:25.569,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:25.677,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:25.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:25.897,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.007,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.224,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:26.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:27.062,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:27.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:27.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:27.401,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:51:27.510,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:27.617,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:27.725,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:27.835,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:27.942,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:28.051,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:28.173,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:28.253,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:28.376,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:28.484,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:28.592,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:28.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:28.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:28.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:29.056,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:29.116,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:29.223,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:29.331,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:29.438,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:29.546,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:29.686,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:29.781,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:29.874,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:30.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:30.106,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:30.229,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:30.321,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:30.413,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:30.519,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:30.627,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:30.752,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:30.861,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:30.970,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:31.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:31.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:31.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:31.384,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:31.492,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:31.602,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:31.725,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:31.817,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:31.924,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.032,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.139,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.249,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.374,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.465,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.574,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.683,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:32.808,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:32.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:33.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:33.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:33.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:33.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:33.457,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:51:33.566,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:33.674,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:33.783,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:33.891,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:34.013,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:51:34.107,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.215,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.323,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.430,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.538,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.645,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.770,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.865,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:34.973,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:35.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:35.188,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:35.294,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:35.403,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:35.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:35.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:35.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:35.802,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:35.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:36.066,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:36.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:36.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:36.373,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:36.482,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:36.589,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:36.696,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:36.806,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:36.914,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:37.024,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:51:37.130,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.235,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.326,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.433,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.556,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.664,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.759,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.866,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:37.974,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:38.081,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:38.189,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:38.296,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:38.406,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:38.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:38.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:38.733,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:38.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:38.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:39.056,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:39.192,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:39.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:39.374,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:39.483,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:39.591,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:39.701,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:39.810,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:39.917,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:40.025,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:40.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:40.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:40.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:40.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:40.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:40.673,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:40.782,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:40.889,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:40.998,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.104,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.211,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.321,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.429,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.644,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.750,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:41.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:41.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.514,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:42.820,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:42.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:43.035,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:43.140,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:43.280,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:43.357,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:43.465,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:43.573,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:43.683,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:43.807,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:43.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:44.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:44.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:44.216,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:44.324,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:44.450,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:44.542,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:44.649,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:44.756,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:44.893,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:44.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.093,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.201,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.416,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:45.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.847,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:45.954,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:46.061,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:46.168,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:46.276,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:46.384,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:46.492,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:46.598,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:46.705,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:46.811,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:46.918,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:47.025,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:47.117,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:47.225,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:47.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:47.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:47.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:47.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:47.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:47.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:47.979,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:48.100,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:48.191,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:48.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:48.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:48.530,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:48.637,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:48.745,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:48.855,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:48.947,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:49.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:49.181,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:49.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:49.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:49.488,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:49.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:49.720,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:49.827,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:49.932,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:50.040,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:50.146,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:50.252,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:50.374,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:50.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:50.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:50.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:50.773,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:50.883,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:50.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:51.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:51.208,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:51.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:51.436,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:51.545,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:51.636,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:51.744,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:51.853,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:51.976,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.083,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.176,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.299,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.408,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.502,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.609,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:51:52.732,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:52.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:52.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:53.058,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:53.152,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:53.276,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:53.369,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:53.478,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:53.602,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:53.694,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:53.802,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:53.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:54.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:54.140,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:54.235,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:54.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:54.467,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:54.574,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:54.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:54.773,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:54.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:55.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:51:55.107,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.199,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.319,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:55.424,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.500,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:55.943,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.518,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:56.812,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:56.919,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:57.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.473,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:57.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.686,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.793,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.901,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:57.996,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.105,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.335,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:58.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.194,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.302,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:51:59.838,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:51:59.928,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:00.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:00.158,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:00.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:00.372,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:00.480,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:00.575,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:00.682,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:00.803,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:00.909,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.003,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.126,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.233,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.341,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.446,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.554,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.648,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.788,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.896,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:01.973,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:02.083,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:02.189,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:02.297,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:02.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:02.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:02.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:02.743,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:02.853,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:02.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.379,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:03.503,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.717,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.825,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:03.919,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.254,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.562,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:04.778,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:04.886,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:04.993,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.101,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.222,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.330,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.439,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.546,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.653,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.762,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:05.978,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.301,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.823,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:06.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.036,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.251,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:07.389,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.694,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:07.925,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.679,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.770,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.862,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:08.971,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:09.077,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:09.183,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:09.290,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:09.397,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:09.507,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:09.613,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:09.752,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:09.845,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:09.935,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:10.043,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:10.150,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.272,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.488,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.595,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.809,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:10.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:11.027,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:11.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:11.256,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:11.363,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:11.470,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:11.578,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:11.670,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:11.778,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:11.884,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:12.008,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:12.115,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:12.223,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:12.317,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:12.425,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:12.531,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:12.640,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:12.747,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:12.871,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:12.978,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:13.069,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:13.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.500,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.825,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:13.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:14.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:14.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:14.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:14.348,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:14.484,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:14.577,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:14.669,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:14.808,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:14.885,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:14.991,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:15.098,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:15.208,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:15.317,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:15.423,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:15.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:15.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:15.745,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:15.852,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:15.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:16.083,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:16.206,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:16.300,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:16.407,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:16.500,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:16.623,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:16.732,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:16.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:16.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.270,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:17.377,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:17.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.696,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.804,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:17.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.434,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:18.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:19.117,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:19.211,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:19.317,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:19.426,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:19.519,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:19.625,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:19.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:19.854,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:19.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.174,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.387,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.591,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:20.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.805,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:20.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.575,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:21.896,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:22.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:22.110,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:22.203,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:22.327,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:22.435,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:22.527,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:22.647,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:22.753,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:22.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:22.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.488,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.814,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:23.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.150,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.348,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.456,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.698,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:24.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.220,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:25.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.638,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:25.759,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:25.853,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:25.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:26.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:26.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:26.319,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:26.396,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:26.503,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:26.624,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:26.732,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:26.838,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:26.948,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:27.042,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:27.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:27.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:27.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:27.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:27.591,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:27.698,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:27.806,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:27.900,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:28.023,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:28.130,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:52:28.239,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:28.348,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:28.458,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:28.566,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:28.673,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:28.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:28.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:28.994,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:29.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:29.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:29.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:29.440,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:29.550,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:29.657,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:29.751,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:29.875,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:29.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.296,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.418,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.526,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.742,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:30.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.179,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.600,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:31.708,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:31.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:31.924,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.140,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.250,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.791,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:32.899,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:33.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.117,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.445,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.881,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:33.990,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:34.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:34.205,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:34.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:34.421,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:34.531,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:34.672,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:34.767,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:34.875,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:34.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:35.092,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:35.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:35.293,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:35.402,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:35.510,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:35.635,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:35.743,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:35.851,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:35.944,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:36.087,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:36.194,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:36.273,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:36.379,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:36.501,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:36.594,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:36.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:36.823,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:36.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.366,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:37.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.708,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:37.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:37.896,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.453,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.670,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.780,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:38.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.535,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:39.627,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:39.736,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:39.843,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:39.951,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:40.058,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:40.165,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:40.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:40.384,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:40.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:40.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:40.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:40.831,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:40.937,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.030,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.138,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.244,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.367,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.460,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.568,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.678,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.788,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:41.895,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.003,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.110,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.215,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.324,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.433,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.540,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:42.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:42.741,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:42.847,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:42.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.200,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.310,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.526,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.760,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:43.837,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:43.944,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:44.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.806,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:44.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.142,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:45.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.096,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:46.237,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.343,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.558,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.648,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.756,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:46.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.186,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.399,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.505,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:47.935,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:48.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:48.152,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:48.261,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:48.367,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:48.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:48.582,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:48.674,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:48.781,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:48.888,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:49.013,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:49.119,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:49.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.746,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:49.961,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:50.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:50.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:50.280,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:50.404,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:50.529,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:50.607,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:50.746,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:50.823,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:50.930,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:51.036,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.158,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.264,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.372,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.464,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.573,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.680,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.805,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:51.898,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:52.020,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:52.098,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:52.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:52.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:52.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:52.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:52.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:52.768,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:52.877,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:52.984,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:53.090,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:53.183,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:53.292,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:53.446,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:53.524,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:53.615,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:53.721,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:53.844,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:53.940,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:54.048,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:52:54.158,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.280,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.371,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.478,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.585,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.724,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.801,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:54.910,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:55.016,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:55.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:55.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:55.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:55.450,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:55.560,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:55.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:55.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:55.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:56.005,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:56.098,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:56.234,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:56.310,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:52:56.418,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:56.526,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:56.635,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:56.761,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:56.870,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:56.979,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:57.085,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:57.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:57.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:57.389,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:57.511,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:57.603,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:52:57.710,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:57.803,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:57.957,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:58.050,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:58.142,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:52:58.248,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:58.355,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:58.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:58.571,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:58.679,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:58.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:58.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.222,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:52:59.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.436,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.544,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:52:59.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:00.080,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.299,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.407,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.515,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.623,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.729,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.837,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:00.947,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:01.071,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:01.163,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:01.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:01.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:01.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:01.594,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:01.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:01.811,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:53:01.935,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:02.029,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:02.136,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:02.242,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:02.352,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:02.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:02.565,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:02.674,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:02.781,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:02.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:02.996,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:03.102,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:03.210,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:03.346,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:03.424,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:03.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:03.640,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:03.746,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:03.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:03.961,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:04.083,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:04.205,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.313,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.391,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.499,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.623,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.729,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.838,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:04.943,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:05.067,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:05.174,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:05.266,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:05.375,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:05.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:05.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:05.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:05.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:05.910,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.668,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.762,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:06.976,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:07.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:07.191,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:07.298,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:07.434,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:07.511,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:07.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:07.741,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:07.851,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:07.958,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.050,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.268,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.376,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.484,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.594,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.714,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.807,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:08.915,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:09.023,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:09.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:09.255,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:09.346,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:09.470,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:09.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:09.687,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:09.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:09.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:10.008,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:10.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:10.242,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:53:10.318,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:10.443,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:10.535,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:10.641,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:10.765,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:10.872,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:10.983,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.062,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.199,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.292,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.400,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.523,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.614,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.723,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.829,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:11.935,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:12.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.150,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.369,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.690,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:12.909,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.251,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.680,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:13.988,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:14.096,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:14.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:14.328,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:14.437,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:14.529,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:14.635,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:14.742,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:14.847,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:14.969,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:15.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.387,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.726,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.818,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:15.926,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:16.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:16.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:16.252,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:16.359,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:16.469,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:16.575,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:16.682,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:16.804,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:16.927,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.004,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.114,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.222,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.314,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.452,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.560,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.762,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.870,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:17.992,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:18.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.300,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.513,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.622,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.746,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:18.962,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.177,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.283,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.375,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.482,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.711,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:19.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.341,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.575,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:20.971,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:21.089,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:21.189,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:21.290,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:21.391,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:21.493,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:21.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:21.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:21.802,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:21.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.008,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.088,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.297,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:22.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.501,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.601,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:22.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.012,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:23.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.316,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.826,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:23.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:24.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:24.132,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:24.231,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:24.329,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:24.430,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:24.531,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:24.629,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:24.728,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:24.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:24.940,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.037,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.350,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.447,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.546,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:25.861,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:25.957,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:26.052,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:26.148,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:26.249,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:26.349,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:26.469,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:53:26.564,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:26.659,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:26.761,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:26.852,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:26.973,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:27.077,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:27.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:27.262,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:27.383,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:27.480,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:27.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:27.678,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:27.776,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:27.876,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:27.975,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:28.092,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:28.188,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:28.290,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:28.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:28.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:28.604,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:28.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:28.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:28.901,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:29.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:29.100,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:29.204,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:29.303,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:29.401,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:29.503,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:29.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:29.709,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:29.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:29.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:30.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:30.119,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:30.222,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:30.324,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:30.423,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:30.527,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:30.629,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:30.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:30.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:30.936,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.122,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:31.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.531,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:31.940,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:32.045,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:32.146,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:32.246,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:32.348,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:32.451,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:32.555,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:32.659,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:32.760,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:32.863,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:32.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:33.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.351,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.665,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.767,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:33.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:34.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:34.178,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:34.282,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:53:34.381,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:34.483,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:34.587,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:34.691,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:34.791,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:34.895,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:34.995,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:35.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:35.199,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:35.299,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:35.399,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:35.504,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:35.610,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:35.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:35.793,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:35.893,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:35.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:36.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:36.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:36.305,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:36.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:36.512,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:36.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:36.719,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:36.818,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:36.921,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:37.023,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:37.122,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:37.225,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:37.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:37.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:37.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:37.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:37.735,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:37.837,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:37.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.247,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.345,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.446,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:38.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:39.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:39.150,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.251,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.352,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.457,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.561,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.664,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.769,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.869,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:39.970,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:40.075,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:40.176,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:40.262,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:40.363,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:40.466,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:40.569,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:40.671,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:40.776,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:40.877,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:40.978,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:41.081,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:41.186,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:41.287,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:41.388,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:41.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:41.597,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:41.699,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:41.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:41.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.193,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.295,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.396,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.498,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.601,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.808,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:42.906,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:43.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:43.113,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:43.217,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:43.320,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:43.420,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:43.523,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:43.647,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:43.730,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:43.831,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:43.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.036,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.135,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.338,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.646,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:44.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:44.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.157,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.444,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.563,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:45.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:45.746,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:45.851,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:45.948,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:46.052,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:46.159,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:46.261,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:46.362,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:46.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:46.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:46.672,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:46.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:46.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:46.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.083,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.389,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.594,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.696,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:47.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:48.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:48.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:48.289,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:48.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:48.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:48.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:48.702,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:48.804,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:48.903,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:49.008,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:49.114,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:49.215,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:49.321,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:49.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:49.525,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:49.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:49.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:49.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:49.936,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.020,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.122,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.636,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:50.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.148,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.253,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.358,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.648,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:51.751,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:51.852,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:51.959,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.062,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.164,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.268,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.370,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.468,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.574,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.676,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.778,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.880,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:52.967,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:53:53.065,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:53.186,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:53:53.267,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:53.369,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:53.492,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:53:53.578,0.0,0.0850694477558136,0.0787496566772461 +2025-07-17 14:53:53.679,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:53.781,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:53.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:53.984,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:54.090,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:54.193,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:54.296,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:54.397,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:54.497,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:54.601,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:54.709,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:54.811,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:54.911,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:55.014,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:55.117,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:55.197,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:55.299,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:55.404,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:55.501,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:55.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:55.711,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:55.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:55.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:56.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:56.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:56.223,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:56.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:56.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:56.531,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:53:56.631,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:56.732,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:56.834,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:56.933,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:57.038,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:57.141,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:53:57.242,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:57.347,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:57.448,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:57.550,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:57.655,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:53:57.761,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:53:57.840,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:57.963,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:58.066,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:58.148,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:58.250,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:53:58.354,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:58.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:58.560,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:58.661,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:58.764,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:58.868,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:58.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.070,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.174,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.585,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.686,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.773,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:53:59.872,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:53:59.994,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:00.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.385,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.695,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:00.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:01.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:01.104,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:01.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:01.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:01.415,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:01.516,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:01.599,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:01.698,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:01.799,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:01.902,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:02.008,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.418,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.728,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:02.931,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:03.034,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:03.138,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:03.241,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:03.342,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:03.445,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:03.546,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:03.649,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:03.734,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:54:03.835,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:03.937,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:04.051,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:04.157,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:04.261,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:04.346,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:54:04.444,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:04.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:04.651,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:04.753,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:04.859,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:04.962,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.369,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:05.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.677,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.778,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.881,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:05.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:06.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:06.171,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:06.276,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:06.379,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:06.481,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:06.583,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:06.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:06.790,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:06.893,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:06.994,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.197,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.302,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.408,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:07.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.103,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.310,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:08.619,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:08.724,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:08.826,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:08.945,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:09.026,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:09.132,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:09.235,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:09.319,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:09.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:09.522,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:09.623,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:09.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:09.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:09.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.237,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.548,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.647,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.852,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:10.954,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.059,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.163,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.264,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.347,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.447,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.553,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.656,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.776,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.859,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:11.961,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.064,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.168,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.272,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.373,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.478,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.580,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.683,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:12.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:12.889,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:12.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.076,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.178,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.282,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:13.385,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.692,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.794,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:13.999,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.701,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.804,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:14.910,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:15.013,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:15.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:15.218,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:15.320,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:15.424,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:15.526,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:15.630,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:15.732,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:15.834,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:15.935,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:16.038,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:16.141,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:16.243,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:16.329,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:16.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:16.533,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:16.638,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:16.739,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:16.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:16.943,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:17.047,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:17.148,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:17.254,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:17.354,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:17.459,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:17.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:17.665,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:17.771,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:17.847,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:17.948,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:18.776,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:18.877,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:18.978,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:19.080,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:19.184,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:19.285,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:19.385,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:54:19.491,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:19.592,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:19.695,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:19.798,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:19.898,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:20.003,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:54:20.087,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:20.191,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:20.291,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:20.396,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:20.496,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:20.601,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:20.700,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:20.804,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:20.901,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.004,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.215,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.316,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.421,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:21.519,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:21.621,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.726,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:21.829,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:21.911,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:22.014,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:22.116,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:22.221,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:22.324,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:22.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:22.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:22.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:22.735,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:22.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:22.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.249,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.351,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.452,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:23.637,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:54:23.742,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:23.844,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:23.945,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:24.069,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:24.152,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:24.254,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:24.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:24.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:24.561,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:24.659,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:24.759,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:24.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:24.963,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:25.066,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:25.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:25.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:25.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:25.464,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:25.566,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:25.669,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:25.772,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:25.874,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:25.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:26.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:26.184,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:26.286,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:26.383,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:26.489,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:26.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:26.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:26.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:26.901,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:26.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:27.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:27.193,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.295,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.398,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.500,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.603,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.704,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.812,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:27.913,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:28.016,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:28.117,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:28.219,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:28.322,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:28.424,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:28.527,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:28.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:28.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:28.818,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:28.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:29.021,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:29.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:29.228,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:29.330,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:29.430,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:29.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:29.639,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:29.738,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:29.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:29.943,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.044,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.251,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.351,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.452,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.560,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.743,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.846,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:30.949,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:31.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:31.153,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:31.259,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:31.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:31.464,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:31.565,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:31.669,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:31.771,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:31.876,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:31.977,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.079,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.165,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.265,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.367,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.469,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.568,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.674,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.796,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.876,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:32.979,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:33.084,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:33.186,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:33.285,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:33.387,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:33.493,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:33.595,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:33.698,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:33.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:33.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.004,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.109,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.312,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:34.415,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:34.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.697,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:34.903,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:35.009,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:35.111,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:35.214,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:35.317,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:35.416,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:35.521,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:35.624,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:54:35.724,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:35.845,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:35.928,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.028,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.128,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.232,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.335,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.435,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.536,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.635,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.735,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:36.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:36.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:37.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:37.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:37.237,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:37.360,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:37.459,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:37.553,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:37.652,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:37.746,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:37.868,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:37.963,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:38.062,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.165,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.359,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.452,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.672,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.768,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:38.981,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.179,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.277,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.693,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:39.887,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:39.985,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:40.084,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:40.198,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:40.297,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:40.397,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:40.492,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:40.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:40.709,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:40.802,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:40.901,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:40.999,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.311,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.409,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:41.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.522,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:42.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.829,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:42.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:43.020,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:43.133,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:43.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:43.330,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:43.447,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:54:43.545,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:54:43.640,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:54:43.739,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:54:43.838,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:54:43.955,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:54:44.051,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:44.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:44.243,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:44.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:44.462,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:44.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:44.653,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:44.751,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:44.869,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:44.970,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:45.071,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:45.170,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:45.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:45.366,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:45.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:45.578,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:45.675,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:45.770,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:45.888,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:45.986,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:46.082,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:46.182,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:46.296,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:46.396,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:46.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:46.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:46.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:46.794,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:46.892,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:46.992,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.312,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.510,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:47.814,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:47.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.213,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.514,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.837,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:48.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:49.025,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:49.127,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:49.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:49.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:49.430,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:49.544,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:49.643,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:49.742,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:49.842,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:49.946,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:50.047,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:50.146,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:50.247,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:50.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:50.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:50.548,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:50.668,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:50.748,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:50.850,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:50.952,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:51.056,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:51.160,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:51.263,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:51.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:51.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:51.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:51.672,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:51.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:51.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:51.979,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:52.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:52.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:52.282,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:52.385,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:52.486,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:52.588,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:52.689,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:52.789,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:52.891,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:52.993,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:53.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.200,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.298,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:53.398,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.501,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.603,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:53.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.198,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.301,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.404,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:54.920,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.022,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.225,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.327,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.431,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.637,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.738,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.839,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:55.943,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:56.043,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:56.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:56.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:56.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:56.435,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:56.536,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:56.640,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:56.739,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:56.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:56.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:57.048,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:57.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:57.253,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:54:57.358,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:57.463,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:57.565,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:57.669,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:57.769,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:57.873,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:57.953,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.469,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:54:58.569,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:58.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:54:59.085,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:59.188,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:59.288,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:59.392,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:59.494,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:59.598,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:54:59.683,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:54:59.783,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:59.887,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:54:59.990,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:00.092,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:00.194,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:00.296,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:00.401,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:00.504,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:00.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:00.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:00.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:00.919,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.001,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.104,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.328,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.409,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.513,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.616,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.716,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.818,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:01.919,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.023,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.127,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.230,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.332,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.436,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.538,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.640,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:02.743,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:02.845,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:02.947,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:03.048,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:03.132,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:03.232,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:03.337,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:03.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:03.542,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:03.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:03.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:03.853,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:03.959,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.164,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.368,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.468,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:04.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.655,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:04.759,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:04.862,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:04.964,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.067,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.478,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.583,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.786,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.889,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:05.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.181,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.387,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.695,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:06.899,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:07.004,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:07.104,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:07.210,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:07.311,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:07.413,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:07.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:07.599,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:07.700,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:07.804,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:07.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.119,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.423,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:08.733,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:08.816,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:08.920,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:09.021,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:09.124,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:09.223,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:09.328,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:09.429,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:09.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:09.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:09.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:09.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:09.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.047,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.152,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.251,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.351,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.452,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.562,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:10.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:11.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:11.159,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:11.260,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:11.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:11.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:11.569,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:11.671,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:11.773,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:11.876,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:11.979,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:12.081,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:12.182,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:12.282,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:12.387,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:12.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:12.590,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:12.695,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:12.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:12.896,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:13.000,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:13.085,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:13.188,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:13.289,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:13.394,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:13.496,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:13.600,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:13.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:13.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:13.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.215,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.318,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.420,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:14.522,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.709,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:14.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:15.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:15.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:15.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:15.315,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:15.422,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:15.522,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:15.626,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:15.728,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:15.827,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:15.926,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:16.046,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:16.131,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:16.231,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:16.335,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:16.437,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:16.538,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:16.658,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:16.754,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:16.852,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:16.952,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.152,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:17.251,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.350,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:17.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.265,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.366,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.479,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:18.578,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.683,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:18.988,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:19.090,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.194,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.295,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.397,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.499,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.584,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.688,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.791,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.892,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:19.993,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:20.097,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:20.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:20.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:20.403,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:20.509,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:20.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:20.715,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:55:20.817,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:20.919,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:21.022,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:21.126,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:21.224,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:21.330,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:21.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:21.518,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:21.620,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:21.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:21.824,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:21.927,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:22.029,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:22.129,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:22.232,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:22.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:22.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:22.543,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:22.645,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:22.746,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:22.848,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:22.951,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:23.052,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:23.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:23.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:23.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:23.446,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:23.550,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:23.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:23.761,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:23.861,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:23.963,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.066,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.169,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.270,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.374,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.459,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.563,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.663,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.767,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.866,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:24.971,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:25.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:25.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:25.280,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:25.382,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:25.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:25.588,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:25.690,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:25.792,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:25.894,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:25.996,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:26.100,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:26.185,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:26.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:26.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:26.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:26.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:26.695,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:26.800,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:26.900,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:27.003,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:27.110,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:27.213,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:27.314,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:27.418,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:27.519,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:27.603,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:27.726,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:27.812,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:27.912,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:28.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:28.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:28.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:28.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:28.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:28.531,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:28.634,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:28.736,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:28.837,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:28.938,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:29.040,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:29.144,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:55:29.245,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.345,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.449,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.551,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.635,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.742,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.841,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:29.945,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:30.046,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:30.151,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:30.252,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:30.360,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:30.461,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:30.565,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:30.668,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:30.769,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:30.870,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:30.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.055,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.366,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.469,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.677,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:31.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:32.085,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:32.190,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.290,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.395,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.479,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.582,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.789,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.889,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:32.992,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:33.095,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:33.217,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:33.299,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:33.401,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:33.502,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:33.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:33.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:33.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:33.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:34.017,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:34.119,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:34.222,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:34.324,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:34.426,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:34.528,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:34.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:34.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:34.819,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:34.919,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:35.039,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:35.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:35.229,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.330,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.434,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.639,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.743,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.843,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:35.946,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.046,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.148,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.253,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.355,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.461,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.563,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.665,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.766,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.868,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:36.972,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:37.053,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:37.157,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:37.262,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:37.363,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:37.464,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:37.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:37.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:37.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:37.875,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:37.979,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:38.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:38.186,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.285,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.387,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.488,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.592,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.694,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.798,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:38.899,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:39.001,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:39.104,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:39.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:39.288,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:39.413,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:39.516,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:39.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:39.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:39.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:39.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.218,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.423,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.522,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.627,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.727,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:40.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.322,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.437,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.539,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.744,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:41.847,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:41.947,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.049,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.145,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.246,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.354,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.462,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.586,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.677,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.784,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.890,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:42.996,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.105,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.214,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.872,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:43.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:44.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:44.196,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:44.289,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:44.397,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:44.504,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:44.613,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:44.702,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:44.826,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:44.936,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:45.056,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:45.149,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:45.259,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:45.353,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:45.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:45.585,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:45.691,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:45.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:45.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.028,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.121,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.320,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:46.443,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.551,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.768,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:46.981,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.102,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:47.196,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.630,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.738,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:47.860,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:47.953,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:48.062,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:48.182,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:48.290,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:48.382,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:55:48.473,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:48.611,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:48.704,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:48.811,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:48.904,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:49.041,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.134,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.364,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.472,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:49.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.117,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.224,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.330,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:50.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.655,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:50.857,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:50.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:51.089,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:51.198,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:51.291,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:51.412,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:51.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:51.599,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:51.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:51.832,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:51.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:52.048,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:52.172,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:52.266,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:52.391,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:52.483,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:52.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:52.696,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:52.803,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:52.959,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:53.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.235,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.453,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.561,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.652,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:53.792,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.915,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:53.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:54.098,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:54.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:54.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:54.423,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:55:54.529,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:54.655,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:54.745,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:54.852,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:54.974,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:55.082,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:55.175,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:55.301,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:55.396,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:55.501,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:55.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:55.716,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:55:55.809,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:55.931,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:56.037,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:56.142,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:56.255,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:56.342,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:56.466,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:56.573,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:56.684,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:56.792,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:55:56.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.004,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.216,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.447,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.539,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.661,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.753,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:57.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:58.091,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:58.183,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:58.293,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:58.400,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:58.523,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:58.629,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:58.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:58.829,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:58.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:59.042,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:59.148,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:55:59.255,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:59.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:59.486,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:59.607,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:59.684,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:59.792,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:55:59.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.546,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.760,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.869,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:00.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:01.114,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:01.192,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:01.318,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:01.425,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:01.536,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:01.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:01.753,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:01.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:01.952,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.384,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.505,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.627,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.705,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:02.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.152,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.243,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.351,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.677,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.784,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.892,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:03.998,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:04.105,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:04.229,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:04.337,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:04.430,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:04.538,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:04.644,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:04.752,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:04.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:04.983,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:05.076,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:05.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:05.291,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:05.412,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:05.504,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:05.642,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:05.718,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:05.826,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:05.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.042,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.274,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:06.918,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.027,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.226,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.335,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.445,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:07.677,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:07.768,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:07.892,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:07.984,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:08.091,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:08.216,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:08.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:08.415,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:08.540,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:08.631,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:08.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:08.849,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:08.972,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:09.066,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:09.176,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:09.300,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:09.393,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:09.517,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:56:09.626,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:09.718,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:09.826,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:09.932,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:10.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.164,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.272,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.473,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:10.581,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:10.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:11.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:11.122,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:11.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:11.340,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:11.448,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:11.571,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:11.678,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:11.788,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:11.897,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:12.005,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:12.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:12.208,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:12.303,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:12.444,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:12.536,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:12.661,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:12.755,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:12.864,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:12.971,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:13.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.190,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:13.298,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.516,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.624,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.733,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:13.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.073,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.164,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.394,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:14.919,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.040,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.675,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.888,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:15.994,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.209,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.332,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.534,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.673,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.766,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.858,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:16.982,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:17.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:17.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:17.291,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:56:17.398,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:17.524,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:17.602,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:17.725,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:17.832,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:17.955,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:18.049,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:18.143,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:18.266,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:18.377,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:18.499,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:18.591,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:18.700,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:18.809,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:18.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.243,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:19.349,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:19.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.580,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.690,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.784,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:19.894,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:20.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:20.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:20.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:20.331,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:20.413,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:20.534,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:20.637,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:20.738,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:20.824,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:20.926,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:21.029,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:21.129,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:21.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:21.336,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:21.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:21.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:25.707,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:25.806,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:25.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:26.014,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:26.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:26.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:26.300,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:26.403,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:26.505,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:26.605,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:26.712,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:26.814,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:26.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:27.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:27.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:27.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:27.321,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:27.427,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:27.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:27.628,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:27.732,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:27.836,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:27.936,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:28.035,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:28.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.341,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.741,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.852,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:28.948,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.363,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:29.461,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.767,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.867,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:29.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.063,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.260,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:30.373,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:30.470,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.666,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:30.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:30.987,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:31.081,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:31.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:31.294,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:31.389,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:31.487,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:31.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:31.689,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:31.787,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:31.889,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.027,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.110,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.212,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.311,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.414,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.516,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.619,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.701,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.801,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:32.902,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:33.006,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:33.105,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:33.206,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:33.311,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:33.411,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:33.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:33.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:33.721,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:33.823,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:33.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.225,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.528,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:34.645,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:34.742,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:34.842,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:34.946,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:35.041,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:35.140,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:35.239,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:35.356,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:35.455,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:35.553,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:35.655,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:35.761,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:35.861,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:35.960,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.060,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.161,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.262,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.361,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.460,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.564,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.674,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.798,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:36.890,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.013,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.119,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.320,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.536,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:37.660,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:37.768,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:56:37.861,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:37.970,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:56:38.077,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:56:38.183,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:56:38.305,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:38.398,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:38.491,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:38.616,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:38.726,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:38.833,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:38.943,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:39.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.284,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.502,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.595,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:39.921,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.139,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:40.249,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.463,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.675,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:40.892,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:41.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:41.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:41.217,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:41.326,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:41.434,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:41.559,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:41.653,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:41.778,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:41.852,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:41.975,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.511,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:42.942,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.049,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.171,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:43.280,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.368,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.468,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.571,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:43.772,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:56:43.873,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:43.973,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:44.073,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:44.192,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:44.276,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:44.375,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:44.496,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:44.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:44.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:44.781,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:44.884,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:44.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.189,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.292,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.391,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:45.491,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:45.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.016,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.116,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.301,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.403,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.627,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.830,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:46.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.028,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.128,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.333,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.434,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.535,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.736,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:47.940,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:56:48.040,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.140,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.242,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.344,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.450,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.651,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.754,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.857,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:48.955,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:49.056,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:49.160,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.263,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.464,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.771,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:49.973,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.174,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:50.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.582,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.683,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.885,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:50.989,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:51.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:51.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:51.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:51.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:51.498,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:51.599,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:51.709,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:51.802,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:51.911,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:52.002,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:56:52.138,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:52.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:52.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:52.451,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:52.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:52.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:52.778,0.0,0.0763888955116272,0.06750047206878662 +2025-07-17 14:56:52.901,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:56:53.010,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:56:53.102,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:56:53.223,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:56:53.314,0.0,0.0677083358168602,0.06750047206878662 +2025-07-17 14:56:53.421,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:53.528,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:53.636,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:53.743,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:53.851,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:53.973,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:54.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:54.201,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:54.278,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:54.417,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:54.494,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:54.601,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:54.708,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:54.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:54.925,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:55.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:55.139,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:55.244,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:55.367,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:55.471,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:55.566,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:55.674,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:55.798,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:55.892,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:56.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:56.125,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:56.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:56.325,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:56.433,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:56.540,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:56.665,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:56.773,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:56.864,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:56.986,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:57.107,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:57.186,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:57.308,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:57.399,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:57.523,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:56:57.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:57.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:57.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:57.935,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.275,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.474,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:58.795,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:56:58.901,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.132,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.651,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:56:59.989,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.084,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.221,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.297,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.404,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.527,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.726,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:00.835,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:00.958,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:01.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:01.156,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:57:01.262,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:01.386,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:01.480,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:01.602,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:01.694,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:01.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:01.906,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:02.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:02.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:02.228,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:02.353,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:57:02.443,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:02.552,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:02.661,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:02.767,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:02.872,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:02.994,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:03.087,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:03.194,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:03.303,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:03.408,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:03.517,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:03.639,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:03.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:03.839,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:03.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:04.069,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:04.175,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:04.282,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:04.359,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:04.497,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:04.605,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:04.698,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:04.808,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:04.899,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:05.023,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:05.131,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:05.238,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:05.344,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:05.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:05.561,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:05.667,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:05.774,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:05.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:05.990,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:06.098,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:06.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:06.316,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:06.425,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:06.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:06.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:06.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:06.860,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:06.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.089,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.412,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.503,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.609,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:07.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:07.934,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.058,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.162,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.595,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.796,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:08.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:09.023,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:09.116,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:09.224,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:09.346,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:09.440,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:09.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:09.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:09.764,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:09.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.087,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.317,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:10.424,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.518,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.735,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:10.843,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:10.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.059,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.288,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.380,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.809,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:11.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.019,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:12.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.234,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.357,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.449,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:12.557,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.664,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.788,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:12.990,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.309,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.740,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:13.956,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.080,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.185,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.382,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.829,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:14.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:15.044,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:15.137,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:15.244,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:15.367,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:15.460,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:15.566,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:15.689,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:15.780,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:15.889,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:15.996,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:16.120,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:16.212,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:16.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:16.427,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:16.533,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:16.656,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:16.749,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:16.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:16.995,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:17.072,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:17.195,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.286,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.410,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.609,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.824,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:17.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:18.041,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:18.148,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:18.255,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:18.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:18.470,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:18.593,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:18.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:18.807,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:18.913,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:19.004,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:19.127,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:19.235,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.327,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.435,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.542,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.650,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.756,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:19.974,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.083,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.205,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.296,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.421,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.513,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.621,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.728,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.835,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:20.944,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:21.052,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:21.174,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:21.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:21.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:21.497,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:21.589,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:21.696,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:21.805,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:21.931,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.022,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.130,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.253,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.345,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.450,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.560,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.653,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:22.793,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:22.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:22.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.222,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.330,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.424,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.547,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.656,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.854,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:23.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.391,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.498,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:24.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.833,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:24.940,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:25.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:25.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:25.235,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:25.358,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:25.466,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:25.573,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:25.682,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:25.802,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:25.895,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:26.000,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:26.121,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:26.231,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:26.323,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:26.430,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:26.537,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:26.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:26.768,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:26.861,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:26.969,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.079,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.185,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.293,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.400,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.521,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.629,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:27.935,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:28.042,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:28.149,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:28.274,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:28.380,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:28.472,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:28.578,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:28.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:28.793,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:28.900,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:29.008,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:29.116,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:29.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:29.346,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:29.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:29.545,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:29.669,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:29.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:29.871,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:29.995,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:30.088,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:30.198,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:30.306,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:30.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:30.525,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:30.632,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:57:30.741,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:30.849,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:30.972,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:31.081,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:31.172,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:31.266,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:31.388,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:31.511,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:31.606,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:31.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:31.836,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:31.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:32.036,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:32.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:32.254,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:32.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:32.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:32.594,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:32.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:32.795,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:32.905,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.031,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.122,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.231,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.341,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.450,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.572,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:33.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:33.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:33.883,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:33.989,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:34.097,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:34.208,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:34.302,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:34.427,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:34.535,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:34.643,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:34.768,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:34.877,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:34.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.079,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.297,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.530,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.638,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:35.948,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.072,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.164,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.489,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:36.704,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:36.810,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:36.903,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:37.027,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:37.148,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:37.242,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:37.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:37.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:37.563,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:37.671,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:37.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:37.884,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:37.995,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.103,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.211,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.336,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.428,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.645,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.753,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:38.969,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:39.108,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.401,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.725,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.835,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:39.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.486,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.593,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.810,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:40.918,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:41.023,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:41.146,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:41.237,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:41.344,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:41.466,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:41.574,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:41.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:41.772,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:41.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:41.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:42.091,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:42.198,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:42.308,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:42.415,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:42.538,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:42.630,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:42.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:42.845,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:42.952,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.076,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.265,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.467,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.768,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.873,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:43.974,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.177,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.479,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.681,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:44.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:45.088,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:45.187,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:45.289,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:45.390,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:45.493,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:45.590,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:45.694,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:45.793,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:45.895,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:45.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.114,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.214,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.316,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.517,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.707,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.807,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:46.913,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:47.012,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:47.113,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:47.214,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:47.330,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:47.428,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:47.530,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:47.632,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:47.731,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:47.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:47.932,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:48.033,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:48.133,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:48.230,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:48.329,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:48.448,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:48.548,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:48.649,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:57:48.748,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:48.848,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:48.950,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:49.049,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:49.148,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:49.251,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.352,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.450,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.653,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.856,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:49.955,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:50.076,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:50.176,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:50.279,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:50.377,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:50.480,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:57:50.580,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:50.681,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:50.785,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:57:50.884,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:57:50.985,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:57:51.091,0.0,0.0850694477558136,0.07499992847442627 +2025-07-17 14:57:51.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.289,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.393,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.494,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.596,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:51.902,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.007,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.191,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.291,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.516,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.714,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:52.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:53.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:53.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:53.202,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:53.302,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:53.423,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:53.503,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:53.628,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:53.729,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:53.815,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:53.914,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.033,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.119,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.222,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.325,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.426,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.526,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.628,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:57:54.732,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:54.831,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:54.929,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.029,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.135,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.237,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.341,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.438,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.539,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.739,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:55.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:56.045,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:56.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:56.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:56.350,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:56.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:56.567,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:56.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:56.769,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:56.869,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:56.971,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:57.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.169,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:57:57.267,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.365,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.481,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.583,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.684,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.783,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:57.988,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:58.090,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:58.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:58.292,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:58.390,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:58.487,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:58.586,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:58.687,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:58.787,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:57:58.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.006,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.106,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.499,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.599,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.807,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:57:59.907,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:00.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.417,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.720,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.819,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:00.917,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:01.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:01.135,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:01.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:01.335,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:01.436,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:01.535,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:01.637,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:01.737,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:01.840,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:01.939,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:02.041,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:02.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:02.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:02.352,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:02.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:02.554,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:02.652,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:02.754,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:02.852,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:02.951,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:03.052,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:03.145,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.265,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.363,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.465,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.562,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.754,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:03.972,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:04.071,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:04.169,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:04.272,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:04.367,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:04.483,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:04.582,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:04.681,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:04.780,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:04.879,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:04.979,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:05.096,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:05.194,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:05.291,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:05.391,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:05.490,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:05.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:05.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:05.800,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:05.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:05.997,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.095,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.196,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.403,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.501,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.718,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:06.903,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.019,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:07.115,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.214,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.329,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.618,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.732,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.832,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:07.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:08.027,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:08.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:08.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:08.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:08.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:08.535,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:08.632,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:08.748,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:08.848,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:08.949,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:09.046,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:09.149,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:09.268,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:09.347,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:09.448,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:09.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:09.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:09.765,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:09.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:09.966,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.065,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.163,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.264,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.366,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.464,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.568,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.661,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.779,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.880,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:10.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.183,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.283,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:11.384,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.487,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.588,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.789,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:11.988,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.091,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.292,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.394,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.494,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.613,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.815,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:12.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.011,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.206,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.415,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.615,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:13.916,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:14.017,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:14.116,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:14.220,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:14.335,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:14.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:14.545,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:14.642,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:14.742,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:14.844,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:14.942,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:15.043,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:15.147,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:15.250,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:15.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:15.446,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:15.543,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:15.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:15.748,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:58:15.841,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:15.963,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.062,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.153,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.253,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.357,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.453,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.556,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.653,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.776,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.880,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:16.980,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.075,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.177,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.274,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.376,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.479,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.581,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.681,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.784,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.888,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:17.986,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:18.089,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:18.184,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:18.302,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:18.404,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:18.502,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:18.604,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:18.713,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:18.792,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:18.894,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:18.995,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:19.117,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:19.217,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:19.320,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:19.401,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:19.503,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:19.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:19.703,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:19.805,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:19.905,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:20.026,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.126,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.227,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.325,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.528,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.629,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.833,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:20.936,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.037,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.239,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.540,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.744,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:21.946,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.045,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:22.143,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.243,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.344,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.445,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.567,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.767,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.866,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:22.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:23.068,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:23.170,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:23.270,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:23.371,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:23.471,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:23.576,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:23.674,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:23.775,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:23.870,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:23.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.382,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.479,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.572,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:24.683,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:24.779,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:58:24.892,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:58:24.990,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:58:25.086,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:58:25.185,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:58:25.300,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:58:25.399,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:25.493,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:25.605,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:25.700,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:25.799,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:25.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.000,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.098,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.217,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.414,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.514,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:26.609,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:26.704,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:26.824,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:26.921,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.021,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.117,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.217,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.332,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.429,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.532,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.632,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.732,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.832,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:27.932,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:28.032,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:28.130,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:28.226,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:28.342,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:28.442,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:28.538,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:28.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:28.754,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:28.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:28.954,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:29.049,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:29.150,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:29.252,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:29.352,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:29.452,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:29.550,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:58:29.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:29.767,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:29.866,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:29.965,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:30.064,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:30.166,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:30.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:30.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:30.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:30.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:30.677,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:30.779,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:30.895,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:30.979,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:31.078,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:31.180,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:31.281,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:31.381,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:31.483,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:31.586,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:31.683,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:31.782,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:31.883,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:31.999,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.100,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.201,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.302,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.403,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.505,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.605,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.704,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.805,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:32.904,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:33.004,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:33.104,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:33.207,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.308,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.407,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.507,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.811,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:33.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.111,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.330,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.435,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.536,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:34.633,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:34.734,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:34.833,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:34.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.039,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.138,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.238,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.337,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.439,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.541,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.663,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.763,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.864,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:35.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:36.064,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:36.167,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.269,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.369,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.469,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.572,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.675,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.775,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.874,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:36.975,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:37.075,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:37.173,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:37.275,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:37.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:37.475,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:37.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:37.679,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:37.777,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:37.898,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.003,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.200,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:38.300,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.395,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.498,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.602,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.702,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.804,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:38.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.012,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.112,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.217,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.315,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.623,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:39.824,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:39.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:40.028,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:40.125,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:40.226,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:40.327,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:40.428,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:40.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:40.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:40.734,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:40.834,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:40.938,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:41.041,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:41.142,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:41.245,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:41.345,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:41.445,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:41.551,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:41.653,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:41.755,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:41.836,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:41.954,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:42.055,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:42.155,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:42.257,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:42.354,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:42.460,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:42.562,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:42.666,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:42.768,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:42.868,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:42.971,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:43.070,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:43.172,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:43.275,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:43.376,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:43.474,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:43.579,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:43.681,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:43.783,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:43.885,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:43.983,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:44.086,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:44.192,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:44.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:44.376,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:44.479,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:44.582,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:44.685,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:44.789,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:44.889,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:44.990,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.092,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.194,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.296,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.399,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.497,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.600,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.703,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.807,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:45.911,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:46.013,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:46.113,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:46.216,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:46.319,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:46.420,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:46.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:46.623,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:46.723,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:46.824,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:46.926,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:47.026,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:58:47.127,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:47.229,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:47.332,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:47.433,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:47.534,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:47.635,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:47.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:47.840,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:47.940,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.042,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.144,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.246,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.349,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.453,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.654,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.753,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:48.857,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:48.980,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:49.063,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:49.163,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:49.267,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:49.370,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:49.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:49.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:49.652,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:49.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:49.855,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:49.974,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:50.056,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.158,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.260,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.381,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.483,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.566,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.667,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.790,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.874,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:50.975,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.075,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.194,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.297,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.401,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.485,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.588,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.688,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:51.806,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:58:51.931,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:52.010,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:52.106,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:52.208,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:52.314,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:52.414,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:58:52.512,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:52.616,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:52.717,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:52.818,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:52.919,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:53.022,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:58:53.123,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:53.222,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:53.322,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:53.423,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:53.524,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:58:53.622,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:58:53.718,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:53.821,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:53.923,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:54.023,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:54.121,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:54.244,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:54.339,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:58:54.434,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:54.533,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:54.633,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:54.750,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:54.851,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:54.953,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:55.053,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:55.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:55.252,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:55.353,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:55.453,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:55.557,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:55.659,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:55.765,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:55.867,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:55.967,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.069,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.172,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.252,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.374,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.477,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.555,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:56.678,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:56.757,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:56.878,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:56.980,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:57.079,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:57.175,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:57.280,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.398,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.479,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.598,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.682,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.784,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:57.983,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.085,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.185,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.285,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.387,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.490,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.592,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.692,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.794,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.896,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:58.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.100,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.208,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.307,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.412,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.507,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.613,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:58:59.713,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:59.816,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:58:59.914,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.120,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.222,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:00.322,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:00.421,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.520,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.722,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:00.825,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:00.927,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:01.027,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:01.149,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:01.229,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:01.330,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:01.433,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:01.531,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:01.634,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:01.737,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:01.838,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:01.940,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:02.042,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.241,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.343,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.446,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.548,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.648,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:02.747,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:02.849,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:02.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:03.050,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:03.153,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:03.253,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:03.353,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:03.456,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:03.557,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:03.679,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:03.779,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:03.882,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:03.968,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:04.068,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:04.169,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:04.270,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:04.388,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:04.490,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:04.592,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:04.692,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:04.794,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:04.899,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:04.982,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.084,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.187,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.288,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.389,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.492,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.596,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:05.696,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:05.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:05.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.001,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.203,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.305,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.612,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.712,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:06.815,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:06.915,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:07.019,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:07.121,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:07.222,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:07.323,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:07.427,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:07.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:07.630,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:07.729,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:07.830,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:07.934,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.036,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.136,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.240,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.340,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.441,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.544,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.647,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.747,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.843,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:08.945,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.046,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.248,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.351,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.453,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.657,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.761,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:09.965,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.068,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.167,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.269,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.370,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.471,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.573,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.676,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.776,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.877,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:10.977,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:11.079,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:11.179,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:11.281,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:11.379,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:11.481,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:11.584,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:11.684,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:11.785,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:11.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.204,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.408,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.506,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.607,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.711,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.813,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:12.911,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.010,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.212,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.314,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.412,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.514,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.614,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.716,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.820,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:13.920,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.019,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.246,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.339,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.476,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.584,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:14.676,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:14.783,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:14.892,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:15.001,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:15.125,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:15.218,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:15.327,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:15.447,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:15.541,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:15.649,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:15.757,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:15.865,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:15.956,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.184,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.307,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.508,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.616,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.710,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.849,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:16.940,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.046,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.168,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.276,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.368,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.476,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.598,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.799,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:17.907,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.215,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.355,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.544,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.774,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:18.883,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.021,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.223,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.331,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.423,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.532,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.642,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.749,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.875,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:19.953,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.187,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.310,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.515,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.638,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:20.731,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:20.839,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:20.947,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:21.054,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:21.163,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:21.268,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:21.392,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:21.484,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:21.593,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:21.730,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:21.821,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:21.931,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.024,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.146,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.238,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.346,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.454,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.577,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.685,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.777,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.899,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:22.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.102,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.224,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.317,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.426,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.533,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.656,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:23.748,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:23.842,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:23.966,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:24.076,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:24.216,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:24.292,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:24.400,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:24.524,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:24.617,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:24.724,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:24.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:24.941,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:25.047,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:25.156,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:25.281,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:25.359,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:25.498,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:59:25.591,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:25.715,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:25.809,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:25.918,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:26.023,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:26.146,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.238,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.347,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.456,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.579,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.672,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.795,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.886,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:26.993,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.118,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.210,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.334,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.440,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.533,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.641,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.748,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.856,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:27.964,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:28.074,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:28.181,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:28.287,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:28.409,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:28.518,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:28.610,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:28.747,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:28.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:28.946,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:29.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:29.144,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:29.268,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:29.378,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:29.471,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:29.580,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:29.689,0.0,0.0850694477558136,0.07499992847442627 +2025-07-17 14:59:29.797,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:29.923,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:30.002,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:30.128,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:30.236,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:30.345,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:30.454,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:30.563,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:30.688,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:30.780,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:30.887,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:59:30.994,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:31.102,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:31.210,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:31.318,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:31.412,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:31.549,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:31.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:31.751,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:31.859,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:31.968,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.078,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.313,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.405,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.530,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.625,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.733,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.841,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:32.950,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:33.059,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:33.182,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:33.273,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:33.384,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:33.491,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:33.599,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:33.723,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:33.831,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:33.924,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:34.032,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:34.141,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:34.250,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:34.374,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:34.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:34.577,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:34.702,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:34.795,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:34.901,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.024,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.133,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.226,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.350,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.443,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.548,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.657,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:35.767,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:35.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:35.985,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.094,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.201,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.324,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.416,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.523,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.630,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.737,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.863,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:36.956,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.064,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.188,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.281,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.390,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.499,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.608,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.715,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:37.930,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:38.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:38.162,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:38.254,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:38.378,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:38.455,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:38.578,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:38.687,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:38.812,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:38.905,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.015,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.123,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.231,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.449,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.558,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.682,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.808,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:39.887,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.009,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.101,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.211,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.304,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.428,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.536,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.643,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.753,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:40.876,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:40.967,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:41.074,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:41.199,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:41.292,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:41.398,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:41.509,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:41.630,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:41.722,0.0,0.0850694477558136,0.07499992847442627 +2025-07-17 14:59:41.828,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:41.937,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.043,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.151,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.258,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.382,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.473,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.582,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:42.705,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.798,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:42.922,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.030,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.230,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.355,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.446,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.553,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.674,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.766,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:43.875,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:43.984,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:44.105,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:44.196,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:44.304,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:44.396,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:44.533,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:44.625,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:44.733,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:44.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:44.946,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.054,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.162,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.393,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.606,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.700,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.822,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:45.928,0.0,0.0763888955116272,0.07125020027160645 +2025-07-17 14:59:46.004,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:46.145,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:46.236,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:46.359,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:46.450,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:46.558,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:46.667,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:46.789,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:46.882,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:46.991,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.205,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.330,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.422,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.529,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.637,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.759,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.852,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:47.944,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:48.082,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:48.190,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:48.282,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:48.404,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:48.496,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:48.604,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:48.725,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:48.831,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:48.953,0.0,0.0677083358168602,0.0787496566772461 +2025-07-17 14:59:49.032,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:49.154,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:49.246,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:49.353,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:49.477,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:49.570,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:49.679,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:49.817,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:49.912,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.001,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:50.110,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.233,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.310,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.434,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.559,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.666,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:50.770,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:50.863,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:50.955,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:51.078,0.0,0.0763888955116272,0.08249938488006592 +2025-07-17 14:59:51.184,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:51.325,0.0,0.0850694477558136,0.08249938488006592 +2025-07-17 14:59:51.402,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:51.512,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:51.619,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:51.727,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:51.838,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:51.947,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.056,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.178,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.270,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.378,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.485,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.592,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.700,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:52.821,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:52.928,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:53.018,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:53.124,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:53.230,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:53.338,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:53.445,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:53.552,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:53.658,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:53.767,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:53.873,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:53.997,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:54.089,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:54.197,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:54.306,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:54.412,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:54.519,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:54.628,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:54.749,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:54.842,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:54.949,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.056,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.178,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.271,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.379,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.518,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.611,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.704,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.827,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:55.933,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:56.038,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:56.130,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:56.238,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:56.362,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:56.451,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:56.560,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:56.682,0.0,0.0763888955116272,0.0787496566772461 +2025-07-17 14:59:56.758,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:56.896,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:56.990,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.099,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.219,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.326,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.419,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.526,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.634,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.743,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.848,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:57.956,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:58.077,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:58.170,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:58.280,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:58.402,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:58.495,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:58.601,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:58.723,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:58.833,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:58.925,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:59.034,0.0,0.0677083358168602,0.07125020027160645 +2025-07-17 14:59:59.157,0.0,0.0677083358168602,0.07499992847442627 +2025-07-17 14:59:59.248,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:59.356,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:59.477,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:59.552,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:59.689,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:59.782,0.0,0.0763888955116272,0.07499992847442627 +2025-07-17 14:59:59.889,0.0,0.0763888955116272,0.07499992847442627 diff --git a/requirements.txt b/requirements.txt index 49a30a9..2044834 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ Flask==2.3.3 -python-snap7==1.3 \ No newline at end of file +python-snap7==1.3 +psutil==5.9.5 \ No newline at end of file diff --git a/system_state.json b/system_state.json new file mode 100644 index 0000000..8d0c3eb --- /dev/null +++ b/system_state.json @@ -0,0 +1,9 @@ +{ + "last_state": { + "should_connect": true, + "should_stream": true, + "should_record_csv": true + }, + "auto_recovery_enabled": true, + "last_update": "2025-07-17T15:42:38.054690" +} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 5450b4c..4844204 100644 --- a/templates/index.html +++ b/templates/index.html @@ -250,6 +250,97 @@ color: #1f2937; } + .log-container { + max-height: 400px; + overflow-y: auto; + background-color: #1f2937; + border-radius: 8px; + padding: 15px; + border: 1px solid #374151; + } + + .log-entry { + display: flex; + flex-direction: column; + margin-bottom: 10px; + padding: 8px; + border-radius: 5px; + font-family: 'Courier New', monospace; + font-size: 12px; + border-left: 3px solid transparent; + } + + .log-entry.log-info { + background-color: #374151; + border-left-color: #6b7280; + color: #e5e7eb; + } + + .log-entry.log-warning { + background-color: #451a03; + border-left-color: #f59e0b; + color: #fef3c7; + } + + .log-entry.log-error { + background-color: #450a0a; + border-left-color: #ef4444; + color: #fecaca; + } + + .log-header { + display: flex; + justify-content: space-between; + align-items: center; + font-weight: bold; + margin-bottom: 4px; + } + + .log-timestamp { + font-size: 10px; + opacity: 0.7; + } + + .log-type { + background-color: rgba(255, 255, 255, 0.1); + padding: 2px 6px; + border-radius: 3px; + font-size: 10px; + text-transform: uppercase; + } + + .log-message { + margin-bottom: 4px; + word-wrap: break-word; + } + + .log-details { + font-size: 10px; + opacity: 0.8; + background-color: rgba(0, 0, 0, 0.2); + padding: 4px; + border-radius: 3px; + margin-top: 4px; + white-space: pre-wrap; + } + + .log-controls { + display: flex; + gap: 10px; + margin-bottom: 15px; + flex-wrap: wrap; + align-items: center; + } + + .log-stats { + background-color: #f9fafb; + border: 1px solid #e5e7eb; + border-radius: 5px; + padding: 8px 12px; + font-size: 12px; + color: #374151; + } + @media (max-width: 768px) { .header h1 { font-size: 2rem; @@ -452,6 +543,41 @@ + + +
+

πŸ“‹ Application Events Log

+
+

πŸ“ Event Tracking: Connection events, configuration changes, errors and system + status

+

πŸ’Ύ Persistent Storage: Events are saved to disk and persist between application + restarts

+
+ +
+ + + +
+ Loading log statistics... +
+
+ +
+
+
+ πŸ“‘ System + Loading... +
+
Loading application events...
+
+
+