From 7d53f8589a0ac89af7a6bad20f8d518d964dee1c Mon Sep 17 00:00:00 2001 From: moen0 Date: Mon, 13 Apr 2026 01:30:34 +0200 Subject: [PATCH] reorganized data files and enhance backtesting structure, monte carlo sim --- backend/api/routes.py | 1035 +- backend/data/gbpjpy_feb.csv | 28694 ++++++++++++++ backend/data/{data.csv => gbpjpy_jan.csv} | 0 backend/data/gbpjpy_mars.csv | 31930 ++++++++++++++++ backend/data/loader.py | 1 + backend/data/model.py | 16 +- backend/engine/backtester.py | 329 +- backend/engine/monte_carlo.py | 154 + backend/indicators/fvg.py | 70 +- backend/indicators/liquidity.py | 8 +- backend/indicators/order_blocks.py | 43 +- backend/indicators/sessions.py | 23 +- backend/optimize.py | 2 +- backend/optimize_ict.py | 4 - backend/run.py | 34 +- frontend/src/App.css | 184 - frontend/src/App.jsx | 978 +- frontend/src/components/BacktestingTab.jsx | 942 + frontend/src/components/EquityCurve.jsx | 96 + frontend/src/components/MetricCard.jsx | 81 + frontend/src/components/OptimizerTab.jsx | 1090 + .../src/components/PerformanceBreakdown.jsx | 111 + frontend/src/components/TradeDistribution.jsx | 87 + frontend/src/components/TradeHistory.jsx | 192 + frontend/src/index.css | 35 + frontend/src/main.jsx | 10 + 26 files changed, 65383 insertions(+), 766 deletions(-) create mode 100644 backend/data/gbpjpy_feb.csv rename backend/data/{data.csv => gbpjpy_jan.csv} (100%) create mode 100644 backend/data/gbpjpy_mars.csv create mode 100644 backend/engine/monte_carlo.py delete mode 100644 frontend/src/App.css create mode 100644 frontend/src/components/BacktestingTab.jsx create mode 100644 frontend/src/components/EquityCurve.jsx create mode 100644 frontend/src/components/MetricCard.jsx create mode 100644 frontend/src/components/OptimizerTab.jsx create mode 100644 frontend/src/components/PerformanceBreakdown.jsx create mode 100644 frontend/src/components/TradeDistribution.jsx create mode 100644 frontend/src/components/TradeHistory.jsx create mode 100644 frontend/src/index.css create mode 100644 frontend/src/main.jsx diff --git a/backend/api/routes.py b/backend/api/routes.py index 5cde291..b4aa98d 100644 --- a/backend/api/routes.py +++ b/backend/api/routes.py @@ -1,28 +1,455 @@ -from fastapi import FastAPI -from fastapi.middleware.cors import CORSMiddleware -from data.loader import load_candles, resample_candles -from indicators.market_structure import find_swing_points, detect_structure -from indicators.liquidity import find_liquidity_levels -from indicators.fvg import find_fvgs -from indicators.order_blocks import find_order_blocks -import sys import os -sys.path.insert(0, os.path.dirname(os.path.dirname(__file__))) +import sys +import json +import time +import random +from functools import lru_cache +from itertools import islice, product +from typing import Literal, Optional +from fastapi import FastAPI, HTTPException, Query +from fastapi.responses import StreamingResponse +from fastapi.middleware.cors import CORSMiddleware +from pydantic import BaseModel, Field + +BACKEND_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) +if BACKEND_DIR not in sys.path: + sys.path.insert(0, BACKEND_DIR) + +from data.loader import load_candles, resample_candles +from engine.backtester import run_backtest, run_backtest_stream +from engine.monte_carlo import run_monte_carlo +from indicators.fvg import find_fvgs +from indicators.liquidity import find_liquidity_levels +from indicators.market_structure import detect_structure, find_swing_points +from indicators.order_blocks import find_order_blocks +from strategies.ict_strategy import ICTStrategy + +DEFAULT_DATASET = "data.csv" +DATA_DIR = os.path.join(BACKEND_DIR, "data") app = FastAPI() app.add_middleware( CORSMiddleware, allow_origins=["*"], + allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) -@app.get("/api/candles") -def get_candles(timeframe: int = 5): - candles_1m = load_candles("data/data.csv") - candles = resample_candles(candles_1m, period=timeframe) +def _list_csv_datasets(): + if not os.path.isdir(DATA_DIR): + return [] + return sorted([name for name in os.listdir(DATA_DIR) if name.endswith(".csv")]) + + +def _resolve_dataset(dataset): + csvs = _list_csv_datasets() + if not csvs: + raise HTTPException(status_code=500, detail="No CSV datasets found in backend/data") + + requested = dataset or DEFAULT_DATASET + if requested in csvs: + return requested + + if requested == DEFAULT_DATASET: + return csvs[0] + + raise HTTPException(status_code=400, detail=f"Dataset '{requested}' not found") + + +def _parse_day_filter(day_filter): + """Parse comma separated day ints '0,1,2,3,4' into list. None or empty = all days.""" + if not day_filter: + return None + try: + days = [int(d.strip()) for d in day_filter.split(",") if d.strip()] + valid = [d for d in days if 0 <= d <= 4] + return valid if valid else None + except ValueError: + return None + + +def _parse_int_list(value, fallback): + if not value: + return fallback + try: + parsed = [int(part.strip()) for part in value.split(",") if part.strip()] + except ValueError: + return fallback + return parsed or fallback + + +def _parse_float_list(value, fallback): + if not value: + return fallback + try: + parsed = [float(part.strip()) for part in value.split(",") if part.strip()] + except ValueError: + return fallback + return parsed or fallback + + +def _parse_bool_list(value, fallback): + if not value: + return fallback + parsed = [] + for part in value.split(","): + token = part.strip().lower() + if token in {"true", "1", "yes", "y"}: + parsed.append(True) + elif token in {"false", "0", "no", "n"}: + parsed.append(False) + return parsed or fallback + + +def _parse_str_list(value, fallback): + if not value: + return fallback + parsed = [part.strip() for part in value.split(",") if part.strip()] + return parsed or fallback + + +def _dataset_path(dataset_id): + return os.path.join(DATA_DIR, dataset_id) + + +def _dataset_mtime(dataset_id): + path = _dataset_path(dataset_id) + try: + return os.path.getmtime(path) + except OSError as exc: + raise HTTPException(status_code=400, detail=f"Dataset '{dataset_id}' not found") from exc + + +@lru_cache(maxsize=32) +def _load_candles_cached(dataset_id, dataset_mtime): + candles = load_candles(f"data/{dataset_id}") + return tuple(candles) + + +@lru_cache(maxsize=128) +def _resample_candles_cached(dataset_id, timeframe, dataset_mtime): + candles_1m = _load_candles_cached(dataset_id, dataset_mtime) + candles = resample_candles(candles_1m, period=timeframe) + return tuple(candles) + + +def _get_candles_for_timeframe(dataset_id, timeframe): + return _resample_candles_cached(dataset_id, int(timeframe), _dataset_mtime(dataset_id)) + + +def _build_strategy( + session, lookback, ob_age, atr_mult, use_fvg, use_ob, + proximity_pct, sweep, sweep_lookback, + min_gap_size, impulse_multiplier, require_unmitigated_fvg, + require_bos_confluence, min_ob_size, require_fvg_ob_confluence, + asian_sweep_only, day_filter, + use_break_even=False, be_trigger_rr=1.0, + use_partial_tp=False, partial_tp_rr=1.0, partial_tp_percent=50.0, +): + return ICTStrategy( + session=session, + lookback=lookback, + ob_max_age=ob_age, + atr_mult=atr_mult, + use_fvg=use_fvg, + use_ob=use_ob, + proximity_pct=proximity_pct, + use_liquidity_sweep=sweep, + sweep_lookback=sweep_lookback, + min_gap_size=min_gap_size, + impulse_multiplier=impulse_multiplier, + require_unmitigated_fvg=require_unmitigated_fvg, + require_bos_confluence=require_bos_confluence, + min_ob_size=min_ob_size, + require_fvg_ob_confluence=require_fvg_ob_confluence, + asian_sweep_only=asian_sweep_only, + day_filter=_parse_day_filter(day_filter), + use_break_even=use_break_even, + be_trigger_rr=be_trigger_rr, + use_partial_tp=use_partial_tp, + partial_tp_rr=partial_tp_rr, + partial_tp_percent=partial_tp_percent, + ) + + +def _trade_payload(trade): + return { + "enter_time": trade.enter_time.isoformat(), + "exit_time": trade.exit_time.isoformat(), + "enter_price": trade.enter_price, + "exit_price": trade.exit_price, + "direction": trade.direction, + "pnl": trade.pnl, + "r_multiple": getattr(trade, "r_multiple", 0.0), + "partial_tp_taken": getattr(trade, "partial_tp_taken", False), + "partial_tp_realized_pnl": getattr(trade, "partial_tp_realized_pnl", 0.0), + } + + +def _stats_payload(trades, rr): + total_pnl = sum(t.pnl for t in trades) + winners = [t for t in trades if t.pnl > 0] + losers = [t for t in trades if t.pnl <= 0] + partial_tp_trades = [t for t in trades if getattr(t, "partial_tp_taken", False)] + partial_tp_realized_total = sum(float(getattr(t, "partial_tp_realized_pnl", 0.0) or 0.0) for t in partial_tp_trades) + return { + "total_trades": len(trades), + "winners": len(winners), + "losers": len(losers), + "win_rate": len(winners) / len(trades) * 100 if trades else 0, + "total_pnl": total_pnl, + "avg_win": sum(t.pnl for t in winners) / len(winners) if winners else 0, + "avg_loss": sum(t.pnl for t in losers) / len(losers) if losers else 0, + "risk_reward": rr, + "partial_tp_trades": len(partial_tp_trades), + "partial_tp_rate": (len(partial_tp_trades) / len(trades) * 100) if trades else 0, + "partial_tp_realized_total": partial_tp_realized_total, + "partial_tp_realized_avg": (partial_tp_realized_total / len(partial_tp_trades)) if partial_tp_trades else 0, + } + + +def _build_monte_carlo_payload(trade_r_multiples, *, runs, starting_balance, risk_per_trade_pct, sampling_method, + missed_trade_pct, pnl_variation_pct, price_noise_pct, slippage_per_trade, + spread_per_trade, ruin_drawdown_pct, seed=None, base=None): + monte_carlo = run_monte_carlo( + trade_r_multiples=trade_r_multiples, + runs=runs, + starting_balance=starting_balance, + risk_per_trade_pct=risk_per_trade_pct, + sampling_method=sampling_method, + missed_trade_pct=missed_trade_pct, + pnl_variation_pct=pnl_variation_pct, + price_noise_pct=price_noise_pct, + slippage_per_trade=slippage_per_trade, + spread_per_trade=spread_per_trade, + ruin_drawdown_pct=ruin_drawdown_pct, + seed=seed, + ) + + summary = dict(monte_carlo.get("summary", {})) + distribution = monte_carlo.get("distribution", []) + sample_runs = monte_carlo.get("sample_runs", distribution) + return { + **monte_carlo, + "summary": summary, + "distribution": distribution, + "sample_runs": sample_runs, + "base": base or None, + } + + +class MonteCarloRequest(BaseModel): + trade_r_multiples: list[float] = Field(default_factory=list, min_length=1) + runs: int = Field(default=500, ge=1, le=20000) + starting_balance: float = Field(default=10000.0, gt=0) + risk_per_trade_pct: float = Field(default=1.0, ge=0.0, le=100.0) + sampling_method: Literal["bootstrap", "shuffle"] = "bootstrap" + missed_trade_pct: float = Field(default=5.0, ge=0.0, le=100.0) + pnl_variation_pct: float = Field(default=15.0, ge=0.0, le=100.0) + price_noise_pct: float = Field(default=0.0, ge=0.0, le=100.0) + slippage_per_trade: float = Field(default=0.0, ge=0.0) + spread_per_trade: float = Field(default=0.0, ge=0.0) + ruin_drawdown_pct: float = Field(default=20.0, ge=0.0, le=100.0) + seed: Optional[int] = None + base_trade_count: Optional[int] = None + base_net_pnl: Optional[float] = None + base_win_rate: Optional[float] = None + base_profit_factor: Optional[float] = None + base_max_drawdown_pct: Optional[float] = None + + +def _build_equity_points(trades, starting_balance=10000.0): + equity = starting_balance + points = [starting_balance] + for trade in sorted(trades, key=lambda t: t.exit_time): + equity += trade.pnl + points.append(equity) + return points + + +def _risk_metrics(trades, starting_balance=10000.0): + if not trades: + return { + "net_pnl": 0.0, + "win_rate": 0.0, + "profit_factor": 0.0, + "sharpe_ratio": 0.0, + "sortino_ratio": 0.0, + "max_drawdown_pct": 0.0, + "calmar_ratio": 0.0, + "recovery_ratio": 0.0, + "trade_count": 0, + "trade_score": 0.0, + "pf_x_wr": 0.0, + "custom_fitness": 0.0, + } + + pnls = [t.pnl for t in trades] + winners = [p for p in pnls if p > 0] + losers = [p for p in pnls if p < 0] + + trade_count = len(trades) + net_pnl = sum(pnls) + win_rate = (len(winners) / trade_count) * 100 if trade_count else 0.0 + + gross_profit = sum(winners) + gross_loss = abs(sum(losers)) + profit_factor = (gross_profit / gross_loss) if gross_loss > 0 else (999.0 if gross_profit > 0 else 0.0) + + mean_pnl = net_pnl / trade_count if trade_count else 0.0 + variance = sum((p - mean_pnl) ** 2 for p in pnls) / trade_count if trade_count else 0.0 + std_dev = variance ** 0.5 + sharpe = (mean_pnl / std_dev) * (trade_count ** 0.5) if std_dev > 0 else 0.0 + + downside = [min(0.0, p - mean_pnl) for p in pnls] + downside_variance = (sum(d * d for d in downside) / trade_count) if trade_count else 0.0 + downside_dev = downside_variance ** 0.5 + sortino = (mean_pnl / downside_dev) * (trade_count ** 0.5) if downside_dev > 0 else 0.0 + + equity_points = _build_equity_points(trades, starting_balance=starting_balance) + peak = equity_points[0] + max_drawdown_pct = 0.0 + for value in equity_points: + if value > peak: + peak = value + drawdown_pct = ((peak - value) / peak) * 100 if peak > 0 else 0.0 + if drawdown_pct > max_drawdown_pct: + max_drawdown_pct = drawdown_pct + + calmar = (net_pnl / max_drawdown_pct) if max_drawdown_pct > 0 else 0.0 + recovery = (net_pnl / max_drawdown_pct) if max_drawdown_pct > 0 else 0.0 + + if trade_count < 80: + trade_score = max(0.0, trade_count / 80) + elif trade_count > 400: + trade_score = max(0.0, 400 / trade_count) + else: + trade_score = 1.0 + + pf_x_wr = profit_factor * (win_rate / 100) + custom_fitness = pf_x_wr * trade_score + + return { + "net_pnl": round(net_pnl, 6), + "win_rate": round(win_rate, 4), + "profit_factor": round(profit_factor, 6), + "sharpe_ratio": round(sharpe, 6), + "sortino_ratio": round(sortino, 6), + "max_drawdown_pct": round(max_drawdown_pct, 6), + "calmar_ratio": round(calmar, 6), + "recovery_ratio": round(recovery, 6), + "trade_count": trade_count, + "trade_score": round(trade_score, 6), + "pf_x_wr": round(pf_x_wr, 6), + "custom_fitness": round(custom_fitness, 6), + } + + +def _dominates(a, b): + maximize_keys = [ + "net_pnl", + "sharpe_ratio", + "sortino_ratio", + "profit_factor", + "calmar_ratio", + "recovery_ratio", + "win_rate", + "trade_score", + "pf_x_wr", + "custom_fitness", + ] + no_worse = all(a.get(key, 0) >= b.get(key, 0) for key in maximize_keys) and a.get("max_drawdown_pct", 0) <= b.get("max_drawdown_pct", 0) + strictly_better = any(a.get(key, 0) > b.get(key, 0) for key in maximize_keys) or a.get("max_drawdown_pct", 0) < b.get("max_drawdown_pct", 0) + return no_worse and strictly_better + + +def _pareto_front(items): + front = [] + for candidate in items: + dominated = False + for other in items: + if other is candidate: + continue + if _dominates(other, candidate): + dominated = True + break + if not dominated: + front.append(candidate) + return front + + +class OptimizeRequest(BaseModel): + timeframe: int = Field(default=5, ge=1) + rr: float = Field(default=2.5, gt=0) + rr_values: list[float] = Field(default_factory=lambda: [2.5], min_length=1) + dataset: str = DEFAULT_DATASET + + min_trades: int = Field(default=5, ge=1) + max_trades: int = Field(default=1000, ge=1) + max_combinations: int = Field(default=1000, ge=1, le=50000) + combo_sampling_mode: Literal["first", "random"] = "random" + combo_sampling_seed: Optional[int] = None + top_n: int = Field(default=10, ge=1) + + sessions: list[str] = Field(default_factory=lambda: ["london", "new_york"], min_length=1) + lookback_values: list[int] = Field(default_factory=lambda: [3, 5, 7, 10], min_length=1) + ob_age_values: list[int] = Field(default_factory=lambda: [20, 50, 80], min_length=1) + atr_values: list[float] = Field(default_factory=lambda: [1.0, 1.5, 2.0, 2.5], min_length=1) + + min_ob_size_values: list[float] = Field(default_factory=lambda: [0.00030, 0.00040, 0.00050, 0.00060, 0.00080], min_length=1) + min_gap_size_values: list[float] = Field(default_factory=lambda: [0.00015, 0.00020, 0.00025, 0.00030, 0.00035], min_length=1) + impulse_multiplier_values: list[float] = Field(default_factory=lambda: [1.15, 1.25, 1.35, 1.45, 1.60], min_length=1) + + require_unmitigated_fvg_modes: list[bool] = Field(default_factory=lambda: [True, False], min_length=1) + require_fvg_ob_confluence_modes: list[bool] = Field(default_factory=lambda: [True, False], min_length=1) + require_bos_confluence_modes: list[bool] = Field(default_factory=lambda: [True, False], min_length=1) + sweep_modes: list[bool] = Field(default_factory=lambda: [True, False], min_length=1) + sweep_lb_values: list[int] = Field(default_factory=lambda: [5, 10, 15], min_length=1) + asian_sweep_only_modes: list[bool] = Field(default_factory=lambda: [True, False], min_length=1) + use_break_even_modes: list[bool] = Field(default_factory=lambda: [False, True], min_length=1) + be_trigger_rr_values: list[float] = Field(default_factory=lambda: [1.0, 1.5, 2.0], min_length=1) + use_partial_tp_modes: list[bool] = Field(default_factory=lambda: [False, True], min_length=1) + partial_tp_rr_values: list[float] = Field(default_factory=lambda: [1.0, 1.5, 2.0], min_length=1) + partial_tp_percent_values: list[float] = Field(default_factory=lambda: [50.0], min_length=1) + + rank_objective: Literal[ + "custom_fitness", + "net_pnl", + "sharpe_ratio", + "sortino_ratio", + "profit_factor", + "calmar_ratio", + "recovery_ratio", + "win_rate", + "pf_x_wr", + "trade_score", + "trade_count", + "max_drawdown_pct", + ] = "custom_fitness" + + +@app.get("/api/datasets") +def get_datasets(): + csvs = _list_csv_datasets() + default_id = DEFAULT_DATASET if DEFAULT_DATASET in csvs else (csvs[0] if csvs else "") + datasets = [ + { + "id": csv, + "label": csv.replace(".csv", "").replace("_", " ").title(), + "default": csv == default_id, + } + for csv in csvs + ] + return {"datasets": datasets} + + +@app.get("/api/candles") +def get_candles(timeframe: int = 5, dataset: str = DEFAULT_DATASET): + dataset_id = _resolve_dataset(dataset) + candles = _get_candles_for_timeframe(dataset_id, timeframe) return { "candles": [ { @@ -30,15 +457,17 @@ def get_candles(timeframe: int = 5): "open": c.open, "high": c.high, "low": c.low, - "close": c.close + "close": c.close, } for c in candles ] } + + @app.get("/api/indicators") -def get_indicators(timeframe: int = 5): - candles_1m = load_candles("data/data.csv") - candles = resample_candles(candles_1m, period=timeframe) +def get_indicators(timeframe: int = 5, dataset: str = DEFAULT_DATASET): + dataset_id = _resolve_dataset(dataset) + candles = _get_candles_for_timeframe(dataset_id, timeframe) swings = find_swing_points(candles) structure = detect_structure(swings) @@ -47,61 +476,545 @@ def get_indicators(timeframe: int = 5): obs = find_order_blocks(candles, structure) candle_times = [c.time_open.isoformat() for c in candles] - return { "candle_times": candle_times, "swings": swings, "structure": structure, "liquidity": levels, "fvgs": fvgs, - "order_blocks": obs + "order_blocks": obs, } + @app.get("/api/backtest") -def get_backtest(timeframe: int = 5, rr: float = 2.5): - candles_1m = load_candles("data/data.csv") - candles = resample_candles(candles_1m, period=timeframe) +def get_backtest( + timeframe: int = 5, + rr: float = 2.5, + lookback: int = 7, + ob_age: int = 50, + atr_mult: float = 2.5, + sweep: bool = True, + sweep_lookback: int = 5, + session: str = "london", + dataset: str = DEFAULT_DATASET, + use_fvg: bool = True, + use_ob: bool = True, + proximity_pct: float = 0.5, + # FVG Quality + min_gap_size: float = 0.0, + impulse_multiplier: float = 0.0, + require_unmitigated_fvg: bool = True, + require_bos_confluence: bool = False, + # Order Block + min_ob_size: float = 0.0, + require_fvg_ob_confluence: bool = False, + # Liquidity + asian_sweep_only: bool = False, + # Break-even + use_break_even: bool = False, + be_trigger_rr: float = 1.0, + # Partial TP + use_partial_tp: bool = False, + partial_tp_rr: float = 1.0, + partial_tp_percent: float = 50.0, + # Time + day_filter: Optional[str] = None, + # Risk Management + max_daily_loss: float = 0.0, + max_consecutive_losses: int = 0, +): + dataset_id = _resolve_dataset(dataset) + candles = _get_candles_for_timeframe(dataset_id, timeframe) - from strategies.ict_strategy import ICTStrategy - strategy = ICTStrategy( - session="london", - lookback=7, - ob_max_age=50, - atr_mult=2.5, - use_liquidity_sweep=True, - sweep_lookback=5, + strategy = _build_strategy( + session=session, lookback=lookback, ob_age=ob_age, atr_mult=atr_mult, + use_fvg=use_fvg, use_ob=use_ob, proximity_pct=proximity_pct, + sweep=sweep, sweep_lookback=sweep_lookback, + min_gap_size=min_gap_size, impulse_multiplier=impulse_multiplier, + require_unmitigated_fvg=require_unmitigated_fvg, + require_bos_confluence=require_bos_confluence, + min_ob_size=min_ob_size, require_fvg_ob_confluence=require_fvg_ob_confluence, + asian_sweep_only=asian_sweep_only, day_filter=day_filter, + use_break_even=use_break_even, be_trigger_rr=be_trigger_rr, + use_partial_tp=use_partial_tp, partial_tp_rr=partial_tp_rr, partial_tp_percent=partial_tp_percent, + ) + trades = run_backtest( + candles, strategy, 10000, risk_reward=rr, + max_daily_loss=max_daily_loss, + max_consecutive_losses=max_consecutive_losses, ) - from engine.backtester import run_backtest - trades = run_backtest(candles, strategy, 10000, risk_reward=rr) - - candle_times = [c.time_open.isoformat() for c in candles] - - trades_data = [] - for t in trades: - trades_data.append({ - "enter_time": t.enter_time.isoformat(), - "exit_time": t.exit_time.isoformat(), - "enter_price": t.enter_price, - "exit_price": t.exit_price, - "direction": t.direction, - "pnl": t.pnl, - }) - - total_pnl = sum(t.pnl for t in trades) - winners = [t for t in trades if t.pnl > 0] - losers = [t for t in trades if t.pnl <= 0] return { - "trades": trades_data, - "candle_times": candle_times, - "stats": { - "total_trades": len(trades), - "winners": len(winners), - "losers": len(losers), - "win_rate": len(winners) / len(trades) * 100 if trades else 0, - "total_pnl": total_pnl, - "avg_win": sum(t.pnl for t in winners) / len(winners) if winners else 0, - "avg_loss": sum(t.pnl for t in losers) / len(losers) if losers else 0, - "risk_reward": rr, + "trades": [_trade_payload(t) for t in trades], + "candle_times": [c.time_open.isoformat() for c in candles], + "stats": _stats_payload(trades, rr), + } + + +@app.post("/api/backtest/monte-carlo") +def backtest_monte_carlo(req: MonteCarloRequest): + base = { + "trade_count": req.base_trade_count if req.base_trade_count is not None else len(req.trade_r_multiples), + "net_pnl": req.base_net_pnl if req.base_net_pnl is not None else 0.0, + "win_rate": req.base_win_rate if req.base_win_rate is not None else 0.0, + "profit_factor": req.base_profit_factor if req.base_profit_factor is not None else 0.0, + "max_drawdown_pct": req.base_max_drawdown_pct if req.base_max_drawdown_pct is not None else 0.0, + } + + return _build_monte_carlo_payload( + req.trade_r_multiples, + runs=req.runs, + starting_balance=req.starting_balance, + risk_per_trade_pct=req.risk_per_trade_pct, + sampling_method=req.sampling_method, + missed_trade_pct=req.missed_trade_pct, + pnl_variation_pct=req.pnl_variation_pct, + price_noise_pct=req.price_noise_pct, + slippage_per_trade=req.slippage_per_trade, + spread_per_trade=req.spread_per_trade, + ruin_drawdown_pct=req.ruin_drawdown_pct, + seed=req.seed, + base=base, + ) + + +@app.post("/api/optimize") +def get_optimize(req: OptimizeRequest): + dataset_id = _resolve_dataset(req.dataset) + candles = _get_candles_for_timeframe(dataset_id, req.timeframe) + + session_list = req.sessions + lookback_list = req.lookback_values + ob_age_list = req.ob_age_values + atr_list = req.atr_values + rr_list = [float(value) for value in req.rr_values if float(value) > 0] + if not rr_list: + rr_list = [req.rr] + min_ob_size_list = req.min_ob_size_values + min_gap_size_list = req.min_gap_size_values + impulse_multiplier_list = req.impulse_multiplier_values + require_unmitigated_fvg_list = req.require_unmitigated_fvg_modes + require_fvg_ob_confluence_list = req.require_fvg_ob_confluence_modes + require_bos_confluence_list = req.require_bos_confluence_modes + sweep_list = req.sweep_modes + sweep_lb_list = req.sweep_lb_values + asian_sweep_only_list = req.asian_sweep_only_modes + use_break_even_list = req.use_break_even_modes + be_trigger_rr_list = [float(value) for value in req.be_trigger_rr_values if float(value) > 0] + if not be_trigger_rr_list: + be_trigger_rr_list = [1.0] + use_partial_tp_list = req.use_partial_tp_modes + partial_tp_rr_list = [float(value) for value in req.partial_tp_rr_values if float(value) > 0] + if not partial_tp_rr_list: + partial_tp_rr_list = [1.0] + partial_tp_percent_list = [float(value) for value in req.partial_tp_percent_values if 0 < float(value) <= 100] + if not partial_tp_percent_list: + partial_tp_percent_list = [50.0] + + ranking_key = req.rank_objective + + def _rank_results(items): + # Lower drawdown is better; all other objectives are maximize. + if ranking_key == "max_drawdown_pct": + return sorted(items, key=lambda x: x.get(ranking_key, 0)) + return sorted(items, key=lambda x: x.get(ranking_key, 0), reverse=True) + + sample_mode = req.combo_sampling_mode + rng = random.Random(req.combo_sampling_seed) if sample_mode == "random" else None + + combos = [] + base_grid = { + "session": session_list, + "rr": rr_list, + "lookback": lookback_list, + "ob_age": ob_age_list, + "atr_mult": atr_list, + "min_ob_size": min_ob_size_list, + "min_gap_size": min_gap_size_list, + "impulse_multiplier": impulse_multiplier_list, + "require_unmitigated_fvg": require_unmitigated_fvg_list, + "require_fvg_ob_confluence": require_fvg_ob_confluence_list, + "require_bos_confluence": require_bos_confluence_list, + "sweep": sweep_list, + "asian_sweep_only": asian_sweep_only_list, + "use_break_even": use_break_even_list, + "be_trigger_rr": be_trigger_rr_list, + "use_partial_tp": use_partial_tp_list, + "partial_tp_rr": partial_tp_rr_list, + "partial_tp_percent": partial_tp_percent_list, + } + base_keys = tuple(base_grid.keys()) + + def _candidate_iter(): + for values in product(*(base_grid[key] for key in base_keys)): + base_params = dict(zip(base_keys, values)) + for sweep_lb in (sweep_lb_list if base_params["sweep"] else [0]): + yield { + **base_params, + "sweep_lookback": sweep_lb, + } + + base_count_without_sweep = 1 + for key in base_keys: + if key == "sweep": + continue + base_count_without_sweep *= len(base_grid[key]) + + true_sweep_count = sum(1 for enabled in sweep_list if enabled) + false_sweep_count = sum(1 for enabled in sweep_list if not enabled) + sweep_factor = (true_sweep_count * len(sweep_lb_list)) + false_sweep_count + total_generated_combinations = base_count_without_sweep * sweep_factor + + if sample_mode == "first": + # Stop iteration as soon as we hit the cap (no ghost work on remaining permutations). + combos = list(islice(_candidate_iter(), req.max_combinations)) + else: + # Reservoir sampling keeps an unbiased random sample without storing all combos. + for generated_idx, candidate in enumerate(_candidate_iter(), start=1): + if len(combos) < req.max_combinations: + if len(combos) < req.max_combinations: + combos.append(candidate) + else: + replace_index = rng.randint(0, generated_idx - 1) + if replace_index < req.max_combinations: + combos[replace_index] = candidate + + executed_combinations = len(combos) + capped_by_max_combinations = total_generated_combinations > executed_combinations + + def event_stream(): + started = time.perf_counter() + results = [] + + # Emit immediately so the UI can move off 0% as soon as the stream opens. + yield f"data: {json.dumps({'type': 'progress', 'progress': 0, 'processed': 0, 'total_combinations': executed_combinations, 'generated_combinations': total_generated_combinations, 'executed_combinations': executed_combinations, 'max_combinations': req.max_combinations, 'capped_by_max_combinations': capped_by_max_combinations, 'combo_sampling_mode': sample_mode, 'combo_sampling_seed': req.combo_sampling_seed, 'valid_results': 0, 'top_results': []})}\n\n" + + for i, params in enumerate(combos): + strategy = ICTStrategy( + session=params["session"], + lookback=params["lookback"], + ob_max_age=params["ob_age"], + atr_mult=params["atr_mult"], + use_liquidity_sweep=params["sweep"], + sweep_lookback=params["sweep_lookback"], + min_gap_size=params["min_gap_size"], + impulse_multiplier=params["impulse_multiplier"], + require_unmitigated_fvg=params["require_unmitigated_fvg"], + require_bos_confluence=params["require_bos_confluence"], + min_ob_size=params["min_ob_size"], + require_fvg_ob_confluence=params["require_fvg_ob_confluence"], + asian_sweep_only=params["asian_sweep_only"], + use_break_even=params["use_break_even"], + be_trigger_rr=params["be_trigger_rr"], + use_partial_tp=params["use_partial_tp"], + partial_tp_rr=params["partial_tp_rr"], + partial_tp_percent=params["partial_tp_percent"], + ) + trades = run_backtest(candles, strategy, 10000, risk_reward=params["rr"]) + + if req.min_trades <= len(trades) <= req.max_trades: + metrics = _risk_metrics(trades, starting_balance=10000.0) + results.append({ + "params": params, + "risk_reward": params["rr"], + "pnl": round(metrics["net_pnl"], 4), + "trades": metrics["trade_count"], + "win_rate": round(metrics["win_rate"], 2), + **metrics, + }) + + if (i + 1) % 4 == 0 or i == len(combos) - 1: + ranked = _rank_results(results) + pareto = _pareto_front(results) + progress = ((i + 1) / max(1, len(combos))) * 100 + payload = { + "type": "progress", + "progress": progress, + "processed": i + 1, + "total_combinations": executed_combinations, + "generated_combinations": total_generated_combinations, + "executed_combinations": executed_combinations, + "max_combinations": req.max_combinations, + "capped_by_max_combinations": capped_by_max_combinations, + "combo_sampling_mode": sample_mode, + "combo_sampling_seed": req.combo_sampling_seed, + "valid_results": len(ranked), + "rank_objective": ranking_key, + "top_results": ranked[:max(1, req.top_n)], + "pareto_front": sorted(pareto, key=lambda x: x.get("custom_fitness", 0), reverse=True)[:max(1, req.top_n)], + } + yield f"data: {json.dumps(payload)}\n\n" + + total_elapsed = time.perf_counter() - started + ranked = _rank_results(results) + pareto = _pareto_front(results) + best = ranked[0] if ranked else None + safe_elapsed = total_elapsed if total_elapsed > 0 else 0.0001 + payload = { + "type": "finished", + "dataset": dataset_id, + "timeframe": req.timeframe, + "risk_reward_values": rr_list, + "min_trades": req.min_trades, + "max_trades": req.max_trades, + "rank_objective": ranking_key, + "all_results": ranked, + "top_results": ranked[:max(1, req.top_n)], + "pareto_front": sorted(pareto, key=lambda x: x.get("custom_fitness", 0), reverse=True), + "best": best, + "best_result": best, + "elapsed_seconds": round(total_elapsed, 3), + "combos_per_second": round(len(combos) / safe_elapsed, 2), + "total_combinations": executed_combinations, + "generated_combinations": total_generated_combinations, + "executed_combinations": executed_combinations, + "max_combinations": req.max_combinations, + "capped_by_max_combinations": capped_by_max_combinations, + "combo_sampling_mode": sample_mode, + "combo_sampling_seed": req.combo_sampling_seed, + "valid_results": len(ranked), } - } \ No newline at end of file + yield f"data: {json.dumps(payload)}\n\n" + + return StreamingResponse( + event_stream(), + media_type="text/event-stream", + headers={"Cache-Control": "no-cache", "Connection": "keep-alive", "X-Accel-Buffering": "no"}, + ) + + +@app.get("/api/optimize/monte-carlo") +def get_optimize_monte_carlo( + timeframe: int = 5, + rr: float = 2.5, + dataset: str = DEFAULT_DATASET, + session: str = "london", + lookback: int = 7, + ob_age: int = 50, + atr_mult: float = 2.5, + min_ob_size: float = 0.0005, + min_gap_size: float = 0.00025, + impulse_multiplier: float = 1.35, + require_unmitigated_fvg: bool = True, + require_fvg_ob_confluence: bool = False, + require_bos_confluence: bool = False, + sweep: bool = True, + sweep_lookback: int = 5, + asian_sweep_only: bool = False, + use_break_even: bool = False, + be_trigger_rr: float = 1.0, + use_partial_tp: bool = False, + partial_tp_rr: float = 1.0, + partial_tp_percent: float = 50.0, + runs: int = Query(default=500, ge=1, le=20000), + shuffle_trades: bool = True, + pnl_variation_pct: float = Query(default=15.0, ge=0.0, le=100.0), + price_noise_pct: float = Query(default=0.0, ge=0.0, le=100.0), + slippage_per_trade: float = Query(default=0.0, ge=0.0), + spread_per_trade: float = Query(default=0.0, ge=0.0), + ruin_drawdown_pct: float = Query(default=20.0, ge=0.0, le=100.0), +): + dataset_id = _resolve_dataset(dataset) + candles = _get_candles_for_timeframe(dataset_id, timeframe) + + strategy = _build_strategy( + session=session, + lookback=lookback, + ob_age=ob_age, + atr_mult=atr_mult, + use_fvg=True, + use_ob=True, + proximity_pct=0.5, + sweep=sweep, + sweep_lookback=sweep_lookback, + min_gap_size=min_gap_size, + impulse_multiplier=impulse_multiplier, + require_unmitigated_fvg=require_unmitigated_fvg, + require_bos_confluence=require_bos_confluence, + min_ob_size=min_ob_size, + require_fvg_ob_confluence=require_fvg_ob_confluence, + asian_sweep_only=asian_sweep_only, + use_break_even=use_break_even, + be_trigger_rr=be_trigger_rr, + use_partial_tp=use_partial_tp, + partial_tp_rr=partial_tp_rr, + partial_tp_percent=partial_tp_percent, + day_filter=None, + ) + trades = run_backtest(candles, strategy, 10000, risk_reward=rr) + trade_r_multiples = [getattr(t, "r_multiple", 0.0) for t in trades] + + base_metrics = _risk_metrics(trades, starting_balance=10000.0) + return { + "dataset": dataset_id, + "timeframe": timeframe, + "risk_reward": rr, + "best_params": { + "session": session, + "lookback": lookback, + "ob_age": ob_age, + "atr_mult": atr_mult, + "min_ob_size": min_ob_size, + "min_gap_size": min_gap_size, + "impulse_multiplier": impulse_multiplier, + "require_unmitigated_fvg": require_unmitigated_fvg, + "require_fvg_ob_confluence": require_fvg_ob_confluence, + "require_bos_confluence": require_bos_confluence, + "sweep": sweep, + "sweep_lookback": sweep_lookback, + "asian_sweep_only": asian_sweep_only, + "use_break_even": use_break_even, + "be_trigger_rr": be_trigger_rr, + "use_partial_tp": use_partial_tp, + "partial_tp_rr": partial_tp_rr, + "partial_tp_percent": partial_tp_percent, + }, + "base": { + "trade_count": len(trades), + "net_pnl": base_metrics["net_pnl"], + "win_rate": base_metrics["win_rate"], + "profit_factor": base_metrics["profit_factor"], + "max_drawdown_pct": base_metrics["max_drawdown_pct"], + }, + "config": { + "runs": runs, + "risk_per_trade_pct": 1.0, + "shuffle_trades": shuffle_trades, + "pnl_variation_pct": pnl_variation_pct, + "price_noise_pct": price_noise_pct, + "slippage_per_trade": slippage_per_trade, + "spread_per_trade": spread_per_trade, + "ruin_drawdown_pct": ruin_drawdown_pct, + }, + **_build_monte_carlo_payload( + trade_r_multiples, + runs=runs, + starting_balance=10000.0, + risk_per_trade_pct=1.0, + sampling_method="shuffle" if shuffle_trades else "bootstrap", + missed_trade_pct=0.0, + pnl_variation_pct=pnl_variation_pct, + price_noise_pct=price_noise_pct, + slippage_per_trade=slippage_per_trade, + spread_per_trade=spread_per_trade, + ruin_drawdown_pct=ruin_drawdown_pct, + seed=None, + base={ + "trade_count": len(trades), + "net_pnl": base_metrics["net_pnl"], + "win_rate": base_metrics["win_rate"], + "profit_factor": base_metrics["profit_factor"], + "max_drawdown_pct": base_metrics["max_drawdown_pct"], + }, + ), + } + + +@app.get("/api/backtest/stream") +def stream_backtest( + timeframe: int = 5, + rr: float = 2.5, + lookback: int = 7, + ob_age: int = 50, + atr_mult: float = 2.5, + sweep: bool = True, + sweep_lookback: int = 5, + session: str = "london", + dataset: str = DEFAULT_DATASET, + use_fvg: bool = True, + use_ob: bool = True, + proximity_pct: float = 0.5, + # FVG Quality + min_gap_size: float = 0.0, + impulse_multiplier: float = 0.0, + require_unmitigated_fvg: bool = True, + require_bos_confluence: bool = False, + # Order Block + min_ob_size: float = 0.0, + require_fvg_ob_confluence: bool = False, + # Liquidity + asian_sweep_only: bool = False, + # Break-even + use_break_even: bool = False, + be_trigger_rr: float = 1.0, + # Partial TP + use_partial_tp: bool = False, + partial_tp_rr: float = 1.0, + partial_tp_percent: float = 50.0, + # Time + day_filter: Optional[str] = None, + # Risk Management + max_daily_loss: float = 0.0, + max_consecutive_losses: int = 0, +): + dataset_id = _resolve_dataset(dataset) + candles = _get_candles_for_timeframe(dataset_id, timeframe) + + strategy = _build_strategy( + session=session, lookback=lookback, ob_age=ob_age, atr_mult=atr_mult, + use_fvg=use_fvg, use_ob=use_ob, proximity_pct=proximity_pct, + sweep=sweep, sweep_lookback=sweep_lookback, + min_gap_size=min_gap_size, impulse_multiplier=impulse_multiplier, + require_unmitigated_fvg=require_unmitigated_fvg, + require_bos_confluence=require_bos_confluence, + min_ob_size=min_ob_size, require_fvg_ob_confluence=require_fvg_ob_confluence, + asian_sweep_only=asian_sweep_only, day_filter=day_filter, + use_break_even=use_break_even, be_trigger_rr=be_trigger_rr, + use_partial_tp=use_partial_tp, partial_tp_rr=partial_tp_rr, partial_tp_percent=partial_tp_percent, + ) + + def _sse(data): + return f"data: {json.dumps(data)}\n\n" + + def event_stream(): + started = time.perf_counter() + streamed_trades = [] + try: + for event in run_backtest_stream( + candles, strategy, 10000, risk_reward=rr, + max_daily_loss=max_daily_loss, + max_consecutive_losses=max_consecutive_losses, + ): + kind = event["type"] + if kind == "start": + yield _sse({"type": "start", "total_candles": event["total_candles"]}) + elif kind == "progress": + total = max(1, event["total_candles"]) + progress_pct = int((event["processed_candles"] / total) * 100) + yield _sse({ + "type": "progress", + "processed_candles": event["processed_candles"], + "total_candles": event["total_candles"], + "progress_pct": progress_pct, + }) + elif kind == "trade": + trade = event["trade"] + streamed_trades.append(trade) + yield _sse({ + "type": "trade", + "trade": _trade_payload(trade), + "stats": _stats_payload(streamed_trades, rr), + "processed_candles": event["processed_candles"], + "total_candles": event["total_candles"], + }) + elif kind == "done": + duration_ms = (time.perf_counter() - started) * 1000 + yield _sse({ + "type": "done", + "trades": [_trade_payload(t) for t in streamed_trades], + "stats": _stats_payload(streamed_trades, rr), + "duration_ms": round(duration_ms, 1), + "candle_times": [c.time_open.isoformat() for c in candles], + }) + except Exception as exc: + yield _sse({"type": "error", "message": str(exc)}) + + return StreamingResponse( + event_stream(), + media_type="text/event-stream", + headers={ + "Cache-Control": "no-cache", + "Connection": "keep-alive", + "X-Accel-Buffering": "no", + }, + ) diff --git a/backend/data/gbpjpy_feb.csv b/backend/data/gbpjpy_feb.csv new file mode 100644 index 0000000..9a76d8b --- /dev/null +++ b/backend/data/gbpjpy_feb.csv @@ -0,0 +1,28694 @@ +20260201 170800;211.870000;211.870000;211.811000;211.813000;0 +20260201 170900;211.815000;211.825000;211.815000;211.825000;0 +20260201 171000;211.846000;211.958000;211.846000;211.958000;0 +20260201 171100;211.958000;211.963000;211.958000;211.959000;0 +20260201 171200;211.960000;211.960000;211.846000;211.846000;0 +20260201 171300;211.860000;211.955000;211.860000;211.904000;0 +20260201 171400;211.903000;211.903000;211.903000;211.903000;0 +20260201 171500;211.922000;211.976000;211.913000;211.957000;0 +20260201 171600;211.956000;211.956000;211.949000;211.949000;0 +20260201 171700;211.948000;211.948000;211.941000;211.941000;0 +20260201 171800;211.945000;211.946000;211.938000;211.946000;0 +20260201 171900;211.950000;212.076000;211.950000;211.955000;0 +20260201 172000;211.982000;212.103000;211.982000;212.103000;0 +20260201 172100;212.117000;212.159000;212.100000;212.159000;0 +20260201 172200;212.156000;212.185000;212.142000;212.185000;0 +20260201 172300;212.185000;212.192000;212.132000;212.183000;0 +20260201 172400;212.173000;212.236000;212.173000;212.189000;0 +20260201 172500;212.186000;212.232000;212.186000;212.232000;0 +20260201 172600;212.230000;212.357000;212.220000;212.339000;0 +20260201 172700;212.339000;212.516000;212.315000;212.467000;0 +20260201 172800;212.466000;212.566000;212.439000;212.501000;0 +20260201 172900;212.498000;212.498000;212.485000;212.487000;0 +20260201 173000;212.505000;212.642000;212.489000;212.584000;0 +20260201 173100;212.633000;212.634000;212.633000;212.633000;0 +20260201 173200;212.641000;212.663000;212.503000;212.539000;0 +20260201 173300;212.507000;212.613000;212.506000;212.613000;0 +20260201 173400;212.633000;212.634000;212.522000;212.613000;0 +20260201 173500;212.613000;212.614000;212.593000;212.594000;0 +20260201 173600;212.594000;212.605000;212.594000;212.605000;0 +20260201 173700;212.604000;212.604000;212.540000;212.540000;0 +20260201 173800;212.543000;212.604000;212.542000;212.600000;0 +20260201 173900;212.599000;212.599000;212.591000;212.591000;0 +20260201 174000;212.498000;212.593000;212.488000;212.589000;0 +20260201 174100;212.588000;212.598000;212.588000;212.594000;0 +20260201 174200;212.588000;212.597000;212.585000;212.597000;0 +20260201 174300;212.601000;212.604000;212.597000;212.603000;0 +20260201 174400;212.599000;212.603000;212.522000;212.526000;0 +20260201 174500;212.526000;212.578000;212.522000;212.541000;0 +20260201 174600;212.541000;212.541000;212.507000;212.513000;0 +20260201 174700;212.511000;212.531000;212.506000;212.514000;0 +20260201 174800;212.516000;212.587000;212.513000;212.540000;0 +20260201 174900;212.549000;212.605000;212.527000;212.604000;0 +20260201 175000;212.605000;212.605000;212.604000;212.604000;0 +20260201 175100;212.604000;212.604000;212.511000;212.511000;0 +20260201 175200;212.511000;212.528000;212.508000;212.526000;0 +20260201 175300;212.525000;212.549000;212.512000;212.531000;0 +20260201 175400;212.533000;212.562000;212.521000;212.562000;0 +20260201 175500;212.557000;212.574000;212.481000;212.567000;0 +20260201 175600;212.566000;212.571000;212.546000;212.561000;0 +20260201 175700;212.562000;212.595000;212.562000;212.594000;0 +20260201 175800;212.595000;212.595000;212.499000;212.501000;0 +20260201 175900;212.502000;212.565000;212.290000;212.312000;0 +20260201 180000;212.345000;212.569000;212.345000;212.543000;0 +20260201 180100;212.544000;212.580000;212.524000;212.568000;0 +20260201 180200;212.569000;212.604000;212.561000;212.569000;0 +20260201 180300;212.565000;212.618000;212.488000;212.562000;0 +20260201 180400;212.557000;212.619000;212.555000;212.609000;0 +20260201 180500;212.606000;212.639000;212.578000;212.629000;0 +20260201 180600;212.629000;212.670000;212.576000;212.582000;0 +20260201 180700;212.581000;212.582000;212.533000;212.539000;0 +20260201 180800;212.554000;212.554000;212.532000;212.539000;0 +20260201 180900;212.546000;212.586000;212.530000;212.531000;0 +20260201 181000;212.533000;212.541000;212.431000;212.444000;0 +20260201 181100;212.443000;212.484000;212.435000;212.452000;0 +20260201 181200;212.453000;212.524000;212.434000;212.493000;0 +20260201 181300;212.492000;212.540000;212.486000;212.514000;0 +20260201 181400;212.511000;212.517000;212.431000;212.452000;0 +20260201 181500;212.460000;212.503000;212.452000;212.495000;0 +20260201 181600;212.493000;212.504000;212.427000;212.451000;0 +20260201 181700;212.455000;212.471000;212.418000;212.424000;0 +20260201 181800;212.425000;212.426000;212.312000;212.359000;0 +20260201 181900;212.361000;212.393000;212.358000;212.374000;0 +20260201 182000;212.373000;212.435000;212.368000;212.435000;0 +20260201 182100;212.442000;212.450000;212.393000;212.445000;0 +20260201 182200;212.444000;212.466000;212.420000;212.436000;0 +20260201 182300;212.435000;212.450000;212.400000;212.420000;0 +20260201 182400;212.423000;212.425000;212.384000;212.395000;0 +20260201 182500;212.395000;212.458000;212.395000;212.444000;0 +20260201 182600;212.446000;212.446000;212.388000;212.415000;0 +20260201 182700;212.418000;212.434000;212.377000;212.387000;0 +20260201 182800;212.381000;212.436000;212.353000;212.432000;0 +20260201 182900;212.434000;212.434000;212.398000;212.405000;0 +20260201 183000;212.407000;212.432000;212.339000;212.358000;0 +20260201 183100;212.358000;212.375000;212.288000;212.311000;0 +20260201 183200;212.312000;212.328000;212.279000;212.327000;0 +20260201 183300;212.330000;212.330000;212.262000;212.307000;0 +20260201 183400;212.307000;212.325000;212.290000;212.323000;0 +20260201 183500;212.321000;212.372000;212.287000;212.364000;0 +20260201 183600;212.366000;212.391000;212.336000;212.391000;0 +20260201 183700;212.392000;212.393000;212.307000;212.321000;0 +20260201 183800;212.320000;212.320000;212.261000;212.287000;0 +20260201 183900;212.295000;212.368000;212.289000;212.326000;0 +20260201 184000;212.327000;212.327000;212.290000;212.319000;0 +20260201 184100;212.322000;212.390000;212.309000;212.389000;0 +20260201 184200;212.389000;212.405000;212.356000;212.357000;0 +20260201 184300;212.361000;212.393000;212.361000;212.382000;0 +20260201 184400;212.383000;212.395000;212.299000;212.299000;0 +20260201 184500;212.298000;212.315000;212.255000;212.265000;0 +20260201 184600;212.270000;212.278000;212.246000;212.268000;0 +20260201 184700;212.265000;212.292000;212.249000;212.272000;0 +20260201 184800;212.270000;212.281000;212.243000;212.260000;0 +20260201 184900;212.261000;212.289000;212.252000;212.280000;0 +20260201 185000;212.282000;212.337000;212.268000;212.318000;0 +20260201 185100;212.320000;212.364000;212.259000;212.304000;0 +20260201 185200;212.304000;212.319000;212.270000;212.277000;0 +20260201 185300;212.274000;212.297000;212.196000;212.218000;0 +20260201 185400;212.216000;212.292000;212.192000;212.263000;0 +20260201 185500;212.261000;212.323000;212.257000;212.289000;0 +20260201 185600;212.290000;212.293000;212.234000;212.279000;0 +20260201 185700;212.280000;212.283000;212.214000;212.259000;0 +20260201 185800;212.260000;212.314000;212.257000;212.310000;0 +20260201 185900;212.305000;212.305000;212.249000;212.279000;0 +20260201 190000;212.269000;212.296000;212.174000;212.185000;0 +20260201 190100;212.183000;212.227000;212.165000;212.206000;0 +20260201 190200;212.209000;212.212000;212.069000;212.076000;0 +20260201 190300;212.072000;212.106000;212.053000;212.062000;0 +20260201 190400;212.056000;212.152000;212.045000;212.109000;0 +20260201 190500;212.104000;212.155000;212.075000;212.140000;0 +20260201 190600;212.135000;212.175000;212.118000;212.157000;0 +20260201 190700;212.158000;212.225000;212.148000;212.159000;0 +20260201 190800;212.157000;212.198000;212.142000;212.163000;0 +20260201 190900;212.163000;212.170000;212.105000;212.145000;0 +20260201 191000;212.146000;212.167000;212.112000;212.143000;0 +20260201 191100;212.143000;212.202000;212.134000;212.185000;0 +20260201 191200;212.192000;212.211000;212.170000;212.174000;0 +20260201 191300;212.171000;212.266000;212.157000;212.266000;0 +20260201 191400;212.268000;212.268000;212.191000;212.194000;0 +20260201 191500;212.194000;212.276000;212.182000;212.240000;0 +20260201 191600;212.241000;212.248000;212.196000;212.235000;0 +20260201 191700;212.231000;212.254000;212.207000;212.209000;0 +20260201 191800;212.205000;212.246000;212.170000;212.241000;0 +20260201 191900;212.239000;212.294000;212.224000;212.224000;0 +20260201 192000;212.221000;212.265000;212.203000;212.246000;0 +20260201 192100;212.243000;212.326000;212.225000;212.320000;0 +20260201 192200;212.321000;212.414000;212.309000;212.379000;0 +20260201 192300;212.379000;212.393000;212.335000;212.374000;0 +20260201 192400;212.372000;212.384000;212.310000;212.310000;0 +20260201 192500;212.312000;212.338000;212.258000;212.266000;0 +20260201 192600;212.264000;212.296000;212.252000;212.287000;0 +20260201 192700;212.295000;212.351000;212.283000;212.339000;0 +20260201 192800;212.341000;212.376000;212.332000;212.365000;0 +20260201 192900;212.366000;212.366000;212.297000;212.324000;0 +20260201 193000;212.326000;212.330000;212.279000;212.303000;0 +20260201 193100;212.301000;212.386000;212.299000;212.362000;0 +20260201 193200;212.361000;212.404000;212.351000;212.392000;0 +20260201 193300;212.391000;212.415000;212.363000;212.397000;0 +20260201 193400;212.398000;212.429000;212.396000;212.426000;0 +20260201 193500;212.426000;212.461000;212.403000;212.435000;0 +20260201 193600;212.431000;212.454000;212.410000;212.453000;0 +20260201 193700;212.453000;212.457000;212.436000;212.446000;0 +20260201 193800;212.433000;212.443000;212.411000;212.411000;0 +20260201 193900;212.410000;212.411000;212.354000;212.354000;0 +20260201 194000;212.359000;212.398000;212.354000;212.391000;0 +20260201 194100;212.388000;212.431000;212.374000;212.428000;0 +20260201 194200;212.429000;212.478000;212.428000;212.469000;0 +20260201 194300;212.478000;212.543000;212.471000;212.480000;0 +20260201 194400;212.482000;212.509000;212.465000;212.509000;0 +20260201 194500;212.507000;212.534000;212.484000;212.531000;0 +20260201 194600;212.532000;212.559000;212.515000;212.539000;0 +20260201 194700;212.541000;212.551000;212.521000;212.551000;0 +20260201 194800;212.551000;212.569000;212.533000;212.545000;0 +20260201 194900;212.542000;212.547000;212.506000;212.522000;0 +20260201 195000;212.522000;212.543000;212.485000;212.494000;0 +20260201 195100;212.496000;212.510000;212.468000;212.504000;0 +20260201 195200;212.506000;212.555000;212.506000;212.518000;0 +20260201 195300;212.521000;212.607000;212.511000;212.591000;0 +20260201 195400;212.590000;212.629000;212.547000;212.607000;0 +20260201 195500;212.603000;212.626000;212.586000;212.592000;0 +20260201 195600;212.589000;212.620000;212.580000;212.620000;0 +20260201 195700;212.614000;212.619000;212.576000;212.595000;0 +20260201 195800;212.599000;212.671000;212.578000;212.669000;0 +20260201 195900;212.669000;212.675000;212.651000;212.666000;0 +20260201 200000;212.666000;212.679000;212.632000;212.641000;0 +20260201 200100;212.639000;212.648000;212.606000;212.635000;0 +20260201 200200;212.634000;212.670000;212.605000;212.613000;0 +20260201 200300;212.610000;212.631000;212.600000;212.601000;0 +20260201 200400;212.604000;212.631000;212.592000;212.601000;0 +20260201 200500;212.604000;212.609000;212.524000;212.528000;0 +20260201 200600;212.526000;212.533000;212.483000;212.493000;0 +20260201 200700;212.490000;212.498000;212.475000;212.484000;0 +20260201 200800;212.487000;212.532000;212.482000;212.522000;0 +20260201 200900;212.520000;212.526000;212.486000;212.490000;0 +20260201 201000;212.491000;212.493000;212.415000;212.434000;0 +20260201 201100;212.433000;212.508000;212.433000;212.459000;0 +20260201 201200;212.460000;212.508000;212.458000;212.506000;0 +20260201 201300;212.505000;212.509000;212.479000;212.487000;0 +20260201 201400;212.483000;212.548000;212.478000;212.532000;0 +20260201 201500;212.531000;212.576000;212.507000;212.507000;0 +20260201 201600;212.505000;212.522000;212.459000;212.509000;0 +20260201 201700;212.511000;212.525000;212.467000;212.467000;0 +20260201 201800;212.466000;212.496000;212.411000;212.419000;0 +20260201 201900;212.420000;212.451000;212.396000;212.403000;0 +20260201 202000;212.405000;212.535000;212.404000;212.494000;0 +20260201 202100;212.493000;212.503000;212.466000;212.473000;0 +20260201 202200;212.473000;212.490000;212.447000;212.473000;0 +20260201 202300;212.473000;212.508000;212.464000;212.473000;0 +20260201 202400;212.471000;212.514000;212.444000;212.449000;0 +20260201 202500;212.452000;212.475000;212.435000;212.449000;0 +20260201 202600;212.448000;212.456000;212.414000;212.417000;0 +20260201 202700;212.419000;212.440000;212.411000;212.421000;0 +20260201 202800;212.418000;212.471000;212.416000;212.469000;0 +20260201 202900;212.450000;212.491000;212.439000;212.465000;0 +20260201 203000;212.466000;212.474000;212.429000;212.440000;0 +20260201 203100;212.442000;212.454000;212.340000;212.354000;0 +20260201 203200;212.353000;212.385000;212.324000;212.376000;0 +20260201 203300;212.373000;212.418000;212.363000;212.400000;0 +20260201 203400;212.400000;212.445000;212.388000;212.415000;0 +20260201 203500;212.418000;212.472000;212.417000;212.430000;0 +20260201 203600;212.432000;212.474000;212.417000;212.456000;0 +20260201 203700;212.456000;212.458000;212.414000;212.423000;0 +20260201 203800;212.420000;212.434000;212.398000;212.419000;0 +20260201 203900;212.419000;212.425000;212.395000;212.420000;0 +20260201 204000;212.419000;212.424000;212.368000;212.373000;0 +20260201 204100;212.365000;212.368000;212.329000;212.349000;0 +20260201 204200;212.347000;212.401000;212.340000;212.383000;0 +20260201 204300;212.384000;212.410000;212.351000;212.403000;0 +20260201 204400;212.405000;212.413000;212.364000;212.367000;0 +20260201 204500;212.368000;212.424000;212.366000;212.416000;0 +20260201 204600;212.418000;212.420000;212.376000;212.405000;0 +20260201 204700;212.405000;212.428000;212.395000;212.409000;0 +20260201 204800;212.406000;212.407000;212.369000;212.382000;0 +20260201 204900;212.380000;212.383000;212.358000;212.363000;0 +20260201 205000;212.363000;212.377000;212.338000;212.377000;0 +20260201 205100;212.378000;212.378000;212.320000;212.354000;0 +20260201 205200;212.353000;212.378000;212.333000;212.360000;0 +20260201 205300;212.360000;212.367000;212.342000;212.359000;0 +20260201 205400;212.355000;212.376000;212.315000;212.336000;0 +20260201 205500;212.348000;212.379000;212.327000;212.334000;0 +20260201 205600;212.340000;212.340000;212.307000;212.332000;0 +20260201 205700;212.335000;212.343000;212.302000;212.342000;0 +20260201 205800;212.343000;212.355000;212.254000;212.265000;0 +20260201 205900;212.262000;212.301000;212.258000;212.293000;0 +20260201 210000;212.292000;212.333000;212.273000;212.291000;0 +20260201 210100;212.296000;212.297000;212.262000;212.280000;0 +20260201 210200;212.293000;212.331000;212.284000;212.322000;0 +20260201 210300;212.319000;212.336000;212.300000;212.325000;0 +20260201 210400;212.329000;212.352000;212.320000;212.343000;0 +20260201 210500;212.343000;212.351000;212.307000;212.346000;0 +20260201 210600;212.349000;212.364000;212.329000;212.349000;0 +20260201 210700;212.351000;212.355000;212.316000;212.342000;0 +20260201 210800;212.341000;212.341000;212.271000;212.286000;0 +20260201 210900;212.282000;212.308000;212.262000;212.270000;0 +20260201 211000;212.266000;212.270000;212.188000;212.195000;0 +20260201 211100;212.193000;212.198000;212.159000;212.198000;0 +20260201 211200;212.198000;212.232000;212.179000;212.224000;0 +20260201 211300;212.229000;212.253000;212.218000;212.253000;0 +20260201 211400;212.255000;212.295000;212.251000;212.280000;0 +20260201 211500;212.283000;212.308000;212.242000;212.242000;0 +20260201 211600;212.239000;212.276000;212.222000;212.243000;0 +20260201 211700;212.241000;212.257000;212.178000;212.201000;0 +20260201 211800;212.199000;212.229000;212.185000;212.217000;0 +20260201 211900;212.228000;212.230000;212.180000;212.201000;0 +20260201 212000;212.199000;212.267000;212.198000;212.215000;0 +20260201 212100;212.217000;212.225000;212.146000;212.150000;0 +20260201 212200;212.150000;212.154000;212.056000;212.114000;0 +20260201 212300;212.115000;212.178000;212.111000;212.127000;0 +20260201 212400;212.132000;212.145000;212.125000;212.142000;0 +20260201 212500;212.139000;212.204000;212.134000;212.187000;0 +20260201 212600;212.188000;212.204000;212.136000;212.162000;0 +20260201 212700;212.163000;212.196000;212.151000;212.193000;0 +20260201 212800;212.195000;212.239000;212.182000;212.218000;0 +20260201 212900;212.221000;212.245000;212.208000;212.209000;0 +20260201 213000;212.208000;212.258000;212.206000;212.250000;0 +20260201 213100;212.249000;212.278000;212.249000;212.265000;0 +20260201 213200;212.264000;212.301000;212.261000;212.270000;0 +20260201 213300;212.268000;212.271000;212.225000;212.226000;0 +20260201 213400;212.223000;212.240000;212.196000;212.202000;0 +20260201 213500;212.198000;212.246000;212.198000;212.240000;0 +20260201 213600;212.241000;212.246000;212.203000;212.211000;0 +20260201 213700;212.209000;212.219000;212.195000;212.208000;0 +20260201 213800;212.208000;212.213000;212.163000;212.209000;0 +20260201 213900;212.210000;212.252000;212.202000;212.252000;0 +20260201 214000;212.252000;212.299000;212.251000;212.281000;0 +20260201 214100;212.277000;212.279000;212.225000;212.232000;0 +20260201 214200;212.230000;212.292000;212.228000;212.287000;0 +20260201 214300;212.282000;212.295000;212.257000;212.277000;0 +20260201 214400;212.277000;212.277000;212.209000;212.214000;0 +20260201 214500;212.216000;212.216000;212.141000;212.161000;0 +20260201 214600;212.165000;212.209000;212.151000;212.202000;0 +20260201 214700;212.201000;212.216000;212.192000;212.207000;0 +20260201 214800;212.207000;212.207000;212.144000;212.166000;0 +20260201 214900;212.169000;212.170000;212.145000;212.145000;0 +20260201 215000;212.145000;212.180000;212.134000;212.172000;0 +20260201 215100;212.171000;212.196000;212.155000;212.185000;0 +20260201 215200;212.185000;212.203000;212.155000;212.158000;0 +20260201 215300;212.168000;212.204000;212.160000;212.189000;0 +20260201 215400;212.189000;212.226000;212.183000;212.224000;0 +20260201 215500;212.222000;212.274000;212.222000;212.259000;0 +20260201 215600;212.260000;212.260000;212.230000;212.246000;0 +20260201 215700;212.245000;212.245000;212.204000;212.225000;0 +20260201 215800;212.226000;212.270000;212.209000;212.253000;0 +20260201 215900;212.252000;212.267000;212.250000;212.266000;0 +20260201 220000;212.268000;212.306000;212.242000;212.280000;0 +20260201 220100;212.279000;212.313000;212.275000;212.278000;0 +20260201 220200;212.285000;212.299000;212.275000;212.282000;0 +20260201 220300;212.284000;212.292000;212.257000;212.283000;0 +20260201 220400;212.280000;212.289000;212.233000;212.243000;0 +20260201 220500;212.243000;212.259000;212.237000;212.259000;0 +20260201 220600;212.261000;212.280000;212.235000;212.236000;0 +20260201 220700;212.239000;212.246000;212.230000;212.243000;0 +20260201 220800;212.241000;212.246000;212.190000;212.191000;0 +20260201 220900;212.191000;212.204000;212.182000;212.197000;0 +20260201 221000;212.203000;212.219000;212.137000;212.146000;0 +20260201 221100;212.145000;212.173000;212.115000;212.164000;0 +20260201 221200;212.166000;212.211000;212.163000;212.190000;0 +20260201 221300;212.195000;212.205000;212.174000;212.186000;0 +20260201 221400;212.189000;212.189000;212.139000;212.165000;0 +20260201 221500;212.166000;212.185000;212.130000;212.153000;0 +20260201 221600;212.153000;212.160000;212.106000;212.115000;0 +20260201 221700;212.117000;212.138000;212.103000;212.132000;0 +20260201 221800;212.132000;212.143000;212.108000;212.113000;0 +20260201 221900;212.115000;212.168000;212.113000;212.166000;0 +20260201 222000;212.169000;212.182000;212.154000;212.161000;0 +20260201 222100;212.159000;212.169000;212.147000;212.163000;0 +20260201 222200;212.165000;212.171000;212.134000;212.140000;0 +20260201 222300;212.138000;212.159000;212.129000;212.139000;0 +20260201 222400;212.138000;212.194000;212.135000;212.178000;0 +20260201 222500;212.174000;212.211000;212.174000;212.211000;0 +20260201 222600;212.209000;212.213000;212.171000;212.190000;0 +20260201 222700;212.188000;212.210000;212.179000;212.185000;0 +20260201 222800;212.179000;212.185000;212.150000;212.172000;0 +20260201 222900;212.174000;212.201000;212.166000;212.192000;0 +20260201 223000;212.195000;212.210000;212.162000;212.186000;0 +20260201 223100;212.187000;212.187000;212.121000;212.148000;0 +20260201 223200;212.147000;212.183000;212.147000;212.181000;0 +20260201 223300;212.178000;212.193000;212.159000;212.175000;0 +20260201 223400;212.175000;212.193000;212.147000;212.165000;0 +20260201 223500;212.165000;212.173000;212.148000;212.154000;0 +20260201 223600;212.153000;212.153000;212.071000;212.115000;0 +20260201 223700;212.118000;212.180000;212.108000;212.162000;0 +20260201 223800;212.162000;212.199000;212.155000;212.199000;0 +20260201 223900;212.200000;212.208000;212.164000;212.178000;0 +20260201 224000;212.178000;212.203000;212.166000;212.185000;0 +20260201 224100;212.188000;212.192000;212.146000;212.147000;0 +20260201 224200;212.145000;212.162000;212.126000;212.149000;0 +20260201 224300;212.151000;212.153000;212.083000;212.096000;0 +20260201 224400;212.093000;212.110000;212.067000;212.097000;0 +20260201 224500;212.096000;212.103000;212.045000;212.074000;0 +20260201 224600;212.072000;212.072000;212.033000;212.060000;0 +20260201 224700;212.061000;212.088000;212.060000;212.081000;0 +20260201 224800;212.080000;212.083000;212.044000;212.072000;0 +20260201 224900;212.072000;212.142000;212.071000;212.127000;0 +20260201 225000;212.126000;212.129000;212.076000;212.094000;0 +20260201 225100;212.090000;212.102000;212.034000;212.041000;0 +20260201 225200;212.048000;212.057000;212.031000;212.033000;0 +20260201 225300;212.035000;212.060000;212.015000;212.047000;0 +20260201 225400;212.046000;212.068000;212.042000;212.052000;0 +20260201 225500;212.065000;212.098000;212.052000;212.098000;0 +20260201 225600;212.098000;212.104000;212.076000;212.084000;0 +20260201 225700;212.084000;212.089000;212.023000;212.042000;0 +20260201 225800;212.041000;212.089000;212.029000;212.086000;0 +20260201 225900;212.084000;212.087000;212.063000;212.068000;0 +20260201 230000;212.070000;212.072000;212.029000;212.055000;0 +20260201 230100;212.054000;212.065000;211.972000;211.976000;0 +20260201 230200;211.974000;212.016000;211.973000;212.003000;0 +20260201 230300;212.005000;212.008000;211.944000;211.973000;0 +20260201 230400;211.969000;211.990000;211.907000;211.907000;0 +20260201 230500;211.908000;211.908000;211.858000;211.872000;0 +20260201 230600;211.870000;211.899000;211.839000;211.871000;0 +20260201 230700;211.873000;211.890000;211.809000;211.814000;0 +20260201 230800;211.811000;211.900000;211.790000;211.899000;0 +20260201 230900;211.899000;211.920000;211.875000;211.898000;0 +20260201 231000;211.900000;211.906000;211.861000;211.888000;0 +20260201 231100;211.888000;211.888000;211.803000;211.808000;0 +20260201 231200;211.806000;211.811000;211.780000;211.806000;0 +20260201 231300;211.807000;211.816000;211.785000;211.802000;0 +20260201 231400;211.805000;211.821000;211.783000;211.806000;0 +20260201 231500;211.803000;211.880000;211.797000;211.850000;0 +20260201 231600;211.849000;211.883000;211.844000;211.868000;0 +20260201 231700;211.868000;211.875000;211.854000;211.869000;0 +20260201 231800;211.871000;211.882000;211.847000;211.859000;0 +20260201 231900;211.858000;211.887000;211.844000;211.883000;0 +20260201 232000;211.888000;211.890000;211.853000;211.869000;0 +20260201 232100;211.869000;211.879000;211.861000;211.871000;0 +20260201 232200;211.881000;211.929000;211.876000;211.918000;0 +20260201 232300;211.917000;211.917000;211.849000;211.861000;0 +20260201 232400;211.862000;211.900000;211.860000;211.885000;0 +20260201 232500;211.887000;211.917000;211.887000;211.907000;0 +20260201 232600;211.908000;211.925000;211.881000;211.885000;0 +20260201 232700;211.883000;211.889000;211.865000;211.874000;0 +20260201 232800;211.878000;211.882000;211.860000;211.874000;0 +20260201 232900;211.873000;211.904000;211.872000;211.878000;0 +20260201 233000;211.874000;211.883000;211.848000;211.853000;0 +20260201 233100;211.860000;211.868000;211.834000;211.840000;0 +20260201 233200;211.839000;211.855000;211.838000;211.854000;0 +20260201 233300;211.851000;211.863000;211.840000;211.855000;0 +20260201 233400;211.858000;211.890000;211.852000;211.853000;0 +20260201 233500;211.855000;211.872000;211.845000;211.870000;0 +20260201 233600;211.868000;211.881000;211.846000;211.862000;0 +20260201 233700;211.864000;211.875000;211.806000;211.807000;0 +20260201 233800;211.810000;211.827000;211.804000;211.824000;0 +20260201 233900;211.828000;211.875000;211.823000;211.868000;0 +20260201 234000;211.868000;211.931000;211.868000;211.911000;0 +20260201 234100;211.914000;211.938000;211.899000;211.914000;0 +20260201 234200;211.917000;211.917000;211.890000;211.898000;0 +20260201 234300;211.899000;211.930000;211.892000;211.921000;0 +20260201 234400;211.919000;211.924000;211.900000;211.907000;0 +20260201 234500;211.908000;211.918000;211.896000;211.902000;0 +20260201 234600;211.903000;211.923000;211.903000;211.912000;0 +20260201 234700;211.910000;211.948000;211.908000;211.925000;0 +20260201 234800;211.926000;211.936000;211.911000;211.922000;0 +20260201 234900;211.922000;211.926000;211.909000;211.921000;0 +20260201 235000;211.917000;211.918000;211.873000;211.879000;0 +20260201 235100;211.880000;211.887000;211.865000;211.873000;0 +20260201 235200;211.875000;211.929000;211.875000;211.929000;0 +20260201 235300;211.927000;211.931000;211.912000;211.921000;0 +20260201 235400;211.925000;211.942000;211.925000;211.936000;0 +20260201 235500;211.938000;211.943000;211.914000;211.929000;0 +20260201 235600;211.929000;211.956000;211.928000;211.956000;0 +20260201 235700;211.948000;211.957000;211.918000;211.918000;0 +20260201 235800;211.920000;211.928000;211.908000;211.910000;0 +20260201 235900;211.912000;211.912000;211.832000;211.852000;0 +20260202 000000;211.860000;211.897000;211.851000;211.882000;0 +20260202 000100;211.882000;211.884000;211.854000;211.866000;0 +20260202 000200;211.869000;211.874000;211.847000;211.857000;0 +20260202 000300;211.855000;211.881000;211.842000;211.877000;0 +20260202 000400;211.876000;211.933000;211.876000;211.922000;0 +20260202 000500;211.922000;211.948000;211.918000;211.918000;0 +20260202 000600;211.922000;211.942000;211.910000;211.920000;0 +20260202 000700;211.922000;211.948000;211.912000;211.913000;0 +20260202 000800;211.911000;211.913000;211.892000;211.903000;0 +20260202 000900;211.899000;211.902000;211.857000;211.863000;0 +20260202 001000;211.862000;211.869000;211.819000;211.833000;0 +20260202 001100;211.832000;211.832000;211.731000;211.758000;0 +20260202 001200;211.758000;211.781000;211.734000;211.767000;0 +20260202 001300;211.765000;211.801000;211.765000;211.796000;0 +20260202 001400;211.794000;211.829000;211.788000;211.827000;0 +20260202 001500;211.828000;211.869000;211.820000;211.827000;0 +20260202 001600;211.828000;211.829000;211.800000;211.812000;0 +20260202 001700;211.810000;211.822000;211.785000;211.787000;0 +20260202 001800;211.786000;211.811000;211.782000;211.806000;0 +20260202 001900;211.810000;211.822000;211.780000;211.787000;0 +20260202 002000;211.784000;211.818000;211.781000;211.802000;0 +20260202 002100;211.802000;211.821000;211.786000;211.821000;0 +20260202 002200;211.820000;211.822000;211.796000;211.802000;0 +20260202 002300;211.801000;211.824000;211.790000;211.808000;0 +20260202 002400;211.811000;211.816000;211.762000;211.783000;0 +20260202 002500;211.785000;211.820000;211.768000;211.819000;0 +20260202 002600;211.814000;211.846000;211.810000;211.815000;0 +20260202 002700;211.815000;211.850000;211.809000;211.811000;0 +20260202 002800;211.810000;211.820000;211.788000;211.794000;0 +20260202 002900;211.795000;211.807000;211.771000;211.792000;0 +20260202 003000;211.792000;211.808000;211.771000;211.808000;0 +20260202 003100;211.811000;211.820000;211.793000;211.798000;0 +20260202 003200;211.804000;211.858000;211.803000;211.843000;0 +20260202 003300;211.844000;211.845000;211.799000;211.814000;0 +20260202 003400;211.815000;211.837000;211.810000;211.822000;0 +20260202 003500;211.824000;211.866000;211.819000;211.851000;0 +20260202 003600;211.851000;211.851000;211.800000;211.811000;0 +20260202 003700;211.811000;211.833000;211.770000;211.782000;0 +20260202 003800;211.780000;211.780000;211.717000;211.743000;0 +20260202 003900;211.741000;211.790000;211.738000;211.784000;0 +20260202 004000;211.787000;211.787000;211.744000;211.756000;0 +20260202 004100;211.752000;211.761000;211.690000;211.711000;0 +20260202 004200;211.711000;211.715000;211.670000;211.703000;0 +20260202 004300;211.701000;211.730000;211.681000;211.708000;0 +20260202 004400;211.705000;211.710000;211.626000;211.630000;0 +20260202 004500;211.629000;211.670000;211.626000;211.639000;0 +20260202 004600;211.642000;211.643000;211.600000;211.603000;0 +20260202 004700;211.602000;211.624000;211.586000;211.619000;0 +20260202 004800;211.621000;211.649000;211.608000;211.612000;0 +20260202 004900;211.614000;211.688000;211.614000;211.668000;0 +20260202 005000;211.666000;211.703000;211.628000;211.697000;0 +20260202 005100;211.695000;211.717000;211.662000;211.696000;0 +20260202 005200;211.693000;211.722000;211.673000;211.713000;0 +20260202 005300;211.713000;211.713000;211.630000;211.650000;0 +20260202 005400;211.653000;211.714000;211.651000;211.714000;0 +20260202 005500;211.718000;211.777000;211.705000;211.750000;0 +20260202 005600;211.750000;211.778000;211.733000;211.733000;0 +20260202 005700;211.728000;211.762000;211.724000;211.754000;0 +20260202 005800;211.754000;211.776000;211.751000;211.764000;0 +20260202 005900;211.766000;211.776000;211.738000;211.765000;0 +20260202 010000;211.768000;211.768000;211.699000;211.755000;0 +20260202 010100;211.755000;211.757000;211.693000;211.744000;0 +20260202 010200;211.745000;211.804000;211.734000;211.803000;0 +20260202 010300;211.802000;211.835000;211.802000;211.815000;0 +20260202 010400;211.816000;211.878000;211.793000;211.863000;0 +20260202 010500;211.858000;211.863000;211.806000;211.816000;0 +20260202 010600;211.816000;211.816000;211.734000;211.750000;0 +20260202 010700;211.749000;211.749000;211.709000;211.729000;0 +20260202 010800;211.729000;211.760000;211.682000;211.682000;0 +20260202 010900;211.683000;211.712000;211.668000;211.672000;0 +20260202 011000;211.674000;211.682000;211.632000;211.647000;0 +20260202 011100;211.644000;211.681000;211.617000;211.657000;0 +20260202 011200;211.657000;211.677000;211.641000;211.657000;0 +20260202 011300;211.658000;211.658000;211.611000;211.624000;0 +20260202 011400;211.624000;211.649000;211.556000;211.562000;0 +20260202 011500;211.569000;211.589000;211.506000;211.587000;0 +20260202 011600;211.587000;211.631000;211.578000;211.584000;0 +20260202 011700;211.583000;211.599000;211.547000;211.551000;0 +20260202 011800;211.551000;211.581000;211.546000;211.574000;0 +20260202 011900;211.573000;211.614000;211.570000;211.602000;0 +20260202 012000;211.606000;211.655000;211.587000;211.587000;0 +20260202 012100;211.585000;211.593000;211.504000;211.504000;0 +20260202 012200;211.505000;211.594000;211.497000;211.574000;0 +20260202 012300;211.570000;211.571000;211.529000;211.549000;0 +20260202 012400;211.547000;211.597000;211.547000;211.573000;0 +20260202 012500;211.571000;211.587000;211.534000;211.558000;0 +20260202 012600;211.561000;211.596000;211.548000;211.565000;0 +20260202 012700;211.567000;211.587000;211.550000;211.582000;0 +20260202 012800;211.578000;211.632000;211.578000;211.616000;0 +20260202 012900;211.616000;211.616000;211.553000;211.568000;0 +20260202 013000;211.567000;211.622000;211.549000;211.591000;0 +20260202 013100;211.588000;211.603000;211.538000;211.539000;0 +20260202 013200;211.541000;211.547000;211.489000;211.514000;0 +20260202 013300;211.513000;211.558000;211.512000;211.519000;0 +20260202 013400;211.520000;211.543000;211.507000;211.512000;0 +20260202 013500;211.513000;211.551000;211.487000;211.489000;0 +20260202 013600;211.487000;211.487000;211.402000;211.410000;0 +20260202 013700;211.412000;211.417000;211.305000;211.322000;0 +20260202 013800;211.318000;211.345000;211.289000;211.333000;0 +20260202 013900;211.335000;211.349000;211.298000;211.314000;0 +20260202 014000;211.315000;211.348000;211.283000;211.347000;0 +20260202 014100;211.346000;211.352000;211.293000;211.308000;0 +20260202 014200;211.307000;211.404000;211.302000;211.378000;0 +20260202 014300;211.376000;211.419000;211.369000;211.407000;0 +20260202 014400;211.401000;211.432000;211.359000;211.388000;0 +20260202 014500;211.385000;211.398000;211.355000;211.358000;0 +20260202 014600;211.358000;211.383000;211.313000;211.375000;0 +20260202 014700;211.376000;211.391000;211.349000;211.385000;0 +20260202 014800;211.387000;211.393000;211.344000;211.375000;0 +20260202 014900;211.376000;211.401000;211.362000;211.394000;0 +20260202 015000;211.394000;211.406000;211.360000;211.365000;0 +20260202 015100;211.362000;211.399000;211.352000;211.399000;0 +20260202 015200;211.395000;211.404000;211.360000;211.380000;0 +20260202 015300;211.383000;211.413000;211.369000;211.379000;0 +20260202 015400;211.382000;211.397000;211.369000;211.390000;0 +20260202 015500;211.389000;211.411000;211.363000;211.369000;0 +20260202 015600;211.367000;211.388000;211.325000;211.331000;0 +20260202 015700;211.328000;211.381000;211.324000;211.377000;0 +20260202 015800;211.377000;211.416000;211.377000;211.392000;0 +20260202 015900;211.393000;211.448000;211.389000;211.409000;0 +20260202 020000;211.415000;211.485000;211.391000;211.467000;0 +20260202 020100;211.471000;211.577000;211.470000;211.576000;0 +20260202 020200;211.579000;211.611000;211.534000;211.548000;0 +20260202 020300;211.546000;211.599000;211.533000;211.588000;0 +20260202 020400;211.583000;211.639000;211.579000;211.614000;0 +20260202 020500;211.614000;211.655000;211.607000;211.618000;0 +20260202 020600;211.616000;211.665000;211.613000;211.657000;0 +20260202 020700;211.655000;211.706000;211.638000;211.701000;0 +20260202 020800;211.703000;211.726000;211.683000;211.726000;0 +20260202 020900;211.725000;211.752000;211.712000;211.739000;0 +20260202 021000;211.740000;211.806000;211.729000;211.770000;0 +20260202 021100;211.770000;211.774000;211.700000;211.727000;0 +20260202 021200;211.722000;211.780000;211.716000;211.744000;0 +20260202 021300;211.739000;211.812000;211.734000;211.812000;0 +20260202 021400;211.815000;211.826000;211.791000;211.820000;0 +20260202 021500;211.818000;211.822000;211.793000;211.807000;0 +20260202 021600;211.808000;211.814000;211.739000;211.743000;0 +20260202 021700;211.745000;211.760000;211.720000;211.745000;0 +20260202 021800;211.747000;211.770000;211.729000;211.754000;0 +20260202 021900;211.754000;211.771000;211.728000;211.765000;0 +20260202 022000;211.761000;211.798000;211.759000;211.786000;0 +20260202 022100;211.783000;211.807000;211.760000;211.799000;0 +20260202 022200;211.800000;211.808000;211.764000;211.779000;0 +20260202 022300;211.781000;211.796000;211.729000;211.747000;0 +20260202 022400;211.749000;211.784000;211.737000;211.782000;0 +20260202 022500;211.785000;211.800000;211.758000;211.797000;0 +20260202 022600;211.796000;211.825000;211.719000;211.781000;0 +20260202 022700;211.779000;211.779000;211.738000;211.768000;0 +20260202 022800;211.767000;211.795000;211.756000;211.794000;0 +20260202 022900;211.794000;211.798000;211.761000;211.765000;0 +20260202 023000;211.766000;211.786000;211.742000;211.768000;0 +20260202 023100;211.768000;211.794000;211.731000;211.738000;0 +20260202 023200;211.736000;211.747000;211.636000;211.650000;0 +20260202 023300;211.646000;211.673000;211.595000;211.616000;0 +20260202 023400;211.614000;211.662000;211.614000;211.660000;0 +20260202 023500;211.659000;211.678000;211.641000;211.669000;0 +20260202 023600;211.670000;211.674000;211.625000;211.625000;0 +20260202 023700;211.626000;211.689000;211.618000;211.684000;0 +20260202 023800;211.684000;211.741000;211.678000;211.739000;0 +20260202 023900;211.741000;211.769000;211.714000;211.747000;0 +20260202 024000;211.750000;211.773000;211.725000;211.771000;0 +20260202 024100;211.768000;211.777000;211.740000;211.769000;0 +20260202 024200;211.771000;211.802000;211.733000;211.789000;0 +20260202 024300;211.792000;211.803000;211.756000;211.761000;0 +20260202 024400;211.757000;211.803000;211.754000;211.799000;0 +20260202 024500;211.805000;211.876000;211.800000;211.874000;0 +20260202 024600;211.875000;211.883000;211.837000;211.861000;0 +20260202 024700;211.858000;211.869000;211.818000;211.824000;0 +20260202 024800;211.820000;211.836000;211.793000;211.812000;0 +20260202 024900;211.810000;211.819000;211.789000;211.790000;0 +20260202 025000;211.789000;211.802000;211.764000;211.764000;0 +20260202 025100;211.762000;211.833000;211.757000;211.822000;0 +20260202 025200;211.823000;211.845000;211.818000;211.840000;0 +20260202 025300;211.842000;211.851000;211.826000;211.848000;0 +20260202 025400;211.849000;211.907000;211.844000;211.905000;0 +20260202 025500;211.908000;211.937000;211.889000;211.897000;0 +20260202 025600;211.896000;211.911000;211.875000;211.902000;0 +20260202 025700;211.902000;211.925000;211.870000;211.916000;0 +20260202 025800;211.915000;211.962000;211.915000;211.931000;0 +20260202 025900;211.933000;211.942000;211.892000;211.902000;0 +20260202 030000;211.900000;211.974000;211.876000;211.923000;0 +20260202 030100;211.923000;211.974000;211.908000;211.974000;0 +20260202 030200;211.972000;212.019000;211.912000;211.992000;0 +20260202 030300;211.989000;211.999000;211.968000;211.987000;0 +20260202 030400;211.993000;212.028000;211.971000;212.022000;0 +20260202 030500;212.020000;212.023000;211.972000;211.972000;0 +20260202 030600;211.973000;211.975000;211.903000;211.951000;0 +20260202 030700;211.951000;211.969000;211.876000;211.876000;0 +20260202 030800;211.874000;211.882000;211.835000;211.866000;0 +20260202 030900;211.866000;211.883000;211.818000;211.874000;0 +20260202 031000;211.875000;211.923000;211.862000;211.877000;0 +20260202 031100;211.875000;211.887000;211.841000;211.842000;0 +20260202 031200;211.840000;211.932000;211.840000;211.932000;0 +20260202 031300;211.930000;211.956000;211.912000;211.944000;0 +20260202 031400;211.949000;211.959000;211.923000;211.957000;0 +20260202 031500;211.965000;211.994000;211.947000;211.979000;0 +20260202 031600;211.982000;212.022000;211.980000;212.009000;0 +20260202 031700;212.009000;212.038000;211.962000;212.027000;0 +20260202 031800;212.030000;212.080000;212.020000;212.069000;0 +20260202 031900;212.071000;212.114000;212.064000;212.109000;0 +20260202 032000;212.110000;212.131000;212.097000;212.102000;0 +20260202 032100;212.099000;212.153000;212.080000;212.148000;0 +20260202 032200;212.147000;212.175000;212.133000;212.167000;0 +20260202 032300;212.178000;212.209000;212.109000;212.123000;0 +20260202 032400;212.123000;212.186000;212.123000;212.178000;0 +20260202 032500;212.179000;212.218000;212.161000;212.217000;0 +20260202 032600;212.217000;212.264000;212.210000;212.224000;0 +20260202 032700;212.224000;212.248000;212.192000;212.235000;0 +20260202 032800;212.235000;212.240000;212.168000;212.211000;0 +20260202 032900;212.216000;212.221000;212.171000;212.189000;0 +20260202 033000;212.188000;212.249000;212.188000;212.235000;0 +20260202 033100;212.238000;212.249000;212.175000;212.175000;0 +20260202 033200;212.177000;212.225000;212.169000;212.216000;0 +20260202 033300;212.217000;212.239000;212.186000;212.207000;0 +20260202 033400;212.216000;212.228000;212.199000;212.222000;0 +20260202 033500;212.225000;212.240000;212.211000;212.231000;0 +20260202 033600;212.232000;212.236000;212.165000;212.172000;0 +20260202 033700;212.167000;212.178000;212.150000;212.170000;0 +20260202 033800;212.172000;212.181000;212.098000;212.109000;0 +20260202 033900;212.107000;212.144000;212.103000;212.136000;0 +20260202 034000;212.138000;212.160000;212.132000;212.145000;0 +20260202 034100;212.145000;212.175000;212.131000;212.170000;0 +20260202 034200;212.167000;212.199000;212.154000;212.177000;0 +20260202 034300;212.181000;212.212000;212.174000;212.212000;0 +20260202 034400;212.214000;212.224000;212.186000;212.222000;0 +20260202 034500;212.220000;212.223000;212.203000;212.220000;0 +20260202 034600;212.218000;212.221000;212.179000;212.183000;0 +20260202 034700;212.182000;212.211000;212.159000;212.208000;0 +20260202 034800;212.208000;212.219000;212.138000;212.139000;0 +20260202 034900;212.141000;212.144000;212.109000;212.113000;0 +20260202 035000;212.110000;212.121000;212.093000;212.118000;0 +20260202 035100;212.114000;212.126000;212.099000;212.107000;0 +20260202 035200;212.110000;212.162000;212.098000;212.153000;0 +20260202 035300;212.151000;212.191000;212.148000;212.150000;0 +20260202 035400;212.148000;212.155000;212.123000;212.123000;0 +20260202 035500;212.125000;212.185000;212.112000;212.159000;0 +20260202 035600;212.162000;212.190000;212.147000;212.157000;0 +20260202 035700;212.157000;212.183000;212.147000;212.171000;0 +20260202 035800;212.170000;212.198000;212.164000;212.192000;0 +20260202 035900;212.193000;212.208000;212.167000;212.183000;0 +20260202 040000;212.180000;212.210000;212.147000;212.148000;0 +20260202 040100;212.147000;212.155000;212.102000;212.108000;0 +20260202 040200;212.106000;212.114000;212.031000;212.031000;0 +20260202 040300;212.030000;212.033000;211.978000;212.017000;0 +20260202 040400;212.016000;212.016000;211.970000;212.005000;0 +20260202 040500;212.005000;212.061000;211.998000;212.031000;0 +20260202 040600;212.031000;212.041000;212.011000;212.011000;0 +20260202 040700;212.004000;212.015000;211.989000;212.007000;0 +20260202 040800;212.010000;212.041000;212.010000;212.030000;0 +20260202 040900;212.031000;212.060000;212.013000;212.060000;0 +20260202 041000;212.070000;212.121000;212.067000;212.107000;0 +20260202 041100;212.114000;212.176000;212.109000;212.133000;0 +20260202 041200;212.134000;212.137000;212.064000;212.084000;0 +20260202 041300;212.079000;212.094000;212.022000;212.022000;0 +20260202 041400;212.026000;212.042000;212.013000;212.041000;0 +20260202 041500;212.037000;212.050000;212.025000;212.049000;0 +20260202 041600;212.050000;212.079000;212.025000;212.061000;0 +20260202 041700;212.062000;212.075000;212.034000;212.072000;0 +20260202 041800;212.071000;212.094000;212.056000;212.094000;0 +20260202 041900;212.096000;212.121000;212.068000;212.119000;0 +20260202 042000;212.121000;212.139000;212.097000;212.097000;0 +20260202 042100;212.099000;212.114000;212.070000;212.077000;0 +20260202 042200;212.078000;212.126000;212.076000;212.114000;0 +20260202 042300;212.113000;212.118000;212.078000;212.096000;0 +20260202 042400;212.098000;212.149000;212.086000;212.145000;0 +20260202 042500;212.146000;212.154000;212.111000;212.136000;0 +20260202 042600;212.136000;212.151000;212.123000;212.148000;0 +20260202 042700;212.144000;212.152000;212.106000;212.126000;0 +20260202 042800;212.127000;212.148000;212.115000;212.139000;0 +20260202 042900;212.141000;212.146000;212.102000;212.116000;0 +20260202 043000;212.115000;212.135000;212.098000;212.129000;0 +20260202 043100;212.126000;212.162000;212.122000;212.160000;0 +20260202 043200;212.159000;212.165000;212.144000;212.151000;0 +20260202 043300;212.150000;212.169000;212.145000;212.167000;0 +20260202 043400;212.164000;212.164000;212.087000;212.104000;0 +20260202 043500;212.102000;212.113000;212.086000;212.106000;0 +20260202 043600;212.107000;212.119000;212.065000;212.092000;0 +20260202 043700;212.099000;212.136000;212.095000;212.130000;0 +20260202 043800;212.131000;212.143000;212.106000;212.141000;0 +20260202 043900;212.141000;212.162000;212.132000;212.146000;0 +20260202 044000;212.149000;212.160000;212.118000;212.124000;0 +20260202 044100;212.121000;212.152000;212.120000;212.151000;0 +20260202 044200;212.150000;212.176000;212.137000;212.173000;0 +20260202 044300;212.171000;212.179000;212.139000;212.164000;0 +20260202 044400;212.167000;212.186000;212.155000;212.163000;0 +20260202 044500;212.161000;212.187000;212.142000;212.165000;0 +20260202 044600;212.166000;212.189000;212.151000;212.189000;0 +20260202 044700;212.190000;212.241000;212.190000;212.241000;0 +20260202 044800;212.242000;212.243000;212.195000;212.195000;0 +20260202 044900;212.193000;212.215000;212.146000;212.178000;0 +20260202 045000;212.188000;212.202000;212.169000;212.183000;0 +20260202 045100;212.181000;212.187000;212.147000;212.169000;0 +20260202 045200;212.169000;212.194000;212.163000;212.176000;0 +20260202 045300;212.176000;212.188000;212.158000;212.164000;0 +20260202 045400;212.161000;212.201000;212.154000;212.161000;0 +20260202 045500;212.161000;212.209000;212.159000;212.185000;0 +20260202 045600;212.188000;212.192000;212.120000;212.170000;0 +20260202 045700;212.170000;212.198000;212.138000;212.191000;0 +20260202 045800;212.191000;212.211000;212.151000;212.174000;0 +20260202 045900;212.170000;212.197000;212.169000;212.176000;0 +20260202 050000;212.178000;212.196000;212.144000;212.179000;0 +20260202 050100;212.180000;212.214000;212.175000;212.208000;0 +20260202 050200;212.202000;212.208000;212.169000;212.194000;0 +20260202 050300;212.196000;212.201000;212.177000;212.192000;0 +20260202 050400;212.191000;212.201000;212.152000;212.152000;0 +20260202 050500;212.153000;212.173000;212.152000;212.158000;0 +20260202 050600;212.155000;212.192000;212.148000;212.185000;0 +20260202 050700;212.187000;212.210000;212.180000;212.204000;0 +20260202 050800;212.204000;212.205000;212.169000;212.190000;0 +20260202 050900;212.193000;212.212000;212.184000;212.198000;0 +20260202 051000;212.199000;212.232000;212.198000;212.231000;0 +20260202 051100;212.232000;212.252000;212.206000;212.252000;0 +20260202 051200;212.247000;212.272000;212.232000;212.232000;0 +20260202 051300;212.234000;212.250000;212.227000;212.249000;0 +20260202 051400;212.249000;212.273000;212.219000;212.222000;0 +20260202 051500;212.219000;212.284000;212.215000;212.269000;0 +20260202 051600;212.271000;212.274000;212.236000;212.262000;0 +20260202 051700;212.258000;212.271000;212.244000;212.253000;0 +20260202 051800;212.250000;212.297000;212.237000;212.290000;0 +20260202 051900;212.290000;212.335000;212.290000;212.324000;0 +20260202 052000;212.327000;212.328000;212.295000;212.305000;0 +20260202 052100;212.308000;212.308000;212.276000;212.295000;0 +20260202 052200;212.298000;212.307000;212.262000;212.282000;0 +20260202 052300;212.284000;212.310000;212.273000;212.304000;0 +20260202 052400;212.304000;212.307000;212.269000;212.291000;0 +20260202 052500;212.292000;212.303000;212.267000;212.277000;0 +20260202 052600;212.277000;212.292000;212.257000;212.281000;0 +20260202 052700;212.282000;212.287000;212.252000;212.274000;0 +20260202 052800;212.270000;212.280000;212.230000;212.264000;0 +20260202 052900;212.265000;212.334000;212.255000;212.330000;0 +20260202 053000;212.332000;212.332000;212.298000;212.311000;0 +20260202 053100;212.311000;212.342000;212.311000;212.328000;0 +20260202 053200;212.330000;212.339000;212.280000;212.282000;0 +20260202 053300;212.281000;212.290000;212.243000;212.249000;0 +20260202 053400;212.248000;212.250000;212.214000;212.225000;0 +20260202 053500;212.224000;212.224000;212.162000;212.168000;0 +20260202 053600;212.171000;212.205000;212.169000;212.184000;0 +20260202 053700;212.187000;212.191000;212.123000;212.136000;0 +20260202 053800;212.137000;212.181000;212.137000;212.177000;0 +20260202 053900;212.179000;212.181000;212.152000;212.161000;0 +20260202 054000;212.162000;212.183000;212.152000;212.174000;0 +20260202 054100;212.173000;212.173000;212.131000;212.148000;0 +20260202 054200;212.147000;212.147000;212.112000;212.136000;0 +20260202 054300;212.134000;212.156000;212.098000;212.103000;0 +20260202 054400;212.103000;212.107000;212.084000;212.089000;0 +20260202 054500;212.088000;212.107000;212.071000;212.095000;0 +20260202 054600;212.092000;212.102000;212.063000;212.068000;0 +20260202 054700;212.068000;212.077000;212.046000;212.064000;0 +20260202 054800;212.065000;212.092000;212.051000;212.079000;0 +20260202 054900;212.081000;212.093000;212.066000;212.076000;0 +20260202 055000;212.075000;212.093000;212.035000;212.045000;0 +20260202 055100;212.047000;212.064000;212.031000;212.039000;0 +20260202 055200;212.035000;212.069000;212.033000;212.063000;0 +20260202 055300;212.058000;212.143000;212.044000;212.132000;0 +20260202 055400;212.131000;212.132000;212.095000;212.098000;0 +20260202 055500;212.095000;212.134000;212.095000;212.114000;0 +20260202 055600;212.114000;212.134000;212.101000;212.122000;0 +20260202 055700;212.121000;212.122000;212.055000;212.067000;0 +20260202 055800;212.065000;212.072000;212.029000;212.035000;0 +20260202 055900;212.040000;212.063000;212.039000;212.045000;0 +20260202 060000;212.047000;212.070000;212.014000;212.062000;0 +20260202 060100;212.061000;212.066000;212.036000;212.043000;0 +20260202 060200;212.043000;212.046000;212.010000;212.025000;0 +20260202 060300;212.024000;212.042000;212.016000;212.036000;0 +20260202 060400;212.036000;212.037000;211.992000;212.025000;0 +20260202 060500;212.024000;212.032000;212.006000;212.027000;0 +20260202 060600;212.026000;212.033000;211.986000;212.003000;0 +20260202 060700;212.002000;212.037000;211.993000;212.019000;0 +20260202 060800;212.022000;212.046000;212.018000;212.046000;0 +20260202 060900;212.047000;212.058000;212.023000;212.029000;0 +20260202 061000;212.031000;212.045000;212.020000;212.021000;0 +20260202 061100;212.020000;212.024000;212.003000;212.022000;0 +20260202 061200;212.019000;212.032000;212.009000;212.030000;0 +20260202 061300;212.032000;212.056000;212.024000;212.053000;0 +20260202 061400;212.053000;212.075000;212.045000;212.071000;0 +20260202 061500;212.071000;212.071000;212.030000;212.031000;0 +20260202 061600;212.032000;212.092000;212.032000;212.091000;0 +20260202 061700;212.092000;212.097000;212.062000;212.075000;0 +20260202 061800;212.076000;212.079000;212.047000;212.063000;0 +20260202 061900;212.064000;212.078000;212.060000;212.070000;0 +20260202 062000;212.070000;212.078000;212.057000;212.066000;0 +20260202 062100;212.068000;212.097000;212.068000;212.093000;0 +20260202 062200;212.092000;212.104000;212.079000;212.104000;0 +20260202 062300;212.099000;212.119000;212.088000;212.097000;0 +20260202 062400;212.099000;212.117000;212.096000;212.114000;0 +20260202 062500;212.111000;212.115000;212.088000;212.100000;0 +20260202 062600;212.097000;212.126000;212.096000;212.109000;0 +20260202 062700;212.108000;212.177000;212.108000;212.168000;0 +20260202 062800;212.166000;212.175000;212.161000;212.175000;0 +20260202 062900;212.176000;212.187000;212.160000;212.176000;0 +20260202 063000;212.175000;212.184000;212.141000;212.155000;0 +20260202 063100;212.155000;212.167000;212.145000;212.151000;0 +20260202 063200;212.152000;212.155000;212.135000;212.149000;0 +20260202 063300;212.141000;212.147000;212.099000;212.109000;0 +20260202 063400;212.109000;212.135000;212.107000;212.135000;0 +20260202 063500;212.136000;212.143000;212.116000;212.125000;0 +20260202 063600;212.127000;212.166000;212.125000;212.160000;0 +20260202 063700;212.160000;212.217000;212.155000;212.199000;0 +20260202 063800;212.199000;212.199000;212.171000;212.190000;0 +20260202 063900;212.185000;212.202000;212.151000;212.159000;0 +20260202 064000;212.156000;212.171000;212.138000;212.157000;0 +20260202 064100;212.158000;212.171000;212.147000;212.169000;0 +20260202 064200;212.170000;212.178000;212.151000;212.173000;0 +20260202 064300;212.172000;212.172000;212.139000;212.154000;0 +20260202 064400;212.157000;212.179000;212.140000;212.140000;0 +20260202 064500;212.141000;212.144000;212.103000;212.109000;0 +20260202 064600;212.105000;212.105000;212.072000;212.090000;0 +20260202 064700;212.097000;212.108000;212.067000;212.082000;0 +20260202 064800;212.083000;212.111000;212.082000;212.100000;0 +20260202 064900;212.102000;212.126000;212.096000;212.101000;0 +20260202 065000;212.105000;212.116000;212.087000;212.092000;0 +20260202 065100;212.091000;212.106000;212.075000;212.080000;0 +20260202 065200;212.081000;212.104000;212.071000;212.071000;0 +20260202 065300;212.072000;212.077000;212.048000;212.064000;0 +20260202 065400;212.064000;212.069000;212.045000;212.046000;0 +20260202 065500;212.045000;212.056000;212.012000;212.025000;0 +20260202 065600;212.032000;212.032000;212.004000;212.010000;0 +20260202 065700;212.007000;212.040000;212.004000;212.024000;0 +20260202 065800;212.023000;212.049000;212.021000;212.041000;0 +20260202 065900;212.041000;212.053000;212.010000;212.011000;0 +20260202 070000;212.012000;212.038000;211.997000;212.033000;0 +20260202 070100;212.042000;212.086000;212.034000;212.042000;0 +20260202 070200;212.043000;212.083000;212.031000;212.042000;0 +20260202 070300;212.043000;212.060000;212.035000;212.054000;0 +20260202 070400;212.052000;212.097000;212.050000;212.066000;0 +20260202 070500;212.061000;212.091000;212.013000;212.023000;0 +20260202 070600;212.021000;212.076000;212.021000;212.070000;0 +20260202 070700;212.067000;212.092000;212.059000;212.092000;0 +20260202 070800;212.096000;212.104000;212.081000;212.083000;0 +20260202 070900;212.082000;212.093000;212.077000;212.090000;0 +20260202 071000;212.089000;212.120000;212.081000;212.117000;0 +20260202 071100;212.118000;212.137000;212.076000;212.076000;0 +20260202 071200;212.076000;212.081000;212.047000;212.050000;0 +20260202 071300;212.051000;212.111000;212.030000;212.111000;0 +20260202 071400;212.112000;212.158000;212.112000;212.152000;0 +20260202 071500;212.153000;212.162000;212.134000;212.162000;0 +20260202 071600;212.160000;212.160000;212.122000;212.146000;0 +20260202 071700;212.147000;212.154000;212.126000;212.134000;0 +20260202 071800;212.135000;212.181000;212.123000;212.151000;0 +20260202 071900;212.155000;212.168000;212.127000;212.167000;0 +20260202 072000;212.169000;212.174000;212.118000;212.146000;0 +20260202 072100;212.148000;212.175000;212.144000;212.150000;0 +20260202 072200;212.149000;212.159000;212.125000;212.130000;0 +20260202 072300;212.136000;212.147000;212.119000;212.123000;0 +20260202 072400;212.123000;212.123000;212.087000;212.090000;0 +20260202 072500;212.091000;212.096000;212.065000;212.069000;0 +20260202 072600;212.074000;212.115000;212.066000;212.115000;0 +20260202 072700;212.116000;212.152000;212.114000;212.148000;0 +20260202 072800;212.147000;212.149000;212.115000;212.116000;0 +20260202 072900;212.115000;212.133000;212.105000;212.110000;0 +20260202 073000;212.111000;212.134000;212.105000;212.128000;0 +20260202 073100;212.126000;212.154000;212.126000;212.151000;0 +20260202 073200;212.153000;212.156000;212.147000;212.153000;0 +20260202 073300;212.152000;212.157000;212.139000;212.147000;0 +20260202 073400;212.147000;212.177000;212.142000;212.173000;0 +20260202 073500;212.175000;212.183000;212.162000;212.168000;0 +20260202 073600;212.164000;212.177000;212.156000;212.161000;0 +20260202 073700;212.161000;212.176000;212.156000;212.160000;0 +20260202 073800;212.165000;212.174000;212.138000;212.171000;0 +20260202 073900;212.172000;212.180000;212.151000;212.156000;0 +20260202 074000;212.158000;212.180000;212.155000;212.164000;0 +20260202 074100;212.161000;212.162000;212.126000;212.131000;0 +20260202 074200;212.125000;212.130000;212.077000;212.091000;0 +20260202 074300;212.093000;212.110000;212.086000;212.108000;0 +20260202 074400;212.109000;212.121000;212.099000;212.120000;0 +20260202 074500;212.121000;212.130000;212.101000;212.103000;0 +20260202 074600;212.099000;212.154000;212.099000;212.152000;0 +20260202 074700;212.154000;212.157000;212.128000;212.134000;0 +20260202 074800;212.135000;212.141000;212.118000;212.132000;0 +20260202 074900;212.139000;212.139000;212.098000;212.115000;0 +20260202 075000;212.115000;212.123000;212.095000;212.104000;0 +20260202 075100;212.105000;212.134000;212.100000;212.119000;0 +20260202 075200;212.119000;212.126000;212.093000;212.105000;0 +20260202 075300;212.104000;212.144000;212.104000;212.137000;0 +20260202 075400;212.137000;212.140000;212.110000;212.126000;0 +20260202 075500;212.126000;212.153000;212.113000;212.113000;0 +20260202 075600;212.115000;212.136000;212.109000;212.123000;0 +20260202 075700;212.123000;212.148000;212.092000;212.106000;0 +20260202 075800;212.103000;212.119000;212.090000;212.110000;0 +20260202 075900;212.108000;212.114000;212.078000;212.078000;0 +20260202 080000;212.078000;212.080000;212.038000;212.042000;0 +20260202 080100;212.039000;212.054000;212.005000;212.008000;0 +20260202 080200;212.008000;212.030000;211.994000;212.015000;0 +20260202 080300;212.015000;212.022000;211.966000;211.973000;0 +20260202 080400;211.974000;212.019000;211.964000;212.002000;0 +20260202 080500;212.003000;212.003000;211.948000;211.960000;0 +20260202 080600;211.959000;211.973000;211.918000;211.931000;0 +20260202 080700;211.926000;212.014000;211.923000;212.014000;0 +20260202 080800;212.021000;212.033000;211.995000;212.031000;0 +20260202 080900;212.033000;212.050000;212.019000;212.043000;0 +20260202 081000;212.043000;212.069000;212.018000;212.030000;0 +20260202 081100;212.033000;212.067000;212.031000;212.054000;0 +20260202 081200;212.053000;212.067000;212.015000;212.017000;0 +20260202 081300;212.017000;212.080000;212.014000;212.070000;0 +20260202 081400;212.072000;212.090000;212.041000;212.081000;0 +20260202 081500;212.084000;212.086000;212.036000;212.057000;0 +20260202 081600;212.060000;212.060000;211.988000;212.012000;0 +20260202 081700;212.013000;212.024000;212.002000;212.010000;0 +20260202 081800;212.012000;212.024000;211.994000;212.008000;0 +20260202 081900;212.009000;212.029000;211.988000;211.998000;0 +20260202 082000;211.994000;212.039000;211.986000;212.037000;0 +20260202 082100;212.036000;212.056000;212.025000;212.043000;0 +20260202 082200;212.041000;212.042000;212.017000;212.021000;0 +20260202 082300;212.023000;212.032000;212.003000;212.008000;0 +20260202 082400;212.008000;212.012000;211.982000;212.005000;0 +20260202 082500;212.009000;212.022000;211.984000;212.005000;0 +20260202 082600;212.005000;212.016000;211.990000;211.990000;0 +20260202 082700;211.990000;212.004000;211.974000;211.975000;0 +20260202 082800;211.977000;212.067000;211.977000;212.056000;0 +20260202 082900;212.058000;212.102000;212.054000;212.093000;0 +20260202 083000;212.092000;212.102000;212.056000;212.060000;0 +20260202 083100;212.062000;212.105000;212.060000;212.076000;0 +20260202 083200;212.075000;212.095000;212.050000;212.053000;0 +20260202 083300;212.055000;212.070000;212.040000;212.070000;0 +20260202 083400;212.068000;212.068000;212.039000;212.050000;0 +20260202 083500;212.052000;212.056000;212.001000;212.053000;0 +20260202 083600;212.053000;212.071000;212.045000;212.055000;0 +20260202 083700;212.053000;212.074000;212.014000;212.033000;0 +20260202 083800;212.030000;212.059000;212.024000;212.044000;0 +20260202 083900;212.047000;212.055000;212.018000;212.045000;0 +20260202 084000;212.045000;212.054000;212.040000;212.048000;0 +20260202 084100;212.047000;212.063000;212.043000;212.051000;0 +20260202 084200;212.052000;212.055000;212.011000;212.016000;0 +20260202 084300;212.016000;212.084000;212.016000;212.073000;0 +20260202 084400;212.064000;212.088000;212.052000;212.063000;0 +20260202 084500;212.060000;212.080000;212.038000;212.038000;0 +20260202 084600;212.041000;212.050000;212.004000;212.021000;0 +20260202 084700;212.021000;212.034000;212.012000;212.018000;0 +20260202 084800;212.022000;212.047000;212.013000;212.043000;0 +20260202 084900;212.043000;212.055000;212.022000;212.036000;0 +20260202 085000;212.035000;212.035000;212.003000;212.019000;0 +20260202 085100;212.011000;212.038000;212.002000;212.016000;0 +20260202 085200;212.012000;212.015000;211.975000;211.990000;0 +20260202 085300;211.992000;212.013000;211.987000;212.011000;0 +20260202 085400;212.011000;212.034000;211.970000;211.977000;0 +20260202 085500;211.977000;211.988000;211.960000;211.968000;0 +20260202 085600;211.968000;211.985000;211.959000;211.976000;0 +20260202 085700;211.974000;211.990000;211.929000;211.931000;0 +20260202 085800;211.929000;211.945000;211.903000;211.921000;0 +20260202 085900;211.919000;211.934000;211.898000;211.902000;0 +20260202 090000;211.899000;211.941000;211.896000;211.934000;0 +20260202 090100;211.930000;211.941000;211.900000;211.922000;0 +20260202 090200;211.925000;211.968000;211.908000;211.928000;0 +20260202 090300;211.928000;211.934000;211.910000;211.926000;0 +20260202 090400;211.927000;211.955000;211.884000;211.888000;0 +20260202 090500;211.890000;211.900000;211.876000;211.897000;0 +20260202 090600;211.896000;211.906000;211.831000;211.834000;0 +20260202 090700;211.836000;211.863000;211.808000;211.842000;0 +20260202 090800;211.842000;211.898000;211.842000;211.876000;0 +20260202 090900;211.877000;211.894000;211.807000;211.819000;0 +20260202 091000;211.819000;211.838000;211.812000;211.821000;0 +20260202 091100;211.823000;211.845000;211.801000;211.803000;0 +20260202 091200;211.798000;211.853000;211.798000;211.840000;0 +20260202 091300;211.838000;211.850000;211.828000;211.839000;0 +20260202 091400;211.838000;211.882000;211.832000;211.854000;0 +20260202 091500;211.853000;211.881000;211.851000;211.859000;0 +20260202 091600;211.865000;211.869000;211.843000;211.843000;0 +20260202 091700;211.844000;211.851000;211.817000;211.817000;0 +20260202 091800;211.814000;211.837000;211.811000;211.827000;0 +20260202 091900;211.820000;211.822000;211.790000;211.804000;0 +20260202 092000;211.802000;211.828000;211.792000;211.805000;0 +20260202 092100;211.805000;211.861000;211.802000;211.844000;0 +20260202 092200;211.844000;211.849000;211.821000;211.838000;0 +20260202 092300;211.841000;211.849000;211.826000;211.842000;0 +20260202 092400;211.842000;211.860000;211.835000;211.836000;0 +20260202 092500;211.836000;211.893000;211.834000;211.888000;0 +20260202 092600;211.886000;211.894000;211.833000;211.846000;0 +20260202 092700;211.848000;211.893000;211.847000;211.886000;0 +20260202 092800;211.888000;211.903000;211.865000;211.872000;0 +20260202 092900;211.868000;211.877000;211.847000;211.853000;0 +20260202 093000;211.851000;211.928000;211.824000;211.914000;0 +20260202 093100;211.914000;211.945000;211.899000;211.935000;0 +20260202 093200;211.935000;211.996000;211.929000;211.958000;0 +20260202 093300;211.959000;212.015000;211.957000;212.014000;0 +20260202 093400;212.012000;212.056000;212.006000;212.016000;0 +20260202 093500;212.018000;212.103000;212.008000;212.092000;0 +20260202 093600;212.094000;212.119000;212.061000;212.096000;0 +20260202 093700;212.096000;212.142000;212.082000;212.120000;0 +20260202 093800;212.123000;212.130000;212.080000;212.127000;0 +20260202 093900;212.130000;212.144000;212.092000;212.123000;0 +20260202 094000;212.126000;212.126000;212.081000;212.083000;0 +20260202 094100;212.083000;212.106000;212.059000;212.101000;0 +20260202 094200;212.100000;212.107000;212.068000;212.088000;0 +20260202 094300;212.091000;212.104000;212.074000;212.083000;0 +20260202 094400;212.083000;212.088000;212.065000;212.078000;0 +20260202 094500;212.078000;212.121000;212.069000;212.108000;0 +20260202 094600;212.107000;212.159000;212.101000;212.143000;0 +20260202 094700;212.142000;212.198000;212.141000;212.190000;0 +20260202 094800;212.193000;212.276000;212.190000;212.252000;0 +20260202 094900;212.247000;212.283000;212.238000;212.254000;0 +20260202 095000;212.256000;212.284000;212.243000;212.278000;0 +20260202 095100;212.271000;212.303000;212.252000;212.273000;0 +20260202 095200;212.265000;212.355000;212.261000;212.346000;0 +20260202 095300;212.348000;212.394000;212.340000;212.377000;0 +20260202 095400;212.376000;212.376000;212.270000;212.280000;0 +20260202 095500;212.280000;212.296000;212.217000;212.246000;0 +20260202 095600;212.246000;212.331000;212.217000;212.324000;0 +20260202 095700;212.326000;212.330000;212.265000;212.278000;0 +20260202 095800;212.279000;212.292000;212.233000;212.233000;0 +20260202 095900;212.235000;212.259000;212.220000;212.253000;0 +20260202 100000;212.250000;212.339000;212.210000;212.249000;0 +20260202 100100;212.250000;212.306000;212.249000;212.272000;0 +20260202 100200;212.276000;212.293000;212.194000;212.194000;0 +20260202 100300;212.195000;212.290000;212.195000;212.278000;0 +20260202 100400;212.280000;212.349000;212.215000;212.250000;0 +20260202 100500;212.251000;212.312000;212.248000;212.275000;0 +20260202 100600;212.274000;212.323000;212.270000;212.317000;0 +20260202 100700;212.319000;212.348000;212.262000;212.285000;0 +20260202 100800;212.284000;212.306000;212.258000;212.267000;0 +20260202 100900;212.272000;212.322000;212.266000;212.303000;0 +20260202 101000;212.296000;212.350000;212.296000;212.324000;0 +20260202 101100;212.325000;212.391000;212.315000;212.351000;0 +20260202 101200;212.349000;212.358000;212.300000;212.308000;0 +20260202 101300;212.305000;212.341000;212.299000;212.308000;0 +20260202 101400;212.310000;212.389000;212.310000;212.372000;0 +20260202 101500;212.375000;212.434000;212.364000;212.392000;0 +20260202 101600;212.390000;212.392000;212.337000;212.372000;0 +20260202 101700;212.372000;212.386000;212.318000;212.325000;0 +20260202 101800;212.326000;212.362000;212.271000;212.280000;0 +20260202 101900;212.279000;212.385000;212.272000;212.363000;0 +20260202 102000;212.362000;212.395000;212.355000;212.381000;0 +20260202 102100;212.381000;212.448000;212.377000;212.443000;0 +20260202 102200;212.440000;212.466000;212.418000;212.422000;0 +20260202 102300;212.420000;212.441000;212.403000;212.424000;0 +20260202 102400;212.426000;212.454000;212.419000;212.432000;0 +20260202 102500;212.434000;212.457000;212.428000;212.439000;0 +20260202 102600;212.440000;212.446000;212.398000;212.415000;0 +20260202 102700;212.415000;212.415000;212.371000;212.380000;0 +20260202 102800;212.381000;212.401000;212.374000;212.395000;0 +20260202 102900;212.393000;212.395000;212.363000;212.374000;0 +20260202 103000;212.372000;212.375000;212.324000;212.334000;0 +20260202 103100;212.333000;212.379000;212.329000;212.378000;0 +20260202 103200;212.382000;212.407000;212.355000;212.379000;0 +20260202 103300;212.374000;212.384000;212.327000;212.341000;0 +20260202 103400;212.340000;212.435000;212.325000;212.409000;0 +20260202 103500;212.411000;212.482000;212.406000;212.470000;0 +20260202 103600;212.469000;212.491000;212.433000;212.454000;0 +20260202 103700;212.454000;212.467000;212.425000;212.431000;0 +20260202 103800;212.428000;212.461000;212.414000;212.439000;0 +20260202 103900;212.435000;212.447000;212.415000;212.418000;0 +20260202 104000;212.415000;212.420000;212.353000;212.368000;0 +20260202 104100;212.368000;212.378000;212.311000;212.360000;0 +20260202 104200;212.357000;212.372000;212.333000;212.354000;0 +20260202 104300;212.353000;212.369000;212.319000;212.365000;0 +20260202 104400;212.364000;212.364000;212.285000;212.307000;0 +20260202 104500;212.308000;212.317000;212.205000;212.223000;0 +20260202 104600;212.225000;212.260000;212.210000;212.234000;0 +20260202 104700;212.232000;212.291000;212.227000;212.259000;0 +20260202 104800;212.264000;212.293000;212.256000;212.264000;0 +20260202 104900;212.264000;212.265000;212.219000;212.236000;0 +20260202 105000;212.238000;212.247000;212.197000;212.222000;0 +20260202 105100;212.220000;212.272000;212.208000;212.240000;0 +20260202 105200;212.239000;212.253000;212.218000;212.231000;0 +20260202 105300;212.224000;212.238000;212.183000;212.204000;0 +20260202 105400;212.206000;212.234000;212.194000;212.225000;0 +20260202 105500;212.225000;212.240000;212.173000;212.200000;0 +20260202 105600;212.201000;212.201000;212.103000;212.147000;0 +20260202 105700;212.146000;212.174000;212.112000;212.152000;0 +20260202 105800;212.151000;212.165000;212.132000;212.153000;0 +20260202 105900;212.150000;212.168000;212.135000;212.140000;0 +20260202 110000;212.140000;212.160000;212.129000;212.150000;0 +20260202 110100;212.151000;212.159000;212.109000;212.111000;0 +20260202 110200;212.113000;212.134000;212.065000;212.072000;0 +20260202 110300;212.073000;212.087000;212.036000;212.048000;0 +20260202 110400;212.049000;212.101000;212.044000;212.095000;0 +20260202 110500;212.096000;212.121000;212.081000;212.121000;0 +20260202 110600;212.118000;212.140000;212.096000;212.136000;0 +20260202 110700;212.136000;212.164000;212.136000;212.154000;0 +20260202 110800;212.154000;212.172000;212.131000;212.147000;0 +20260202 110900;212.146000;212.167000;212.121000;212.155000;0 +20260202 111000;212.154000;212.225000;212.154000;212.223000;0 +20260202 111100;212.221000;212.237000;212.194000;212.237000;0 +20260202 111200;212.233000;212.252000;212.221000;212.227000;0 +20260202 111300;212.226000;212.260000;212.226000;212.257000;0 +20260202 111400;212.257000;212.267000;212.229000;212.245000;0 +20260202 111500;212.245000;212.287000;212.226000;212.275000;0 +20260202 111600;212.279000;212.280000;212.247000;212.259000;0 +20260202 111700;212.261000;212.261000;212.216000;212.244000;0 +20260202 111800;212.243000;212.312000;212.234000;212.295000;0 +20260202 111900;212.296000;212.319000;212.274000;212.277000;0 +20260202 112000;212.281000;212.303000;212.259000;212.264000;0 +20260202 112100;212.265000;212.306000;212.265000;212.294000;0 +20260202 112200;212.293000;212.293000;212.263000;212.282000;0 +20260202 112300;212.280000;212.326000;212.267000;212.325000;0 +20260202 112400;212.322000;212.363000;212.316000;212.346000;0 +20260202 112500;212.346000;212.404000;212.336000;212.378000;0 +20260202 112600;212.369000;212.369000;212.313000;212.327000;0 +20260202 112700;212.328000;212.334000;212.297000;212.320000;0 +20260202 112800;212.321000;212.321000;212.292000;212.301000;0 +20260202 112900;212.301000;212.322000;212.291000;212.309000;0 +20260202 113000;212.310000;212.354000;212.302000;212.338000;0 +20260202 113100;212.336000;212.336000;212.294000;212.305000;0 +20260202 113200;212.305000;212.307000;212.274000;212.276000;0 +20260202 113300;212.277000;212.326000;212.274000;212.324000;0 +20260202 113400;212.323000;212.368000;212.319000;212.345000;0 +20260202 113500;212.342000;212.371000;212.322000;212.344000;0 +20260202 113600;212.344000;212.351000;212.308000;212.339000;0 +20260202 113700;212.341000;212.357000;212.316000;212.335000;0 +20260202 113800;212.337000;212.347000;212.318000;212.326000;0 +20260202 113900;212.328000;212.339000;212.315000;212.325000;0 +20260202 114000;212.328000;212.336000;212.302000;212.311000;0 +20260202 114100;212.310000;212.377000;212.310000;212.369000;0 +20260202 114200;212.369000;212.381000;212.353000;212.374000;0 +20260202 114300;212.371000;212.382000;212.356000;212.371000;0 +20260202 114400;212.363000;212.374000;212.350000;212.373000;0 +20260202 114500;212.375000;212.376000;212.335000;212.336000;0 +20260202 114600;212.336000;212.369000;212.329000;212.360000;0 +20260202 114700;212.356000;212.370000;212.346000;212.354000;0 +20260202 114800;212.352000;212.381000;212.350000;212.365000;0 +20260202 114900;212.365000;212.368000;212.345000;212.360000;0 +20260202 115000;212.361000;212.371000;212.305000;212.319000;0 +20260202 115100;212.323000;212.335000;212.307000;212.309000;0 +20260202 115200;212.309000;212.319000;212.272000;212.290000;0 +20260202 115300;212.288000;212.320000;212.285000;212.314000;0 +20260202 115400;212.316000;212.317000;212.288000;212.296000;0 +20260202 115500;212.295000;212.329000;212.278000;212.278000;0 +20260202 115600;212.276000;212.340000;212.276000;212.324000;0 +20260202 115700;212.326000;212.340000;212.299000;212.320000;0 +20260202 115800;212.320000;212.340000;212.303000;212.308000;0 +20260202 115900;212.307000;212.314000;212.280000;212.306000;0 +20260202 120000;212.308000;212.356000;212.306000;212.346000;0 +20260202 120100;212.347000;212.351000;212.317000;212.343000;0 +20260202 120200;212.342000;212.367000;212.336000;212.349000;0 +20260202 120300;212.348000;212.370000;212.348000;212.370000;0 +20260202 120400;212.372000;212.383000;212.369000;212.382000;0 +20260202 120500;212.384000;212.393000;212.378000;212.389000;0 +20260202 120600;212.389000;212.413000;212.387000;212.392000;0 +20260202 120700;212.393000;212.409000;212.381000;212.389000;0 +20260202 120800;212.390000;212.405000;212.385000;212.401000;0 +20260202 120900;212.409000;212.410000;212.387000;212.393000;0 +20260202 121000;212.395000;212.408000;212.371000;212.379000;0 +20260202 121100;212.377000;212.378000;212.339000;212.355000;0 +20260202 121200;212.356000;212.369000;212.310000;212.312000;0 +20260202 121300;212.316000;212.350000;212.308000;212.343000;0 +20260202 121400;212.340000;212.373000;212.337000;212.371000;0 +20260202 121500;212.372000;212.395000;212.355000;212.378000;0 +20260202 121600;212.378000;212.380000;212.346000;212.347000;0 +20260202 121700;212.340000;212.346000;212.276000;212.288000;0 +20260202 121800;212.291000;212.309000;212.283000;212.288000;0 +20260202 121900;212.287000;212.310000;212.287000;212.295000;0 +20260202 122000;212.295000;212.314000;212.291000;212.312000;0 +20260202 122100;212.312000;212.330000;212.299000;212.302000;0 +20260202 122200;212.302000;212.341000;212.292000;212.334000;0 +20260202 122300;212.335000;212.346000;212.325000;212.342000;0 +20260202 122400;212.341000;212.343000;212.304000;212.334000;0 +20260202 122500;212.333000;212.335000;212.308000;212.311000;0 +20260202 122600;212.318000;212.341000;212.314000;212.323000;0 +20260202 122700;212.329000;212.348000;212.322000;212.330000;0 +20260202 122800;212.327000;212.348000;212.325000;212.330000;0 +20260202 122900;212.332000;212.343000;212.328000;212.337000;0 +20260202 123000;212.345000;212.346000;212.329000;212.330000;0 +20260202 123100;212.329000;212.353000;212.320000;212.334000;0 +20260202 123200;212.329000;212.346000;212.328000;212.340000;0 +20260202 123300;212.340000;212.352000;212.319000;212.330000;0 +20260202 123400;212.331000;212.334000;212.303000;212.303000;0 +20260202 123500;212.307000;212.315000;212.290000;212.306000;0 +20260202 123600;212.306000;212.311000;212.290000;212.307000;0 +20260202 123700;212.303000;212.326000;212.297000;212.325000;0 +20260202 123800;212.326000;212.357000;212.325000;212.357000;0 +20260202 123900;212.353000;212.379000;212.346000;212.370000;0 +20260202 124000;212.375000;212.380000;212.348000;212.365000;0 +20260202 124100;212.365000;212.384000;212.358000;212.379000;0 +20260202 124200;212.380000;212.381000;212.338000;212.354000;0 +20260202 124300;212.359000;212.387000;212.352000;212.387000;0 +20260202 124400;212.389000;212.401000;212.378000;212.379000;0 +20260202 124500;212.379000;212.385000;212.356000;212.359000;0 +20260202 124600;212.357000;212.383000;212.357000;212.380000;0 +20260202 124700;212.380000;212.380000;212.357000;212.376000;0 +20260202 124800;212.377000;212.399000;212.371000;212.393000;0 +20260202 124900;212.390000;212.398000;212.370000;212.386000;0 +20260202 125000;212.386000;212.386000;212.357000;212.357000;0 +20260202 125100;212.358000;212.378000;212.350000;212.369000;0 +20260202 125200;212.370000;212.406000;212.362000;212.384000;0 +20260202 125300;212.383000;212.390000;212.373000;212.388000;0 +20260202 125400;212.378000;212.387000;212.360000;212.373000;0 +20260202 125500;212.375000;212.391000;212.365000;212.389000;0 +20260202 125600;212.385000;212.387000;212.359000;212.359000;0 +20260202 125700;212.360000;212.448000;212.360000;212.428000;0 +20260202 125800;212.424000;212.448000;212.413000;212.444000;0 +20260202 125900;212.441000;212.441000;212.408000;212.417000;0 +20260202 130000;212.418000;212.443000;212.405000;212.429000;0 +20260202 130100;212.430000;212.462000;212.420000;212.461000;0 +20260202 130200;212.460000;212.495000;212.447000;212.454000;0 +20260202 130300;212.456000;212.475000;212.443000;212.464000;0 +20260202 130400;212.461000;212.510000;212.460000;212.476000;0 +20260202 130500;212.481000;212.526000;212.469000;212.526000;0 +20260202 130600;212.526000;212.530000;212.507000;212.518000;0 +20260202 130700;212.516000;212.536000;212.496000;212.518000;0 +20260202 130800;212.517000;212.564000;212.514000;212.549000;0 +20260202 130900;212.547000;212.548000;212.513000;212.526000;0 +20260202 131000;212.525000;212.537000;212.503000;212.521000;0 +20260202 131100;212.521000;212.530000;212.502000;212.528000;0 +20260202 131200;212.528000;212.528000;212.503000;212.512000;0 +20260202 131300;212.512000;212.518000;212.495000;212.495000;0 +20260202 131400;212.498000;212.501000;212.472000;212.497000;0 +20260202 131500;212.496000;212.529000;212.495000;212.519000;0 +20260202 131600;212.519000;212.522000;212.505000;212.520000;0 +20260202 131700;212.516000;212.565000;212.512000;212.558000;0 +20260202 131800;212.557000;212.564000;212.522000;212.531000;0 +20260202 131900;212.534000;212.576000;212.534000;212.556000;0 +20260202 132000;212.557000;212.567000;212.528000;212.533000;0 +20260202 132100;212.533000;212.571000;212.522000;212.571000;0 +20260202 132200;212.570000;212.585000;212.567000;212.577000;0 +20260202 132300;212.571000;212.574000;212.552000;212.560000;0 +20260202 132400;212.559000;212.588000;212.555000;212.582000;0 +20260202 132500;212.581000;212.602000;212.572000;212.584000;0 +20260202 132600;212.587000;212.599000;212.571000;212.588000;0 +20260202 132700;212.587000;212.598000;212.583000;212.589000;0 +20260202 132800;212.590000;212.603000;212.570000;212.598000;0 +20260202 132900;212.609000;212.631000;212.603000;212.624000;0 +20260202 133000;212.625000;212.653000;212.621000;212.638000;0 +20260202 133100;212.641000;212.652000;212.631000;212.636000;0 +20260202 133200;212.634000;212.640000;212.625000;212.629000;0 +20260202 133300;212.627000;212.637000;212.610000;212.629000;0 +20260202 133400;212.632000;212.635000;212.615000;212.627000;0 +20260202 133500;212.627000;212.635000;212.608000;212.608000;0 +20260202 133600;212.608000;212.623000;212.603000;212.620000;0 +20260202 133700;212.622000;212.627000;212.583000;212.583000;0 +20260202 133800;212.585000;212.585000;212.549000;212.571000;0 +20260202 133900;212.570000;212.583000;212.554000;212.577000;0 +20260202 134000;212.577000;212.603000;212.572000;212.602000;0 +20260202 134100;212.601000;212.604000;212.584000;212.593000;0 +20260202 134200;212.596000;212.610000;212.574000;212.585000;0 +20260202 134300;212.583000;212.593000;212.551000;212.558000;0 +20260202 134400;212.558000;212.559000;212.546000;212.553000;0 +20260202 134500;212.552000;212.583000;212.543000;212.579000;0 +20260202 134600;212.579000;212.591000;212.561000;212.586000;0 +20260202 134700;212.590000;212.596000;212.561000;212.567000;0 +20260202 134800;212.566000;212.570000;212.534000;212.535000;0 +20260202 134900;212.539000;212.539000;212.512000;212.514000;0 +20260202 135000;212.513000;212.522000;212.495000;212.507000;0 +20260202 135100;212.500000;212.500000;212.472000;212.474000;0 +20260202 135200;212.475000;212.496000;212.472000;212.496000;0 +20260202 135300;212.495000;212.496000;212.464000;212.474000;0 +20260202 135400;212.470000;212.493000;212.470000;212.472000;0 +20260202 135500;212.468000;212.473000;212.451000;212.455000;0 +20260202 135600;212.454000;212.466000;212.450000;212.452000;0 +20260202 135700;212.453000;212.462000;212.443000;212.443000;0 +20260202 135800;212.443000;212.474000;212.443000;212.474000;0 +20260202 135900;212.476000;212.479000;212.455000;212.473000;0 +20260202 140000;212.474000;212.500000;212.470000;212.479000;0 +20260202 140100;212.479000;212.493000;212.471000;212.480000;0 +20260202 140200;212.481000;212.494000;212.478000;212.483000;0 +20260202 140300;212.491000;212.510000;212.491000;212.500000;0 +20260202 140400;212.495000;212.513000;212.495000;212.502000;0 +20260202 140500;212.508000;212.529000;212.499000;212.529000;0 +20260202 140600;212.531000;212.540000;212.524000;212.529000;0 +20260202 140700;212.529000;212.542000;212.516000;212.523000;0 +20260202 140800;212.522000;212.535000;212.519000;212.532000;0 +20260202 140900;212.531000;212.546000;212.525000;212.544000;0 +20260202 141000;212.544000;212.552000;212.541000;212.543000;0 +20260202 141100;212.546000;212.556000;212.532000;212.542000;0 +20260202 141200;212.543000;212.548000;212.500000;212.514000;0 +20260202 141300;212.516000;212.554000;212.516000;212.537000;0 +20260202 141400;212.536000;212.540000;212.507000;212.507000;0 +20260202 141500;212.512000;212.530000;212.497000;212.522000;0 +20260202 141600;212.521000;212.529000;212.513000;212.526000;0 +20260202 141700;212.523000;212.526000;212.511000;212.519000;0 +20260202 141800;212.516000;212.533000;212.515000;212.531000;0 +20260202 141900;212.533000;212.548000;212.528000;212.528000;0 +20260202 142000;212.524000;212.536000;212.524000;212.532000;0 +20260202 142100;212.535000;212.549000;212.531000;212.549000;0 +20260202 142200;212.546000;212.549000;212.532000;212.533000;0 +20260202 142300;212.534000;212.544000;212.515000;212.539000;0 +20260202 142400;212.541000;212.551000;212.535000;212.547000;0 +20260202 142500;212.559000;212.561000;212.530000;212.531000;0 +20260202 142600;212.541000;212.541000;212.526000;212.536000;0 +20260202 142700;212.536000;212.544000;212.529000;212.534000;0 +20260202 142800;212.533000;212.536000;212.526000;212.535000;0 +20260202 142900;212.537000;212.546000;212.530000;212.537000;0 +20260202 143000;212.538000;212.556000;212.538000;212.546000;0 +20260202 143100;212.547000;212.553000;212.538000;212.547000;0 +20260202 143200;212.545000;212.575000;212.537000;212.575000;0 +20260202 143300;212.573000;212.586000;212.565000;212.583000;0 +20260202 143400;212.582000;212.605000;212.580000;212.597000;0 +20260202 143500;212.595000;212.610000;212.591000;212.593000;0 +20260202 143600;212.597000;212.602000;212.592000;212.601000;0 +20260202 143700;212.599000;212.600000;212.587000;212.593000;0 +20260202 143800;212.594000;212.607000;212.581000;212.606000;0 +20260202 143900;212.608000;212.616000;212.600000;212.606000;0 +20260202 144000;212.606000;212.621000;212.601000;212.619000;0 +20260202 144100;212.622000;212.643000;212.611000;212.643000;0 +20260202 144200;212.644000;212.646000;212.610000;212.617000;0 +20260202 144300;212.618000;212.638000;212.602000;212.638000;0 +20260202 144400;212.639000;212.639000;212.620000;212.628000;0 +20260202 144500;212.626000;212.635000;212.616000;212.629000;0 +20260202 144600;212.629000;212.635000;212.609000;212.618000;0 +20260202 144700;212.618000;212.636000;212.616000;212.627000;0 +20260202 144800;212.621000;212.635000;212.609000;212.611000;0 +20260202 144900;212.609000;212.618000;212.596000;212.607000;0 +20260202 145000;212.606000;212.615000;212.568000;212.579000;0 +20260202 145100;212.577000;212.606000;212.574000;212.578000;0 +20260202 145200;212.581000;212.610000;212.579000;212.601000;0 +20260202 145300;212.601000;212.613000;212.600000;212.603000;0 +20260202 145400;212.601000;212.617000;212.596000;212.607000;0 +20260202 145500;212.609000;212.641000;212.602000;212.636000;0 +20260202 145600;212.632000;212.632000;212.586000;212.591000;0 +20260202 145700;212.590000;212.621000;212.576000;212.619000;0 +20260202 145800;212.617000;212.625000;212.597000;212.606000;0 +20260202 145900;212.607000;212.608000;212.561000;212.570000;0 +20260202 150000;212.572000;212.599000;212.548000;212.590000;0 +20260202 150100;212.597000;212.630000;212.592000;212.620000;0 +20260202 150200;212.620000;212.622000;212.599000;212.602000;0 +20260202 150300;212.602000;212.605000;212.579000;212.585000;0 +20260202 150400;212.584000;212.591000;212.569000;212.571000;0 +20260202 150500;212.570000;212.583000;212.568000;212.569000;0 +20260202 150600;212.576000;212.589000;212.568000;212.576000;0 +20260202 150700;212.572000;212.583000;212.571000;212.580000;0 +20260202 150800;212.579000;212.606000;212.579000;212.602000;0 +20260202 150900;212.605000;212.613000;212.588000;212.588000;0 +20260202 151000;212.584000;212.588000;212.575000;212.587000;0 +20260202 151100;212.586000;212.593000;212.575000;212.590000;0 +20260202 151200;212.587000;212.596000;212.578000;212.588000;0 +20260202 151300;212.587000;212.593000;212.552000;212.556000;0 +20260202 151400;212.558000;212.558000;212.515000;212.521000;0 +20260202 151500;212.518000;212.543000;212.518000;212.524000;0 +20260202 151600;212.525000;212.550000;212.523000;212.528000;0 +20260202 151700;212.530000;212.551000;212.528000;212.543000;0 +20260202 151800;212.544000;212.548000;212.534000;212.537000;0 +20260202 151900;212.536000;212.547000;212.517000;212.534000;0 +20260202 152000;212.535000;212.552000;212.535000;212.547000;0 +20260202 152100;212.548000;212.551000;212.528000;212.539000;0 +20260202 152200;212.540000;212.554000;212.534000;212.548000;0 +20260202 152300;212.550000;212.562000;212.542000;212.552000;0 +20260202 152400;212.552000;212.563000;212.547000;212.553000;0 +20260202 152500;212.557000;212.557000;212.545000;212.555000;0 +20260202 152600;212.556000;212.566000;212.549000;212.562000;0 +20260202 152700;212.565000;212.585000;212.565000;212.577000;0 +20260202 152800;212.586000;212.587000;212.571000;212.582000;0 +20260202 152900;212.581000;212.585000;212.572000;212.576000;0 +20260202 153000;212.578000;212.578000;212.538000;212.538000;0 +20260202 153100;212.542000;212.560000;212.535000;212.553000;0 +20260202 153200;212.555000;212.592000;212.551000;212.589000;0 +20260202 153300;212.591000;212.598000;212.575000;212.575000;0 +20260202 153400;212.578000;212.579000;212.570000;212.574000;0 +20260202 153500;212.576000;212.584000;212.572000;212.579000;0 +20260202 153600;212.580000;212.597000;212.577000;212.585000;0 +20260202 153700;212.586000;212.596000;212.569000;212.578000;0 +20260202 153800;212.579000;212.595000;212.573000;212.595000;0 +20260202 153900;212.592000;212.593000;212.566000;212.567000;0 +20260202 154000;212.565000;212.576000;212.559000;212.575000;0 +20260202 154100;212.572000;212.591000;212.568000;212.591000;0 +20260202 154200;212.589000;212.593000;212.577000;212.584000;0 +20260202 154300;212.590000;212.591000;212.566000;212.581000;0 +20260202 154400;212.578000;212.584000;212.570000;212.574000;0 +20260202 154500;212.571000;212.571000;212.556000;212.563000;0 +20260202 154600;212.567000;212.580000;212.564000;212.573000;0 +20260202 154700;212.574000;212.583000;212.553000;212.564000;0 +20260202 154800;212.563000;212.568000;212.550000;212.555000;0 +20260202 154900;212.555000;212.562000;212.549000;212.557000;0 +20260202 155000;212.556000;212.580000;212.556000;212.570000;0 +20260202 155100;212.570000;212.583000;212.564000;212.579000;0 +20260202 155200;212.578000;212.584000;212.567000;212.580000;0 +20260202 155300;212.581000;212.581000;212.547000;212.556000;0 +20260202 155400;212.566000;212.578000;212.563000;212.572000;0 +20260202 155500;212.577000;212.609000;212.573000;212.609000;0 +20260202 155600;212.609000;212.610000;212.547000;212.561000;0 +20260202 155700;212.560000;212.584000;212.558000;212.579000;0 +20260202 155800;212.576000;212.579000;212.543000;212.555000;0 +20260202 155900;212.557000;212.617000;212.552000;212.614000;0 +20260202 160000;212.613000;212.652000;212.612000;212.624000;0 +20260202 160100;212.625000;212.625000;212.555000;212.558000;0 +20260202 160200;212.554000;212.594000;212.540000;212.592000;0 +20260202 160300;212.594000;212.604000;212.590000;212.604000;0 +20260202 160400;212.608000;212.615000;212.602000;212.608000;0 +20260202 160500;212.611000;212.611000;212.598000;212.605000;0 +20260202 160600;212.605000;212.622000;212.605000;212.616000;0 +20260202 160700;212.619000;212.630000;212.609000;212.630000;0 +20260202 160800;212.630000;212.639000;212.625000;212.639000;0 +20260202 160900;212.636000;212.655000;212.636000;212.650000;0 +20260202 161000;212.650000;212.661000;212.646000;212.658000;0 +20260202 161100;212.655000;212.655000;212.644000;212.647000;0 +20260202 161200;212.647000;212.648000;212.635000;212.638000;0 +20260202 161300;212.637000;212.642000;212.626000;212.631000;0 +20260202 161400;212.630000;212.631000;212.626000;212.626000;0 +20260202 161500;212.618000;212.622000;212.612000;212.614000;0 +20260202 161600;212.613000;212.619000;212.612000;212.617000;0 +20260202 161700;212.618000;212.661000;212.613000;212.660000;0 +20260202 161800;212.658000;212.658000;212.645000;212.648000;0 +20260202 161900;212.646000;212.648000;212.640000;212.643000;0 +20260202 162000;212.640000;212.641000;212.618000;212.621000;0 +20260202 162100;212.622000;212.639000;212.616000;212.635000;0 +20260202 162200;212.636000;212.637000;212.628000;212.635000;0 +20260202 162300;212.636000;212.637000;212.622000;212.631000;0 +20260202 162400;212.632000;212.632000;212.622000;212.623000;0 +20260202 162500;212.623000;212.625000;212.621000;212.624000;0 +20260202 162600;212.616000;212.625000;212.611000;212.611000;0 +20260202 162700;212.610000;212.622000;212.610000;212.613000;0 +20260202 162800;212.614000;212.623000;212.614000;212.622000;0 +20260202 162900;212.613000;212.623000;212.588000;212.621000;0 +20260202 163000;212.620000;212.620000;212.609000;212.618000;0 +20260202 163100;212.620000;212.638000;212.619000;212.633000;0 +20260202 163200;212.631000;212.632000;212.623000;212.630000;0 +20260202 163300;212.629000;212.629000;212.622000;212.622000;0 +20260202 163400;212.627000;212.630000;212.614000;212.620000;0 +20260202 163500;212.621000;212.626000;212.617000;212.620000;0 +20260202 163600;212.617000;212.628000;212.615000;212.620000;0 +20260202 163700;212.618000;212.623000;212.615000;212.621000;0 +20260202 163800;212.619000;212.624000;212.608000;212.622000;0 +20260202 163900;212.623000;212.633000;212.619000;212.619000;0 +20260202 164000;212.616000;212.627000;212.613000;212.621000;0 +20260202 164100;212.620000;212.633000;212.617000;212.630000;0 +20260202 164200;212.630000;212.635000;212.624000;212.634000;0 +20260202 164300;212.633000;212.638000;212.625000;212.626000;0 +20260202 164400;212.628000;212.628000;212.627000;212.627000;0 +20260202 164500;212.630000;212.650000;212.627000;212.650000;0 +20260202 164600;212.649000;212.661000;212.642000;212.647000;0 +20260202 164700;212.647000;212.647000;212.640000;212.642000;0 +20260202 164800;212.642000;212.644000;212.637000;212.639000;0 +20260202 164900;212.638000;212.653000;212.638000;212.653000;0 +20260202 165000;212.653000;212.653000;212.615000;212.624000;0 +20260202 165100;212.625000;212.635000;212.611000;212.619000;0 +20260202 165200;212.610000;212.629000;212.607000;212.628000;0 +20260202 165300;212.629000;212.629000;212.621000;212.626000;0 +20260202 165400;212.624000;212.660000;212.620000;212.657000;0 +20260202 165500;212.659000;212.676000;212.655000;212.674000;0 +20260202 165600;212.670000;212.672000;212.650000;212.653000;0 +20260202 165700;212.654000;212.662000;212.636000;212.662000;0 +20260202 165800;212.658000;212.672000;212.643000;212.665000;0 +20260202 165900;212.667000;212.667000;212.618000;212.618000;0 +20260202 170000;212.612000;212.612000;212.612000;212.612000;0 +20260202 170400;212.635000;212.635000;212.634000;212.634000;0 +20260202 170500;212.613000;212.626000;212.613000;212.623000;0 +20260202 170600;212.625000;212.637000;212.625000;212.635000;0 +20260202 170700;212.636000;212.638000;212.635000;212.637000;0 +20260202 170800;212.637000;212.640000;212.544000;212.544000;0 +20260202 170900;212.543000;212.596000;212.543000;212.595000;0 +20260202 171000;212.600000;212.604000;212.599000;212.604000;0 +20260202 171100;212.604000;212.604000;212.604000;212.604000;0 +20260202 171200;212.603000;212.604000;212.602000;212.603000;0 +20260202 171300;212.605000;212.605000;212.605000;212.605000;0 +20260202 171400;212.604000;212.604000;212.604000;212.604000;0 +20260202 171500;212.603000;212.623000;212.584000;212.585000;0 +20260202 171600;212.584000;212.585000;212.581000;212.582000;0 +20260202 171700;212.583000;212.583000;212.579000;212.579000;0 +20260202 171800;212.579000;212.580000;212.578000;212.578000;0 +20260202 171900;212.580000;212.580000;212.579000;212.579000;0 +20260202 172000;212.578000;212.579000;212.570000;212.571000;0 +20260202 172100;212.570000;212.570000;212.564000;212.568000;0 +20260202 172200;212.569000;212.569000;212.564000;212.568000;0 +20260202 172300;212.564000;212.571000;212.560000;212.570000;0 +20260202 172400;212.566000;212.572000;212.562000;212.562000;0 +20260202 172500;212.570000;212.571000;212.550000;212.568000;0 +20260202 172600;212.568000;212.568000;212.564000;212.568000;0 +20260202 172700;212.568000;212.568000;212.564000;212.564000;0 +20260202 172800;212.566000;212.568000;212.566000;212.566000;0 +20260202 172900;212.567000;212.568000;212.566000;212.567000;0 +20260202 173000;212.565000;212.602000;212.563000;212.595000;0 +20260202 173100;212.594000;212.610000;212.593000;212.608000;0 +20260202 173200;212.607000;212.611000;212.601000;212.601000;0 +20260202 173300;212.601000;212.606000;212.596000;212.602000;0 +20260202 173400;212.603000;212.606000;212.596000;212.602000;0 +20260202 173500;212.601000;212.605000;212.595000;212.598000;0 +20260202 173600;212.601000;212.609000;212.597000;212.605000;0 +20260202 173700;212.603000;212.607000;212.598000;212.600000;0 +20260202 173800;212.598000;212.606000;212.598000;212.601000;0 +20260202 173900;212.602000;212.604000;212.594000;212.601000;0 +20260202 174000;212.602000;212.606000;212.600000;212.602000;0 +20260202 174100;212.604000;212.612000;212.600000;212.612000;0 +20260202 174200;212.608000;212.620000;212.608000;212.619000;0 +20260202 174300;212.617000;212.619000;212.613000;212.613000;0 +20260202 174400;212.615000;212.622000;212.613000;212.616000;0 +20260202 174500;212.616000;212.619000;212.616000;212.617000;0 +20260202 174600;212.618000;212.620000;212.615000;212.616000;0 +20260202 174700;212.618000;212.626000;212.618000;212.624000;0 +20260202 174800;212.623000;212.625000;212.621000;212.622000;0 +20260202 174900;212.624000;212.625000;212.622000;212.624000;0 +20260202 175000;212.624000;212.624000;212.568000;212.568000;0 +20260202 175100;212.565000;212.578000;212.545000;212.551000;0 +20260202 175200;212.553000;212.575000;212.544000;212.567000;0 +20260202 175300;212.567000;212.568000;212.567000;212.568000;0 +20260202 175400;212.569000;212.569000;212.531000;212.531000;0 +20260202 175500;212.530000;212.539000;212.522000;212.522000;0 +20260202 175600;212.525000;212.536000;212.521000;212.534000;0 +20260202 175700;212.533000;212.539000;212.526000;212.534000;0 +20260202 175800;212.534000;212.536000;212.521000;212.531000;0 +20260202 175900;212.529000;212.536000;212.521000;212.521000;0 +20260202 180000;212.519000;212.550000;212.485000;212.542000;0 +20260202 180100;212.539000;212.550000;212.534000;212.540000;0 +20260202 180200;212.549000;212.549000;212.517000;212.518000;0 +20260202 180300;212.521000;212.578000;212.521000;212.578000;0 +20260202 180400;212.576000;212.584000;212.571000;212.574000;0 +20260202 180500;212.574000;212.597000;212.547000;212.547000;0 +20260202 180600;212.539000;212.580000;212.539000;212.578000;0 +20260202 180700;212.580000;212.580000;212.544000;212.556000;0 +20260202 180800;212.562000;212.582000;212.550000;212.582000;0 +20260202 180900;212.584000;212.629000;212.577000;212.623000;0 +20260202 181000;212.624000;212.654000;212.614000;212.650000;0 +20260202 181100;212.646000;212.649000;212.609000;212.613000;0 +20260202 181200;212.614000;212.618000;212.595000;212.599000;0 +20260202 181300;212.597000;212.598000;212.556000;212.560000;0 +20260202 181400;212.560000;212.574000;212.554000;212.566000;0 +20260202 181500;212.567000;212.592000;212.564000;212.581000;0 +20260202 181600;212.588000;212.596000;212.578000;212.589000;0 +20260202 181700;212.591000;212.607000;212.577000;212.607000;0 +20260202 181800;212.598000;212.617000;212.597000;212.611000;0 +20260202 181900;212.616000;212.641000;212.581000;212.584000;0 +20260202 182000;212.582000;212.591000;212.575000;212.582000;0 +20260202 182100;212.580000;212.584000;212.568000;212.578000;0 +20260202 182200;212.579000;212.585000;212.569000;212.578000;0 +20260202 182300;212.574000;212.594000;212.569000;212.590000;0 +20260202 182400;212.591000;212.597000;212.583000;212.593000;0 +20260202 182500;212.597000;212.602000;212.592000;212.599000;0 +20260202 182600;212.610000;212.613000;212.584000;212.588000;0 +20260202 182700;212.590000;212.603000;212.588000;212.598000;0 +20260202 182800;212.600000;212.608000;212.598000;212.607000;0 +20260202 182900;212.608000;212.611000;212.605000;212.611000;0 +20260202 183000;212.611000;212.635000;212.601000;212.632000;0 +20260202 183100;212.627000;212.632000;212.577000;212.578000;0 +20260202 183200;212.575000;212.591000;212.567000;212.570000;0 +20260202 183300;212.570000;212.577000;212.559000;212.571000;0 +20260202 183400;212.568000;212.586000;212.566000;212.566000;0 +20260202 183500;212.568000;212.584000;212.562000;212.582000;0 +20260202 183600;212.584000;212.589000;212.575000;212.581000;0 +20260202 183700;212.583000;212.586000;212.560000;212.568000;0 +20260202 183800;212.568000;212.589000;212.566000;212.578000;0 +20260202 183900;212.576000;212.595000;212.573000;212.589000;0 +20260202 184000;212.591000;212.596000;212.577000;212.577000;0 +20260202 184100;212.582000;212.582000;212.570000;212.571000;0 +20260202 184200;212.573000;212.597000;212.570000;212.597000;0 +20260202 184300;212.593000;212.603000;212.590000;212.600000;0 +20260202 184400;212.601000;212.619000;212.599000;212.614000;0 +20260202 184500;212.616000;212.617000;212.560000;212.573000;0 +20260202 184600;212.572000;212.586000;212.547000;212.575000;0 +20260202 184700;212.574000;212.605000;212.574000;212.599000;0 +20260202 184800;212.589000;212.616000;212.582000;212.608000;0 +20260202 184900;212.610000;212.622000;212.587000;212.618000;0 +20260202 185000;212.617000;212.626000;212.589000;212.623000;0 +20260202 185100;212.624000;212.642000;212.607000;212.607000;0 +20260202 185200;212.609000;212.620000;212.599000;212.603000;0 +20260202 185300;212.600000;212.610000;212.598000;212.609000;0 +20260202 185400;212.614000;212.627000;212.581000;212.585000;0 +20260202 185500;212.586000;212.600000;212.557000;212.573000;0 +20260202 185600;212.573000;212.574000;212.523000;212.526000;0 +20260202 185700;212.525000;212.525000;212.486000;212.492000;0 +20260202 185800;212.492000;212.574000;212.490000;212.574000;0 +20260202 185900;212.575000;212.594000;212.545000;212.569000;0 +20260202 190000;212.568000;212.634000;212.561000;212.604000;0 +20260202 190100;212.606000;212.681000;212.595000;212.605000;0 +20260202 190200;212.603000;212.608000;212.544000;212.586000;0 +20260202 190300;212.582000;212.609000;212.553000;212.609000;0 +20260202 190400;212.605000;212.605000;212.565000;212.596000;0 +20260202 190500;212.596000;212.643000;212.587000;212.611000;0 +20260202 190600;212.605000;212.618000;212.600000;212.605000;0 +20260202 190700;212.603000;212.629000;212.593000;212.629000;0 +20260202 190800;212.625000;212.628000;212.552000;212.573000;0 +20260202 190900;212.580000;212.581000;212.556000;212.579000;0 +20260202 191000;212.582000;212.594000;212.555000;212.569000;0 +20260202 191100;212.566000;212.585000;212.540000;212.566000;0 +20260202 191200;212.569000;212.629000;212.565000;212.625000;0 +20260202 191300;212.625000;212.636000;212.596000;212.624000;0 +20260202 191400;212.625000;212.628000;212.586000;212.591000;0 +20260202 191500;212.594000;212.619000;212.593000;212.608000;0 +20260202 191600;212.610000;212.637000;212.604000;212.629000;0 +20260202 191700;212.628000;212.665000;212.624000;212.628000;0 +20260202 191800;212.629000;212.672000;212.629000;212.666000;0 +20260202 191900;212.662000;212.684000;212.656000;212.672000;0 +20260202 192000;212.673000;212.691000;212.660000;212.686000;0 +20260202 192100;212.688000;212.691000;212.657000;212.675000;0 +20260202 192200;212.673000;212.690000;212.664000;212.687000;0 +20260202 192300;212.686000;212.713000;212.686000;212.696000;0 +20260202 192400;212.696000;212.735000;212.693000;212.733000;0 +20260202 192500;212.733000;212.733000;212.721000;212.723000;0 +20260202 192600;212.723000;212.729000;212.696000;212.723000;0 +20260202 192700;212.723000;212.729000;212.691000;212.702000;0 +20260202 192800;212.707000;212.721000;212.705000;212.708000;0 +20260202 192900;212.706000;212.706000;212.688000;212.692000;0 +20260202 193000;212.694000;212.798000;212.694000;212.781000;0 +20260202 193100;212.784000;212.789000;212.750000;212.770000;0 +20260202 193200;212.771000;212.787000;212.759000;212.783000;0 +20260202 193300;212.780000;212.786000;212.762000;212.770000;0 +20260202 193400;212.775000;212.778000;212.760000;212.772000;0 +20260202 193500;212.772000;212.773000;212.747000;212.754000;0 +20260202 193600;212.757000;212.759000;212.722000;212.731000;0 +20260202 193700;212.732000;212.762000;212.720000;212.757000;0 +20260202 193800;212.756000;212.790000;212.756000;212.778000;0 +20260202 193900;212.775000;212.791000;212.762000;212.763000;0 +20260202 194000;212.765000;212.765000;212.746000;212.747000;0 +20260202 194100;212.746000;212.757000;212.744000;212.756000;0 +20260202 194200;212.758000;212.778000;212.752000;212.767000;0 +20260202 194300;212.762000;212.766000;212.746000;212.756000;0 +20260202 194400;212.755000;212.764000;212.735000;212.747000;0 +20260202 194500;212.745000;212.770000;212.744000;212.744000;0 +20260202 194600;212.745000;212.745000;212.709000;212.716000;0 +20260202 194700;212.719000;212.743000;212.712000;212.716000;0 +20260202 194800;212.718000;212.724000;212.689000;212.695000;0 +20260202 194900;212.698000;212.723000;212.682000;212.715000;0 +20260202 195000;212.716000;212.736000;212.699000;212.722000;0 +20260202 195100;212.724000;212.754000;212.721000;212.754000;0 +20260202 195200;212.754000;212.755000;212.725000;212.738000;0 +20260202 195300;212.736000;212.736000;212.647000;212.668000;0 +20260202 195400;212.673000;212.757000;212.660000;212.753000;0 +20260202 195500;212.751000;212.765000;212.723000;212.731000;0 +20260202 195600;212.726000;212.729000;212.703000;212.722000;0 +20260202 195700;212.719000;212.721000;212.657000;212.677000;0 +20260202 195800;212.679000;212.707000;212.649000;212.705000;0 +20260202 195900;212.707000;212.710000;212.668000;212.679000;0 +20260202 200000;212.679000;212.721000;212.661000;212.693000;0 +20260202 200100;212.700000;212.704000;212.667000;212.669000;0 +20260202 200200;212.669000;212.747000;212.666000;212.746000;0 +20260202 200300;212.741000;212.778000;212.728000;212.771000;0 +20260202 200400;212.770000;212.795000;212.749000;212.776000;0 +20260202 200500;212.774000;212.776000;212.747000;212.761000;0 +20260202 200600;212.762000;212.783000;212.747000;212.756000;0 +20260202 200700;212.754000;212.796000;212.754000;212.794000;0 +20260202 200800;212.792000;212.797000;212.773000;212.785000;0 +20260202 200900;212.784000;212.784000;212.756000;212.765000;0 +20260202 201000;212.765000;212.765000;212.717000;212.718000;0 +20260202 201100;212.721000;212.721000;212.618000;212.705000;0 +20260202 201200;212.703000;212.710000;212.671000;212.675000;0 +20260202 201300;212.675000;212.732000;212.662000;212.732000;0 +20260202 201400;212.733000;212.772000;212.733000;212.750000;0 +20260202 201500;212.751000;212.791000;212.739000;212.766000;0 +20260202 201600;212.768000;212.810000;212.768000;212.806000;0 +20260202 201700;212.808000;212.828000;212.781000;212.786000;0 +20260202 201800;212.787000;212.819000;212.770000;212.818000;0 +20260202 201900;212.819000;212.834000;212.797000;212.819000;0 +20260202 202000;212.817000;212.825000;212.786000;212.823000;0 +20260202 202100;212.825000;212.837000;212.802000;212.809000;0 +20260202 202200;212.808000;212.808000;212.777000;212.788000;0 +20260202 202300;212.789000;212.854000;212.789000;212.852000;0 +20260202 202400;212.851000;212.856000;212.820000;212.820000;0 +20260202 202500;212.819000;212.843000;212.817000;212.837000;0 +20260202 202600;212.836000;212.836000;212.785000;212.803000;0 +20260202 202700;212.802000;212.819000;212.791000;212.800000;0 +20260202 202800;212.802000;212.802000;212.762000;212.767000;0 +20260202 202900;212.765000;212.788000;212.750000;212.752000;0 +20260202 203000;212.750000;212.801000;212.741000;212.786000;0 +20260202 203100;212.787000;212.824000;212.787000;212.811000;0 +20260202 203200;212.809000;212.828000;212.788000;212.802000;0 +20260202 203300;212.801000;212.810000;212.781000;212.789000;0 +20260202 203400;212.788000;212.810000;212.786000;212.804000;0 +20260202 203500;212.806000;212.833000;212.759000;212.766000;0 +20260202 203600;212.770000;212.793000;212.770000;212.790000;0 +20260202 203700;212.791000;212.822000;212.784000;212.795000;0 +20260202 203800;212.804000;212.849000;212.796000;212.847000;0 +20260202 203900;212.844000;212.848000;212.799000;212.801000;0 +20260202 204000;212.803000;212.828000;212.802000;212.827000;0 +20260202 204100;212.828000;212.828000;212.789000;212.809000;0 +20260202 204200;212.807000;212.810000;212.788000;212.792000;0 +20260202 204300;212.796000;212.800000;212.790000;212.795000;0 +20260202 204400;212.795000;212.795000;212.759000;212.773000;0 +20260202 204500;212.775000;212.778000;212.739000;212.752000;0 +20260202 204600;212.753000;212.757000;212.741000;212.748000;0 +20260202 204700;212.749000;212.753000;212.735000;212.738000;0 +20260202 204800;212.739000;212.760000;212.734000;212.758000;0 +20260202 204900;212.756000;212.783000;212.747000;212.749000;0 +20260202 205000;212.751000;212.768000;212.749000;212.766000;0 +20260202 205100;212.770000;212.779000;212.759000;212.765000;0 +20260202 205200;212.768000;212.782000;212.756000;212.756000;0 +20260202 205300;212.757000;212.758000;212.737000;212.741000;0 +20260202 205400;212.748000;212.757000;212.731000;212.742000;0 +20260202 205500;212.742000;212.774000;212.742000;212.763000;0 +20260202 205600;212.764000;212.772000;212.743000;212.768000;0 +20260202 205700;212.770000;212.777000;212.745000;212.750000;0 +20260202 205800;212.752000;212.768000;212.739000;212.760000;0 +20260202 205900;212.758000;212.775000;212.749000;212.772000;0 +20260202 210000;212.774000;212.774000;212.736000;212.739000;0 +20260202 210100;212.737000;212.757000;212.722000;212.751000;0 +20260202 210200;212.750000;212.753000;212.712000;212.738000;0 +20260202 210300;212.738000;212.772000;212.738000;212.757000;0 +20260202 210400;212.759000;212.762000;212.706000;212.709000;0 +20260202 210500;212.708000;212.736000;212.690000;212.736000;0 +20260202 210600;212.732000;212.759000;212.732000;212.746000;0 +20260202 210700;212.744000;212.748000;212.724000;212.738000;0 +20260202 210800;212.745000;212.765000;212.715000;212.718000;0 +20260202 210900;212.715000;212.722000;212.672000;212.672000;0 +20260202 211000;212.674000;212.697000;212.664000;212.693000;0 +20260202 211100;212.690000;212.718000;212.690000;212.705000;0 +20260202 211200;212.705000;212.758000;212.702000;212.752000;0 +20260202 211300;212.754000;212.754000;212.702000;212.710000;0 +20260202 211400;212.713000;212.713000;212.689000;212.703000;0 +20260202 211500;212.705000;212.715000;212.684000;212.684000;0 +20260202 211600;212.685000;212.696000;212.635000;212.639000;0 +20260202 211700;212.633000;212.648000;212.611000;212.634000;0 +20260202 211800;212.637000;212.638000;212.582000;212.586000;0 +20260202 211900;212.586000;212.628000;212.585000;212.619000;0 +20260202 212000;212.619000;212.638000;212.608000;212.633000;0 +20260202 212100;212.634000;212.644000;212.607000;212.627000;0 +20260202 212200;212.629000;212.640000;212.623000;212.637000;0 +20260202 212300;212.632000;212.632000;212.582000;212.600000;0 +20260202 212400;212.600000;212.620000;212.591000;212.595000;0 +20260202 212500;212.592000;212.594000;212.545000;212.560000;0 +20260202 212600;212.561000;212.580000;212.543000;212.552000;0 +20260202 212700;212.554000;212.595000;212.554000;212.581000;0 +20260202 212800;212.580000;212.598000;212.575000;212.592000;0 +20260202 212900;212.594000;212.608000;212.586000;212.598000;0 +20260202 213000;212.596000;212.603000;212.548000;212.565000;0 +20260202 213100;212.567000;212.616000;212.567000;212.612000;0 +20260202 213200;212.614000;212.633000;212.603000;212.609000;0 +20260202 213300;212.615000;212.616000;212.581000;212.583000;0 +20260202 213400;212.583000;212.587000;212.569000;212.578000;0 +20260202 213500;212.579000;212.584000;212.549000;212.559000;0 +20260202 213600;212.559000;212.573000;212.547000;212.557000;0 +20260202 213700;212.558000;212.569000;212.550000;212.563000;0 +20260202 213800;212.556000;212.575000;212.554000;212.561000;0 +20260202 213900;212.562000;212.597000;212.560000;212.596000;0 +20260202 214000;212.598000;212.598000;212.574000;212.583000;0 +20260202 214100;212.583000;212.589000;212.578000;212.588000;0 +20260202 214200;212.589000;212.624000;212.585000;212.605000;0 +20260202 214300;212.606000;212.626000;212.605000;212.617000;0 +20260202 214400;212.618000;212.627000;212.615000;212.615000;0 +20260202 214500;212.615000;212.625000;212.611000;212.614000;0 +20260202 214600;212.610000;212.627000;212.607000;212.612000;0 +20260202 214700;212.611000;212.644000;212.607000;212.641000;0 +20260202 214800;212.638000;212.662000;212.637000;212.652000;0 +20260202 214900;212.649000;212.664000;212.644000;212.662000;0 +20260202 215000;212.662000;212.668000;212.634000;212.639000;0 +20260202 215100;212.638000;212.653000;212.637000;212.640000;0 +20260202 215200;212.634000;212.659000;212.634000;212.653000;0 +20260202 215300;212.653000;212.660000;212.642000;212.651000;0 +20260202 215400;212.653000;212.679000;212.652000;212.666000;0 +20260202 215500;212.664000;212.672000;212.631000;212.640000;0 +20260202 215600;212.641000;212.662000;212.640000;212.651000;0 +20260202 215700;212.652000;212.653000;212.638000;212.651000;0 +20260202 215800;212.649000;212.666000;212.645000;212.654000;0 +20260202 215900;212.655000;212.661000;212.648000;212.659000;0 +20260202 220000;212.658000;212.658000;212.641000;212.645000;0 +20260202 220100;212.647000;212.671000;212.647000;212.662000;0 +20260202 220200;212.661000;212.674000;212.642000;212.661000;0 +20260202 220300;212.661000;212.670000;212.644000;212.666000;0 +20260202 220400;212.668000;212.673000;212.658000;212.663000;0 +20260202 220500;212.665000;212.691000;212.665000;212.679000;0 +20260202 220600;212.684000;212.710000;212.683000;212.699000;0 +20260202 220700;212.694000;212.703000;212.665000;212.665000;0 +20260202 220800;212.666000;212.673000;212.656000;212.669000;0 +20260202 220900;212.671000;212.676000;212.643000;212.648000;0 +20260202 221000;212.651000;212.669000;212.650000;212.665000;0 +20260202 221100;212.665000;212.666000;212.631000;212.631000;0 +20260202 221200;212.632000;212.659000;212.632000;212.646000;0 +20260202 221300;212.648000;212.648000;212.636000;212.642000;0 +20260202 221400;212.642000;212.644000;212.621000;212.624000;0 +20260202 221500;212.627000;212.658000;212.620000;212.645000;0 +20260202 221600;212.647000;212.654000;212.638000;212.648000;0 +20260202 221700;212.645000;212.649000;212.634000;212.637000;0 +20260202 221800;212.634000;212.650000;212.629000;212.649000;0 +20260202 221900;212.647000;212.652000;212.597000;212.608000;0 +20260202 222000;212.611000;212.615000;212.558000;212.576000;0 +20260202 222100;212.577000;212.612000;212.563000;212.610000;0 +20260202 222200;212.610000;212.623000;212.586000;212.602000;0 +20260202 222300;212.608000;212.608000;212.591000;212.598000;0 +20260202 222400;212.599000;212.609000;212.576000;212.584000;0 +20260202 222500;212.587000;212.591000;212.572000;212.574000;0 +20260202 222600;212.573000;212.584000;212.567000;212.576000;0 +20260202 222700;212.577000;212.586000;212.572000;212.582000;0 +20260202 222800;212.579000;212.606000;212.579000;212.591000;0 +20260202 222900;212.591000;212.617000;212.590000;212.596000;0 +20260202 223000;212.599000;212.705000;212.591000;212.649000;0 +20260202 223100;212.647000;212.705000;212.635000;212.687000;0 +20260202 223200;212.687000;212.704000;212.654000;212.663000;0 +20260202 223300;212.666000;212.693000;212.658000;212.684000;0 +20260202 223400;212.683000;212.751000;212.661000;212.741000;0 +20260202 223500;212.744000;212.745000;212.714000;212.715000;0 +20260202 223600;212.717000;212.747000;212.687000;212.739000;0 +20260202 223700;212.744000;212.750000;212.724000;212.746000;0 +20260202 223800;212.743000;212.743000;212.690000;212.695000;0 +20260202 223900;212.693000;212.736000;212.689000;212.724000;0 +20260202 224000;212.723000;212.755000;212.693000;212.755000;0 +20260202 224100;212.747000;212.750000;212.720000;212.727000;0 +20260202 224200;212.727000;212.750000;212.718000;212.745000;0 +20260202 224300;212.746000;212.747000;212.720000;212.733000;0 +20260202 224400;212.733000;212.735000;212.710000;212.730000;0 +20260202 224500;212.729000;212.745000;212.707000;212.745000;0 +20260202 224600;212.742000;212.759000;212.712000;212.717000;0 +20260202 224700;212.719000;212.727000;212.694000;212.714000;0 +20260202 224800;212.716000;212.716000;212.695000;212.707000;0 +20260202 224900;212.705000;212.707000;212.683000;212.695000;0 +20260202 225000;212.695000;212.706000;212.685000;212.699000;0 +20260202 225100;212.703000;212.708000;212.692000;212.702000;0 +20260202 225200;212.703000;212.707000;212.679000;212.698000;0 +20260202 225300;212.700000;212.741000;212.692000;212.733000;0 +20260202 225400;212.725000;212.729000;212.681000;212.687000;0 +20260202 225500;212.682000;212.701000;212.682000;212.699000;0 +20260202 225600;212.697000;212.713000;212.696000;212.708000;0 +20260202 225700;212.711000;212.734000;212.706000;212.734000;0 +20260202 225800;212.735000;212.757000;212.733000;212.754000;0 +20260202 225900;212.752000;212.775000;212.749000;212.760000;0 +20260202 230000;212.758000;212.785000;212.752000;212.775000;0 +20260202 230100;212.774000;212.782000;212.769000;212.781000;0 +20260202 230200;212.785000;212.812000;212.781000;212.801000;0 +20260202 230300;212.801000;212.812000;212.772000;212.802000;0 +20260202 230400;212.803000;212.818000;212.765000;212.793000;0 +20260202 230500;212.791000;212.822000;212.785000;212.822000;0 +20260202 230600;212.823000;212.830000;212.816000;212.816000;0 +20260202 230700;212.813000;212.822000;212.798000;212.816000;0 +20260202 230800;212.814000;212.839000;212.811000;212.811000;0 +20260202 230900;212.814000;212.817000;212.774000;212.815000;0 +20260202 231000;212.815000;212.832000;212.809000;212.820000;0 +20260202 231100;212.821000;212.824000;212.798000;212.800000;0 +20260202 231200;212.800000;212.809000;212.779000;212.792000;0 +20260202 231300;212.793000;212.803000;212.780000;212.780000;0 +20260202 231400;212.781000;212.781000;212.764000;212.777000;0 +20260202 231500;212.788000;212.802000;212.778000;212.783000;0 +20260202 231600;212.785000;212.807000;212.767000;212.767000;0 +20260202 231700;212.766000;212.785000;212.761000;212.782000;0 +20260202 231800;212.780000;212.780000;212.751000;212.765000;0 +20260202 231900;212.766000;212.771000;212.751000;212.761000;0 +20260202 232000;212.761000;212.786000;212.755000;212.784000;0 +20260202 232100;212.783000;212.790000;212.777000;212.786000;0 +20260202 232200;212.788000;212.845000;212.758000;212.760000;0 +20260202 232300;212.759000;212.776000;212.734000;212.776000;0 +20260202 232400;212.777000;212.778000;212.722000;212.723000;0 +20260202 232500;212.726000;212.750000;212.726000;212.748000;0 +20260202 232600;212.749000;212.752000;212.726000;212.728000;0 +20260202 232700;212.729000;212.733000;212.708000;212.713000;0 +20260202 232800;212.713000;212.727000;212.698000;212.707000;0 +20260202 232900;212.711000;212.713000;212.672000;212.677000;0 +20260202 233000;212.676000;212.692000;212.656000;212.692000;0 +20260202 233100;212.691000;212.694000;212.650000;212.650000;0 +20260202 233200;212.652000;212.686000;212.650000;212.681000;0 +20260202 233300;212.679000;212.715000;212.679000;212.704000;0 +20260202 233400;212.704000;212.739000;212.700000;212.737000;0 +20260202 233500;212.738000;212.741000;212.724000;212.736000;0 +20260202 233600;212.735000;212.741000;212.695000;212.701000;0 +20260202 233700;212.700000;212.703000;212.666000;212.675000;0 +20260202 233800;212.677000;212.706000;212.677000;212.703000;0 +20260202 233900;212.705000;212.705000;212.687000;212.701000;0 +20260202 234000;212.700000;212.725000;212.679000;212.722000;0 +20260202 234100;212.723000;212.728000;212.707000;212.718000;0 +20260202 234200;212.717000;212.717000;212.696000;212.715000;0 +20260202 234300;212.717000;212.718000;212.681000;212.694000;0 +20260202 234400;212.694000;212.710000;212.693000;212.702000;0 +20260202 234500;212.701000;212.712000;212.697000;212.700000;0 +20260202 234600;212.700000;212.710000;212.677000;212.684000;0 +20260202 234700;212.692000;212.701000;212.665000;212.665000;0 +20260202 234800;212.667000;212.686000;212.650000;212.685000;0 +20260202 234900;212.685000;212.692000;212.676000;212.690000;0 +20260202 235000;212.689000;212.700000;212.680000;212.680000;0 +20260202 235100;212.677000;212.701000;212.677000;212.696000;0 +20260202 235200;212.696000;212.698000;212.677000;212.679000;0 +20260202 235300;212.683000;212.707000;212.683000;212.696000;0 +20260202 235400;212.697000;212.715000;212.690000;212.714000;0 +20260202 235500;212.715000;212.725000;212.712000;212.721000;0 +20260202 235600;212.722000;212.730000;212.719000;212.720000;0 +20260202 235700;212.719000;212.733000;212.719000;212.723000;0 +20260202 235800;212.721000;212.732000;212.720000;212.724000;0 +20260202 235900;212.725000;212.738000;212.716000;212.721000;0 +20260203 000000;212.720000;212.765000;212.717000;212.762000;0 +20260203 000100;212.763000;212.764000;212.744000;212.754000;0 +20260203 000200;212.754000;212.782000;212.752000;212.782000;0 +20260203 000300;212.785000;212.791000;212.763000;212.790000;0 +20260203 000400;212.786000;212.786000;212.747000;212.751000;0 +20260203 000500;212.758000;212.764000;212.752000;212.760000;0 +20260203 000600;212.756000;212.756000;212.742000;212.753000;0 +20260203 000700;212.751000;212.753000;212.733000;212.736000;0 +20260203 000800;212.743000;212.756000;212.736000;212.753000;0 +20260203 000900;212.751000;212.758000;212.738000;212.739000;0 +20260203 001000;212.735000;212.739000;212.695000;212.695000;0 +20260203 001100;212.695000;212.706000;212.677000;212.702000;0 +20260203 001200;212.701000;212.713000;212.698000;212.708000;0 +20260203 001300;212.710000;212.711000;212.697000;212.700000;0 +20260203 001400;212.701000;212.711000;212.690000;212.699000;0 +20260203 001500;212.695000;212.715000;212.690000;212.715000;0 +20260203 001600;212.716000;212.728000;212.712000;212.719000;0 +20260203 001700;212.721000;212.744000;212.721000;212.740000;0 +20260203 001800;212.741000;212.756000;212.741000;212.743000;0 +20260203 001900;212.745000;212.755000;212.721000;212.721000;0 +20260203 002000;212.720000;212.745000;212.720000;212.729000;0 +20260203 002100;212.729000;212.746000;212.729000;212.745000;0 +20260203 002200;212.744000;212.768000;212.741000;212.766000;0 +20260203 002300;212.769000;212.794000;212.767000;212.791000;0 +20260203 002400;212.788000;212.811000;212.788000;212.800000;0 +20260203 002500;212.801000;212.807000;212.779000;212.806000;0 +20260203 002600;212.806000;212.811000;212.792000;212.795000;0 +20260203 002700;212.796000;212.798000;212.769000;212.774000;0 +20260203 002800;212.774000;212.784000;212.760000;212.784000;0 +20260203 002900;212.779000;212.793000;212.762000;212.765000;0 +20260203 003000;212.763000;212.765000;212.701000;212.737000;0 +20260203 003100;212.743000;212.762000;212.707000;212.716000;0 +20260203 003200;212.716000;212.718000;212.691000;212.696000;0 +20260203 003300;212.698000;212.717000;212.693000;212.717000;0 +20260203 003400;212.717000;212.731000;212.681000;212.681000;0 +20260203 003500;212.682000;212.691000;212.667000;212.679000;0 +20260203 003600;212.676000;212.718000;212.676000;212.714000;0 +20260203 003700;212.714000;212.716000;212.699000;212.708000;0 +20260203 003800;212.710000;212.718000;212.695000;212.698000;0 +20260203 003900;212.698000;212.710000;212.691000;212.703000;0 +20260203 004000;212.705000;212.733000;212.700000;212.730000;0 +20260203 004100;212.732000;212.742000;212.724000;212.740000;0 +20260203 004200;212.741000;212.741000;212.713000;212.723000;0 +20260203 004300;212.721000;212.749000;212.717000;212.741000;0 +20260203 004400;212.743000;212.758000;212.732000;212.757000;0 +20260203 004500;212.759000;212.765000;212.752000;212.762000;0 +20260203 004600;212.758000;212.770000;212.755000;212.769000;0 +20260203 004700;212.768000;212.784000;212.768000;212.782000;0 +20260203 004800;212.784000;212.785000;212.766000;212.767000;0 +20260203 004900;212.766000;212.773000;212.742000;212.760000;0 +20260203 005000;212.762000;212.765000;212.753000;212.763000;0 +20260203 005100;212.766000;212.811000;212.765000;212.795000;0 +20260203 005200;212.795000;212.823000;212.791000;212.815000;0 +20260203 005300;212.814000;212.818000;212.808000;212.814000;0 +20260203 005400;212.811000;212.827000;212.789000;212.793000;0 +20260203 005500;212.790000;212.793000;212.761000;212.770000;0 +20260203 005600;212.768000;212.787000;212.763000;212.784000;0 +20260203 005700;212.783000;212.790000;212.769000;212.769000;0 +20260203 005800;212.770000;212.793000;212.762000;212.782000;0 +20260203 005900;212.780000;212.781000;212.768000;212.774000;0 +20260203 010000;212.773000;212.785000;212.738000;212.740000;0 +20260203 010100;212.737000;212.750000;212.721000;212.740000;0 +20260203 010200;212.742000;212.758000;212.725000;212.751000;0 +20260203 010300;212.754000;212.798000;212.750000;212.795000;0 +20260203 010400;212.791000;212.827000;212.785000;212.820000;0 +20260203 010500;212.822000;212.835000;212.803000;212.817000;0 +20260203 010600;212.818000;212.844000;212.812000;212.839000;0 +20260203 010700;212.838000;212.861000;212.834000;212.848000;0 +20260203 010800;212.846000;212.862000;212.842000;212.860000;0 +20260203 010900;212.857000;212.865000;212.848000;212.863000;0 +20260203 011000;212.866000;212.884000;212.857000;212.877000;0 +20260203 011100;212.877000;212.882000;212.863000;212.870000;0 +20260203 011200;212.872000;212.880000;212.863000;212.872000;0 +20260203 011300;212.870000;212.900000;212.858000;212.859000;0 +20260203 011400;212.859000;212.871000;212.856000;212.858000;0 +20260203 011500;212.860000;212.887000;212.854000;212.884000;0 +20260203 011600;212.886000;212.899000;212.872000;212.888000;0 +20260203 011700;212.889000;212.893000;212.872000;212.884000;0 +20260203 011800;212.883000;212.909000;212.882000;212.902000;0 +20260203 011900;212.903000;212.911000;212.882000;212.882000;0 +20260203 012000;212.886000;212.898000;212.867000;212.874000;0 +20260203 012100;212.872000;212.884000;212.863000;212.874000;0 +20260203 012200;212.871000;212.888000;212.871000;212.880000;0 +20260203 012300;212.878000;212.891000;212.863000;212.891000;0 +20260203 012400;212.888000;212.911000;212.888000;212.908000;0 +20260203 012500;212.910000;212.941000;212.907000;212.935000;0 +20260203 012600;212.934000;212.951000;212.932000;212.944000;0 +20260203 012700;212.945000;212.946000;212.916000;212.932000;0 +20260203 012800;212.930000;212.959000;212.930000;212.955000;0 +20260203 012900;212.955000;212.968000;212.947000;212.953000;0 +20260203 013000;212.955000;212.972000;212.944000;212.968000;0 +20260203 013100;212.973000;212.976000;212.957000;212.969000;0 +20260203 013200;212.970000;212.971000;212.938000;212.938000;0 +20260203 013300;212.939000;212.942000;212.891000;212.895000;0 +20260203 013400;212.902000;212.921000;212.874000;212.884000;0 +20260203 013500;212.885000;212.899000;212.868000;212.872000;0 +20260203 013600;212.872000;212.875000;212.843000;212.870000;0 +20260203 013700;212.872000;212.895000;212.864000;212.887000;0 +20260203 013800;212.890000;212.892000;212.852000;212.862000;0 +20260203 013900;212.860000;212.862000;212.837000;212.842000;0 +20260203 014000;212.841000;212.865000;212.841000;212.854000;0 +20260203 014100;212.854000;212.855000;212.823000;212.841000;0 +20260203 014200;212.842000;212.842000;212.813000;212.822000;0 +20260203 014300;212.821000;212.822000;212.776000;212.778000;0 +20260203 014400;212.777000;212.794000;212.769000;212.782000;0 +20260203 014500;212.783000;212.800000;212.758000;212.789000;0 +20260203 014600;212.790000;212.801000;212.774000;212.784000;0 +20260203 014700;212.782000;212.787000;212.773000;212.786000;0 +20260203 014800;212.785000;212.801000;212.781000;212.793000;0 +20260203 014900;212.794000;212.796000;212.747000;212.768000;0 +20260203 015000;212.765000;212.795000;212.738000;212.756000;0 +20260203 015100;212.757000;212.772000;212.755000;212.758000;0 +20260203 015200;212.757000;212.787000;212.748000;212.785000;0 +20260203 015300;212.789000;212.794000;212.768000;212.781000;0 +20260203 015400;212.782000;212.811000;212.771000;212.780000;0 +20260203 015500;212.779000;212.804000;212.747000;212.753000;0 +20260203 015600;212.751000;212.792000;212.751000;212.785000;0 +20260203 015700;212.786000;212.795000;212.765000;212.766000;0 +20260203 015800;212.766000;212.794000;212.745000;212.792000;0 +20260203 015900;212.791000;212.819000;212.791000;212.813000;0 +20260203 020000;212.813000;212.813000;212.766000;212.781000;0 +20260203 020100;212.778000;212.799000;212.768000;212.772000;0 +20260203 020200;212.772000;212.797000;212.772000;212.788000;0 +20260203 020300;212.789000;212.813000;212.783000;212.807000;0 +20260203 020400;212.807000;212.814000;212.779000;212.785000;0 +20260203 020500;212.784000;212.815000;212.784000;212.802000;0 +20260203 020600;212.803000;212.886000;212.801000;212.881000;0 +20260203 020700;212.883000;212.893000;212.862000;212.872000;0 +20260203 020800;212.868000;212.880000;212.849000;212.877000;0 +20260203 020900;212.881000;212.915000;212.877000;212.882000;0 +20260203 021000;212.883000;212.914000;212.878000;212.900000;0 +20260203 021100;212.900000;212.954000;212.890000;212.896000;0 +20260203 021200;212.897000;212.905000;212.836000;212.846000;0 +20260203 021300;212.844000;212.863000;212.788000;212.804000;0 +20260203 021400;212.807000;212.849000;212.806000;212.842000;0 +20260203 021500;212.845000;212.845000;212.805000;212.825000;0 +20260203 021600;212.824000;212.829000;212.748000;212.755000;0 +20260203 021700;212.757000;212.765000;212.730000;212.761000;0 +20260203 021800;212.759000;212.780000;212.727000;212.727000;0 +20260203 021900;212.727000;212.791000;212.727000;212.782000;0 +20260203 022000;212.783000;212.822000;212.779000;212.817000;0 +20260203 022100;212.818000;212.826000;212.771000;212.779000;0 +20260203 022200;212.781000;212.794000;212.771000;212.778000;0 +20260203 022300;212.779000;212.824000;212.750000;212.793000;0 +20260203 022400;212.794000;212.803000;212.754000;212.758000;0 +20260203 022500;212.758000;212.786000;212.747000;212.775000;0 +20260203 022600;212.775000;212.788000;212.768000;212.770000;0 +20260203 022700;212.770000;212.784000;212.760000;212.770000;0 +20260203 022800;212.771000;212.779000;212.734000;212.742000;0 +20260203 022900;212.742000;212.777000;212.738000;212.775000;0 +20260203 023000;212.775000;212.797000;212.762000;212.795000;0 +20260203 023100;212.794000;212.861000;212.786000;212.823000;0 +20260203 023200;212.823000;212.870000;212.807000;212.829000;0 +20260203 023300;212.828000;212.861000;212.825000;212.834000;0 +20260203 023400;212.833000;212.887000;212.831000;212.874000;0 +20260203 023500;212.873000;212.903000;212.871000;212.900000;0 +20260203 023600;212.901000;212.914000;212.875000;212.875000;0 +20260203 023700;212.875000;212.934000;212.863000;212.928000;0 +20260203 023800;212.930000;212.930000;212.901000;212.912000;0 +20260203 023900;212.912000;212.923000;212.893000;212.905000;0 +20260203 024000;212.906000;212.937000;212.899000;212.929000;0 +20260203 024100;212.929000;212.933000;212.905000;212.908000;0 +20260203 024200;212.910000;212.910000;212.827000;212.833000;0 +20260203 024300;212.834000;212.899000;212.828000;212.898000;0 +20260203 024400;212.898000;212.933000;212.897000;212.923000;0 +20260203 024500;212.915000;212.941000;212.891000;212.895000;0 +20260203 024600;212.899000;212.952000;212.899000;212.944000;0 +20260203 024700;212.943000;212.974000;212.916000;212.974000;0 +20260203 024800;212.975000;212.984000;212.935000;212.936000;0 +20260203 024900;212.937000;212.946000;212.914000;212.922000;0 +20260203 025000;212.915000;212.935000;212.908000;212.911000;0 +20260203 025100;212.912000;212.918000;212.884000;212.890000;0 +20260203 025200;212.892000;212.906000;212.875000;212.876000;0 +20260203 025300;212.884000;212.891000;212.862000;212.889000;0 +20260203 025400;212.888000;212.904000;212.874000;212.892000;0 +20260203 025500;212.893000;212.920000;212.884000;212.920000;0 +20260203 025600;212.916000;212.937000;212.902000;212.909000;0 +20260203 025700;212.907000;212.909000;212.836000;212.845000;0 +20260203 025800;212.840000;212.858000;212.796000;212.815000;0 +20260203 025900;212.814000;212.870000;212.811000;212.852000;0 +20260203 030000;212.850000;212.887000;212.820000;212.886000;0 +20260203 030100;212.885000;212.889000;212.843000;212.860000;0 +20260203 030200;212.859000;212.899000;212.830000;212.844000;0 +20260203 030300;212.853000;212.875000;212.830000;212.837000;0 +20260203 030400;212.836000;212.869000;212.825000;212.844000;0 +20260203 030500;212.841000;212.844000;212.752000;212.766000;0 +20260203 030600;212.769000;212.810000;212.766000;212.806000;0 +20260203 030700;212.804000;212.823000;212.772000;212.788000;0 +20260203 030800;212.789000;212.827000;212.789000;212.821000;0 +20260203 030900;212.823000;212.871000;212.811000;212.855000;0 +20260203 031000;212.857000;212.862000;212.794000;212.800000;0 +20260203 031100;212.802000;212.812000;212.797000;212.808000;0 +20260203 031200;212.806000;212.879000;212.806000;212.824000;0 +20260203 031300;212.826000;212.835000;212.810000;212.825000;0 +20260203 031400;212.824000;212.844000;212.811000;212.816000;0 +20260203 031500;212.816000;212.877000;212.810000;212.871000;0 +20260203 031600;212.872000;212.886000;212.864000;212.877000;0 +20260203 031700;212.876000;212.879000;212.846000;212.871000;0 +20260203 031800;212.863000;212.913000;212.863000;212.875000;0 +20260203 031900;212.874000;212.914000;212.872000;212.877000;0 +20260203 032000;212.879000;212.894000;212.791000;212.795000;0 +20260203 032100;212.792000;212.792000;212.759000;212.775000;0 +20260203 032200;212.778000;212.789000;212.761000;212.761000;0 +20260203 032300;212.762000;212.823000;212.762000;212.823000;0 +20260203 032400;212.822000;212.828000;212.788000;212.817000;0 +20260203 032500;212.816000;212.838000;212.798000;212.823000;0 +20260203 032600;212.820000;212.841000;212.802000;212.814000;0 +20260203 032700;212.812000;212.818000;212.777000;212.818000;0 +20260203 032800;212.821000;212.852000;212.816000;212.840000;0 +20260203 032900;212.841000;212.860000;212.821000;212.821000;0 +20260203 033000;212.823000;212.866000;212.822000;212.846000;0 +20260203 033100;212.846000;212.859000;212.799000;212.814000;0 +20260203 033200;212.814000;212.834000;212.760000;212.833000;0 +20260203 033300;212.831000;212.843000;212.814000;212.823000;0 +20260203 033400;212.824000;212.839000;212.815000;212.833000;0 +20260203 033500;212.836000;212.836000;212.785000;212.794000;0 +20260203 033600;212.793000;212.832000;212.790000;212.831000;0 +20260203 033700;212.827000;212.855000;212.819000;212.833000;0 +20260203 033800;212.835000;212.854000;212.829000;212.849000;0 +20260203 033900;212.846000;212.848000;212.795000;212.795000;0 +20260203 034000;212.798000;212.824000;212.791000;212.820000;0 +20260203 034100;212.818000;212.854000;212.798000;212.798000;0 +20260203 034200;212.799000;212.810000;212.768000;212.809000;0 +20260203 034300;212.808000;212.815000;212.798000;212.809000;0 +20260203 034400;212.809000;212.821000;212.770000;212.774000;0 +20260203 034500;212.778000;212.792000;212.767000;212.776000;0 +20260203 034600;212.778000;212.782000;212.752000;212.760000;0 +20260203 034700;212.760000;212.783000;212.754000;212.783000;0 +20260203 034800;212.780000;212.810000;212.778000;212.805000;0 +20260203 034900;212.812000;212.815000;212.778000;212.798000;0 +20260203 035000;212.795000;212.804000;212.780000;212.801000;0 +20260203 035100;212.803000;212.848000;212.795000;212.844000;0 +20260203 035200;212.844000;212.865000;212.833000;212.864000;0 +20260203 035300;212.864000;212.893000;212.843000;212.886000;0 +20260203 035400;212.882000;212.898000;212.851000;212.853000;0 +20260203 035500;212.857000;212.877000;212.850000;212.853000;0 +20260203 035600;212.852000;212.880000;212.852000;212.868000;0 +20260203 035700;212.866000;212.874000;212.855000;212.868000;0 +20260203 035800;212.869000;212.882000;212.866000;212.875000;0 +20260203 035900;212.873000;212.878000;212.847000;212.857000;0 +20260203 040000;212.859000;212.893000;212.859000;212.873000;0 +20260203 040100;212.873000;212.888000;212.847000;212.857000;0 +20260203 040200;212.857000;212.860000;212.799000;212.801000;0 +20260203 040300;212.805000;212.811000;212.774000;212.774000;0 +20260203 040400;212.775000;212.786000;212.741000;212.782000;0 +20260203 040500;212.782000;212.838000;212.782000;212.818000;0 +20260203 040600;212.816000;212.873000;212.813000;212.868000;0 +20260203 040700;212.871000;212.896000;212.865000;212.880000;0 +20260203 040800;212.880000;212.886000;212.859000;212.885000;0 +20260203 040900;212.885000;212.896000;212.874000;212.883000;0 +20260203 041000;212.883000;212.955000;212.879000;212.911000;0 +20260203 041100;212.910000;212.941000;212.892000;212.934000;0 +20260203 041200;212.930000;212.989000;212.926000;212.988000;0 +20260203 041300;212.986000;213.002000;212.936000;212.954000;0 +20260203 041400;212.952000;213.009000;212.939000;212.955000;0 +20260203 041500;212.955000;212.975000;212.939000;212.950000;0 +20260203 041600;212.957000;213.034000;212.944000;213.024000;0 +20260203 041700;213.027000;213.086000;213.018000;213.030000;0 +20260203 041800;213.030000;213.094000;213.013000;213.091000;0 +20260203 041900;213.097000;213.097000;213.048000;213.054000;0 +20260203 042000;213.056000;213.056000;212.998000;213.022000;0 +20260203 042100;213.027000;213.027000;212.982000;212.982000;0 +20260203 042200;212.984000;212.999000;212.967000;212.982000;0 +20260203 042300;212.983000;212.983000;212.958000;212.971000;0 +20260203 042400;212.974000;212.992000;212.961000;212.975000;0 +20260203 042500;212.973000;212.976000;212.926000;212.942000;0 +20260203 042600;212.944000;212.992000;212.939000;212.984000;0 +20260203 042700;212.985000;213.010000;212.972000;212.986000;0 +20260203 042800;212.984000;213.018000;212.976000;213.000000;0 +20260203 042900;213.001000;213.008000;212.958000;212.974000;0 +20260203 043000;212.978000;213.003000;212.959000;212.988000;0 +20260203 043100;212.989000;212.996000;212.966000;212.967000;0 +20260203 043200;212.967000;212.983000;212.955000;212.975000;0 +20260203 043300;212.973000;212.980000;212.960000;212.977000;0 +20260203 043400;212.979000;212.983000;212.944000;212.975000;0 +20260203 043500;212.975000;213.001000;212.968000;212.987000;0 +20260203 043600;212.988000;213.011000;212.978000;212.998000;0 +20260203 043700;212.996000;213.002000;212.959000;212.985000;0 +20260203 043800;212.987000;213.025000;212.962000;213.009000;0 +20260203 043900;213.007000;213.049000;213.007000;213.010000;0 +20260203 044000;213.011000;213.035000;213.011000;213.021000;0 +20260203 044100;213.019000;213.023000;212.988000;213.009000;0 +20260203 044200;213.010000;213.038000;212.997000;213.029000;0 +20260203 044300;213.027000;213.053000;213.008000;213.046000;0 +20260203 044400;213.044000;213.058000;213.029000;213.058000;0 +20260203 044500;213.055000;213.069000;213.039000;213.056000;0 +20260203 044600;213.056000;213.109000;213.037000;213.082000;0 +20260203 044700;213.083000;213.107000;213.067000;213.085000;0 +20260203 044800;213.080000;213.101000;213.077000;213.092000;0 +20260203 044900;213.095000;213.109000;213.075000;213.105000;0 +20260203 045000;213.105000;213.119000;213.077000;213.078000;0 +20260203 045100;213.077000;213.108000;213.075000;213.081000;0 +20260203 045200;213.085000;213.135000;213.076000;213.127000;0 +20260203 045300;213.126000;213.136000;213.108000;213.112000;0 +20260203 045400;213.112000;213.113000;213.074000;213.074000;0 +20260203 045500;213.074000;213.109000;213.061000;213.070000;0 +20260203 045600;213.071000;213.077000;213.043000;213.063000;0 +20260203 045700;213.064000;213.069000;213.041000;213.049000;0 +20260203 045800;213.047000;213.055000;213.020000;213.030000;0 +20260203 045900;213.032000;213.046000;213.020000;213.025000;0 +20260203 050000;213.027000;213.046000;213.020000;213.039000;0 +20260203 050100;213.040000;213.052000;213.027000;213.031000;0 +20260203 050200;213.030000;213.063000;213.029000;213.046000;0 +20260203 050300;213.047000;213.051000;213.010000;213.017000;0 +20260203 050400;213.018000;213.023000;212.991000;213.000000;0 +20260203 050500;212.996000;213.001000;212.984000;213.000000;0 +20260203 050600;213.003000;213.035000;212.997000;213.003000;0 +20260203 050700;213.003000;213.021000;212.984000;213.018000;0 +20260203 050800;213.020000;213.040000;213.010000;213.023000;0 +20260203 050900;213.025000;213.044000;213.016000;213.021000;0 +20260203 051000;213.021000;213.059000;213.015000;213.056000;0 +20260203 051100;213.053000;213.068000;213.033000;213.035000;0 +20260203 051200;213.033000;213.042000;213.024000;213.042000;0 +20260203 051300;213.041000;213.043000;212.997000;213.011000;0 +20260203 051400;213.009000;213.013000;212.977000;212.993000;0 +20260203 051500;212.991000;213.013000;212.982000;212.991000;0 +20260203 051600;212.992000;212.995000;212.967000;212.979000;0 +20260203 051700;212.980000;212.992000;212.970000;212.970000;0 +20260203 051800;212.968000;212.987000;212.968000;212.972000;0 +20260203 051900;212.971000;212.971000;212.938000;212.942000;0 +20260203 052000;212.940000;212.955000;212.934000;212.955000;0 +20260203 052100;212.959000;212.962000;212.940000;212.955000;0 +20260203 052200;212.954000;212.966000;212.937000;212.964000;0 +20260203 052300;212.964000;212.964000;212.918000;212.941000;0 +20260203 052400;212.943000;212.952000;212.932000;212.951000;0 +20260203 052500;212.950000;212.979000;212.945000;212.975000;0 +20260203 052600;212.978000;212.979000;212.948000;212.966000;0 +20260203 052700;212.967000;212.995000;212.966000;212.993000;0 +20260203 052800;212.996000;213.006000;212.983000;212.993000;0 +20260203 052900;212.995000;213.010000;212.978000;213.009000;0 +20260203 053000;213.010000;213.011000;212.980000;212.990000;0 +20260203 053100;212.988000;212.991000;212.966000;212.977000;0 +20260203 053200;212.977000;212.987000;212.955000;212.978000;0 +20260203 053300;212.977000;212.984000;212.968000;212.984000;0 +20260203 053400;212.982000;212.994000;212.959000;212.969000;0 +20260203 053500;212.968000;212.969000;212.935000;212.936000;0 +20260203 053600;212.938000;212.964000;212.935000;212.944000;0 +20260203 053700;212.945000;212.952000;212.927000;212.939000;0 +20260203 053800;212.938000;212.971000;212.936000;212.965000;0 +20260203 053900;212.968000;212.977000;212.946000;212.950000;0 +20260203 054000;212.952000;212.954000;212.945000;212.948000;0 +20260203 054100;212.948000;212.980000;212.948000;212.964000;0 +20260203 054200;212.960000;212.966000;212.940000;212.944000;0 +20260203 054300;212.945000;212.970000;212.945000;212.956000;0 +20260203 054400;212.957000;212.971000;212.947000;212.951000;0 +20260203 054500;212.949000;212.969000;212.946000;212.961000;0 +20260203 054600;212.965000;212.967000;212.942000;212.952000;0 +20260203 054700;212.953000;212.976000;212.949000;212.957000;0 +20260203 054800;212.958000;212.982000;212.953000;212.982000;0 +20260203 054900;212.982000;213.004000;212.978000;212.994000;0 +20260203 055000;212.994000;213.004000;212.966000;212.996000;0 +20260203 055100;212.998000;213.010000;212.981000;213.006000;0 +20260203 055200;212.995000;213.002000;212.985000;212.990000;0 +20260203 055300;212.991000;213.004000;212.987000;212.995000;0 +20260203 055400;212.998000;213.007000;212.987000;213.004000;0 +20260203 055500;213.004000;213.016000;212.965000;212.971000;0 +20260203 055600;212.972000;212.975000;212.960000;212.960000;0 +20260203 055700;212.960000;212.970000;212.948000;212.968000;0 +20260203 055800;212.968000;212.970000;212.949000;212.949000;0 +20260203 055900;212.950000;212.953000;212.914000;212.915000;0 +20260203 060000;212.915000;212.930000;212.907000;212.918000;0 +20260203 060100;212.917000;212.949000;212.897000;212.933000;0 +20260203 060200;212.935000;212.937000;212.907000;212.908000;0 +20260203 060300;212.907000;212.929000;212.900000;212.929000;0 +20260203 060400;212.925000;212.945000;212.915000;212.945000;0 +20260203 060500;212.943000;213.004000;212.938000;212.987000;0 +20260203 060600;212.986000;213.021000;212.978000;213.009000;0 +20260203 060700;213.010000;213.034000;213.002000;213.006000;0 +20260203 060800;213.008000;213.027000;213.000000;213.005000;0 +20260203 060900;213.006000;213.007000;212.972000;212.973000;0 +20260203 061000;212.974000;212.999000;212.963000;212.994000;0 +20260203 061100;212.992000;212.996000;212.971000;212.972000;0 +20260203 061200;212.970000;213.018000;212.965000;213.018000;0 +20260203 061300;213.017000;213.049000;213.015000;213.022000;0 +20260203 061400;213.022000;213.030000;213.005000;213.007000;0 +20260203 061500;213.007000;213.025000;212.990000;212.996000;0 +20260203 061600;212.996000;213.002000;212.978000;212.982000;0 +20260203 061700;212.984000;212.988000;212.943000;212.943000;0 +20260203 061800;212.944000;212.972000;212.943000;212.965000;0 +20260203 061900;212.965000;212.971000;212.946000;212.962000;0 +20260203 062000;212.969000;212.986000;212.956000;212.963000;0 +20260203 062100;212.965000;212.974000;212.956000;212.967000;0 +20260203 062200;212.969000;212.989000;212.960000;212.979000;0 +20260203 062300;212.980000;212.983000;212.954000;212.956000;0 +20260203 062400;212.955000;212.962000;212.921000;212.923000;0 +20260203 062500;212.923000;212.952000;212.923000;212.949000;0 +20260203 062600;212.948000;212.965000;212.922000;212.923000;0 +20260203 062700;212.923000;212.956000;212.923000;212.943000;0 +20260203 062800;212.944000;212.949000;212.937000;212.949000;0 +20260203 062900;212.949000;212.960000;212.933000;212.936000;0 +20260203 063000;212.936000;212.937000;212.923000;212.926000;0 +20260203 063100;212.927000;212.927000;212.897000;212.898000;0 +20260203 063200;212.899000;212.906000;212.890000;212.895000;0 +20260203 063300;212.895000;212.920000;212.874000;212.906000;0 +20260203 063400;212.909000;212.909000;212.881000;212.891000;0 +20260203 063500;212.890000;212.896000;212.865000;212.875000;0 +20260203 063600;212.876000;212.895000;212.874000;212.894000;0 +20260203 063700;212.893000;212.914000;212.889000;212.904000;0 +20260203 063800;212.907000;212.909000;212.851000;212.876000;0 +20260203 063900;212.877000;212.898000;212.871000;212.893000;0 +20260203 064000;212.893000;212.943000;212.889000;212.931000;0 +20260203 064100;212.927000;212.945000;212.911000;212.935000;0 +20260203 064200;212.937000;212.959000;212.934000;212.957000;0 +20260203 064300;212.956000;212.982000;212.949000;212.975000;0 +20260203 064400;212.975000;212.977000;212.950000;212.954000;0 +20260203 064500;212.954000;212.959000;212.939000;212.940000;0 +20260203 064600;212.939000;212.972000;212.937000;212.960000;0 +20260203 064700;212.956000;212.974000;212.956000;212.962000;0 +20260203 064800;212.962000;212.964000;212.907000;212.910000;0 +20260203 064900;212.909000;212.916000;212.900000;212.911000;0 +20260203 065000;212.913000;212.947000;212.900000;212.935000;0 +20260203 065100;212.935000;212.946000;212.922000;212.940000;0 +20260203 065200;212.940000;212.955000;212.940000;212.950000;0 +20260203 065300;212.951000;212.955000;212.939000;212.942000;0 +20260203 065400;212.944000;212.976000;212.944000;212.975000;0 +20260203 065500;212.972000;212.974000;212.954000;212.960000;0 +20260203 065600;212.957000;212.974000;212.954000;212.967000;0 +20260203 065700;212.968000;212.987000;212.935000;212.935000;0 +20260203 065800;212.934000;212.937000;212.906000;212.921000;0 +20260203 065900;212.921000;212.921000;212.877000;212.877000;0 +20260203 070000;212.883000;212.919000;212.878000;212.891000;0 +20260203 070100;212.890000;212.905000;212.876000;212.893000;0 +20260203 070200;212.892000;212.936000;212.884000;212.936000;0 +20260203 070300;212.935000;212.957000;212.934000;212.952000;0 +20260203 070400;212.950000;212.950000;212.934000;212.934000;0 +20260203 070500;212.935000;212.945000;212.924000;212.942000;0 +20260203 070600;212.940000;212.979000;212.940000;212.976000;0 +20260203 070700;212.979000;213.029000;212.978000;213.001000;0 +20260203 070800;213.001000;213.017000;212.999000;213.004000;0 +20260203 070900;213.004000;213.005000;212.991000;212.994000;0 +20260203 071000;212.997000;213.017000;212.983000;212.983000;0 +20260203 071100;212.983000;213.009000;212.982000;213.009000;0 +20260203 071200;213.024000;213.029000;213.011000;213.019000;0 +20260203 071300;213.019000;213.023000;213.010000;213.018000;0 +20260203 071400;213.020000;213.020000;212.968000;212.973000;0 +20260203 071500;212.975000;212.987000;212.963000;212.985000;0 +20260203 071600;212.985000;212.998000;212.963000;212.989000;0 +20260203 071700;212.989000;213.017000;212.987000;213.013000;0 +20260203 071800;213.012000;213.024000;213.000000;213.000000;0 +20260203 071900;212.998000;213.015000;212.990000;213.012000;0 +20260203 072000;213.012000;213.044000;213.007000;213.033000;0 +20260203 072100;213.033000;213.056000;213.032000;213.050000;0 +20260203 072200;213.050000;213.050000;213.003000;213.008000;0 +20260203 072300;213.006000;213.011000;212.988000;212.996000;0 +20260203 072400;212.997000;213.026000;212.996000;213.022000;0 +20260203 072500;213.022000;213.034000;213.018000;213.031000;0 +20260203 072600;213.030000;213.050000;213.026000;213.050000;0 +20260203 072700;213.048000;213.049000;213.026000;213.042000;0 +20260203 072800;213.045000;213.063000;213.043000;213.060000;0 +20260203 072900;213.060000;213.063000;213.047000;213.052000;0 +20260203 073000;213.056000;213.079000;213.032000;213.079000;0 +20260203 073100;213.078000;213.092000;213.074000;213.085000;0 +20260203 073200;213.088000;213.097000;213.078000;213.094000;0 +20260203 073300;213.094000;213.143000;213.094000;213.143000;0 +20260203 073400;213.145000;213.158000;213.117000;213.153000;0 +20260203 073500;213.153000;213.156000;213.135000;213.141000;0 +20260203 073600;213.133000;213.155000;213.124000;213.142000;0 +20260203 073700;213.142000;213.161000;213.142000;213.159000;0 +20260203 073800;213.159000;213.172000;213.148000;213.167000;0 +20260203 073900;213.165000;213.172000;213.158000;213.166000;0 +20260203 074000;213.168000;213.176000;213.142000;213.145000;0 +20260203 074100;213.146000;213.157000;213.126000;213.137000;0 +20260203 074200;213.137000;213.170000;213.137000;213.164000;0 +20260203 074300;213.164000;213.175000;213.154000;213.159000;0 +20260203 074400;213.160000;213.199000;213.159000;213.195000;0 +20260203 074500;213.193000;213.203000;213.185000;213.202000;0 +20260203 074600;213.200000;213.211000;213.180000;213.187000;0 +20260203 074700;213.183000;213.217000;213.164000;213.195000;0 +20260203 074800;213.193000;213.214000;213.191000;213.209000;0 +20260203 074900;213.212000;213.255000;213.201000;213.252000;0 +20260203 075000;213.249000;213.277000;213.205000;213.267000;0 +20260203 075100;213.267000;213.288000;213.258000;213.286000;0 +20260203 075200;213.284000;213.287000;213.260000;213.268000;0 +20260203 075300;213.269000;213.297000;213.267000;213.297000;0 +20260203 075400;213.297000;213.309000;213.262000;213.280000;0 +20260203 075500;213.281000;213.300000;213.264000;213.272000;0 +20260203 075600;213.270000;213.306000;213.270000;213.291000;0 +20260203 075700;213.291000;213.319000;213.285000;213.305000;0 +20260203 075800;213.305000;213.309000;213.261000;213.279000;0 +20260203 075900;213.278000;213.282000;213.254000;213.264000;0 +20260203 080000;213.268000;213.268000;213.238000;213.265000;0 +20260203 080100;213.270000;213.271000;213.239000;213.259000;0 +20260203 080200;213.261000;213.261000;213.235000;213.242000;0 +20260203 080300;213.241000;213.266000;213.223000;213.262000;0 +20260203 080400;213.266000;213.293000;213.262000;213.268000;0 +20260203 080500;213.267000;213.269000;213.234000;213.251000;0 +20260203 080600;213.253000;213.260000;213.236000;213.243000;0 +20260203 080700;213.244000;213.293000;213.228000;213.290000;0 +20260203 080800;213.290000;213.290000;213.231000;213.246000;0 +20260203 080900;213.246000;213.291000;213.244000;213.291000;0 +20260203 081000;213.291000;213.294000;213.270000;213.276000;0 +20260203 081100;213.275000;213.325000;213.270000;213.308000;0 +20260203 081200;213.309000;213.309000;213.288000;213.297000;0 +20260203 081300;213.297000;213.299000;213.260000;213.275000;0 +20260203 081400;213.273000;213.284000;213.254000;213.258000;0 +20260203 081500;213.253000;213.253000;213.222000;213.241000;0 +20260203 081600;213.242000;213.276000;213.236000;213.266000;0 +20260203 081700;213.267000;213.282000;213.258000;213.263000;0 +20260203 081800;213.261000;213.280000;213.243000;213.264000;0 +20260203 081900;213.265000;213.266000;213.220000;213.225000;0 +20260203 082000;213.236000;213.238000;213.210000;213.218000;0 +20260203 082100;213.217000;213.233000;213.163000;213.179000;0 +20260203 082200;213.173000;213.179000;213.149000;213.171000;0 +20260203 082300;213.171000;213.180000;213.139000;213.142000;0 +20260203 082400;213.141000;213.156000;213.113000;213.121000;0 +20260203 082500;213.121000;213.121000;213.094000;213.111000;0 +20260203 082600;213.114000;213.153000;213.096000;213.142000;0 +20260203 082700;213.145000;213.161000;213.135000;213.140000;0 +20260203 082800;213.143000;213.164000;213.116000;213.139000;0 +20260203 082900;213.140000;213.147000;213.083000;213.084000;0 +20260203 083000;213.084000;213.097000;213.060000;213.069000;0 +20260203 083100;213.070000;213.122000;213.069000;213.110000;0 +20260203 083200;213.109000;213.123000;213.093000;213.114000;0 +20260203 083300;213.115000;213.144000;213.112000;213.135000;0 +20260203 083400;213.136000;213.137000;213.118000;213.127000;0 +20260203 083500;213.125000;213.137000;213.124000;213.134000;0 +20260203 083600;213.132000;213.169000;213.132000;213.169000;0 +20260203 083700;213.170000;213.192000;213.156000;213.183000;0 +20260203 083800;213.181000;213.198000;213.172000;213.179000;0 +20260203 083900;213.180000;213.181000;213.110000;213.118000;0 +20260203 084000;213.120000;213.201000;213.120000;213.200000;0 +20260203 084100;213.202000;213.225000;213.200000;213.220000;0 +20260203 084200;213.220000;213.226000;213.169000;213.179000;0 +20260203 084300;213.180000;213.200000;213.175000;213.199000;0 +20260203 084400;213.199000;213.199000;213.163000;213.174000;0 +20260203 084500;213.174000;213.193000;213.171000;213.171000;0 +20260203 084600;213.173000;213.190000;213.161000;213.187000;0 +20260203 084700;213.186000;213.212000;213.172000;213.172000;0 +20260203 084800;213.171000;213.187000;213.138000;213.141000;0 +20260203 084900;213.143000;213.163000;213.141000;213.141000;0 +20260203 085000;213.140000;213.140000;213.119000;213.128000;0 +20260203 085100;213.128000;213.135000;213.103000;213.126000;0 +20260203 085200;213.127000;213.153000;213.126000;213.149000;0 +20260203 085300;213.150000;213.152000;213.118000;213.136000;0 +20260203 085400;213.134000;213.138000;213.113000;213.124000;0 +20260203 085500;213.123000;213.157000;213.123000;213.142000;0 +20260203 085600;213.142000;213.159000;213.130000;213.155000;0 +20260203 085700;213.153000;213.162000;213.114000;213.134000;0 +20260203 085800;213.133000;213.134000;213.107000;213.110000;0 +20260203 085900;213.112000;213.112000;213.069000;213.092000;0 +20260203 090000;213.094000;213.104000;213.072000;213.086000;0 +20260203 090100;213.087000;213.104000;213.076000;213.097000;0 +20260203 090200;213.098000;213.113000;213.088000;213.104000;0 +20260203 090300;213.105000;213.108000;213.084000;213.100000;0 +20260203 090400;213.099000;213.114000;213.037000;213.044000;0 +20260203 090500;213.041000;213.065000;212.981000;213.064000;0 +20260203 090600;213.063000;213.099000;213.058000;213.097000;0 +20260203 090700;213.095000;213.134000;213.068000;213.125000;0 +20260203 090800;213.126000;213.140000;213.097000;213.135000;0 +20260203 090900;213.136000;213.182000;213.120000;213.179000;0 +20260203 091000;213.177000;213.205000;213.158000;213.203000;0 +20260203 091100;213.202000;213.209000;213.169000;213.185000;0 +20260203 091200;213.187000;213.194000;213.151000;213.186000;0 +20260203 091300;213.190000;213.211000;213.172000;213.209000;0 +20260203 091400;213.206000;213.206000;213.182000;213.189000;0 +20260203 091500;213.190000;213.190000;213.139000;213.140000;0 +20260203 091600;213.143000;213.143000;213.099000;213.099000;0 +20260203 091700;213.098000;213.113000;213.071000;213.088000;0 +20260203 091800;213.087000;213.115000;213.045000;213.052000;0 +20260203 091900;213.052000;213.135000;213.052000;213.122000;0 +20260203 092000;213.120000;213.155000;213.103000;213.155000;0 +20260203 092100;213.153000;213.186000;213.150000;213.183000;0 +20260203 092200;213.182000;213.188000;213.157000;213.175000;0 +20260203 092300;213.175000;213.194000;213.174000;213.186000;0 +20260203 092400;213.184000;213.188000;213.166000;213.168000;0 +20260203 092500;213.172000;213.207000;213.159000;213.204000;0 +20260203 092600;213.207000;213.225000;213.181000;213.184000;0 +20260203 092700;213.185000;213.212000;213.185000;213.198000;0 +20260203 092800;213.199000;213.211000;213.185000;213.203000;0 +20260203 092900;213.204000;213.208000;213.182000;213.186000;0 +20260203 093000;213.192000;213.250000;213.192000;213.238000;0 +20260203 093100;213.239000;213.259000;213.225000;213.257000;0 +20260203 093200;213.256000;213.262000;213.172000;213.192000;0 +20260203 093300;213.190000;213.199000;213.165000;213.174000;0 +20260203 093400;213.173000;213.180000;213.145000;213.165000;0 +20260203 093500;213.165000;213.201000;213.143000;213.174000;0 +20260203 093600;213.177000;213.186000;213.146000;213.183000;0 +20260203 093700;213.186000;213.190000;213.144000;213.145000;0 +20260203 093800;213.145000;213.172000;213.127000;213.172000;0 +20260203 093900;213.171000;213.181000;213.133000;213.137000;0 +20260203 094000;213.142000;213.150000;213.090000;213.103000;0 +20260203 094100;213.102000;213.155000;213.102000;213.145000;0 +20260203 094200;213.148000;213.202000;213.148000;213.195000;0 +20260203 094300;213.195000;213.195000;213.130000;213.175000;0 +20260203 094400;213.176000;213.214000;213.168000;213.212000;0 +20260203 094500;213.209000;213.215000;213.182000;213.190000;0 +20260203 094600;213.189000;213.189000;213.119000;213.128000;0 +20260203 094700;213.126000;213.166000;213.125000;213.166000;0 +20260203 094800;213.168000;213.198000;213.157000;213.192000;0 +20260203 094900;213.192000;213.221000;213.180000;213.200000;0 +20260203 095000;213.198000;213.220000;213.186000;213.186000;0 +20260203 095100;213.193000;213.212000;213.176000;213.176000;0 +20260203 095200;213.178000;213.220000;213.175000;213.204000;0 +20260203 095300;213.204000;213.217000;213.156000;213.160000;0 +20260203 095400;213.161000;213.174000;213.120000;213.120000;0 +20260203 095500;213.120000;213.139000;213.093000;213.093000;0 +20260203 095600;213.094000;213.116000;213.092000;213.095000;0 +20260203 095700;213.096000;213.102000;213.052000;213.062000;0 +20260203 095800;213.062000;213.066000;213.045000;213.057000;0 +20260203 095900;213.051000;213.058000;213.032000;213.042000;0 +20260203 100000;213.039000;213.091000;212.983000;213.047000;0 +20260203 100100;213.047000;213.077000;213.005000;213.040000;0 +20260203 100200;213.046000;213.091000;213.042000;213.068000;0 +20260203 100300;213.070000;213.133000;213.069000;213.133000;0 +20260203 100400;213.133000;213.148000;213.100000;213.100000;0 +20260203 100500;213.097000;213.166000;213.093000;213.145000;0 +20260203 100600;213.149000;213.192000;213.137000;213.162000;0 +20260203 100700;213.169000;213.170000;213.142000;213.158000;0 +20260203 100800;213.158000;213.186000;213.150000;213.183000;0 +20260203 100900;213.181000;213.207000;213.163000;213.165000;0 +20260203 101000;213.165000;213.245000;213.163000;213.209000;0 +20260203 101100;213.209000;213.213000;213.174000;213.188000;0 +20260203 101200;213.189000;213.193000;213.156000;213.160000;0 +20260203 101300;213.156000;213.170000;213.138000;213.159000;0 +20260203 101400;213.162000;213.171000;213.146000;213.156000;0 +20260203 101500;213.155000;213.188000;213.145000;213.188000;0 +20260203 101600;213.187000;213.219000;213.170000;213.188000;0 +20260203 101700;213.188000;213.189000;213.145000;213.171000;0 +20260203 101800;213.171000;213.192000;213.138000;213.187000;0 +20260203 101900;213.189000;213.227000;213.172000;213.214000;0 +20260203 102000;213.212000;213.264000;213.206000;213.254000;0 +20260203 102100;213.249000;213.273000;213.235000;213.265000;0 +20260203 102200;213.265000;213.277000;213.239000;213.277000;0 +20260203 102300;213.275000;213.327000;213.273000;213.322000;0 +20260203 102400;213.323000;213.334000;213.280000;213.298000;0 +20260203 102500;213.298000;213.326000;213.272000;213.326000;0 +20260203 102600;213.328000;213.350000;213.311000;213.349000;0 +20260203 102700;213.351000;213.398000;213.328000;213.390000;0 +20260203 102800;213.399000;213.404000;213.357000;213.392000;0 +20260203 102900;213.391000;213.398000;213.369000;213.371000;0 +20260203 103000;213.370000;213.390000;213.350000;213.373000;0 +20260203 103100;213.373000;213.406000;213.369000;213.387000;0 +20260203 103200;213.389000;213.401000;213.369000;213.382000;0 +20260203 103300;213.375000;213.394000;213.361000;213.361000;0 +20260203 103400;213.358000;213.367000;213.325000;213.361000;0 +20260203 103500;213.361000;213.403000;213.360000;213.373000;0 +20260203 103600;213.376000;213.424000;213.366000;213.395000;0 +20260203 103700;213.392000;213.411000;213.379000;213.406000;0 +20260203 103800;213.408000;213.415000;213.371000;213.405000;0 +20260203 103900;213.409000;213.417000;213.399000;213.407000;0 +20260203 104000;213.405000;213.420000;213.369000;213.369000;0 +20260203 104100;213.370000;213.396000;213.364000;213.379000;0 +20260203 104200;213.384000;213.397000;213.372000;213.382000;0 +20260203 104300;213.388000;213.397000;213.329000;213.353000;0 +20260203 104400;213.353000;213.394000;213.349000;213.388000;0 +20260203 104500;213.384000;213.395000;213.318000;213.320000;0 +20260203 104600;213.322000;213.381000;213.322000;213.352000;0 +20260203 104700;213.354000;213.410000;213.350000;213.404000;0 +20260203 104800;213.404000;213.419000;213.377000;213.404000;0 +20260203 104900;213.402000;213.414000;213.379000;213.395000;0 +20260203 105000;213.395000;213.438000;213.391000;213.424000;0 +20260203 105100;213.423000;213.432000;213.397000;213.405000;0 +20260203 105200;213.405000;213.415000;213.330000;213.347000;0 +20260203 105300;213.347000;213.351000;213.296000;213.342000;0 +20260203 105400;213.343000;213.344000;213.297000;213.307000;0 +20260203 105500;213.306000;213.315000;213.255000;213.300000;0 +20260203 105600;213.301000;213.331000;213.284000;213.298000;0 +20260203 105700;213.301000;213.398000;213.294000;213.369000;0 +20260203 105800;213.369000;213.402000;213.368000;213.390000;0 +20260203 105900;213.388000;213.390000;213.366000;213.373000;0 +20260203 110000;213.370000;213.399000;213.357000;213.396000;0 +20260203 110100;213.397000;213.403000;213.378000;213.388000;0 +20260203 110200;213.390000;213.428000;213.381000;213.410000;0 +20260203 110300;213.412000;213.435000;213.378000;213.420000;0 +20260203 110400;213.417000;213.429000;213.397000;213.415000;0 +20260203 110500;213.417000;213.460000;213.412000;213.448000;0 +20260203 110600;213.447000;213.447000;213.373000;213.373000;0 +20260203 110700;213.372000;213.405000;213.345000;213.374000;0 +20260203 110800;213.377000;213.415000;213.359000;213.396000;0 +20260203 110900;213.399000;213.404000;213.357000;213.363000;0 +20260203 111000;213.360000;213.376000;213.348000;213.364000;0 +20260203 111100;213.364000;213.370000;213.332000;213.343000;0 +20260203 111200;213.343000;213.382000;213.330000;213.380000;0 +20260203 111300;213.385000;213.435000;213.385000;213.409000;0 +20260203 111400;213.412000;213.434000;213.397000;213.412000;0 +20260203 111500;213.412000;213.412000;213.347000;213.363000;0 +20260203 111600;213.360000;213.387000;213.353000;213.368000;0 +20260203 111700;213.361000;213.378000;213.341000;213.346000;0 +20260203 111800;213.348000;213.360000;213.334000;213.343000;0 +20260203 111900;213.340000;213.385000;213.339000;213.362000;0 +20260203 112000;213.362000;213.368000;213.328000;213.365000;0 +20260203 112100;213.360000;213.363000;213.320000;213.327000;0 +20260203 112200;213.323000;213.345000;213.311000;213.314000;0 +20260203 112300;213.311000;213.334000;213.308000;213.325000;0 +20260203 112400;213.324000;213.345000;213.319000;213.336000;0 +20260203 112500;213.338000;213.364000;213.325000;213.363000;0 +20260203 112600;213.364000;213.404000;213.357000;213.382000;0 +20260203 112700;213.381000;213.384000;213.354000;213.367000;0 +20260203 112800;213.366000;213.372000;213.351000;213.363000;0 +20260203 112900;213.362000;213.362000;213.312000;213.325000;0 +20260203 113000;213.326000;213.344000;213.296000;213.308000;0 +20260203 113100;213.310000;213.314000;213.285000;213.312000;0 +20260203 113200;213.314000;213.316000;213.280000;213.284000;0 +20260203 113300;213.286000;213.321000;213.262000;213.321000;0 +20260203 113400;213.320000;213.358000;213.320000;213.334000;0 +20260203 113500;213.337000;213.349000;213.326000;213.341000;0 +20260203 113600;213.344000;213.363000;213.329000;213.333000;0 +20260203 113700;213.334000;213.334000;213.277000;213.294000;0 +20260203 113800;213.295000;213.326000;213.278000;213.298000;0 +20260203 113900;213.296000;213.313000;213.295000;213.308000;0 +20260203 114000;213.308000;213.316000;213.290000;213.314000;0 +20260203 114100;213.315000;213.323000;213.273000;213.280000;0 +20260203 114200;213.280000;213.292000;213.270000;213.287000;0 +20260203 114300;213.286000;213.309000;213.276000;213.284000;0 +20260203 114400;213.285000;213.299000;213.279000;213.290000;0 +20260203 114500;213.289000;213.303000;213.271000;213.294000;0 +20260203 114600;213.296000;213.307000;213.275000;213.304000;0 +20260203 114700;213.305000;213.345000;213.293000;213.345000;0 +20260203 114800;213.343000;213.343000;213.304000;213.314000;0 +20260203 114900;213.315000;213.330000;213.300000;213.303000;0 +20260203 115000;213.303000;213.304000;213.274000;213.276000;0 +20260203 115100;213.275000;213.291000;213.261000;213.282000;0 +20260203 115200;213.283000;213.334000;213.283000;213.334000;0 +20260203 115300;213.325000;213.350000;213.312000;213.344000;0 +20260203 115400;213.343000;213.360000;213.317000;213.323000;0 +20260203 115500;213.314000;213.322000;213.294000;213.309000;0 +20260203 115600;213.312000;213.336000;213.296000;213.304000;0 +20260203 115700;213.304000;213.338000;213.301000;213.313000;0 +20260203 115800;213.316000;213.316000;213.288000;213.308000;0 +20260203 115900;213.306000;213.315000;213.291000;213.305000;0 +20260203 120000;213.305000;213.311000;213.252000;213.286000;0 +20260203 120100;213.285000;213.294000;213.262000;213.294000;0 +20260203 120200;213.294000;213.316000;213.286000;213.299000;0 +20260203 120300;213.297000;213.328000;213.296000;213.318000;0 +20260203 120400;213.316000;213.317000;213.266000;213.280000;0 +20260203 120500;213.280000;213.280000;213.236000;213.238000;0 +20260203 120600;213.240000;213.248000;213.227000;213.247000;0 +20260203 120700;213.249000;213.251000;213.205000;213.212000;0 +20260203 120800;213.215000;213.241000;213.208000;213.236000;0 +20260203 120900;213.239000;213.263000;213.217000;213.263000;0 +20260203 121000;213.258000;213.283000;213.258000;213.274000;0 +20260203 121100;213.272000;213.293000;213.267000;213.292000;0 +20260203 121200;213.291000;213.297000;213.209000;213.214000;0 +20260203 121300;213.216000;213.234000;213.203000;213.214000;0 +20260203 121400;213.215000;213.232000;213.195000;213.230000;0 +20260203 121500;213.230000;213.248000;213.160000;213.166000;0 +20260203 121600;213.168000;213.184000;213.141000;213.168000;0 +20260203 121700;213.170000;213.218000;213.163000;213.201000;0 +20260203 121800;213.201000;213.213000;213.177000;213.213000;0 +20260203 121900;213.213000;213.225000;213.187000;213.196000;0 +20260203 122000;213.195000;213.220000;213.181000;213.181000;0 +20260203 122100;213.181000;213.210000;213.171000;213.190000;0 +20260203 122200;213.190000;213.193000;213.159000;213.170000;0 +20260203 122300;213.174000;213.202000;213.171000;213.190000;0 +20260203 122400;213.192000;213.203000;213.160000;213.169000;0 +20260203 122500;213.170000;213.174000;213.157000;213.164000;0 +20260203 122600;213.164000;213.200000;213.142000;213.187000;0 +20260203 122700;213.188000;213.213000;213.182000;213.208000;0 +20260203 122800;213.208000;213.227000;213.204000;213.214000;0 +20260203 122900;213.215000;213.232000;213.209000;213.228000;0 +20260203 123000;213.226000;213.233000;213.205000;213.205000;0 +20260203 123100;213.203000;213.228000;213.194000;213.226000;0 +20260203 123200;213.229000;213.244000;213.225000;213.238000;0 +20260203 123300;213.234000;213.242000;213.212000;213.235000;0 +20260203 123400;213.234000;213.243000;213.216000;213.217000;0 +20260203 123500;213.219000;213.241000;213.214000;213.237000;0 +20260203 123600;213.237000;213.243000;213.227000;213.242000;0 +20260203 123700;213.234000;213.242000;213.219000;213.236000;0 +20260203 123800;213.237000;213.241000;213.228000;213.239000;0 +20260203 123900;213.239000;213.252000;213.237000;213.243000;0 +20260203 124000;213.242000;213.248000;213.228000;213.229000;0 +20260203 124100;213.229000;213.254000;213.220000;213.248000;0 +20260203 124200;213.250000;213.250000;213.199000;213.207000;0 +20260203 124300;213.209000;213.216000;213.156000;213.156000;0 +20260203 124400;213.155000;213.172000;213.143000;213.162000;0 +20260203 124500;213.158000;213.182000;213.154000;213.178000;0 +20260203 124600;213.180000;213.208000;213.178000;213.186000;0 +20260203 124700;213.187000;213.227000;213.183000;213.221000;0 +20260203 124800;213.224000;213.234000;213.203000;213.234000;0 +20260203 124900;213.233000;213.233000;213.213000;213.226000;0 +20260203 125000;213.227000;213.233000;213.216000;213.228000;0 +20260203 125100;213.230000;213.250000;213.230000;213.240000;0 +20260203 125200;213.239000;213.247000;213.224000;213.224000;0 +20260203 125300;213.224000;213.247000;213.214000;213.239000;0 +20260203 125400;213.241000;213.267000;213.239000;213.266000;0 +20260203 125500;213.264000;213.268000;213.238000;213.259000;0 +20260203 125600;213.260000;213.270000;213.250000;213.251000;0 +20260203 125700;213.250000;213.269000;213.238000;213.248000;0 +20260203 125800;213.249000;213.261000;213.227000;213.245000;0 +20260203 125900;213.244000;213.266000;213.237000;213.263000;0 +20260203 130000;213.266000;213.274000;213.250000;213.271000;0 +20260203 130100;213.274000;213.281000;213.253000;213.264000;0 +20260203 130200;213.259000;213.269000;213.235000;213.236000;0 +20260203 130300;213.235000;213.248000;213.227000;213.235000;0 +20260203 130400;213.236000;213.244000;213.231000;213.235000;0 +20260203 130500;213.236000;213.241000;213.216000;213.238000;0 +20260203 130600;213.239000;213.311000;213.239000;213.308000;0 +20260203 130700;213.307000;213.321000;213.280000;213.319000;0 +20260203 130800;213.321000;213.321000;213.278000;213.291000;0 +20260203 130900;213.291000;213.298000;213.251000;213.259000;0 +20260203 131000;213.259000;213.259000;213.226000;213.227000;0 +20260203 131100;213.227000;213.250000;213.216000;213.247000;0 +20260203 131200;213.246000;213.260000;213.222000;213.226000;0 +20260203 131300;213.229000;213.239000;213.177000;213.179000;0 +20260203 131400;213.182000;213.187000;213.146000;213.163000;0 +20260203 131500;213.165000;213.195000;213.165000;213.181000;0 +20260203 131600;213.182000;213.195000;213.177000;213.188000;0 +20260203 131700;213.189000;213.203000;213.187000;213.190000;0 +20260203 131800;213.188000;213.221000;213.184000;213.219000;0 +20260203 131900;213.219000;213.238000;213.217000;213.231000;0 +20260203 132000;213.231000;213.231000;213.212000;213.217000;0 +20260203 132100;213.213000;213.231000;213.209000;213.229000;0 +20260203 132200;213.228000;213.248000;213.205000;213.218000;0 +20260203 132300;213.218000;213.222000;213.204000;213.209000;0 +20260203 132400;213.203000;213.208000;213.189000;213.193000;0 +20260203 132500;213.195000;213.209000;213.185000;213.204000;0 +20260203 132600;213.203000;213.210000;213.164000;213.191000;0 +20260203 132700;213.189000;213.221000;213.189000;213.219000;0 +20260203 132800;213.218000;213.246000;213.209000;213.235000;0 +20260203 132900;213.233000;213.238000;213.211000;213.218000;0 +20260203 133000;213.218000;213.231000;213.197000;213.231000;0 +20260203 133100;213.232000;213.232000;213.189000;213.197000;0 +20260203 133200;213.200000;213.219000;213.193000;213.207000;0 +20260203 133300;213.209000;213.211000;213.183000;213.183000;0 +20260203 133400;213.182000;213.204000;213.174000;213.198000;0 +20260203 133500;213.199000;213.216000;213.161000;213.186000;0 +20260203 133600;213.187000;213.190000;213.146000;213.149000;0 +20260203 133700;213.147000;213.157000;213.141000;213.146000;0 +20260203 133800;213.146000;213.156000;213.138000;213.144000;0 +20260203 133900;213.142000;213.161000;213.134000;213.158000;0 +20260203 134000;213.157000;213.170000;213.130000;213.133000;0 +20260203 134100;213.131000;213.146000;213.131000;213.145000;0 +20260203 134200;213.145000;213.155000;213.115000;213.115000;0 +20260203 134300;213.112000;213.118000;213.088000;213.092000;0 +20260203 134400;213.091000;213.106000;213.071000;213.086000;0 +20260203 134500;213.086000;213.088000;213.039000;213.040000;0 +20260203 134600;213.039000;213.048000;213.000000;213.045000;0 +20260203 134700;213.047000;213.054000;213.034000;213.041000;0 +20260203 134800;213.035000;213.041000;213.005000;213.005000;0 +20260203 134900;213.003000;213.019000;212.992000;213.018000;0 +20260203 135000;213.017000;213.017000;212.952000;212.971000;0 +20260203 135100;212.971000;212.985000;212.944000;212.967000;0 +20260203 135200;212.969000;212.974000;212.951000;212.951000;0 +20260203 135300;212.949000;212.965000;212.939000;212.942000;0 +20260203 135400;212.945000;212.953000;212.917000;212.925000;0 +20260203 135500;212.922000;212.932000;212.906000;212.909000;0 +20260203 135600;212.908000;212.932000;212.905000;212.909000;0 +20260203 135700;212.907000;212.916000;212.885000;212.898000;0 +20260203 135800;212.901000;212.938000;212.896000;212.934000;0 +20260203 135900;212.933000;212.933000;212.885000;212.888000;0 +20260203 140000;212.885000;212.890000;212.850000;212.888000;0 +20260203 140100;212.886000;212.909000;212.873000;212.896000;0 +20260203 140200;212.898000;212.931000;212.895000;212.915000;0 +20260203 140300;212.915000;212.920000;212.876000;212.891000;0 +20260203 140400;212.893000;212.900000;212.876000;212.876000;0 +20260203 140500;212.876000;212.900000;212.864000;212.894000;0 +20260203 140600;212.894000;212.918000;212.890000;212.918000;0 +20260203 140700;212.920000;212.928000;212.904000;212.928000;0 +20260203 140800;212.928000;212.937000;212.915000;212.936000;0 +20260203 140900;212.934000;212.948000;212.919000;212.929000;0 +20260203 141000;212.928000;212.957000;212.926000;212.952000;0 +20260203 141100;212.955000;212.971000;212.944000;212.961000;0 +20260203 141200;212.960000;213.005000;212.956000;212.999000;0 +20260203 141300;212.995000;213.023000;212.994000;213.022000;0 +20260203 141400;213.025000;213.113000;213.024000;213.097000;0 +20260203 141500;213.097000;213.123000;213.097000;213.105000;0 +20260203 141600;213.103000;213.132000;213.102000;213.120000;0 +20260203 141700;213.118000;213.132000;213.107000;213.115000;0 +20260203 141800;213.117000;213.152000;213.116000;213.152000;0 +20260203 141900;213.154000;213.155000;213.128000;213.138000;0 +20260203 142000;213.140000;213.141000;213.104000;213.116000;0 +20260203 142100;213.116000;213.152000;213.116000;213.147000;0 +20260203 142200;213.148000;213.165000;213.136000;213.153000;0 +20260203 142300;213.152000;213.169000;213.147000;213.163000;0 +20260203 142400;213.158000;213.164000;213.140000;213.140000;0 +20260203 142500;213.140000;213.154000;213.092000;213.096000;0 +20260203 142600;213.097000;213.114000;213.094000;213.094000;0 +20260203 142700;213.093000;213.110000;213.083000;213.105000;0 +20260203 142800;213.106000;213.118000;213.097000;213.117000;0 +20260203 142900;213.116000;213.125000;213.078000;213.086000;0 +20260203 143000;213.089000;213.117000;213.069000;213.074000;0 +20260203 143100;213.066000;213.072000;213.049000;213.065000;0 +20260203 143200;213.068000;213.088000;213.067000;213.080000;0 +20260203 143300;213.083000;213.089000;213.069000;213.069000;0 +20260203 143400;213.077000;213.077000;213.054000;213.060000;0 +20260203 143500;213.063000;213.096000;213.063000;213.094000;0 +20260203 143600;213.096000;213.101000;213.083000;213.092000;0 +20260203 143700;213.097000;213.117000;213.093000;213.115000;0 +20260203 143800;213.117000;213.137000;213.117000;213.131000;0 +20260203 143900;213.132000;213.143000;213.127000;213.141000;0 +20260203 144000;213.140000;213.149000;213.125000;213.140000;0 +20260203 144100;213.140000;213.145000;213.129000;213.135000;0 +20260203 144200;213.134000;213.159000;213.119000;213.159000;0 +20260203 144300;213.159000;213.163000;213.141000;213.144000;0 +20260203 144400;213.146000;213.168000;213.131000;213.168000;0 +20260203 144500;213.168000;213.169000;213.137000;213.148000;0 +20260203 144600;213.149000;213.164000;213.130000;213.159000;0 +20260203 144700;213.158000;213.170000;213.146000;213.148000;0 +20260203 144800;213.148000;213.176000;213.137000;213.176000;0 +20260203 144900;213.176000;213.187000;213.170000;213.185000;0 +20260203 145000;213.185000;213.192000;213.164000;213.180000;0 +20260203 145100;213.179000;213.179000;213.162000;213.172000;0 +20260203 145200;213.174000;213.181000;213.170000;213.170000;0 +20260203 145300;213.168000;213.190000;213.160000;213.174000;0 +20260203 145400;213.175000;213.175000;213.160000;213.174000;0 +20260203 145500;213.177000;213.193000;213.174000;213.184000;0 +20260203 145600;213.185000;213.231000;213.185000;213.228000;0 +20260203 145700;213.228000;213.238000;213.208000;213.231000;0 +20260203 145800;213.229000;213.253000;213.224000;213.228000;0 +20260203 145900;213.228000;213.228000;213.193000;213.220000;0 +20260203 150000;213.222000;213.242000;213.209000;213.217000;0 +20260203 150100;213.214000;213.232000;213.195000;213.210000;0 +20260203 150200;213.210000;213.218000;213.196000;213.209000;0 +20260203 150300;213.209000;213.212000;213.198000;213.211000;0 +20260203 150400;213.208000;213.214000;213.192000;213.200000;0 +20260203 150500;213.202000;213.202000;213.180000;213.191000;0 +20260203 150600;213.190000;213.232000;213.183000;213.210000;0 +20260203 150700;213.211000;213.237000;213.211000;213.233000;0 +20260203 150800;213.235000;213.235000;213.220000;213.233000;0 +20260203 150900;213.234000;213.236000;213.206000;213.213000;0 +20260203 151000;213.215000;213.232000;213.199000;213.211000;0 +20260203 151100;213.205000;213.222000;213.198000;213.221000;0 +20260203 151200;213.219000;213.228000;213.211000;213.216000;0 +20260203 151300;213.214000;213.221000;213.208000;213.213000;0 +20260203 151400;213.216000;213.246000;213.214000;213.245000;0 +20260203 151500;213.244000;213.244000;213.226000;213.227000;0 +20260203 151600;213.229000;213.253000;213.229000;213.251000;0 +20260203 151700;213.252000;213.264000;213.249000;213.261000;0 +20260203 151800;213.259000;213.266000;213.252000;213.257000;0 +20260203 151900;213.259000;213.263000;213.237000;213.237000;0 +20260203 152000;213.238000;213.240000;213.232000;213.233000;0 +20260203 152100;213.230000;213.236000;213.215000;213.230000;0 +20260203 152200;213.231000;213.239000;213.219000;213.236000;0 +20260203 152300;213.238000;213.245000;213.231000;213.244000;0 +20260203 152400;213.244000;213.257000;213.239000;213.257000;0 +20260203 152500;213.259000;213.260000;213.238000;213.244000;0 +20260203 152600;213.244000;213.244000;213.218000;213.219000;0 +20260203 152700;213.220000;213.236000;213.218000;213.226000;0 +20260203 152800;213.224000;213.248000;213.219000;213.240000;0 +20260203 152900;213.238000;213.238000;213.220000;213.221000;0 +20260203 153000;213.220000;213.237000;213.220000;213.231000;0 +20260203 153100;213.229000;213.250000;213.229000;213.249000;0 +20260203 153200;213.250000;213.267000;213.249000;213.261000;0 +20260203 153300;213.262000;213.266000;213.248000;213.253000;0 +20260203 153400;213.254000;213.273000;213.253000;213.256000;0 +20260203 153500;213.264000;213.283000;213.257000;213.278000;0 +20260203 153600;213.276000;213.284000;213.257000;213.275000;0 +20260203 153700;213.273000;213.273000;213.246000;213.246000;0 +20260203 153800;213.246000;213.256000;213.223000;213.234000;0 +20260203 153900;213.230000;213.264000;213.230000;213.260000;0 +20260203 154000;213.260000;213.296000;213.255000;213.284000;0 +20260203 154100;213.286000;213.289000;213.242000;213.250000;0 +20260203 154200;213.252000;213.257000;213.245000;213.257000;0 +20260203 154300;213.255000;213.255000;213.220000;213.242000;0 +20260203 154400;213.244000;213.270000;213.243000;213.254000;0 +20260203 154500;213.253000;213.256000;213.245000;213.254000;0 +20260203 154600;213.255000;213.260000;213.240000;213.244000;0 +20260203 154700;213.246000;213.259000;213.237000;213.244000;0 +20260203 154800;213.245000;213.248000;213.235000;213.245000;0 +20260203 154900;213.246000;213.275000;213.246000;213.272000;0 +20260203 155000;213.273000;213.294000;213.272000;213.283000;0 +20260203 155100;213.280000;213.296000;213.280000;213.293000;0 +20260203 155200;213.296000;213.304000;213.291000;213.294000;0 +20260203 155300;213.296000;213.312000;213.296000;213.308000;0 +20260203 155400;213.307000;213.325000;213.303000;213.325000;0 +20260203 155500;213.321000;213.323000;213.306000;213.312000;0 +20260203 155600;213.307000;213.333000;213.301000;213.331000;0 +20260203 155700;213.333000;213.352000;213.297000;213.297000;0 +20260203 155800;213.293000;213.295000;213.264000;213.284000;0 +20260203 155900;213.284000;213.291000;213.256000;213.282000;0 +20260203 160000;213.281000;213.307000;213.268000;213.272000;0 +20260203 160100;213.270000;213.286000;213.248000;213.258000;0 +20260203 160200;213.256000;213.271000;213.249000;213.263000;0 +20260203 160300;213.260000;213.287000;213.260000;213.284000;0 +20260203 160400;213.283000;213.320000;213.283000;213.312000;0 +20260203 160500;213.310000;213.322000;213.300000;213.313000;0 +20260203 160600;213.316000;213.332000;213.312000;213.312000;0 +20260203 160700;213.307000;213.307000;213.252000;213.255000;0 +20260203 160800;213.251000;213.261000;213.249000;213.258000;0 +20260203 160900;213.262000;213.277000;213.262000;213.277000;0 +20260203 161000;213.277000;213.296000;213.277000;213.286000;0 +20260203 161100;213.280000;213.281000;213.273000;213.273000;0 +20260203 161200;213.276000;213.290000;213.276000;213.288000;0 +20260203 161300;213.290000;213.326000;213.287000;213.325000;0 +20260203 161400;213.325000;213.334000;213.317000;213.326000;0 +20260203 161500;213.330000;213.352000;213.320000;213.342000;0 +20260203 161600;213.340000;213.343000;213.333000;213.334000;0 +20260203 161700;213.333000;213.341000;213.329000;213.332000;0 +20260203 161800;213.333000;213.357000;213.331000;213.350000;0 +20260203 161900;213.352000;213.357000;213.344000;213.352000;0 +20260203 162000;213.353000;213.358000;213.340000;213.351000;0 +20260203 162100;213.347000;213.377000;213.346000;213.370000;0 +20260203 162200;213.373000;213.379000;213.365000;213.378000;0 +20260203 162300;213.379000;213.401000;213.376000;213.401000;0 +20260203 162400;213.400000;213.403000;213.388000;213.389000;0 +20260203 162500;213.387000;213.392000;213.373000;213.390000;0 +20260203 162600;213.392000;213.392000;213.384000;213.389000;0 +20260203 162700;213.387000;213.406000;213.386000;213.405000;0 +20260203 162800;213.406000;213.408000;213.400000;213.404000;0 +20260203 162900;213.403000;213.432000;213.396000;213.396000;0 +20260203 163000;213.398000;213.409000;213.388000;213.393000;0 +20260203 163100;213.393000;213.394000;213.373000;213.375000;0 +20260203 163200;213.374000;213.377000;213.369000;213.375000;0 +20260203 163300;213.376000;213.376000;213.363000;213.364000;0 +20260203 163400;213.363000;213.371000;213.363000;213.371000;0 +20260203 163500;213.372000;213.372000;213.364000;213.366000;0 +20260203 163600;213.367000;213.370000;213.364000;213.366000;0 +20260203 163700;213.364000;213.368000;213.361000;213.368000;0 +20260203 163800;213.367000;213.375000;213.364000;213.373000;0 +20260203 163900;213.375000;213.381000;213.374000;213.380000;0 +20260203 164000;213.372000;213.385000;213.372000;213.379000;0 +20260203 164100;213.380000;213.389000;213.380000;213.385000;0 +20260203 164200;213.387000;213.389000;213.380000;213.385000;0 +20260203 164300;213.388000;213.388000;213.382000;213.384000;0 +20260203 164400;213.386000;213.390000;213.371000;213.374000;0 +20260203 164500;213.371000;213.418000;213.371000;213.407000;0 +20260203 164600;213.402000;213.416000;213.402000;213.411000;0 +20260203 164700;213.408000;213.424000;213.403000;213.411000;0 +20260203 164800;213.409000;213.414000;213.398000;213.400000;0 +20260203 164900;213.400000;213.400000;213.380000;213.382000;0 +20260203 165000;213.382000;213.392000;213.369000;213.385000;0 +20260203 165100;213.383000;213.385000;213.365000;213.366000;0 +20260203 165200;213.365000;213.383000;213.365000;213.380000;0 +20260203 165300;213.377000;213.386000;213.374000;213.378000;0 +20260203 165400;213.377000;213.379000;213.367000;213.370000;0 +20260203 165500;213.373000;213.397000;213.373000;213.378000;0 +20260203 165600;213.375000;213.398000;213.373000;213.398000;0 +20260203 165700;213.394000;213.397000;213.364000;213.369000;0 +20260203 165800;213.368000;213.379000;213.359000;213.364000;0 +20260203 165900;213.366000;213.373000;213.227000;213.227000;0 +20260203 170400;213.161000;213.161000;213.161000;213.161000;0 +20260203 170500;213.078000;213.168000;213.078000;213.168000;0 +20260203 170600;213.167000;213.167000;213.151000;213.151000;0 +20260203 170700;213.151000;213.267000;213.151000;213.267000;0 +20260203 170800;213.313000;213.366000;213.313000;213.366000;0 +20260203 170900;213.367000;213.382000;213.320000;213.343000;0 +20260203 171000;213.336000;213.343000;213.304000;213.304000;0 +20260203 171100;213.302000;213.351000;213.218000;213.351000;0 +20260203 171200;213.351000;213.352000;213.296000;213.296000;0 +20260203 171300;213.296000;213.296000;213.202000;213.202000;0 +20260203 171400;213.202000;213.218000;213.202000;213.218000;0 +20260203 171500;213.219000;213.242000;213.214000;213.225000;0 +20260203 171600;213.223000;213.278000;213.204000;213.276000;0 +20260203 171700;213.277000;213.292000;213.264000;213.292000;0 +20260203 171800;213.263000;213.306000;213.263000;213.277000;0 +20260203 171900;213.277000;213.306000;213.277000;213.305000;0 +20260203 172000;213.305000;213.306000;213.288000;213.296000;0 +20260203 172100;213.292000;213.298000;213.221000;213.249000;0 +20260203 172200;213.228000;213.260000;213.217000;213.231000;0 +20260203 172300;213.233000;213.235000;213.219000;213.233000;0 +20260203 172400;213.233000;213.239000;213.205000;213.226000;0 +20260203 172500;213.225000;213.281000;213.225000;213.281000;0 +20260203 172600;213.282000;213.282000;213.281000;213.282000;0 +20260203 172700;213.274000;213.275000;213.274000;213.275000;0 +20260203 172800;213.274000;213.274000;213.274000;213.274000;0 +20260203 172900;213.274000;213.275000;213.274000;213.275000;0 +20260203 173000;213.275000;213.336000;213.274000;213.336000;0 +20260203 173100;213.332000;213.348000;213.330000;213.340000;0 +20260203 173200;213.341000;213.350000;213.327000;213.336000;0 +20260203 173300;213.335000;213.372000;213.324000;213.366000;0 +20260203 173400;213.350000;213.381000;213.350000;213.360000;0 +20260203 173500;213.370000;213.390000;213.365000;213.386000;0 +20260203 173600;213.385000;213.387000;213.351000;213.371000;0 +20260203 173700;213.373000;213.396000;213.372000;213.376000;0 +20260203 173800;213.380000;213.398000;213.380000;213.385000;0 +20260203 173900;213.384000;213.397000;213.383000;213.392000;0 +20260203 174000;213.381000;213.392000;213.368000;213.374000;0 +20260203 174100;213.373000;213.377000;213.366000;213.374000;0 +20260203 174200;213.378000;213.382000;213.366000;213.378000;0 +20260203 174300;213.381000;213.381000;213.368000;213.374000;0 +20260203 174400;213.374000;213.381000;213.363000;213.379000;0 +20260203 174500;213.379000;213.379000;213.362000;213.374000;0 +20260203 174600;213.376000;213.380000;213.364000;213.379000;0 +20260203 174700;213.379000;213.381000;213.365000;213.368000;0 +20260203 174800;213.373000;213.379000;213.372000;213.374000;0 +20260203 174900;213.373000;213.381000;213.370000;213.372000;0 +20260203 175000;213.371000;213.381000;213.371000;213.371000;0 +20260203 175100;213.372000;213.376000;213.363000;213.370000;0 +20260203 175200;213.370000;213.392000;213.363000;213.392000;0 +20260203 175300;213.391000;213.405000;213.383000;213.387000;0 +20260203 175400;213.385000;213.405000;213.366000;213.404000;0 +20260203 175500;213.390000;213.411000;213.387000;213.390000;0 +20260203 175600;213.394000;213.401000;213.381000;213.387000;0 +20260203 175700;213.388000;213.389000;213.382000;213.385000;0 +20260203 175800;213.382000;213.384000;213.352000;213.356000;0 +20260203 175900;213.352000;213.354000;213.233000;213.262000;0 +20260203 180000;213.262000;213.311000;213.249000;213.308000;0 +20260203 180100;213.307000;213.314000;213.277000;213.312000;0 +20260203 180200;213.313000;213.340000;213.309000;213.329000;0 +20260203 180300;213.340000;213.360000;213.340000;213.356000;0 +20260203 180400;213.351000;213.351000;213.272000;213.285000;0 +20260203 180500;213.317000;213.330000;213.285000;213.320000;0 +20260203 180600;213.310000;213.349000;213.294000;213.349000;0 +20260203 180700;213.349000;213.408000;213.349000;213.403000;0 +20260203 180800;213.382000;213.390000;213.346000;213.352000;0 +20260203 180900;213.354000;213.359000;213.348000;213.356000;0 +20260203 181000;213.359000;213.391000;213.359000;213.387000;0 +20260203 181100;213.385000;213.385000;213.380000;213.381000;0 +20260203 181200;213.388000;213.401000;213.388000;213.399000;0 +20260203 181300;213.401000;213.417000;213.395000;213.414000;0 +20260203 181400;213.412000;213.416000;213.410000;213.411000;0 +20260203 181500;213.406000;213.462000;213.400000;213.461000;0 +20260203 181600;213.458000;213.464000;213.451000;213.459000;0 +20260203 181700;213.460000;213.468000;213.439000;213.443000;0 +20260203 181800;213.459000;213.469000;213.459000;213.467000;0 +20260203 181900;213.467000;213.473000;213.454000;213.456000;0 +20260203 182000;213.458000;213.458000;213.410000;213.412000;0 +20260203 182100;213.409000;213.428000;213.409000;213.420000;0 +20260203 182200;213.418000;213.429000;213.418000;213.421000;0 +20260203 182300;213.420000;213.429000;213.417000;213.426000;0 +20260203 182400;213.419000;213.442000;213.419000;213.430000;0 +20260203 182500;213.424000;213.433000;213.418000;213.426000;0 +20260203 182600;213.421000;213.433000;213.415000;213.420000;0 +20260203 182700;213.419000;213.420000;213.400000;213.400000;0 +20260203 182800;213.389000;213.401000;213.378000;213.385000;0 +20260203 182900;213.382000;213.401000;213.360000;213.375000;0 +20260203 183000;213.365000;213.390000;213.363000;213.388000;0 +20260203 183100;213.387000;213.407000;213.387000;213.396000;0 +20260203 183200;213.395000;213.410000;213.380000;213.403000;0 +20260203 183300;213.398000;213.398000;213.358000;213.366000;0 +20260203 183400;213.364000;213.368000;213.354000;213.368000;0 +20260203 183500;213.371000;213.376000;213.360000;213.361000;0 +20260203 183600;213.363000;213.386000;213.361000;213.384000;0 +20260203 183700;213.383000;213.383000;213.364000;213.367000;0 +20260203 183800;213.370000;213.379000;213.363000;213.368000;0 +20260203 183900;213.369000;213.371000;213.369000;213.370000;0 +20260203 184000;213.369000;213.381000;213.364000;213.374000;0 +20260203 184100;213.373000;213.382000;213.373000;213.382000;0 +20260203 184200;213.385000;213.393000;213.380000;213.388000;0 +20260203 184300;213.387000;213.396000;213.387000;213.394000;0 +20260203 184400;213.393000;213.394000;213.386000;213.391000;0 +20260203 184500;213.393000;213.393000;213.359000;213.366000;0 +20260203 184600;213.365000;213.402000;213.351000;213.356000;0 +20260203 184700;213.356000;213.366000;213.329000;213.329000;0 +20260203 184800;213.329000;213.366000;213.329000;213.366000;0 +20260203 184900;213.356000;213.375000;213.355000;213.355000;0 +20260203 185000;213.353000;213.354000;213.335000;213.342000;0 +20260203 185100;213.342000;213.355000;213.342000;213.350000;0 +20260203 185200;213.351000;213.399000;213.351000;213.385000;0 +20260203 185300;213.384000;213.390000;213.362000;213.367000;0 +20260203 185400;213.370000;213.401000;213.364000;213.384000;0 +20260203 185500;213.384000;213.398000;213.384000;213.387000;0 +20260203 185600;213.386000;213.393000;213.376000;213.376000;0 +20260203 185700;213.376000;213.390000;213.373000;213.383000;0 +20260203 185800;213.383000;213.401000;213.380000;213.389000;0 +20260203 185900;213.384000;213.401000;213.383000;213.401000;0 +20260203 190000;213.405000;213.428000;213.379000;213.379000;0 +20260203 190100;213.378000;213.403000;213.356000;213.400000;0 +20260203 190200;213.399000;213.416000;213.388000;213.403000;0 +20260203 190300;213.405000;213.447000;213.399000;213.442000;0 +20260203 190400;213.440000;213.472000;213.435000;213.472000;0 +20260203 190500;213.476000;213.477000;213.441000;213.441000;0 +20260203 190600;213.435000;213.461000;213.426000;213.433000;0 +20260203 190700;213.430000;213.466000;213.430000;213.464000;0 +20260203 190800;213.464000;213.473000;213.448000;213.462000;0 +20260203 190900;213.461000;213.474000;213.457000;213.462000;0 +20260203 191000;213.468000;213.503000;213.435000;213.498000;0 +20260203 191100;213.493000;213.502000;213.477000;213.477000;0 +20260203 191200;213.474000;213.505000;213.474000;213.501000;0 +20260203 191300;213.502000;213.502000;213.483000;213.487000;0 +20260203 191400;213.488000;213.523000;213.472000;213.503000;0 +20260203 191500;213.507000;213.548000;213.507000;213.534000;0 +20260203 191600;213.532000;213.538000;213.493000;213.493000;0 +20260203 191700;213.491000;213.506000;213.459000;213.490000;0 +20260203 191800;213.488000;213.513000;213.447000;213.450000;0 +20260203 191900;213.450000;213.478000;213.450000;213.475000;0 +20260203 192000;213.471000;213.484000;213.455000;213.462000;0 +20260203 192100;213.460000;213.464000;213.447000;213.455000;0 +20260203 192200;213.454000;213.477000;213.451000;213.454000;0 +20260203 192300;213.457000;213.464000;213.444000;213.446000;0 +20260203 192400;213.447000;213.468000;213.440000;213.460000;0 +20260203 192500;213.462000;213.467000;213.452000;213.460000;0 +20260203 192600;213.458000;213.469000;213.444000;213.447000;0 +20260203 192700;213.448000;213.481000;213.445000;213.478000;0 +20260203 192800;213.481000;213.505000;213.479000;213.484000;0 +20260203 192900;213.483000;213.511000;213.479000;213.495000;0 +20260203 193000;213.494000;213.518000;213.471000;213.490000;0 +20260203 193100;213.488000;213.523000;213.488000;213.501000;0 +20260203 193200;213.503000;213.552000;213.501000;213.546000;0 +20260203 193300;213.548000;213.559000;213.541000;213.543000;0 +20260203 193400;213.544000;213.551000;213.519000;213.547000;0 +20260203 193500;213.545000;213.560000;213.543000;213.550000;0 +20260203 193600;213.549000;213.558000;213.540000;213.546000;0 +20260203 193700;213.546000;213.576000;213.546000;213.567000;0 +20260203 193800;213.565000;213.574000;213.553000;213.565000;0 +20260203 193900;213.564000;213.575000;213.548000;213.574000;0 +20260203 194000;213.573000;213.583000;213.558000;213.581000;0 +20260203 194100;213.584000;213.600000;213.548000;213.548000;0 +20260203 194200;213.547000;213.567000;213.543000;213.567000;0 +20260203 194300;213.567000;213.570000;213.561000;213.569000;0 +20260203 194400;213.570000;213.575000;213.559000;213.565000;0 +20260203 194500;213.565000;213.577000;213.559000;213.559000;0 +20260203 194600;213.555000;213.594000;213.555000;213.579000;0 +20260203 194700;213.579000;213.580000;213.548000;213.555000;0 +20260203 194800;213.555000;213.576000;213.547000;213.557000;0 +20260203 194900;213.557000;213.558000;213.530000;213.543000;0 +20260203 195000;213.544000;213.566000;213.541000;213.565000;0 +20260203 195100;213.566000;213.580000;213.544000;213.562000;0 +20260203 195200;213.562000;213.580000;213.557000;213.567000;0 +20260203 195300;213.568000;213.630000;213.565000;213.602000;0 +20260203 195400;213.601000;213.641000;213.593000;213.632000;0 +20260203 195500;213.633000;213.637000;213.583000;213.624000;0 +20260203 195600;213.624000;213.644000;213.593000;213.631000;0 +20260203 195700;213.630000;213.633000;213.606000;213.622000;0 +20260203 195800;213.618000;213.655000;213.615000;213.652000;0 +20260203 195900;213.651000;213.663000;213.643000;213.655000;0 +20260203 200000;213.657000;213.702000;213.652000;213.697000;0 +20260203 200100;213.696000;213.741000;213.677000;213.715000;0 +20260203 200200;213.713000;213.742000;213.690000;213.706000;0 +20260203 200300;213.705000;213.738000;213.705000;213.725000;0 +20260203 200400;213.724000;213.760000;213.714000;213.724000;0 +20260203 200500;213.725000;213.746000;213.699000;213.715000;0 +20260203 200600;213.712000;213.743000;213.712000;213.724000;0 +20260203 200700;213.722000;213.750000;213.722000;213.741000;0 +20260203 200800;213.752000;213.768000;213.744000;213.754000;0 +20260203 200900;213.755000;213.776000;213.739000;213.769000;0 +20260203 201000;213.769000;213.834000;213.769000;213.797000;0 +20260203 201100;213.798000;213.802000;213.752000;213.762000;0 +20260203 201200;213.765000;213.786000;213.741000;213.770000;0 +20260203 201300;213.779000;213.790000;213.772000;213.781000;0 +20260203 201400;213.782000;213.868000;213.782000;213.838000;0 +20260203 201500;213.844000;213.851000;213.826000;213.835000;0 +20260203 201600;213.833000;213.878000;213.832000;213.863000;0 +20260203 201700;213.867000;213.910000;213.857000;213.902000;0 +20260203 201800;213.894000;213.904000;213.882000;213.891000;0 +20260203 201900;213.890000;213.923000;213.890000;213.895000;0 +20260203 202000;213.895000;213.927000;213.893000;213.921000;0 +20260203 202100;213.920000;213.928000;213.911000;213.928000;0 +20260203 202200;213.931000;213.964000;213.921000;213.964000;0 +20260203 202300;213.965000;213.974000;213.937000;213.948000;0 +20260203 202400;213.947000;213.969000;213.946000;213.969000;0 +20260203 202500;213.962000;213.985000;213.935000;213.948000;0 +20260203 202600;213.950000;213.963000;213.938000;213.956000;0 +20260203 202700;213.949000;213.976000;213.942000;213.966000;0 +20260203 202800;213.966000;213.976000;213.947000;213.967000;0 +20260203 202900;213.966000;213.974000;213.953000;213.963000;0 +20260203 203000;213.965000;213.973000;213.946000;213.946000;0 +20260203 203100;213.948000;213.954000;213.922000;213.949000;0 +20260203 203200;213.955000;213.962000;213.933000;213.944000;0 +20260203 203300;213.944000;213.957000;213.935000;213.944000;0 +20260203 203400;213.943000;213.965000;213.929000;213.935000;0 +20260203 203500;213.932000;213.964000;213.924000;213.942000;0 +20260203 203600;213.945000;213.952000;213.933000;213.949000;0 +20260203 203700;213.946000;213.961000;213.933000;213.946000;0 +20260203 203800;213.943000;213.959000;213.923000;213.951000;0 +20260203 203900;213.960000;213.962000;213.942000;213.951000;0 +20260203 204000;213.948000;213.963000;213.933000;213.960000;0 +20260203 204100;213.960000;213.996000;213.960000;213.989000;0 +20260203 204200;213.983000;214.002000;213.977000;213.999000;0 +20260203 204300;213.999000;214.028000;213.999000;214.027000;0 +20260203 204400;214.028000;214.056000;214.024000;214.047000;0 +20260203 204500;214.048000;214.065000;214.037000;214.038000;0 +20260203 204600;214.038000;214.043000;214.003000;214.013000;0 +20260203 204700;214.015000;214.024000;214.004000;214.015000;0 +20260203 204800;214.015000;214.030000;214.000000;214.018000;0 +20260203 204900;214.018000;214.038000;214.007000;214.011000;0 +20260203 205000;214.012000;214.016000;213.966000;213.969000;0 +20260203 205100;213.971000;213.972000;213.937000;213.954000;0 +20260203 205200;213.950000;213.957000;213.928000;213.956000;0 +20260203 205300;213.959000;213.975000;213.952000;213.959000;0 +20260203 205400;213.957000;213.975000;213.952000;213.975000;0 +20260203 205500;213.974000;213.990000;213.944000;213.987000;0 +20260203 205600;213.988000;214.014000;213.985000;214.012000;0 +20260203 205700;214.015000;214.017000;213.999000;214.013000;0 +20260203 205800;214.012000;214.030000;214.009000;214.018000;0 +20260203 205900;214.012000;214.022000;213.989000;214.001000;0 +20260203 210000;214.001000;214.030000;214.001000;214.015000;0 +20260203 210100;214.017000;214.042000;214.015000;214.023000;0 +20260203 210200;214.021000;214.052000;214.015000;214.038000;0 +20260203 210300;214.041000;214.041000;214.016000;214.018000;0 +20260203 210400;214.017000;214.034000;214.013000;214.017000;0 +20260203 210500;214.025000;214.103000;214.015000;214.103000;0 +20260203 210600;214.103000;214.115000;214.091000;214.101000;0 +20260203 210700;214.100000;214.110000;214.079000;214.081000;0 +20260203 210800;214.079000;214.107000;214.056000;214.059000;0 +20260203 210900;214.050000;214.077000;214.045000;214.061000;0 +20260203 211000;214.070000;214.070000;214.026000;214.037000;0 +20260203 211100;214.038000;214.047000;214.025000;214.032000;0 +20260203 211200;214.029000;214.045000;214.014000;214.017000;0 +20260203 211300;214.017000;214.029000;214.000000;214.015000;0 +20260203 211400;214.016000;214.027000;214.011000;214.023000;0 +20260203 211500;214.019000;214.026000;214.008000;214.025000;0 +20260203 211600;214.025000;214.025000;214.006000;214.011000;0 +20260203 211700;214.011000;214.021000;213.997000;214.015000;0 +20260203 211800;214.017000;214.024000;214.009000;214.016000;0 +20260203 211900;214.017000;214.029000;214.017000;214.025000;0 +20260203 212000;214.028000;214.033000;214.017000;214.031000;0 +20260203 212100;214.032000;214.042000;214.025000;214.038000;0 +20260203 212200;214.036000;214.062000;214.036000;214.048000;0 +20260203 212300;214.048000;214.049000;214.002000;214.017000;0 +20260203 212400;214.015000;214.025000;214.002000;214.025000;0 +20260203 212500;214.020000;214.050000;214.007000;214.048000;0 +20260203 212600;214.050000;214.052000;214.040000;214.051000;0 +20260203 212700;214.049000;214.051000;214.018000;214.021000;0 +20260203 212800;214.021000;214.038000;214.020000;214.035000;0 +20260203 212900;214.034000;214.040000;214.023000;214.036000;0 +20260203 213000;214.032000;214.054000;214.025000;214.054000;0 +20260203 213100;214.052000;214.062000;214.046000;214.055000;0 +20260203 213200;214.057000;214.069000;214.047000;214.047000;0 +20260203 213300;214.045000;214.050000;214.035000;214.043000;0 +20260203 213400;214.038000;214.047000;214.028000;214.043000;0 +20260203 213500;214.043000;214.049000;214.038000;214.045000;0 +20260203 213600;214.044000;214.058000;214.036000;214.053000;0 +20260203 213700;214.066000;214.068000;214.041000;214.042000;0 +20260203 213800;214.047000;214.049000;214.023000;214.023000;0 +20260203 213900;214.025000;214.046000;214.025000;214.046000;0 +20260203 214000;214.044000;214.050000;214.032000;214.043000;0 +20260203 214100;214.043000;214.056000;214.038000;214.044000;0 +20260203 214200;214.051000;214.063000;214.038000;214.052000;0 +20260203 214300;214.058000;214.061000;214.047000;214.058000;0 +20260203 214400;214.057000;214.065000;214.054000;214.059000;0 +20260203 214500;214.057000;214.063000;214.053000;214.055000;0 +20260203 214600;214.056000;214.066000;214.054000;214.060000;0 +20260203 214700;214.060000;214.090000;214.060000;214.089000;0 +20260203 214800;214.089000;214.113000;214.085000;214.099000;0 +20260203 214900;214.100000;214.114000;214.087000;214.091000;0 +20260203 215000;214.090000;214.105000;214.070000;214.074000;0 +20260203 215100;214.073000;214.087000;214.061000;214.062000;0 +20260203 215200;214.061000;214.061000;214.024000;214.026000;0 +20260203 215300;214.027000;214.056000;214.026000;214.052000;0 +20260203 215400;214.056000;214.065000;214.040000;214.055000;0 +20260203 215500;214.053000;214.071000;214.052000;214.068000;0 +20260203 215600;214.069000;214.085000;214.058000;214.085000;0 +20260203 215700;214.084000;214.086000;214.071000;214.072000;0 +20260203 215800;214.070000;214.085000;214.068000;214.071000;0 +20260203 215900;214.071000;214.087000;214.071000;214.079000;0 +20260203 220000;214.078000;214.123000;214.078000;214.103000;0 +20260203 220100;214.103000;214.123000;214.090000;214.115000;0 +20260203 220200;214.114000;214.135000;214.107000;214.130000;0 +20260203 220300;214.130000;214.141000;214.118000;214.133000;0 +20260203 220400;214.130000;214.132000;214.115000;214.124000;0 +20260203 220500;214.126000;214.133000;214.105000;214.115000;0 +20260203 220600;214.117000;214.121000;214.107000;214.108000;0 +20260203 220700;214.108000;214.111000;214.085000;214.085000;0 +20260203 220800;214.085000;214.091000;214.073000;214.086000;0 +20260203 220900;214.100000;214.100000;214.082000;214.085000;0 +20260203 221000;214.082000;214.096000;214.069000;214.085000;0 +20260203 221100;214.079000;214.109000;214.079000;214.101000;0 +20260203 221200;214.103000;214.109000;214.083000;214.085000;0 +20260203 221300;214.086000;214.089000;214.078000;214.084000;0 +20260203 221400;214.085000;214.096000;214.082000;214.091000;0 +20260203 221500;214.093000;214.095000;214.077000;214.080000;0 +20260203 221600;214.082000;214.098000;214.071000;214.092000;0 +20260203 221700;214.091000;214.103000;214.086000;214.087000;0 +20260203 221800;214.086000;214.102000;214.081000;214.098000;0 +20260203 221900;214.098000;214.157000;214.095000;214.146000;0 +20260203 222000;214.146000;214.161000;214.142000;214.153000;0 +20260203 222100;214.154000;214.165000;214.147000;214.161000;0 +20260203 222200;214.158000;214.178000;214.158000;214.162000;0 +20260203 222300;214.160000;214.170000;214.151000;214.167000;0 +20260203 222400;214.169000;214.180000;214.155000;214.168000;0 +20260203 222500;214.166000;214.195000;214.166000;214.194000;0 +20260203 222600;214.188000;214.251000;214.188000;214.236000;0 +20260203 222700;214.236000;214.244000;214.211000;214.211000;0 +20260203 222800;214.209000;214.229000;214.199000;214.221000;0 +20260203 222900;214.220000;214.238000;214.202000;214.202000;0 +20260203 223000;214.202000;214.227000;214.199000;214.202000;0 +20260203 223100;214.204000;214.204000;214.170000;214.178000;0 +20260203 223200;214.181000;214.184000;214.161000;214.167000;0 +20260203 223300;214.169000;214.186000;214.157000;214.186000;0 +20260203 223400;214.194000;214.202000;214.177000;214.190000;0 +20260203 223500;214.192000;214.199000;214.183000;214.183000;0 +20260203 223600;214.183000;214.200000;214.181000;214.193000;0 +20260203 223700;214.193000;214.203000;214.168000;214.196000;0 +20260203 223800;214.196000;214.204000;214.187000;214.191000;0 +20260203 223900;214.193000;214.200000;214.183000;214.186000;0 +20260203 224000;214.187000;214.197000;214.186000;214.197000;0 +20260203 224100;214.195000;214.206000;214.188000;214.196000;0 +20260203 224200;214.196000;214.205000;214.164000;214.166000;0 +20260203 224300;214.167000;214.167000;214.147000;214.150000;0 +20260203 224400;214.149000;214.161000;214.146000;214.156000;0 +20260203 224500;214.158000;214.167000;214.122000;214.130000;0 +20260203 224600;214.130000;214.138000;214.121000;214.128000;0 +20260203 224700;214.127000;214.137000;214.102000;214.127000;0 +20260203 224800;214.128000;214.138000;214.107000;214.119000;0 +20260203 224900;214.119000;214.151000;214.119000;214.151000;0 +20260203 225000;214.150000;214.153000;214.136000;214.151000;0 +20260203 225100;214.152000;214.173000;214.151000;214.156000;0 +20260203 225200;214.154000;214.170000;214.153000;214.170000;0 +20260203 225300;214.167000;214.188000;214.167000;214.181000;0 +20260203 225400;214.179000;214.216000;214.171000;214.210000;0 +20260203 225500;214.209000;214.227000;214.199000;214.227000;0 +20260203 225600;214.226000;214.252000;214.226000;214.244000;0 +20260203 225700;214.241000;214.246000;214.215000;214.221000;0 +20260203 225800;214.219000;214.221000;214.206000;214.212000;0 +20260203 225900;214.211000;214.224000;214.211000;214.218000;0 +20260203 230000;214.221000;214.254000;214.212000;214.252000;0 +20260203 230100;214.253000;214.253000;214.233000;214.243000;0 +20260203 230200;214.243000;214.253000;214.237000;214.249000;0 +20260203 230300;214.243000;214.248000;214.234000;214.237000;0 +20260203 230400;214.238000;214.247000;214.229000;214.242000;0 +20260203 230500;214.251000;214.274000;214.251000;214.268000;0 +20260203 230600;214.268000;214.284000;214.263000;214.280000;0 +20260203 230700;214.277000;214.298000;214.277000;214.287000;0 +20260203 230800;214.289000;214.292000;214.271000;214.271000;0 +20260203 230900;214.272000;214.278000;214.262000;214.268000;0 +20260203 231000;214.270000;214.280000;214.254000;214.271000;0 +20260203 231100;214.270000;214.278000;214.258000;214.262000;0 +20260203 231200;214.264000;214.275000;214.257000;214.272000;0 +20260203 231300;214.274000;214.301000;214.274000;214.297000;0 +20260203 231400;214.303000;214.322000;214.297000;214.317000;0 +20260203 231500;214.315000;214.322000;214.299000;214.301000;0 +20260203 231600;214.299000;214.303000;214.282000;214.284000;0 +20260203 231700;214.286000;214.292000;214.271000;214.276000;0 +20260203 231800;214.275000;214.293000;214.273000;214.287000;0 +20260203 231900;214.286000;214.286000;214.245000;214.250000;0 +20260203 232000;214.255000;214.261000;214.241000;214.247000;0 +20260203 232100;214.249000;214.251000;214.226000;214.230000;0 +20260203 232200;214.232000;214.243000;214.226000;214.236000;0 +20260203 232300;214.237000;214.238000;214.185000;214.189000;0 +20260203 232400;214.191000;214.210000;214.186000;214.199000;0 +20260203 232500;214.203000;214.212000;214.189000;214.197000;0 +20260203 232600;214.194000;214.208000;214.190000;214.197000;0 +20260203 232700;214.199000;214.209000;214.181000;214.186000;0 +20260203 232800;214.185000;214.209000;214.183000;214.197000;0 +20260203 232900;214.196000;214.207000;214.193000;214.207000;0 +20260203 233000;214.218000;214.241000;214.218000;214.239000;0 +20260203 233100;214.237000;214.257000;214.237000;214.255000;0 +20260203 233200;214.254000;214.257000;214.244000;214.245000;0 +20260203 233300;214.246000;214.249000;214.229000;214.232000;0 +20260203 233400;214.232000;214.243000;214.230000;214.233000;0 +20260203 233500;214.233000;214.256000;214.233000;214.256000;0 +20260203 233600;214.255000;214.255000;214.231000;214.239000;0 +20260203 233700;214.239000;214.256000;214.239000;214.250000;0 +20260203 233800;214.253000;214.273000;214.249000;214.260000;0 +20260203 233900;214.262000;214.279000;214.252000;214.277000;0 +20260203 234000;214.278000;214.304000;214.273000;214.301000;0 +20260203 234100;214.299000;214.299000;214.268000;214.273000;0 +20260203 234200;214.276000;214.278000;214.257000;214.259000;0 +20260203 234300;214.257000;214.269000;214.255000;214.266000;0 +20260203 234400;214.260000;214.282000;214.259000;214.280000;0 +20260203 234500;214.282000;214.284000;214.263000;214.276000;0 +20260203 234600;214.277000;214.302000;214.274000;214.301000;0 +20260203 234700;214.291000;214.294000;214.289000;214.290000;0 +20260203 234800;214.291000;214.307000;214.287000;214.301000;0 +20260203 234900;214.299000;214.304000;214.290000;214.292000;0 +20260203 235000;214.293000;214.339000;214.292000;214.314000;0 +20260203 235100;214.315000;214.339000;214.303000;214.336000;0 +20260203 235200;214.336000;214.338000;214.315000;214.321000;0 +20260203 235300;214.322000;214.338000;214.322000;214.322000;0 +20260203 235400;214.320000;214.343000;214.320000;214.340000;0 +20260203 235500;214.339000;214.342000;214.325000;214.339000;0 +20260203 235600;214.338000;214.339000;214.323000;214.326000;0 +20260203 235700;214.325000;214.336000;214.315000;214.333000;0 +20260203 235800;214.333000;214.346000;214.330000;214.343000;0 +20260203 235900;214.342000;214.353000;214.338000;214.341000;0 +20260204 000000;214.342000;214.344000;214.320000;214.339000;0 +20260204 000100;214.341000;214.373000;214.341000;214.355000;0 +20260204 000200;214.353000;214.361000;214.350000;214.355000;0 +20260204 000300;214.357000;214.364000;214.352000;214.357000;0 +20260204 000400;214.353000;214.353000;214.332000;214.346000;0 +20260204 000500;214.349000;214.367000;214.344000;214.363000;0 +20260204 000600;214.365000;214.373000;214.356000;214.373000;0 +20260204 000700;214.372000;214.389000;214.370000;214.386000;0 +20260204 000800;214.385000;214.387000;214.379000;214.385000;0 +20260204 000900;214.386000;214.403000;214.383000;214.392000;0 +20260204 001000;214.391000;214.411000;214.381000;214.408000;0 +20260204 001100;214.408000;214.449000;214.408000;214.425000;0 +20260204 001200;214.424000;214.445000;214.424000;214.433000;0 +20260204 001300;214.429000;214.431000;214.410000;214.410000;0 +20260204 001400;214.409000;214.410000;214.380000;214.384000;0 +20260204 001500;214.379000;214.389000;214.366000;214.371000;0 +20260204 001600;214.373000;214.378000;214.351000;214.366000;0 +20260204 001700;214.367000;214.383000;214.356000;214.370000;0 +20260204 001800;214.370000;214.385000;214.368000;214.376000;0 +20260204 001900;214.374000;214.380000;214.358000;214.366000;0 +20260204 002000;214.366000;214.379000;214.359000;214.374000;0 +20260204 002100;214.375000;214.375000;214.344000;214.350000;0 +20260204 002200;214.347000;214.371000;214.342000;214.368000;0 +20260204 002300;214.370000;214.373000;214.338000;214.339000;0 +20260204 002400;214.343000;214.356000;214.336000;214.346000;0 +20260204 002500;214.342000;214.361000;214.325000;214.361000;0 +20260204 002600;214.357000;214.369000;214.354000;214.369000;0 +20260204 002700;214.370000;214.370000;214.341000;214.345000;0 +20260204 002800;214.344000;214.350000;214.337000;214.340000;0 +20260204 002900;214.340000;214.342000;214.330000;214.331000;0 +20260204 003000;214.330000;214.332000;214.319000;214.329000;0 +20260204 003100;214.331000;214.331000;214.306000;214.315000;0 +20260204 003200;214.319000;214.323000;214.304000;214.315000;0 +20260204 003300;214.314000;214.322000;214.314000;214.318000;0 +20260204 003400;214.320000;214.326000;214.303000;214.303000;0 +20260204 003500;214.305000;214.314000;214.293000;214.301000;0 +20260204 003600;214.301000;214.314000;214.301000;214.311000;0 +20260204 003700;214.312000;214.320000;214.301000;214.309000;0 +20260204 003800;214.307000;214.319000;214.306000;214.313000;0 +20260204 003900;214.313000;214.339000;214.310000;214.336000;0 +20260204 004000;214.338000;214.348000;214.327000;214.345000;0 +20260204 004100;214.347000;214.361000;214.345000;214.356000;0 +20260204 004200;214.363000;214.393000;214.353000;214.387000;0 +20260204 004300;214.387000;214.387000;214.362000;214.383000;0 +20260204 004400;214.384000;214.398000;214.384000;214.397000;0 +20260204 004500;214.397000;214.403000;214.390000;214.400000;0 +20260204 004600;214.395000;214.418000;214.395000;214.413000;0 +20260204 004700;214.413000;214.426000;214.348000;214.350000;0 +20260204 004800;214.350000;214.374000;214.348000;214.374000;0 +20260204 004900;214.372000;214.383000;214.368000;214.380000;0 +20260204 005000;214.377000;214.387000;214.373000;214.376000;0 +20260204 005100;214.377000;214.398000;214.375000;214.395000;0 +20260204 005200;214.397000;214.397000;214.377000;214.392000;0 +20260204 005300;214.398000;214.405000;214.373000;214.384000;0 +20260204 005400;214.383000;214.388000;214.371000;214.378000;0 +20260204 005500;214.379000;214.397000;214.379000;214.392000;0 +20260204 005600;214.391000;214.392000;214.361000;214.367000;0 +20260204 005700;214.366000;214.379000;214.355000;214.360000;0 +20260204 005800;214.359000;214.370000;214.341000;214.359000;0 +20260204 005900;214.358000;214.367000;214.353000;214.364000;0 +20260204 010000;214.362000;214.380000;214.356000;214.377000;0 +20260204 010100;214.378000;214.393000;214.364000;214.386000;0 +20260204 010200;214.395000;214.412000;214.381000;214.381000;0 +20260204 010300;214.372000;214.430000;214.372000;214.394000;0 +20260204 010400;214.399000;214.421000;214.394000;214.414000;0 +20260204 010500;214.415000;214.449000;214.402000;214.410000;0 +20260204 010600;214.407000;214.409000;214.390000;214.405000;0 +20260204 010700;214.406000;214.426000;214.393000;214.393000;0 +20260204 010800;214.394000;214.409000;214.393000;214.403000;0 +20260204 010900;214.402000;214.429000;214.399000;214.420000;0 +20260204 011000;214.418000;214.452000;214.418000;214.442000;0 +20260204 011100;214.441000;214.475000;214.438000;214.471000;0 +20260204 011200;214.471000;214.482000;214.461000;214.464000;0 +20260204 011300;214.467000;214.467000;214.447000;214.452000;0 +20260204 011400;214.453000;214.464000;214.445000;214.458000;0 +20260204 011500;214.457000;214.470000;214.449000;214.458000;0 +20260204 011600;214.456000;214.468000;214.449000;214.452000;0 +20260204 011700;214.454000;214.459000;214.412000;214.416000;0 +20260204 011800;214.417000;214.435000;214.401000;214.404000;0 +20260204 011900;214.401000;214.410000;214.390000;214.394000;0 +20260204 012000;214.391000;214.397000;214.369000;214.378000;0 +20260204 012100;214.380000;214.405000;214.376000;214.405000;0 +20260204 012200;214.405000;214.411000;214.398000;214.403000;0 +20260204 012300;214.403000;214.418000;214.394000;214.395000;0 +20260204 012400;214.397000;214.397000;214.379000;214.386000;0 +20260204 012500;214.383000;214.387000;214.345000;214.350000;0 +20260204 012600;214.352000;214.371000;214.343000;214.364000;0 +20260204 012700;214.362000;214.382000;214.355000;214.373000;0 +20260204 012800;214.374000;214.380000;214.357000;214.359000;0 +20260204 012900;214.359000;214.377000;214.353000;214.370000;0 +20260204 013000;214.372000;214.385000;214.359000;214.359000;0 +20260204 013100;214.360000;214.374000;214.352000;214.374000;0 +20260204 013200;214.373000;214.381000;214.357000;214.359000;0 +20260204 013300;214.364000;214.394000;214.355000;214.389000;0 +20260204 013400;214.389000;214.393000;214.380000;214.388000;0 +20260204 013500;214.389000;214.398000;214.339000;214.341000;0 +20260204 013600;214.341000;214.349000;214.326000;214.335000;0 +20260204 013700;214.336000;214.376000;214.334000;214.367000;0 +20260204 013800;214.367000;214.392000;214.361000;214.391000;0 +20260204 013900;214.392000;214.427000;214.391000;214.413000;0 +20260204 014000;214.413000;214.430000;214.410000;214.420000;0 +20260204 014100;214.424000;214.439000;214.418000;214.431000;0 +20260204 014200;214.433000;214.433000;214.398000;214.417000;0 +20260204 014300;214.419000;214.444000;214.411000;214.422000;0 +20260204 014400;214.422000;214.453000;214.418000;214.434000;0 +20260204 014500;214.429000;214.490000;214.429000;214.480000;0 +20260204 014600;214.482000;214.485000;214.465000;214.465000;0 +20260204 014700;214.464000;214.503000;214.463000;214.488000;0 +20260204 014800;214.489000;214.514000;214.486000;214.507000;0 +20260204 014900;214.503000;214.520000;214.493000;214.505000;0 +20260204 015000;214.503000;214.530000;214.502000;214.510000;0 +20260204 015100;214.508000;214.508000;214.473000;214.485000;0 +20260204 015200;214.486000;214.494000;214.471000;214.481000;0 +20260204 015300;214.480000;214.488000;214.458000;214.458000;0 +20260204 015400;214.461000;214.472000;214.452000;214.452000;0 +20260204 015500;214.457000;214.463000;214.440000;214.463000;0 +20260204 015600;214.458000;214.458000;214.416000;214.425000;0 +20260204 015700;214.423000;214.427000;214.413000;214.422000;0 +20260204 015800;214.424000;214.438000;214.407000;214.421000;0 +20260204 015900;214.424000;214.429000;214.400000;214.409000;0 +20260204 020000;214.405000;214.443000;214.392000;214.434000;0 +20260204 020100;214.433000;214.438000;214.417000;214.427000;0 +20260204 020200;214.430000;214.457000;214.430000;214.453000;0 +20260204 020300;214.458000;214.465000;214.432000;214.438000;0 +20260204 020400;214.437000;214.437000;214.417000;214.422000;0 +20260204 020500;214.421000;214.428000;214.404000;214.419000;0 +20260204 020600;214.418000;214.439000;214.416000;214.422000;0 +20260204 020700;214.421000;214.443000;214.421000;214.435000;0 +20260204 020800;214.434000;214.434000;214.421000;214.426000;0 +20260204 020900;214.429000;214.452000;214.425000;214.435000;0 +20260204 021000;214.436000;214.456000;214.429000;214.449000;0 +20260204 021100;214.452000;214.479000;214.442000;214.477000;0 +20260204 021200;214.478000;214.494000;214.445000;214.449000;0 +20260204 021300;214.450000;214.452000;214.432000;214.452000;0 +20260204 021400;214.458000;214.464000;214.420000;214.436000;0 +20260204 021500;214.439000;214.448000;214.422000;214.428000;0 +20260204 021600;214.429000;214.437000;214.400000;214.421000;0 +20260204 021700;214.425000;214.441000;214.420000;214.441000;0 +20260204 021800;214.440000;214.455000;214.431000;214.453000;0 +20260204 021900;214.454000;214.457000;214.432000;214.440000;0 +20260204 022000;214.438000;214.463000;214.438000;214.447000;0 +20260204 022100;214.461000;214.483000;214.459000;214.477000;0 +20260204 022200;214.477000;214.492000;214.467000;214.481000;0 +20260204 022300;214.481000;214.485000;214.441000;214.442000;0 +20260204 022400;214.439000;214.469000;214.410000;214.456000;0 +20260204 022500;214.453000;214.466000;214.444000;214.461000;0 +20260204 022600;214.460000;214.465000;214.431000;214.434000;0 +20260204 022700;214.433000;214.443000;214.422000;214.438000;0 +20260204 022800;214.440000;214.466000;214.434000;214.458000;0 +20260204 022900;214.460000;214.474000;214.460000;214.470000;0 +20260204 023000;214.470000;214.470000;214.447000;214.453000;0 +20260204 023100;214.453000;214.475000;214.449000;214.470000;0 +20260204 023200;214.469000;214.502000;214.469000;214.490000;0 +20260204 023300;214.489000;214.497000;214.476000;214.489000;0 +20260204 023400;214.487000;214.490000;214.464000;214.464000;0 +20260204 023500;214.464000;214.465000;214.454000;214.457000;0 +20260204 023600;214.453000;214.467000;214.447000;214.450000;0 +20260204 023700;214.455000;214.465000;214.443000;214.454000;0 +20260204 023800;214.451000;214.464000;214.451000;214.452000;0 +20260204 023900;214.452000;214.456000;214.429000;214.444000;0 +20260204 024000;214.445000;214.456000;214.439000;214.456000;0 +20260204 024100;214.450000;214.453000;214.436000;214.445000;0 +20260204 024200;214.443000;214.462000;214.433000;214.460000;0 +20260204 024300;214.466000;214.496000;214.466000;214.480000;0 +20260204 024400;214.481000;214.510000;214.477000;214.494000;0 +20260204 024500;214.492000;214.500000;214.481000;214.496000;0 +20260204 024600;214.494000;214.499000;214.478000;214.486000;0 +20260204 024700;214.487000;214.497000;214.481000;214.487000;0 +20260204 024800;214.486000;214.523000;214.486000;214.512000;0 +20260204 024900;214.512000;214.515000;214.496000;214.506000;0 +20260204 025000;214.507000;214.518000;214.489000;214.516000;0 +20260204 025100;214.516000;214.526000;214.510000;214.526000;0 +20260204 025200;214.529000;214.542000;214.519000;214.531000;0 +20260204 025300;214.530000;214.541000;214.521000;214.531000;0 +20260204 025400;214.530000;214.539000;214.525000;214.532000;0 +20260204 025500;214.533000;214.581000;214.527000;214.570000;0 +20260204 025600;214.572000;214.583000;214.568000;214.568000;0 +20260204 025700;214.567000;214.596000;214.559000;214.587000;0 +20260204 025800;214.579000;214.581000;214.538000;214.542000;0 +20260204 025900;214.542000;214.553000;214.534000;214.546000;0 +20260204 030000;214.546000;214.573000;214.543000;214.549000;0 +20260204 030100;214.548000;214.570000;214.539000;214.565000;0 +20260204 030200;214.561000;214.561000;214.525000;214.538000;0 +20260204 030300;214.530000;214.543000;214.485000;214.489000;0 +20260204 030400;214.491000;214.504000;214.480000;214.486000;0 +20260204 030500;214.488000;214.572000;214.484000;214.554000;0 +20260204 030600;214.553000;214.590000;214.547000;214.580000;0 +20260204 030700;214.578000;214.591000;214.556000;214.590000;0 +20260204 030800;214.590000;214.677000;214.579000;214.673000;0 +20260204 030900;214.672000;214.730000;214.666000;214.725000;0 +20260204 031000;214.731000;214.804000;214.731000;214.760000;0 +20260204 031100;214.759000;214.783000;214.731000;214.747000;0 +20260204 031200;214.748000;214.805000;214.743000;214.805000;0 +20260204 031300;214.803000;214.803000;214.747000;214.749000;0 +20260204 031400;214.751000;214.764000;214.707000;214.719000;0 +20260204 031500;214.717000;214.745000;214.683000;214.692000;0 +20260204 031600;214.693000;214.711000;214.682000;214.696000;0 +20260204 031700;214.699000;214.740000;214.694000;214.728000;0 +20260204 031800;214.729000;214.753000;214.700000;214.722000;0 +20260204 031900;214.724000;214.730000;214.693000;214.723000;0 +20260204 032000;214.720000;214.753000;214.714000;214.751000;0 +20260204 032100;214.751000;214.760000;214.718000;214.722000;0 +20260204 032200;214.722000;214.749000;214.718000;214.741000;0 +20260204 032300;214.741000;214.741000;214.710000;214.729000;0 +20260204 032400;214.731000;214.735000;214.717000;214.731000;0 +20260204 032500;214.731000;214.745000;214.730000;214.745000;0 +20260204 032600;214.753000;214.764000;214.725000;214.744000;0 +20260204 032700;214.744000;214.803000;214.744000;214.789000;0 +20260204 032800;214.790000;214.815000;214.789000;214.808000;0 +20260204 032900;214.808000;214.818000;214.784000;214.793000;0 +20260204 033000;214.789000;214.794000;214.748000;214.763000;0 +20260204 033100;214.763000;214.765000;214.735000;214.743000;0 +20260204 033200;214.747000;214.763000;214.741000;214.761000;0 +20260204 033300;214.759000;214.762000;214.735000;214.739000;0 +20260204 033400;214.738000;214.751000;214.733000;214.745000;0 +20260204 033500;214.747000;214.747000;214.718000;214.732000;0 +20260204 033600;214.730000;214.739000;214.695000;214.695000;0 +20260204 033700;214.695000;214.695000;214.647000;214.653000;0 +20260204 033800;214.652000;214.703000;214.652000;214.695000;0 +20260204 033900;214.697000;214.725000;214.695000;214.701000;0 +20260204 034000;214.699000;214.736000;214.690000;214.731000;0 +20260204 034100;214.731000;214.794000;214.722000;214.772000;0 +20260204 034200;214.769000;214.790000;214.763000;214.774000;0 +20260204 034300;214.771000;214.789000;214.767000;214.767000;0 +20260204 034400;214.767000;214.768000;214.750000;214.760000;0 +20260204 034500;214.759000;214.769000;214.730000;214.733000;0 +20260204 034600;214.733000;214.737000;214.710000;214.721000;0 +20260204 034700;214.726000;214.726000;214.694000;214.694000;0 +20260204 034800;214.695000;214.731000;214.689000;214.726000;0 +20260204 034900;214.727000;214.774000;214.725000;214.752000;0 +20260204 035000;214.753000;214.771000;214.748000;214.762000;0 +20260204 035100;214.763000;214.784000;214.751000;214.775000;0 +20260204 035200;214.775000;214.776000;214.755000;214.766000;0 +20260204 035300;214.766000;214.790000;214.750000;214.790000;0 +20260204 035400;214.789000;214.797000;214.775000;214.778000;0 +20260204 035500;214.776000;214.776000;214.742000;214.752000;0 +20260204 035600;214.752000;214.769000;214.746000;214.769000;0 +20260204 035700;214.768000;214.813000;214.766000;214.810000;0 +20260204 035800;214.811000;214.849000;214.810000;214.847000;0 +20260204 035900;214.846000;214.847000;214.803000;214.812000;0 +20260204 040000;214.817000;214.817000;214.761000;214.790000;0 +20260204 040100;214.793000;214.810000;214.780000;214.800000;0 +20260204 040200;214.801000;214.823000;214.765000;214.771000;0 +20260204 040300;214.771000;214.771000;214.738000;214.747000;0 +20260204 040400;214.746000;214.770000;214.746000;214.751000;0 +20260204 040500;214.747000;214.747000;214.710000;214.716000;0 +20260204 040600;214.713000;214.736000;214.698000;214.715000;0 +20260204 040700;214.715000;214.737000;214.713000;214.719000;0 +20260204 040800;214.719000;214.722000;214.695000;214.706000;0 +20260204 040900;214.709000;214.711000;214.675000;214.686000;0 +20260204 041000;214.688000;214.728000;214.686000;214.725000;0 +20260204 041100;214.724000;214.759000;214.724000;214.748000;0 +20260204 041200;214.748000;214.771000;214.745000;214.763000;0 +20260204 041300;214.763000;214.783000;214.758000;214.780000;0 +20260204 041400;214.778000;214.782000;214.735000;214.740000;0 +20260204 041500;214.738000;214.765000;214.723000;214.730000;0 +20260204 041600;214.730000;214.736000;214.708000;214.713000;0 +20260204 041700;214.713000;214.716000;214.692000;214.708000;0 +20260204 041800;214.705000;214.709000;214.671000;214.699000;0 +20260204 041900;214.696000;214.711000;214.672000;214.673000;0 +20260204 042000;214.670000;214.713000;214.670000;214.689000;0 +20260204 042100;214.691000;214.691000;214.664000;214.675000;0 +20260204 042200;214.672000;214.690000;214.664000;214.665000;0 +20260204 042300;214.667000;214.686000;214.660000;214.671000;0 +20260204 042400;214.671000;214.675000;214.652000;214.666000;0 +20260204 042500;214.669000;214.676000;214.651000;214.673000;0 +20260204 042600;214.672000;214.676000;214.655000;214.674000;0 +20260204 042700;214.671000;214.675000;214.664000;214.670000;0 +20260204 042800;214.670000;214.679000;214.649000;214.657000;0 +20260204 042900;214.657000;214.657000;214.637000;214.647000;0 +20260204 043000;214.642000;214.651000;214.614000;214.614000;0 +20260204 043100;214.618000;214.649000;214.596000;214.640000;0 +20260204 043200;214.639000;214.639000;214.591000;214.621000;0 +20260204 043300;214.622000;214.646000;214.611000;214.644000;0 +20260204 043400;214.639000;214.648000;214.600000;214.602000;0 +20260204 043500;214.604000;214.619000;214.597000;214.605000;0 +20260204 043600;214.601000;214.615000;214.580000;214.584000;0 +20260204 043700;214.583000;214.596000;214.540000;214.569000;0 +20260204 043800;214.570000;214.588000;214.553000;214.587000;0 +20260204 043900;214.588000;214.599000;214.578000;214.585000;0 +20260204 044000;214.586000;214.616000;214.581000;214.613000;0 +20260204 044100;214.616000;214.639000;214.613000;214.635000;0 +20260204 044200;214.633000;214.634000;214.599000;214.599000;0 +20260204 044300;214.600000;214.607000;214.581000;214.592000;0 +20260204 044400;214.593000;214.650000;214.588000;214.650000;0 +20260204 044500;214.647000;214.667000;214.632000;214.636000;0 +20260204 044600;214.639000;214.642000;214.606000;214.637000;0 +20260204 044700;214.638000;214.638000;214.615000;214.618000;0 +20260204 044800;214.615000;214.615000;214.590000;214.605000;0 +20260204 044900;214.605000;214.619000;214.586000;214.613000;0 +20260204 045000;214.612000;214.630000;214.599000;214.619000;0 +20260204 045100;214.620000;214.645000;214.620000;214.626000;0 +20260204 045200;214.628000;214.678000;214.627000;214.662000;0 +20260204 045300;214.661000;214.685000;214.659000;214.681000;0 +20260204 045400;214.681000;214.696000;214.674000;214.677000;0 +20260204 045500;214.677000;214.726000;214.673000;214.716000;0 +20260204 045600;214.715000;214.733000;214.699000;214.730000;0 +20260204 045700;214.734000;214.766000;214.734000;214.754000;0 +20260204 045800;214.752000;214.755000;214.735000;214.735000;0 +20260204 045900;214.734000;214.743000;214.731000;214.737000;0 +20260204 050000;214.730000;214.785000;214.721000;214.771000;0 +20260204 050100;214.771000;214.782000;214.763000;214.768000;0 +20260204 050200;214.769000;214.788000;214.753000;214.756000;0 +20260204 050300;214.755000;214.768000;214.738000;214.746000;0 +20260204 050400;214.747000;214.763000;214.742000;214.742000;0 +20260204 050500;214.743000;214.743000;214.713000;214.731000;0 +20260204 050600;214.737000;214.737000;214.703000;214.711000;0 +20260204 050700;214.712000;214.728000;214.711000;214.716000;0 +20260204 050800;214.717000;214.735000;214.712000;214.728000;0 +20260204 050900;214.723000;214.729000;214.715000;214.715000;0 +20260204 051000;214.717000;214.721000;214.699000;214.708000;0 +20260204 051100;214.709000;214.731000;214.707000;214.725000;0 +20260204 051200;214.725000;214.761000;214.725000;214.761000;0 +20260204 051300;214.760000;214.761000;214.731000;214.746000;0 +20260204 051400;214.748000;214.752000;214.725000;214.729000;0 +20260204 051500;214.729000;214.732000;214.717000;214.720000;0 +20260204 051600;214.721000;214.754000;214.718000;214.749000;0 +20260204 051700;214.754000;214.757000;214.722000;214.733000;0 +20260204 051800;214.731000;214.754000;214.720000;214.741000;0 +20260204 051900;214.743000;214.767000;214.743000;214.746000;0 +20260204 052000;214.748000;214.763000;214.746000;214.746000;0 +20260204 052100;214.744000;214.766000;214.737000;214.763000;0 +20260204 052200;214.765000;214.777000;214.752000;214.752000;0 +20260204 052300;214.748000;214.753000;214.711000;214.711000;0 +20260204 052400;214.708000;214.734000;214.703000;214.730000;0 +20260204 052500;214.729000;214.741000;214.720000;214.741000;0 +20260204 052600;214.740000;214.740000;214.661000;214.674000;0 +20260204 052700;214.677000;214.695000;214.653000;214.679000;0 +20260204 052800;214.679000;214.727000;214.669000;214.726000;0 +20260204 052900;214.727000;214.742000;214.718000;214.729000;0 +20260204 053000;214.729000;214.804000;214.727000;214.790000;0 +20260204 053100;214.789000;214.796000;214.761000;214.761000;0 +20260204 053200;214.759000;214.763000;214.729000;214.742000;0 +20260204 053300;214.741000;214.756000;214.741000;214.756000;0 +20260204 053400;214.752000;214.752000;214.731000;214.742000;0 +20260204 053500;214.740000;214.763000;214.712000;214.713000;0 +20260204 053600;214.712000;214.734000;214.687000;214.688000;0 +20260204 053700;214.692000;214.730000;214.688000;214.714000;0 +20260204 053800;214.710000;214.728000;214.688000;214.718000;0 +20260204 053900;214.723000;214.775000;214.723000;214.774000;0 +20260204 054000;214.776000;214.809000;214.775000;214.779000;0 +20260204 054100;214.781000;214.807000;214.764000;214.801000;0 +20260204 054200;214.805000;214.831000;214.803000;214.821000;0 +20260204 054300;214.822000;214.836000;214.802000;214.836000;0 +20260204 054400;214.834000;214.839000;214.805000;214.811000;0 +20260204 054500;214.809000;214.823000;214.787000;214.787000;0 +20260204 054600;214.787000;214.821000;214.779000;214.803000;0 +20260204 054700;214.805000;214.828000;214.803000;214.810000;0 +20260204 054800;214.813000;214.853000;214.806000;214.832000;0 +20260204 054900;214.834000;214.844000;214.819000;214.834000;0 +20260204 055000;214.834000;214.885000;214.834000;214.885000;0 +20260204 055100;214.887000;214.902000;214.872000;214.892000;0 +20260204 055200;214.889000;214.908000;214.886000;214.891000;0 +20260204 055300;214.893000;214.914000;214.893000;214.911000;0 +20260204 055400;214.910000;214.940000;214.910000;214.910000;0 +20260204 055500;214.920000;214.942000;214.910000;214.937000;0 +20260204 055600;214.936000;214.936000;214.913000;214.918000;0 +20260204 055700;214.919000;214.925000;214.880000;214.905000;0 +20260204 055800;214.907000;214.951000;214.899000;214.951000;0 +20260204 055900;214.951000;214.980000;214.947000;214.974000;0 +20260204 060000;214.975000;214.978000;214.907000;214.912000;0 +20260204 060100;214.913000;214.929000;214.883000;214.894000;0 +20260204 060200;214.894000;214.936000;214.881000;214.934000;0 +20260204 060300;214.932000;214.963000;214.924000;214.950000;0 +20260204 060400;214.946000;214.966000;214.927000;214.966000;0 +20260204 060500;214.961000;214.976000;214.955000;214.963000;0 +20260204 060600;214.963000;214.963000;214.914000;214.919000;0 +20260204 060700;214.922000;214.943000;214.912000;214.942000;0 +20260204 060800;214.939000;214.939000;214.894000;214.901000;0 +20260204 060900;214.902000;214.923000;214.888000;214.888000;0 +20260204 061000;214.888000;214.927000;214.882000;214.913000;0 +20260204 061100;214.914000;214.922000;214.882000;214.919000;0 +20260204 061200;214.923000;214.923000;214.897000;214.899000;0 +20260204 061300;214.899000;214.899000;214.865000;214.875000;0 +20260204 061400;214.874000;214.882000;214.865000;214.880000;0 +20260204 061500;214.883000;214.955000;214.883000;214.951000;0 +20260204 061600;214.947000;214.948000;214.917000;214.918000;0 +20260204 061700;214.914000;214.932000;214.888000;214.888000;0 +20260204 061800;214.886000;214.913000;214.875000;214.891000;0 +20260204 061900;214.891000;214.930000;214.887000;214.929000;0 +20260204 062000;214.932000;214.933000;214.907000;214.918000;0 +20260204 062100;214.916000;214.918000;214.900000;214.903000;0 +20260204 062200;214.906000;214.908000;214.887000;214.900000;0 +20260204 062300;214.902000;214.936000;214.899000;214.932000;0 +20260204 062400;214.932000;214.938000;214.921000;214.935000;0 +20260204 062500;214.936000;214.945000;214.919000;214.923000;0 +20260204 062600;214.923000;214.923000;214.905000;214.911000;0 +20260204 062700;214.911000;214.912000;214.899000;214.906000;0 +20260204 062800;214.905000;214.906000;214.888000;214.891000;0 +20260204 062900;214.891000;214.916000;214.889000;214.913000;0 +20260204 063000;214.913000;214.934000;214.911000;214.926000;0 +20260204 063100;214.926000;214.933000;214.913000;214.922000;0 +20260204 063200;214.922000;214.929000;214.911000;214.917000;0 +20260204 063300;214.919000;214.956000;214.917000;214.951000;0 +20260204 063400;214.948000;214.957000;214.932000;214.941000;0 +20260204 063500;214.940000;214.971000;214.934000;214.961000;0 +20260204 063600;214.961000;214.997000;214.944000;214.986000;0 +20260204 063700;214.987000;214.990000;214.967000;214.975000;0 +20260204 063800;214.974000;214.995000;214.968000;214.979000;0 +20260204 063900;214.979000;214.989000;214.972000;214.976000;0 +20260204 064000;214.976000;214.981000;214.954000;214.957000;0 +20260204 064100;214.958000;214.963000;214.930000;214.930000;0 +20260204 064200;214.933000;214.954000;214.930000;214.942000;0 +20260204 064300;214.942000;214.942000;214.912000;214.912000;0 +20260204 064400;214.912000;214.912000;214.835000;214.842000;0 +20260204 064500;214.842000;214.867000;214.807000;214.861000;0 +20260204 064600;214.862000;214.886000;214.850000;214.869000;0 +20260204 064700;214.871000;214.886000;214.854000;214.884000;0 +20260204 064800;214.884000;214.918000;214.872000;214.913000;0 +20260204 064900;214.915000;214.925000;214.880000;214.916000;0 +20260204 065000;214.912000;214.930000;214.905000;214.911000;0 +20260204 065100;214.905000;214.908000;214.882000;214.901000;0 +20260204 065200;214.896000;214.916000;214.886000;214.903000;0 +20260204 065300;214.904000;214.908000;214.891000;214.900000;0 +20260204 065400;214.902000;214.910000;214.892000;214.903000;0 +20260204 065500;214.904000;214.924000;214.901000;214.921000;0 +20260204 065600;214.922000;214.932000;214.916000;214.929000;0 +20260204 065700;214.939000;214.958000;214.931000;214.957000;0 +20260204 065800;214.959000;214.961000;214.935000;214.949000;0 +20260204 065900;214.946000;214.985000;214.946000;214.977000;0 +20260204 070000;214.976000;214.993000;214.952000;214.982000;0 +20260204 070100;214.981000;215.003000;214.981000;214.995000;0 +20260204 070200;214.992000;214.995000;214.978000;214.987000;0 +20260204 070300;214.986000;214.993000;214.966000;214.973000;0 +20260204 070400;214.972000;214.982000;214.959000;214.961000;0 +20260204 070500;214.959000;214.961000;214.922000;214.927000;0 +20260204 070600;214.926000;214.929000;214.904000;214.908000;0 +20260204 070700;214.906000;214.924000;214.895000;214.923000;0 +20260204 070800;214.929000;214.941000;214.921000;214.928000;0 +20260204 070900;214.930000;214.936000;214.903000;214.932000;0 +20260204 071000;214.933000;214.952000;214.915000;214.949000;0 +20260204 071100;214.949000;214.951000;214.928000;214.930000;0 +20260204 071200;214.932000;214.941000;214.922000;214.930000;0 +20260204 071300;214.930000;214.940000;214.919000;214.928000;0 +20260204 071400;214.928000;214.928000;214.882000;214.889000;0 +20260204 071500;214.889000;214.926000;214.889000;214.924000;0 +20260204 071600;214.921000;214.945000;214.916000;214.940000;0 +20260204 071700;214.937000;214.944000;214.932000;214.939000;0 +20260204 071800;214.939000;214.939000;214.908000;214.924000;0 +20260204 071900;214.926000;214.935000;214.878000;214.884000;0 +20260204 072000;214.884000;214.910000;214.877000;214.882000;0 +20260204 072100;214.886000;214.900000;214.882000;214.900000;0 +20260204 072200;214.903000;214.921000;214.894000;214.921000;0 +20260204 072300;214.921000;214.940000;214.912000;214.927000;0 +20260204 072400;214.928000;214.930000;214.919000;214.928000;0 +20260204 072500;214.932000;214.938000;214.923000;214.935000;0 +20260204 072600;214.934000;214.940000;214.922000;214.924000;0 +20260204 072700;214.928000;214.949000;214.922000;214.922000;0 +20260204 072800;214.922000;214.956000;214.916000;214.956000;0 +20260204 072900;214.961000;214.980000;214.956000;214.964000;0 +20260204 073000;214.964000;214.981000;214.951000;214.977000;0 +20260204 073100;214.976000;214.990000;214.955000;214.970000;0 +20260204 073200;214.969000;214.980000;214.927000;214.941000;0 +20260204 073300;214.939000;214.958000;214.903000;214.938000;0 +20260204 073400;214.939000;214.962000;214.935000;214.944000;0 +20260204 073500;214.945000;214.949000;214.928000;214.935000;0 +20260204 073600;214.936000;214.947000;214.911000;214.928000;0 +20260204 073700;214.928000;214.952000;214.921000;214.950000;0 +20260204 073800;214.950000;214.968000;214.941000;214.942000;0 +20260204 073900;214.941000;214.949000;214.922000;214.949000;0 +20260204 074000;214.950000;214.959000;214.939000;214.950000;0 +20260204 074100;214.953000;214.957000;214.941000;214.952000;0 +20260204 074200;214.952000;214.953000;214.922000;214.931000;0 +20260204 074300;214.929000;214.964000;214.923000;214.961000;0 +20260204 074400;214.959000;214.959000;214.938000;214.954000;0 +20260204 074500;214.951000;214.979000;214.949000;214.971000;0 +20260204 074600;214.970000;214.994000;214.970000;214.994000;0 +20260204 074700;214.997000;214.997000;214.954000;214.954000;0 +20260204 074800;214.958000;214.978000;214.943000;214.943000;0 +20260204 074900;214.942000;214.954000;214.936000;214.954000;0 +20260204 075000;214.953000;214.961000;214.926000;214.949000;0 +20260204 075100;214.950000;214.959000;214.932000;214.937000;0 +20260204 075200;214.936000;214.940000;214.916000;214.922000;0 +20260204 075300;214.922000;214.930000;214.907000;214.910000;0 +20260204 075400;214.911000;214.931000;214.903000;214.926000;0 +20260204 075500;214.926000;214.926000;214.890000;214.905000;0 +20260204 075600;214.905000;214.924000;214.894000;214.921000;0 +20260204 075700;214.920000;214.930000;214.887000;214.893000;0 +20260204 075800;214.896000;214.904000;214.863000;214.869000;0 +20260204 075900;214.878000;214.889000;214.868000;214.883000;0 +20260204 080000;214.885000;214.896000;214.866000;214.877000;0 +20260204 080100;214.875000;214.896000;214.870000;214.871000;0 +20260204 080200;214.872000;214.877000;214.844000;214.874000;0 +20260204 080300;214.874000;214.874000;214.826000;214.833000;0 +20260204 080400;214.834000;214.844000;214.813000;214.834000;0 +20260204 080500;214.832000;214.871000;214.824000;214.864000;0 +20260204 080600;214.865000;214.873000;214.854000;214.868000;0 +20260204 080700;214.865000;214.888000;214.857000;214.883000;0 +20260204 080800;214.886000;214.926000;214.886000;214.908000;0 +20260204 080900;214.905000;214.910000;214.875000;214.881000;0 +20260204 081000;214.886000;214.893000;214.875000;214.883000;0 +20260204 081100;214.883000;214.888000;214.869000;214.884000;0 +20260204 081200;214.883000;214.884000;214.867000;214.879000;0 +20260204 081300;214.878000;214.887000;214.873000;214.882000;0 +20260204 081400;214.880000;214.881000;214.830000;214.830000;0 +20260204 081500;214.830000;214.893000;214.830000;214.859000;0 +20260204 081600;214.858000;214.917000;214.838000;214.891000;0 +20260204 081700;214.890000;214.924000;214.874000;214.874000;0 +20260204 081800;214.876000;214.906000;214.862000;214.906000;0 +20260204 081900;214.905000;214.941000;214.876000;214.932000;0 +20260204 082000;214.931000;214.938000;214.908000;214.917000;0 +20260204 082100;214.915000;214.921000;214.894000;214.908000;0 +20260204 082200;214.907000;214.912000;214.880000;214.886000;0 +20260204 082300;214.887000;214.899000;214.869000;214.886000;0 +20260204 082400;214.879000;214.901000;214.874000;214.888000;0 +20260204 082500;214.887000;214.920000;214.883000;214.909000;0 +20260204 082600;214.904000;214.913000;214.893000;214.908000;0 +20260204 082700;214.904000;214.911000;214.886000;214.908000;0 +20260204 082800;214.909000;214.921000;214.898000;214.898000;0 +20260204 082900;214.905000;214.905000;214.869000;214.875000;0 +20260204 083000;214.872000;214.896000;214.859000;214.888000;0 +20260204 083100;214.893000;214.934000;214.885000;214.933000;0 +20260204 083200;214.935000;214.952000;214.913000;214.927000;0 +20260204 083300;214.921000;214.926000;214.876000;214.886000;0 +20260204 083400;214.887000;214.909000;214.852000;214.897000;0 +20260204 083500;214.892000;214.901000;214.829000;214.829000;0 +20260204 083600;214.834000;214.836000;214.782000;214.782000;0 +20260204 083700;214.791000;214.833000;214.782000;214.820000;0 +20260204 083800;214.823000;214.838000;214.814000;214.814000;0 +20260204 083900;214.820000;214.845000;214.808000;214.841000;0 +20260204 084000;214.839000;214.869000;214.824000;214.864000;0 +20260204 084100;214.864000;214.870000;214.852000;214.855000;0 +20260204 084200;214.855000;214.867000;214.796000;214.796000;0 +20260204 084300;214.794000;214.809000;214.769000;214.794000;0 +20260204 084400;214.796000;214.856000;214.794000;214.845000;0 +20260204 084500;214.848000;214.848000;214.810000;214.822000;0 +20260204 084600;214.822000;214.830000;214.801000;214.824000;0 +20260204 084700;214.824000;214.831000;214.771000;214.782000;0 +20260204 084800;214.781000;214.786000;214.749000;214.768000;0 +20260204 084900;214.770000;214.774000;214.745000;214.751000;0 +20260204 085000;214.750000;214.774000;214.748000;214.752000;0 +20260204 085100;214.751000;214.752000;214.691000;214.733000;0 +20260204 085200;214.731000;214.779000;214.729000;214.766000;0 +20260204 085300;214.768000;214.788000;214.761000;214.770000;0 +20260204 085400;214.772000;214.781000;214.745000;214.748000;0 +20260204 085500;214.750000;214.753000;214.687000;214.687000;0 +20260204 085600;214.692000;214.705000;214.656000;214.683000;0 +20260204 085700;214.684000;214.715000;214.655000;214.664000;0 +20260204 085800;214.665000;214.672000;214.572000;214.589000;0 +20260204 085900;214.590000;214.619000;214.562000;214.578000;0 +20260204 090000;214.580000;214.636000;214.552000;214.598000;0 +20260204 090100;214.601000;214.608000;214.495000;214.505000;0 +20260204 090200;214.516000;214.537000;214.465000;214.519000;0 +20260204 090300;214.510000;214.514000;214.413000;214.434000;0 +20260204 090400;214.435000;214.444000;214.392000;214.408000;0 +20260204 090500;214.409000;214.419000;214.318000;214.367000;0 +20260204 090600;214.367000;214.378000;214.301000;214.322000;0 +20260204 090700;214.329000;214.329000;214.265000;214.266000;0 +20260204 090800;214.271000;214.274000;214.203000;214.227000;0 +20260204 090900;214.228000;214.252000;214.189000;214.240000;0 +20260204 091000;214.237000;214.265000;214.206000;214.212000;0 +20260204 091100;214.214000;214.243000;214.207000;214.231000;0 +20260204 091200;214.231000;214.312000;214.226000;214.301000;0 +20260204 091300;214.306000;214.367000;214.303000;214.305000;0 +20260204 091400;214.305000;214.323000;214.293000;214.303000;0 +20260204 091500;214.302000;214.357000;214.290000;214.353000;0 +20260204 091600;214.353000;214.376000;214.340000;214.365000;0 +20260204 091700;214.368000;214.393000;214.333000;214.335000;0 +20260204 091800;214.335000;214.379000;214.328000;214.348000;0 +20260204 091900;214.348000;214.406000;214.348000;214.403000;0 +20260204 092000;214.401000;214.421000;214.380000;214.419000;0 +20260204 092100;214.416000;214.432000;214.401000;214.402000;0 +20260204 092200;214.402000;214.430000;214.402000;214.427000;0 +20260204 092300;214.426000;214.438000;214.418000;214.436000;0 +20260204 092400;214.440000;214.450000;214.400000;214.412000;0 +20260204 092500;214.413000;214.459000;214.408000;214.451000;0 +20260204 092600;214.450000;214.459000;214.420000;214.429000;0 +20260204 092700;214.429000;214.470000;214.420000;214.462000;0 +20260204 092800;214.463000;214.472000;214.422000;214.433000;0 +20260204 092900;214.433000;214.474000;214.428000;214.436000;0 +20260204 093000;214.428000;214.457000;214.413000;214.437000;0 +20260204 093100;214.436000;214.449000;214.402000;214.406000;0 +20260204 093200;214.404000;214.404000;214.368000;214.369000;0 +20260204 093300;214.368000;214.415000;214.337000;214.340000;0 +20260204 093400;214.339000;214.343000;214.273000;214.283000;0 +20260204 093500;214.283000;214.303000;214.250000;214.299000;0 +20260204 093600;214.298000;214.384000;214.298000;214.360000;0 +20260204 093700;214.359000;214.372000;214.266000;214.271000;0 +20260204 093800;214.273000;214.368000;214.273000;214.367000;0 +20260204 093900;214.361000;214.366000;214.325000;214.341000;0 +20260204 094000;214.340000;214.357000;214.329000;214.341000;0 +20260204 094100;214.342000;214.372000;214.334000;214.353000;0 +20260204 094200;214.344000;214.412000;214.332000;214.392000;0 +20260204 094300;214.389000;214.404000;214.333000;214.333000;0 +20260204 094400;214.334000;214.370000;214.326000;214.363000;0 +20260204 094500;214.363000;214.403000;214.355000;214.363000;0 +20260204 094600;214.363000;214.393000;214.341000;214.392000;0 +20260204 094700;214.395000;214.400000;214.338000;214.343000;0 +20260204 094800;214.348000;214.377000;214.344000;214.372000;0 +20260204 094900;214.373000;214.380000;214.345000;214.345000;0 +20260204 095000;214.349000;214.362000;214.291000;214.297000;0 +20260204 095100;214.301000;214.322000;214.268000;214.268000;0 +20260204 095200;214.270000;214.308000;214.254000;214.275000;0 +20260204 095300;214.275000;214.287000;214.197000;214.197000;0 +20260204 095400;214.198000;214.279000;214.189000;214.262000;0 +20260204 095500;214.260000;214.266000;214.195000;214.202000;0 +20260204 095600;214.205000;214.245000;214.186000;214.198000;0 +20260204 095700;214.201000;214.242000;214.197000;214.235000;0 +20260204 095800;214.227000;214.227000;214.153000;214.163000;0 +20260204 095900;214.163000;214.173000;214.112000;214.112000;0 +20260204 100000;214.117000;214.185000;214.080000;214.121000;0 +20260204 100100;214.126000;214.147000;214.058000;214.078000;0 +20260204 100200;214.079000;214.123000;214.054000;214.076000;0 +20260204 100300;214.076000;214.099000;214.021000;214.075000;0 +20260204 100400;214.071000;214.075000;213.992000;214.067000;0 +20260204 100500;214.077000;214.186000;214.061000;214.156000;0 +20260204 100600;214.153000;214.164000;214.102000;214.107000;0 +20260204 100700;214.104000;214.194000;214.104000;214.167000;0 +20260204 100800;214.168000;214.175000;214.127000;214.153000;0 +20260204 100900;214.154000;214.206000;214.136000;214.185000;0 +20260204 101000;214.187000;214.208000;214.151000;214.156000;0 +20260204 101100;214.159000;214.195000;214.159000;214.184000;0 +20260204 101200;214.185000;214.231000;214.183000;214.195000;0 +20260204 101300;214.195000;214.270000;214.187000;214.254000;0 +20260204 101400;214.254000;214.308000;214.215000;214.299000;0 +20260204 101500;214.300000;214.310000;214.268000;214.296000;0 +20260204 101600;214.296000;214.298000;214.251000;214.261000;0 +20260204 101700;214.260000;214.264000;214.199000;214.228000;0 +20260204 101800;214.227000;214.254000;214.182000;214.246000;0 +20260204 101900;214.248000;214.262000;214.225000;214.259000;0 +20260204 102000;214.258000;214.292000;214.245000;214.282000;0 +20260204 102100;214.280000;214.315000;214.271000;214.312000;0 +20260204 102200;214.316000;214.319000;214.242000;214.250000;0 +20260204 102300;214.253000;214.309000;214.246000;214.289000;0 +20260204 102400;214.288000;214.318000;214.284000;214.295000;0 +20260204 102500;214.299000;214.306000;214.270000;214.274000;0 +20260204 102600;214.275000;214.322000;214.247000;214.251000;0 +20260204 102700;214.249000;214.257000;214.160000;214.180000;0 +20260204 102800;214.178000;214.202000;214.139000;214.196000;0 +20260204 102900;214.192000;214.211000;214.168000;214.207000;0 +20260204 103000;214.206000;214.223000;214.171000;214.186000;0 +20260204 103100;214.190000;214.190000;214.061000;214.067000;0 +20260204 103200;214.066000;214.103000;214.026000;214.044000;0 +20260204 103300;214.045000;214.133000;214.042000;214.118000;0 +20260204 103400;214.118000;214.118000;214.064000;214.110000;0 +20260204 103500;214.108000;214.141000;214.093000;214.120000;0 +20260204 103600;214.122000;214.170000;214.084000;214.163000;0 +20260204 103700;214.158000;214.202000;214.150000;214.200000;0 +20260204 103800;214.202000;214.250000;214.167000;214.233000;0 +20260204 103900;214.232000;214.278000;214.213000;214.239000;0 +20260204 104000;214.243000;214.303000;214.233000;214.264000;0 +20260204 104100;214.264000;214.283000;214.194000;214.201000;0 +20260204 104200;214.200000;214.213000;214.140000;214.197000;0 +20260204 104300;214.206000;214.211000;214.136000;214.161000;0 +20260204 104400;214.162000;214.182000;214.127000;214.163000;0 +20260204 104500;214.164000;214.187000;214.151000;214.166000;0 +20260204 104600;214.162000;214.179000;214.125000;214.156000;0 +20260204 104700;214.155000;214.201000;214.137000;214.137000;0 +20260204 104800;214.138000;214.173000;214.096000;214.099000;0 +20260204 104900;214.097000;214.109000;214.057000;214.064000;0 +20260204 105000;214.059000;214.103000;214.050000;214.058000;0 +20260204 105100;214.057000;214.060000;214.008000;214.037000;0 +20260204 105200;214.039000;214.063000;214.026000;214.035000;0 +20260204 105300;214.033000;214.060000;214.017000;214.048000;0 +20260204 105400;214.050000;214.074000;214.017000;214.070000;0 +20260204 105500;214.071000;214.087000;214.053000;214.087000;0 +20260204 105600;214.086000;214.109000;214.056000;214.075000;0 +20260204 105700;214.075000;214.151000;214.060000;214.085000;0 +20260204 105800;214.085000;214.123000;214.072000;214.072000;0 +20260204 105900;214.071000;214.088000;214.043000;214.049000;0 +20260204 110000;214.048000;214.074000;214.027000;214.031000;0 +20260204 110100;214.033000;214.038000;213.947000;213.949000;0 +20260204 110200;213.948000;213.957000;213.874000;213.874000;0 +20260204 110300;213.874000;213.915000;213.863000;213.865000;0 +20260204 110400;213.863000;213.874000;213.831000;213.853000;0 +20260204 110500;213.855000;213.906000;213.855000;213.888000;0 +20260204 110600;213.882000;213.903000;213.856000;213.896000;0 +20260204 110700;213.899000;213.909000;213.868000;213.876000;0 +20260204 110800;213.875000;213.887000;213.856000;213.870000;0 +20260204 110900;213.872000;213.886000;213.828000;213.857000;0 +20260204 111000;213.859000;213.880000;213.798000;213.804000;0 +20260204 111100;213.802000;213.820000;213.752000;213.773000;0 +20260204 111200;213.772000;213.841000;213.752000;213.841000;0 +20260204 111300;213.848000;213.893000;213.832000;213.841000;0 +20260204 111400;213.840000;213.844000;213.814000;213.825000;0 +20260204 111500;213.826000;213.850000;213.810000;213.850000;0 +20260204 111600;213.850000;213.851000;213.813000;213.838000;0 +20260204 111700;213.837000;213.841000;213.792000;213.809000;0 +20260204 111800;213.812000;213.824000;213.781000;213.811000;0 +20260204 111900;213.811000;213.827000;213.793000;213.815000;0 +20260204 112000;213.814000;213.846000;213.813000;213.844000;0 +20260204 112100;213.842000;213.865000;213.830000;213.830000;0 +20260204 112200;213.832000;213.876000;213.830000;213.868000;0 +20260204 112300;213.867000;213.915000;213.863000;213.876000;0 +20260204 112400;213.882000;213.900000;213.847000;213.865000;0 +20260204 112500;213.865000;213.887000;213.841000;213.881000;0 +20260204 112600;213.880000;213.935000;213.869000;213.928000;0 +20260204 112700;213.927000;213.986000;213.926000;213.984000;0 +20260204 112800;213.986000;213.990000;213.954000;213.984000;0 +20260204 112900;213.982000;214.001000;213.970000;213.978000;0 +20260204 113000;213.976000;213.989000;213.937000;213.938000;0 +20260204 113100;213.938000;214.000000;213.926000;213.964000;0 +20260204 113200;213.962000;213.989000;213.960000;213.981000;0 +20260204 113300;213.984000;214.015000;213.980000;213.986000;0 +20260204 113400;213.980000;214.006000;213.918000;213.921000;0 +20260204 113500;213.921000;213.959000;213.895000;213.902000;0 +20260204 113600;213.902000;213.929000;213.863000;213.871000;0 +20260204 113700;213.872000;213.893000;213.870000;213.892000;0 +20260204 113800;213.894000;213.903000;213.826000;213.829000;0 +20260204 113900;213.830000;213.853000;213.818000;213.819000;0 +20260204 114000;213.824000;213.834000;213.797000;213.801000;0 +20260204 114100;213.801000;213.812000;213.779000;213.796000;0 +20260204 114200;213.799000;213.807000;213.764000;213.775000;0 +20260204 114300;213.776000;213.780000;213.744000;213.744000;0 +20260204 114400;213.745000;213.766000;213.727000;213.727000;0 +20260204 114500;213.724000;213.760000;213.724000;213.744000;0 +20260204 114600;213.744000;213.770000;213.717000;213.754000;0 +20260204 114700;213.751000;213.774000;213.734000;213.761000;0 +20260204 114800;213.763000;213.768000;213.697000;213.718000;0 +20260204 114900;213.719000;213.730000;213.679000;213.716000;0 +20260204 115000;213.716000;213.753000;213.691000;213.695000;0 +20260204 115100;213.691000;213.714000;213.684000;213.693000;0 +20260204 115200;213.692000;213.769000;213.676000;213.769000;0 +20260204 115300;213.774000;213.805000;213.769000;213.785000;0 +20260204 115400;213.786000;213.811000;213.770000;213.800000;0 +20260204 115500;213.802000;213.854000;213.799000;213.831000;0 +20260204 115600;213.829000;213.856000;213.774000;213.824000;0 +20260204 115700;213.825000;213.895000;213.821000;213.891000;0 +20260204 115800;213.893000;213.912000;213.868000;213.896000;0 +20260204 115900;213.896000;213.928000;213.895000;213.895000;0 +20260204 120000;213.893000;213.920000;213.860000;213.906000;0 +20260204 120100;213.907000;213.915000;213.870000;213.909000;0 +20260204 120200;213.909000;213.920000;213.897000;213.903000;0 +20260204 120300;213.899000;213.918000;213.885000;213.897000;0 +20260204 120400;213.899000;213.905000;213.876000;213.895000;0 +20260204 120500;213.898000;213.921000;213.884000;213.918000;0 +20260204 120600;213.919000;213.929000;213.897000;213.898000;0 +20260204 120700;213.899000;213.924000;213.896000;213.916000;0 +20260204 120800;213.917000;213.937000;213.912000;213.930000;0 +20260204 120900;213.929000;213.948000;213.919000;213.927000;0 +20260204 121000;213.927000;213.934000;213.917000;213.923000;0 +20260204 121100;213.923000;213.924000;213.846000;213.878000;0 +20260204 121200;213.878000;213.887000;213.849000;213.858000;0 +20260204 121300;213.858000;213.926000;213.851000;213.922000;0 +20260204 121400;213.923000;213.970000;213.922000;213.969000;0 +20260204 121500;213.973000;213.976000;213.938000;213.970000;0 +20260204 121600;213.967000;213.970000;213.923000;213.934000;0 +20260204 121700;213.933000;213.944000;213.911000;213.924000;0 +20260204 121800;213.924000;213.932000;213.910000;213.925000;0 +20260204 121900;213.919000;213.936000;213.906000;213.914000;0 +20260204 122000;213.917000;213.981000;213.912000;213.971000;0 +20260204 122100;213.965000;214.001000;213.957000;213.982000;0 +20260204 122200;213.983000;214.004000;213.947000;213.970000;0 +20260204 122300;213.967000;214.004000;213.967000;214.000000;0 +20260204 122400;214.004000;214.035000;213.999000;214.016000;0 +20260204 122500;214.017000;214.032000;213.986000;213.988000;0 +20260204 122600;213.990000;214.001000;213.955000;213.955000;0 +20260204 122700;213.955000;213.966000;213.883000;213.965000;0 +20260204 122800;213.963000;213.986000;213.902000;213.910000;0 +20260204 122900;213.911000;213.913000;213.816000;213.837000;0 +20260204 123000;213.834000;213.837000;213.744000;213.755000;0 +20260204 123100;213.757000;213.841000;213.751000;213.815000;0 +20260204 123200;213.813000;213.857000;213.771000;213.777000;0 +20260204 123300;213.778000;213.812000;213.774000;213.805000;0 +20260204 123400;213.808000;213.822000;213.764000;213.790000;0 +20260204 123500;213.788000;213.792000;213.752000;213.756000;0 +20260204 123600;213.754000;213.776000;213.738000;213.748000;0 +20260204 123700;213.751000;213.772000;213.741000;213.767000;0 +20260204 123800;213.766000;213.814000;213.766000;213.809000;0 +20260204 123900;213.808000;213.843000;213.790000;213.800000;0 +20260204 124000;213.801000;213.822000;213.769000;213.816000;0 +20260204 124100;213.817000;213.837000;213.810000;213.829000;0 +20260204 124200;213.829000;213.836000;213.811000;213.828000;0 +20260204 124300;213.828000;213.838000;213.812000;213.831000;0 +20260204 124400;213.833000;213.850000;213.817000;213.824000;0 +20260204 124500;213.822000;213.838000;213.816000;213.825000;0 +20260204 124600;213.816000;213.834000;213.799000;213.830000;0 +20260204 124700;213.828000;213.843000;213.812000;213.833000;0 +20260204 124800;213.830000;213.830000;213.805000;213.805000;0 +20260204 124900;213.807000;213.834000;213.804000;213.822000;0 +20260204 125000;213.820000;213.822000;213.799000;213.818000;0 +20260204 125100;213.819000;213.819000;213.793000;213.808000;0 +20260204 125200;213.809000;213.825000;213.792000;213.794000;0 +20260204 125300;213.793000;213.830000;213.787000;213.791000;0 +20260204 125400;213.791000;213.832000;213.788000;213.821000;0 +20260204 125500;213.821000;213.887000;213.817000;213.886000;0 +20260204 125600;213.890000;213.891000;213.810000;213.817000;0 +20260204 125700;213.817000;213.846000;213.779000;213.807000;0 +20260204 125800;213.807000;213.840000;213.806000;213.808000;0 +20260204 125900;213.806000;213.806000;213.777000;213.790000;0 +20260204 130000;213.795000;213.796000;213.737000;213.750000;0 +20260204 130100;213.750000;213.761000;213.722000;213.737000;0 +20260204 130200;213.736000;213.761000;213.731000;213.736000;0 +20260204 130300;213.736000;213.771000;213.730000;213.750000;0 +20260204 130400;213.751000;213.781000;213.746000;213.780000;0 +20260204 130500;213.778000;213.791000;213.756000;213.786000;0 +20260204 130600;213.790000;213.804000;213.768000;213.768000;0 +20260204 130700;213.770000;213.790000;213.767000;213.784000;0 +20260204 130800;213.785000;213.814000;213.785000;213.793000;0 +20260204 130900;213.796000;213.805000;213.755000;213.759000;0 +20260204 131000;213.759000;213.786000;213.757000;213.776000;0 +20260204 131100;213.789000;213.796000;213.764000;213.764000;0 +20260204 131200;213.764000;213.803000;213.758000;213.777000;0 +20260204 131300;213.776000;213.787000;213.766000;213.774000;0 +20260204 131400;213.776000;213.822000;213.775000;213.812000;0 +20260204 131500;213.810000;213.818000;213.793000;213.802000;0 +20260204 131600;213.802000;213.809000;213.789000;213.789000;0 +20260204 131700;213.790000;213.819000;213.789000;213.808000;0 +20260204 131800;213.806000;213.832000;213.803000;213.809000;0 +20260204 131900;213.809000;213.821000;213.803000;213.805000;0 +20260204 132000;213.808000;213.813000;213.790000;213.804000;0 +20260204 132100;213.807000;213.812000;213.790000;213.799000;0 +20260204 132200;213.797000;213.833000;213.795000;213.820000;0 +20260204 132300;213.818000;213.838000;213.816000;213.830000;0 +20260204 132400;213.829000;213.849000;213.824000;213.847000;0 +20260204 132500;213.850000;213.883000;213.850000;213.870000;0 +20260204 132600;213.872000;213.946000;213.871000;213.942000;0 +20260204 132700;213.943000;213.960000;213.929000;213.936000;0 +20260204 132800;213.934000;213.952000;213.928000;213.943000;0 +20260204 132900;213.942000;213.954000;213.922000;213.933000;0 +20260204 133000;213.935000;213.936000;213.898000;213.925000;0 +20260204 133100;213.927000;213.958000;213.924000;213.957000;0 +20260204 133200;213.954000;213.964000;213.934000;213.949000;0 +20260204 133300;213.947000;213.963000;213.939000;213.946000;0 +20260204 133400;213.947000;213.959000;213.935000;213.946000;0 +20260204 133500;213.947000;213.987000;213.946000;213.968000;0 +20260204 133600;213.971000;213.983000;213.957000;213.960000;0 +20260204 133700;213.963000;213.963000;213.923000;213.923000;0 +20260204 133800;213.925000;213.951000;213.925000;213.951000;0 +20260204 133900;213.948000;213.962000;213.917000;213.959000;0 +20260204 134000;213.961000;214.000000;213.957000;213.987000;0 +20260204 134100;213.988000;214.029000;213.988000;214.000000;0 +20260204 134200;214.001000;214.007000;213.977000;213.997000;0 +20260204 134300;213.998000;214.018000;213.990000;214.012000;0 +20260204 134400;214.011000;214.016000;213.962000;213.969000;0 +20260204 134500;213.968000;213.970000;213.944000;213.959000;0 +20260204 134600;213.958000;213.958000;213.928000;213.952000;0 +20260204 134700;213.953000;213.954000;213.933000;213.937000;0 +20260204 134800;213.937000;213.982000;213.933000;213.975000;0 +20260204 134900;213.978000;214.018000;213.977000;213.993000;0 +20260204 135000;213.989000;213.993000;213.968000;213.974000;0 +20260204 135100;213.973000;213.992000;213.973000;213.983000;0 +20260204 135200;213.981000;214.010000;213.978000;214.008000;0 +20260204 135300;214.007000;214.020000;213.999000;214.016000;0 +20260204 135400;214.014000;214.026000;214.010000;214.024000;0 +20260204 135500;214.026000;214.066000;214.026000;214.053000;0 +20260204 135600;214.055000;214.062000;214.027000;214.056000;0 +20260204 135700;214.054000;214.059000;214.023000;214.045000;0 +20260204 135800;214.043000;214.043000;214.003000;214.019000;0 +20260204 135900;214.020000;214.023000;213.995000;214.005000;0 +20260204 140000;214.005000;214.027000;213.965000;213.965000;0 +20260204 140100;213.970000;213.978000;213.951000;213.964000;0 +20260204 140200;213.966000;214.000000;213.966000;213.983000;0 +20260204 140300;213.985000;213.985000;213.956000;213.966000;0 +20260204 140400;213.965000;213.991000;213.958000;213.963000;0 +20260204 140500;213.963000;213.966000;213.901000;213.928000;0 +20260204 140600;213.927000;214.013000;213.923000;214.010000;0 +20260204 140700;214.005000;214.005000;213.956000;213.972000;0 +20260204 140800;213.970000;214.001000;213.968000;213.989000;0 +20260204 140900;213.988000;214.001000;213.979000;213.991000;0 +20260204 141000;213.993000;214.005000;213.976000;213.983000;0 +20260204 141100;213.982000;214.001000;213.967000;213.985000;0 +20260204 141200;213.989000;214.018000;213.985000;214.013000;0 +20260204 141300;214.016000;214.032000;214.012000;214.021000;0 +20260204 141400;214.021000;214.024000;214.003000;214.019000;0 +20260204 141500;214.028000;214.046000;214.015000;214.043000;0 +20260204 141600;214.042000;214.042000;214.012000;214.021000;0 +20260204 141700;214.021000;214.049000;214.010000;214.048000;0 +20260204 141800;214.049000;214.072000;214.049000;214.068000;0 +20260204 141900;214.067000;214.093000;214.065000;214.067000;0 +20260204 142000;214.068000;214.080000;214.048000;214.069000;0 +20260204 142100;214.073000;214.082000;214.037000;214.038000;0 +20260204 142200;214.039000;214.048000;214.013000;214.017000;0 +20260204 142300;214.015000;214.033000;214.014000;214.029000;0 +20260204 142400;214.026000;214.060000;214.026000;214.055000;0 +20260204 142500;214.058000;214.065000;214.049000;214.062000;0 +20260204 142600;214.060000;214.070000;214.036000;214.063000;0 +20260204 142700;214.062000;214.075000;214.057000;214.066000;0 +20260204 142800;214.069000;214.075000;214.057000;214.066000;0 +20260204 142900;214.066000;214.077000;214.061000;214.077000;0 +20260204 143000;214.077000;214.117000;214.075000;214.112000;0 +20260204 143100;214.114000;214.125000;214.097000;214.101000;0 +20260204 143200;214.100000;214.112000;214.093000;214.111000;0 +20260204 143300;214.110000;214.143000;214.110000;214.136000;0 +20260204 143400;214.138000;214.149000;214.129000;214.146000;0 +20260204 143500;214.148000;214.158000;214.141000;214.148000;0 +20260204 143600;214.153000;214.165000;214.148000;214.163000;0 +20260204 143700;214.159000;214.168000;214.146000;214.156000;0 +20260204 143800;214.158000;214.166000;214.147000;214.154000;0 +20260204 143900;214.151000;214.159000;214.146000;214.151000;0 +20260204 144000;214.154000;214.167000;214.153000;214.159000;0 +20260204 144100;214.161000;214.169000;214.155000;214.161000;0 +20260204 144200;214.162000;214.174000;214.157000;214.169000;0 +20260204 144300;214.171000;214.193000;214.155000;214.192000;0 +20260204 144400;214.194000;214.207000;214.189000;214.202000;0 +20260204 144500;214.201000;214.212000;214.193000;214.212000;0 +20260204 144600;214.210000;214.263000;214.210000;214.224000;0 +20260204 144700;214.223000;214.234000;214.204000;214.228000;0 +20260204 144800;214.228000;214.251000;214.208000;214.237000;0 +20260204 144900;214.239000;214.244000;214.209000;214.217000;0 +20260204 145000;214.215000;214.234000;214.197000;214.204000;0 +20260204 145100;214.207000;214.234000;214.197000;214.198000;0 +20260204 145200;214.199000;214.239000;214.197000;214.232000;0 +20260204 145300;214.233000;214.246000;214.199000;214.201000;0 +20260204 145400;214.199000;214.213000;214.167000;214.167000;0 +20260204 145500;214.166000;214.197000;214.158000;214.197000;0 +20260204 145600;214.198000;214.205000;214.172000;214.182000;0 +20260204 145700;214.183000;214.198000;214.176000;214.187000;0 +20260204 145800;214.190000;214.245000;214.186000;214.236000;0 +20260204 145900;214.240000;214.259000;214.233000;214.259000;0 +20260204 150000;214.258000;214.266000;214.242000;214.252000;0 +20260204 150100;214.251000;214.264000;214.230000;214.258000;0 +20260204 150200;214.256000;214.289000;214.246000;214.270000;0 +20260204 150300;214.272000;214.289000;214.266000;214.286000;0 +20260204 150400;214.285000;214.306000;214.285000;214.301000;0 +20260204 150500;214.303000;214.306000;214.284000;214.284000;0 +20260204 150600;214.288000;214.297000;214.282000;214.294000;0 +20260204 150700;214.295000;214.305000;214.282000;214.301000;0 +20260204 150800;214.301000;214.308000;214.296000;214.296000;0 +20260204 150900;214.297000;214.315000;214.288000;214.311000;0 +20260204 151000;214.311000;214.312000;214.283000;214.284000;0 +20260204 151100;214.280000;214.281000;214.251000;214.251000;0 +20260204 151200;214.252000;214.261000;214.240000;214.252000;0 +20260204 151300;214.253000;214.269000;214.246000;214.269000;0 +20260204 151400;214.270000;214.285000;214.265000;214.284000;0 +20260204 151500;214.282000;214.296000;214.265000;214.289000;0 +20260204 151600;214.288000;214.291000;214.270000;214.274000;0 +20260204 151700;214.274000;214.289000;214.272000;214.284000;0 +20260204 151800;214.287000;214.287000;214.261000;214.273000;0 +20260204 151900;214.274000;214.279000;214.266000;214.276000;0 +20260204 152000;214.276000;214.300000;214.272000;214.285000;0 +20260204 152100;214.286000;214.290000;214.271000;214.279000;0 +20260204 152200;214.276000;214.287000;214.274000;214.285000;0 +20260204 152300;214.282000;214.306000;214.280000;214.306000;0 +20260204 152400;214.305000;214.319000;214.294000;214.297000;0 +20260204 152500;214.297000;214.317000;214.295000;214.308000;0 +20260204 152600;214.305000;214.309000;214.289000;214.290000;0 +20260204 152700;214.291000;214.303000;214.285000;214.296000;0 +20260204 152800;214.296000;214.298000;214.282000;214.283000;0 +20260204 152900;214.282000;214.284000;214.265000;214.274000;0 +20260204 153000;214.272000;214.279000;214.246000;214.256000;0 +20260204 153100;214.254000;214.274000;214.252000;214.270000;0 +20260204 153200;214.268000;214.286000;214.257000;214.282000;0 +20260204 153300;214.280000;214.294000;214.277000;214.291000;0 +20260204 153400;214.290000;214.296000;214.277000;214.278000;0 +20260204 153500;214.279000;214.295000;214.258000;214.265000;0 +20260204 153600;214.265000;214.271000;214.223000;214.227000;0 +20260204 153700;214.231000;214.231000;214.190000;214.192000;0 +20260204 153800;214.191000;214.226000;214.191000;214.218000;0 +20260204 153900;214.220000;214.224000;214.195000;214.199000;0 +20260204 154000;214.200000;214.221000;214.200000;214.211000;0 +20260204 154100;214.208000;214.212000;214.200000;214.203000;0 +20260204 154200;214.206000;214.217000;214.197000;214.198000;0 +20260204 154300;214.196000;214.217000;214.187000;214.187000;0 +20260204 154400;214.190000;214.195000;214.183000;214.190000;0 +20260204 154500;214.190000;214.199000;214.184000;214.190000;0 +20260204 154600;214.191000;214.216000;214.189000;214.216000;0 +20260204 154700;214.219000;214.236000;214.215000;214.226000;0 +20260204 154800;214.227000;214.232000;214.215000;214.220000;0 +20260204 154900;214.218000;214.241000;214.218000;214.237000;0 +20260204 155000;214.237000;214.248000;214.229000;214.242000;0 +20260204 155100;214.242000;214.243000;214.228000;214.242000;0 +20260204 155200;214.238000;214.246000;214.232000;214.234000;0 +20260204 155300;214.237000;214.237000;214.194000;214.204000;0 +20260204 155400;214.201000;214.201000;214.182000;214.184000;0 +20260204 155500;214.185000;214.196000;214.178000;214.180000;0 +20260204 155600;214.176000;214.186000;214.167000;214.178000;0 +20260204 155700;214.183000;214.188000;214.173000;214.183000;0 +20260204 155800;214.182000;214.192000;214.174000;214.190000;0 +20260204 155900;214.193000;214.207000;214.186000;214.206000;0 +20260204 160000;214.203000;214.226000;214.203000;214.226000;0 +20260204 160100;214.221000;214.226000;214.221000;214.223000;0 +20260204 160200;214.226000;214.227000;214.211000;214.212000;0 +20260204 160300;214.213000;214.214000;214.197000;214.205000;0 +20260204 160400;214.204000;214.224000;214.204000;214.216000;0 +20260204 160500;214.218000;214.233000;214.216000;214.228000;0 +20260204 160600;214.232000;214.246000;214.232000;214.244000;0 +20260204 160700;214.237000;214.237000;214.227000;214.230000;0 +20260204 160800;214.231000;214.242000;214.226000;214.230000;0 +20260204 160900;214.225000;214.226000;214.215000;214.219000;0 +20260204 161000;214.217000;214.230000;214.195000;214.195000;0 +20260204 161100;214.193000;214.215000;214.192000;214.211000;0 +20260204 161200;214.211000;214.222000;214.197000;214.206000;0 +20260204 161300;214.208000;214.261000;214.208000;214.243000;0 +20260204 161400;214.243000;214.268000;214.243000;214.246000;0 +20260204 161500;214.245000;214.258000;214.236000;214.240000;0 +20260204 161600;214.239000;214.247000;214.237000;214.241000;0 +20260204 161700;214.239000;214.250000;214.237000;214.247000;0 +20260204 161800;214.246000;214.249000;214.239000;214.241000;0 +20260204 161900;214.240000;214.247000;214.239000;214.244000;0 +20260204 162000;214.244000;214.245000;214.241000;214.241000;0 +20260204 162100;214.240000;214.250000;214.240000;214.249000;0 +20260204 162200;214.247000;214.250000;214.246000;214.248000;0 +20260204 162300;214.247000;214.247000;214.241000;214.247000;0 +20260204 162400;214.247000;214.262000;214.245000;214.261000;0 +20260204 162500;214.262000;214.279000;214.256000;214.277000;0 +20260204 162600;214.277000;214.282000;214.270000;214.279000;0 +20260204 162700;214.280000;214.280000;214.265000;214.275000;0 +20260204 162800;214.275000;214.281000;214.275000;214.275000;0 +20260204 162900;214.279000;214.280000;214.263000;214.275000;0 +20260204 163000;214.276000;214.283000;214.271000;214.282000;0 +20260204 163100;214.283000;214.293000;214.275000;214.279000;0 +20260204 163200;214.277000;214.277000;214.260000;214.262000;0 +20260204 163300;214.264000;214.264000;214.241000;214.250000;0 +20260204 163400;214.249000;214.249000;214.221000;214.230000;0 +20260204 163500;214.231000;214.238000;214.201000;214.220000;0 +20260204 163600;214.221000;214.231000;214.211000;214.230000;0 +20260204 163700;214.232000;214.237000;214.207000;214.226000;0 +20260204 163800;214.228000;214.239000;214.223000;214.228000;0 +20260204 163900;214.226000;214.232000;214.214000;214.232000;0 +20260204 164000;214.234000;214.265000;214.221000;214.253000;0 +20260204 164100;214.255000;214.262000;214.251000;214.256000;0 +20260204 164200;214.259000;214.266000;214.254000;214.255000;0 +20260204 164300;214.254000;214.270000;214.254000;214.254000;0 +20260204 164400;214.252000;214.262000;214.241000;214.248000;0 +20260204 164500;214.246000;214.246000;214.181000;214.184000;0 +20260204 164600;214.186000;214.200000;214.182000;214.197000;0 +20260204 164700;214.197000;214.198000;214.181000;214.186000;0 +20260204 164800;214.187000;214.192000;214.175000;214.176000;0 +20260204 164900;214.183000;214.198000;214.183000;214.197000;0 +20260204 165000;214.194000;214.199000;214.184000;214.185000;0 +20260204 165100;214.185000;214.187000;214.152000;214.167000;0 +20260204 165200;214.173000;214.192000;214.173000;214.192000;0 +20260204 165300;214.190000;214.192000;214.175000;214.182000;0 +20260204 165400;214.183000;214.187000;214.177000;214.177000;0 +20260204 165500;214.179000;214.189000;214.178000;214.188000;0 +20260204 165600;214.189000;214.191000;214.164000;214.188000;0 +20260204 165700;214.171000;214.177000;214.154000;214.174000;0 +20260204 165800;214.176000;214.185000;214.135000;214.139000;0 +20260204 165900;214.139000;214.197000;214.111000;214.165000;0 +20260204 170500;214.067000;214.067000;214.022000;214.049000;0 +20260204 170600;214.049000;214.049000;214.041000;214.041000;0 +20260204 170700;214.041000;214.041000;214.029000;214.034000;0 +20260204 170800;214.035000;214.041000;214.022000;214.041000;0 +20260204 170900;214.041000;214.043000;214.041000;214.043000;0 +20260204 171000;214.039000;214.039000;214.007000;214.007000;0 +20260204 171100;214.007000;214.062000;214.007000;214.061000;0 +20260204 171200;214.047000;214.051000;213.991000;213.991000;0 +20260204 171300;213.995000;214.001000;213.939000;213.989000;0 +20260204 171400;213.988000;214.056000;213.988000;214.054000;0 +20260204 171500;214.053000;214.122000;214.052000;214.122000;0 +20260204 171600;214.121000;214.138000;214.112000;214.114000;0 +20260204 171700;214.114000;214.117000;214.095000;214.095000;0 +20260204 171800;214.095000;214.095000;214.064000;214.073000;0 +20260204 171900;214.073000;214.083000;214.054000;214.073000;0 +20260204 172000;214.073000;214.073000;214.041000;214.058000;0 +20260204 172100;214.065000;214.083000;214.065000;214.066000;0 +20260204 172200;214.065000;214.065000;214.065000;214.065000;0 +20260204 172300;214.065000;214.093000;214.056000;214.058000;0 +20260204 172400;214.050000;214.056000;214.050000;214.050000;0 +20260204 172500;214.059000;214.059000;214.058000;214.058000;0 +20260204 172600;214.058000;214.060000;214.058000;214.060000;0 +20260204 172700;214.061000;214.062000;214.043000;214.059000;0 +20260204 172800;214.057000;214.058000;214.051000;214.051000;0 +20260204 172900;214.052000;214.052000;214.022000;214.045000;0 +20260204 173000;214.049000;214.049000;214.031000;214.034000;0 +20260204 173100;214.034000;214.066000;214.024000;214.056000;0 +20260204 173200;214.052000;214.067000;214.030000;214.039000;0 +20260204 173300;214.037000;214.043000;214.035000;214.037000;0 +20260204 173400;214.036000;214.047000;214.009000;214.024000;0 +20260204 173500;214.023000;214.067000;214.023000;214.052000;0 +20260204 173600;214.052000;214.055000;214.051000;214.054000;0 +20260204 173700;214.054000;214.055000;214.008000;214.012000;0 +20260204 173800;214.012000;214.017000;214.005000;214.005000;0 +20260204 173900;214.008000;214.010000;214.000000;214.007000;0 +20260204 174000;214.007000;214.015000;214.000000;214.007000;0 +20260204 174100;214.008000;214.016000;213.998000;214.015000;0 +20260204 174200;214.014000;214.020000;214.009000;214.009000;0 +20260204 174300;214.012000;214.076000;214.007000;214.063000;0 +20260204 174400;214.059000;214.105000;214.059000;214.068000;0 +20260204 174500;214.069000;214.074000;214.014000;214.059000;0 +20260204 174600;214.058000;214.066000;214.047000;214.066000;0 +20260204 174700;214.067000;214.084000;214.042000;214.066000;0 +20260204 174800;214.074000;214.076000;213.916000;213.986000;0 +20260204 174900;213.983000;214.056000;213.974000;214.054000;0 +20260204 175000;214.052000;214.061000;213.981000;213.981000;0 +20260204 175100;213.982000;213.992000;213.955000;213.991000;0 +20260204 175200;213.990000;214.075000;213.990000;214.072000;0 +20260204 175300;214.073000;214.075000;214.067000;214.072000;0 +20260204 175400;214.071000;214.085000;214.069000;214.082000;0 +20260204 175500;214.084000;214.101000;214.080000;214.099000;0 +20260204 175600;214.098000;214.109000;214.098000;214.105000;0 +20260204 175700;214.104000;214.106000;214.078000;214.083000;0 +20260204 175800;214.084000;214.084000;214.054000;214.054000;0 +20260204 175900;214.055000;214.062000;214.053000;214.060000;0 +20260204 180000;214.059000;214.101000;214.028000;214.072000;0 +20260204 180100;214.081000;214.131000;214.040000;214.100000;0 +20260204 180200;214.101000;214.101000;214.090000;214.093000;0 +20260204 180300;214.093000;214.111000;214.093000;214.109000;0 +20260204 180400;214.109000;214.109000;214.089000;214.102000;0 +20260204 180500;214.103000;214.112000;214.077000;214.088000;0 +20260204 180600;214.089000;214.089000;214.052000;214.069000;0 +20260204 180700;214.070000;214.070000;214.047000;214.050000;0 +20260204 180800;214.051000;214.071000;214.038000;214.040000;0 +20260204 180900;214.041000;214.047000;214.012000;214.032000;0 +20260204 181000;214.030000;214.030000;214.008000;214.026000;0 +20260204 181100;214.033000;214.036000;214.019000;214.024000;0 +20260204 181200;214.028000;214.039000;214.016000;214.039000;0 +20260204 181300;214.039000;214.040000;214.018000;214.033000;0 +20260204 181400;214.032000;214.036000;214.019000;214.022000;0 +20260204 181500;214.022000;214.028000;214.020000;214.028000;0 +20260204 181600;214.029000;214.052000;214.029000;214.051000;0 +20260204 181700;214.049000;214.057000;214.049000;214.053000;0 +20260204 181800;214.052000;214.052000;214.038000;214.040000;0 +20260204 181900;214.038000;214.043000;214.034000;214.039000;0 +20260204 182000;214.040000;214.042000;214.025000;214.029000;0 +20260204 182100;214.030000;214.076000;214.026000;214.069000;0 +20260204 182200;214.065000;214.083000;214.057000;214.071000;0 +20260204 182300;214.071000;214.103000;214.062000;214.091000;0 +20260204 182400;214.091000;214.095000;214.066000;214.077000;0 +20260204 182500;214.079000;214.079000;214.053000;214.053000;0 +20260204 182600;214.055000;214.071000;214.041000;214.047000;0 +20260204 182700;214.049000;214.049000;214.010000;214.010000;0 +20260204 182800;214.013000;214.017000;213.995000;214.007000;0 +20260204 182900;214.006000;214.020000;214.002000;214.018000;0 +20260204 183000;214.029000;214.063000;214.029000;214.056000;0 +20260204 183100;214.055000;214.069000;214.055000;214.066000;0 +20260204 183200;214.063000;214.083000;214.062000;214.068000;0 +20260204 183300;214.065000;214.073000;214.032000;214.040000;0 +20260204 183400;214.038000;214.079000;214.038000;214.061000;0 +20260204 183500;214.056000;214.075000;214.050000;214.065000;0 +20260204 183600;214.067000;214.087000;214.058000;214.081000;0 +20260204 183700;214.078000;214.090000;214.063000;214.070000;0 +20260204 183800;214.065000;214.094000;214.064000;214.080000;0 +20260204 183900;214.081000;214.091000;214.074000;214.074000;0 +20260204 184000;214.076000;214.087000;214.074000;214.086000;0 +20260204 184100;214.080000;214.081000;214.070000;214.076000;0 +20260204 184200;214.074000;214.085000;214.065000;214.082000;0 +20260204 184300;214.083000;214.090000;214.080000;214.083000;0 +20260204 184400;214.089000;214.107000;214.089000;214.100000;0 +20260204 184500;214.099000;214.104000;214.080000;214.083000;0 +20260204 184600;214.083000;214.103000;214.078000;214.091000;0 +20260204 184700;214.089000;214.109000;214.077000;214.108000;0 +20260204 184800;214.110000;214.110000;214.089000;214.090000;0 +20260204 184900;214.096000;214.139000;214.096000;214.116000;0 +20260204 185000;214.120000;214.120000;214.106000;214.118000;0 +20260204 185100;214.119000;214.123000;214.109000;214.109000;0 +20260204 185200;214.108000;214.115000;214.104000;214.105000;0 +20260204 185300;214.113000;214.119000;214.101000;214.108000;0 +20260204 185400;214.110000;214.128000;214.105000;214.124000;0 +20260204 185500;214.127000;214.154000;214.118000;214.126000;0 +20260204 185600;214.127000;214.130000;214.104000;214.109000;0 +20260204 185700;214.110000;214.111000;214.090000;214.091000;0 +20260204 185800;214.082000;214.099000;214.064000;214.068000;0 +20260204 185900;214.065000;214.107000;214.065000;214.106000;0 +20260204 190000;214.108000;214.154000;214.077000;214.152000;0 +20260204 190100;214.156000;214.179000;214.093000;214.103000;0 +20260204 190200;214.100000;214.107000;214.082000;214.091000;0 +20260204 190300;214.091000;214.100000;214.069000;214.075000;0 +20260204 190400;214.074000;214.097000;214.073000;214.093000;0 +20260204 190500;214.090000;214.119000;214.088000;214.108000;0 +20260204 190600;214.111000;214.144000;214.108000;214.144000;0 +20260204 190700;214.143000;214.154000;214.120000;214.149000;0 +20260204 190800;214.151000;214.166000;214.149000;214.162000;0 +20260204 190900;214.161000;214.165000;214.148000;214.151000;0 +20260204 191000;214.147000;214.177000;214.130000;214.132000;0 +20260204 191100;214.133000;214.137000;214.116000;214.130000;0 +20260204 191200;214.128000;214.142000;214.128000;214.135000;0 +20260204 191300;214.139000;214.139000;214.120000;214.126000;0 +20260204 191400;214.126000;214.135000;214.105000;214.128000;0 +20260204 191500;214.128000;214.149000;214.122000;214.143000;0 +20260204 191600;214.141000;214.148000;214.132000;214.141000;0 +20260204 191700;214.141000;214.150000;214.133000;214.142000;0 +20260204 191800;214.139000;214.141000;214.132000;214.141000;0 +20260204 191900;214.136000;214.154000;214.135000;214.154000;0 +20260204 192000;214.155000;214.181000;214.155000;214.163000;0 +20260204 192100;214.164000;214.182000;214.154000;214.170000;0 +20260204 192200;214.167000;214.174000;214.161000;214.170000;0 +20260204 192300;214.170000;214.180000;214.166000;214.167000;0 +20260204 192400;214.168000;214.191000;214.166000;214.191000;0 +20260204 192500;214.189000;214.213000;214.181000;214.189000;0 +20260204 192600;214.187000;214.196000;214.185000;214.187000;0 +20260204 192700;214.179000;214.181000;214.164000;214.165000;0 +20260204 192800;214.166000;214.192000;214.162000;214.183000;0 +20260204 192900;214.181000;214.191000;214.168000;214.186000;0 +20260204 193000;214.187000;214.202000;214.173000;214.199000;0 +20260204 193100;214.198000;214.206000;214.187000;214.204000;0 +20260204 193200;214.202000;214.205000;214.170000;214.173000;0 +20260204 193300;214.175000;214.187000;214.166000;214.172000;0 +20260204 193400;214.168000;214.175000;214.156000;214.157000;0 +20260204 193500;214.156000;214.166000;214.153000;214.162000;0 +20260204 193600;214.165000;214.173000;214.165000;214.165000;0 +20260204 193700;214.166000;214.198000;214.166000;214.192000;0 +20260204 193800;214.190000;214.206000;214.187000;214.203000;0 +20260204 193900;214.200000;214.230000;214.199000;214.216000;0 +20260204 194000;214.215000;214.222000;214.194000;214.214000;0 +20260204 194100;214.215000;214.234000;214.201000;214.204000;0 +20260204 194200;214.202000;214.204000;214.196000;214.198000;0 +20260204 194300;214.197000;214.204000;214.139000;214.139000;0 +20260204 194400;214.139000;214.153000;214.112000;214.135000;0 +20260204 194500;214.135000;214.135000;214.056000;214.064000;0 +20260204 194600;214.065000;214.113000;214.065000;214.095000;0 +20260204 194700;214.089000;214.138000;214.082000;214.133000;0 +20260204 194800;214.132000;214.132000;214.111000;214.121000;0 +20260204 194900;214.120000;214.123000;214.094000;214.110000;0 +20260204 195000;214.111000;214.125000;214.079000;214.089000;0 +20260204 195100;214.091000;214.099000;214.062000;214.075000;0 +20260204 195200;214.076000;214.076000;213.999000;214.010000;0 +20260204 195300;214.012000;214.033000;213.980000;214.001000;0 +20260204 195400;214.000000;214.005000;213.918000;213.996000;0 +20260204 195500;213.993000;214.049000;213.982000;214.041000;0 +20260204 195600;214.043000;214.049000;214.019000;214.046000;0 +20260204 195700;214.041000;214.058000;214.035000;214.042000;0 +20260204 195800;214.042000;214.043000;214.024000;214.037000;0 +20260204 195900;214.038000;214.046000;214.029000;214.033000;0 +20260204 200000;214.032000;214.076000;214.032000;214.071000;0 +20260204 200100;214.074000;214.085000;214.047000;214.050000;0 +20260204 200200;214.046000;214.068000;214.045000;214.058000;0 +20260204 200300;214.057000;214.077000;214.054000;214.064000;0 +20260204 200400;214.067000;214.102000;214.057000;214.098000;0 +20260204 200500;214.098000;214.129000;214.095000;214.125000;0 +20260204 200600;214.125000;214.159000;214.119000;214.144000;0 +20260204 200700;214.143000;214.166000;214.138000;214.163000;0 +20260204 200800;214.165000;214.193000;214.153000;214.191000;0 +20260204 200900;214.190000;214.196000;214.167000;214.183000;0 +20260204 201000;214.184000;214.212000;214.181000;214.185000;0 +20260204 201100;214.185000;214.189000;214.173000;214.175000;0 +20260204 201200;214.176000;214.185000;214.153000;214.182000;0 +20260204 201300;214.181000;214.187000;214.153000;214.157000;0 +20260204 201400;214.158000;214.175000;214.148000;214.164000;0 +20260204 201500;214.162000;214.170000;214.128000;214.169000;0 +20260204 201600;214.169000;214.172000;214.147000;214.168000;0 +20260204 201700;214.156000;214.176000;214.137000;214.166000;0 +20260204 201800;214.165000;214.165000;214.104000;214.107000;0 +20260204 201900;214.108000;214.118000;214.086000;214.097000;0 +20260204 202000;214.099000;214.101000;214.073000;214.082000;0 +20260204 202100;214.081000;214.082000;214.051000;214.075000;0 +20260204 202200;214.075000;214.082000;214.055000;214.070000;0 +20260204 202300;214.071000;214.097000;214.069000;214.087000;0 +20260204 202400;214.090000;214.105000;214.071000;214.077000;0 +20260204 202500;214.077000;214.113000;214.074000;214.086000;0 +20260204 202600;214.093000;214.102000;214.074000;214.088000;0 +20260204 202700;214.090000;214.122000;214.090000;214.116000;0 +20260204 202800;214.115000;214.141000;214.111000;214.135000;0 +20260204 202900;214.140000;214.149000;214.124000;214.149000;0 +20260204 203000;214.147000;214.162000;214.128000;214.132000;0 +20260204 203100;214.133000;214.153000;214.127000;214.152000;0 +20260204 203200;214.150000;214.153000;214.127000;214.135000;0 +20260204 203300;214.134000;214.143000;214.117000;214.138000;0 +20260204 203400;214.138000;214.159000;214.131000;214.135000;0 +20260204 203500;214.136000;214.147000;214.131000;214.139000;0 +20260204 203600;214.138000;214.153000;214.134000;214.153000;0 +20260204 203700;214.151000;214.155000;214.136000;214.145000;0 +20260204 203800;214.146000;214.167000;214.136000;214.160000;0 +20260204 203900;214.160000;214.178000;214.157000;214.159000;0 +20260204 204000;214.158000;214.184000;214.147000;214.154000;0 +20260204 204100;214.153000;214.175000;214.146000;214.160000;0 +20260204 204200;214.162000;214.192000;214.157000;214.182000;0 +20260204 204300;214.181000;214.203000;214.171000;214.174000;0 +20260204 204400;214.175000;214.187000;214.170000;214.180000;0 +20260204 204500;214.180000;214.183000;214.161000;214.167000;0 +20260204 204600;214.167000;214.173000;214.160000;214.168000;0 +20260204 204700;214.169000;214.172000;214.150000;214.157000;0 +20260204 204800;214.160000;214.167000;214.149000;214.158000;0 +20260204 204900;214.161000;214.163000;214.138000;214.152000;0 +20260204 205000;214.150000;214.156000;214.129000;214.133000;0 +20260204 205100;214.131000;214.154000;214.131000;214.151000;0 +20260204 205200;214.150000;214.156000;214.131000;214.153000;0 +20260204 205300;214.155000;214.155000;214.102000;214.110000;0 +20260204 205400;214.104000;214.117000;214.085000;214.088000;0 +20260204 205500;214.096000;214.100000;214.087000;214.090000;0 +20260204 205600;214.087000;214.115000;214.074000;214.074000;0 +20260204 205700;214.073000;214.089000;214.053000;214.070000;0 +20260204 205800;214.070000;214.082000;214.066000;214.082000;0 +20260204 205900;214.082000;214.086000;214.069000;214.082000;0 +20260204 210000;214.084000;214.084000;214.057000;214.076000;0 +20260204 210100;214.079000;214.119000;214.078000;214.088000;0 +20260204 210200;214.091000;214.113000;214.085000;214.106000;0 +20260204 210300;214.102000;214.116000;214.098000;214.100000;0 +20260204 210400;214.103000;214.115000;214.080000;214.115000;0 +20260204 210500;214.112000;214.118000;214.095000;214.097000;0 +20260204 210600;214.098000;214.101000;214.053000;214.053000;0 +20260204 210700;214.055000;214.061000;213.942000;213.942000;0 +20260204 210800;213.949000;214.030000;213.940000;214.030000;0 +20260204 210900;214.030000;214.049000;214.026000;214.045000;0 +20260204 211000;214.044000;214.059000;214.033000;214.045000;0 +20260204 211100;214.048000;214.059000;214.023000;214.042000;0 +20260204 211200;214.040000;214.042000;213.996000;213.997000;0 +20260204 211300;213.996000;214.047000;213.991000;214.028000;0 +20260204 211400;214.029000;214.038000;213.982000;213.982000;0 +20260204 211500;213.985000;214.006000;213.892000;213.915000;0 +20260204 211600;213.919000;213.921000;213.826000;213.852000;0 +20260204 211700;213.852000;213.920000;213.848000;213.867000;0 +20260204 211800;213.865000;213.869000;213.808000;213.818000;0 +20260204 211900;213.817000;213.834000;213.805000;213.830000;0 +20260204 212000;213.831000;213.832000;213.786000;213.792000;0 +20260204 212100;213.792000;213.829000;213.768000;213.806000;0 +20260204 212200;213.808000;213.886000;213.802000;213.876000;0 +20260204 212300;213.873000;213.876000;213.853000;213.865000;0 +20260204 212400;213.858000;213.879000;213.844000;213.853000;0 +20260204 212500;213.853000;213.853000;213.805000;213.805000;0 +20260204 212600;213.807000;213.813000;213.783000;213.805000;0 +20260204 212700;213.808000;213.815000;213.792000;213.805000;0 +20260204 212800;213.801000;213.820000;213.780000;213.791000;0 +20260204 212900;213.791000;213.823000;213.791000;213.817000;0 +20260204 213000;213.817000;213.847000;213.810000;213.826000;0 +20260204 213100;213.825000;213.884000;213.813000;213.872000;0 +20260204 213200;213.872000;213.875000;213.834000;213.834000;0 +20260204 213300;213.836000;213.858000;213.814000;213.835000;0 +20260204 213400;213.837000;213.848000;213.820000;213.830000;0 +20260204 213500;213.829000;213.853000;213.822000;213.833000;0 +20260204 213600;213.834000;213.861000;213.831000;213.848000;0 +20260204 213700;213.848000;213.872000;213.844000;213.868000;0 +20260204 213800;213.868000;213.868000;213.830000;213.851000;0 +20260204 213900;213.850000;213.850000;213.836000;213.842000;0 +20260204 214000;213.838000;213.847000;213.804000;213.807000;0 +20260204 214100;213.807000;213.824000;213.805000;213.818000;0 +20260204 214200;213.819000;213.841000;213.818000;213.836000;0 +20260204 214300;213.833000;213.850000;213.827000;213.846000;0 +20260204 214400;213.851000;213.859000;213.821000;213.828000;0 +20260204 214500;213.828000;213.833000;213.760000;213.761000;0 +20260204 214600;213.762000;213.795000;213.761000;213.790000;0 +20260204 214700;213.790000;213.800000;213.776000;213.787000;0 +20260204 214800;213.788000;213.799000;213.756000;213.765000;0 +20260204 214900;213.764000;213.804000;213.755000;213.801000;0 +20260204 215000;213.804000;213.807000;213.792000;213.800000;0 +20260204 215100;213.803000;213.803000;213.765000;213.775000;0 +20260204 215200;213.772000;213.790000;213.748000;213.771000;0 +20260204 215300;213.772000;213.816000;213.767000;213.804000;0 +20260204 215400;213.807000;213.824000;213.790000;213.804000;0 +20260204 215500;213.804000;213.806000;213.774000;213.786000;0 +20260204 215600;213.788000;213.813000;213.771000;213.790000;0 +20260204 215700;213.788000;213.818000;213.762000;213.799000;0 +20260204 215800;213.797000;213.811000;213.734000;213.749000;0 +20260204 215900;213.748000;213.752000;213.683000;213.689000;0 +20260204 220000;213.690000;213.740000;213.680000;213.726000;0 +20260204 220100;213.727000;213.754000;213.724000;213.732000;0 +20260204 220200;213.728000;213.746000;213.711000;213.721000;0 +20260204 220300;213.719000;213.719000;213.671000;213.693000;0 +20260204 220400;213.692000;213.694000;213.635000;213.652000;0 +20260204 220500;213.656000;213.675000;213.643000;213.649000;0 +20260204 220600;213.648000;213.661000;213.639000;213.658000;0 +20260204 220700;213.661000;213.703000;213.661000;213.685000;0 +20260204 220800;213.700000;213.715000;213.690000;213.705000;0 +20260204 220900;213.704000;213.712000;213.688000;213.710000;0 +20260204 221000;213.710000;213.736000;213.710000;213.727000;0 +20260204 221100;213.728000;213.730000;213.694000;213.700000;0 +20260204 221200;213.699000;213.725000;213.685000;213.694000;0 +20260204 221300;213.695000;213.724000;213.694000;213.715000;0 +20260204 221400;213.716000;213.718000;213.685000;213.698000;0 +20260204 221500;213.697000;213.705000;213.665000;213.665000;0 +20260204 221600;213.665000;213.670000;213.648000;213.653000;0 +20260204 221700;213.653000;213.682000;213.651000;213.682000;0 +20260204 221800;213.678000;213.691000;213.651000;213.690000;0 +20260204 221900;213.687000;213.713000;213.679000;213.705000;0 +20260204 222000;213.706000;213.734000;213.692000;213.718000;0 +20260204 222100;213.721000;213.751000;213.712000;213.741000;0 +20260204 222200;213.741000;213.754000;213.735000;213.743000;0 +20260204 222300;213.744000;213.748000;213.721000;213.745000;0 +20260204 222400;213.743000;213.757000;213.742000;213.745000;0 +20260204 222500;213.748000;213.753000;213.736000;213.750000;0 +20260204 222600;213.753000;213.755000;213.718000;213.727000;0 +20260204 222700;213.724000;213.725000;213.707000;213.721000;0 +20260204 222800;213.718000;213.721000;213.706000;213.708000;0 +20260204 222900;213.706000;213.706000;213.672000;213.680000;0 +20260204 223000;213.680000;213.687000;213.647000;213.649000;0 +20260204 223100;213.650000;213.688000;213.645000;213.679000;0 +20260204 223200;213.678000;213.679000;213.636000;213.646000;0 +20260204 223300;213.644000;213.660000;213.629000;213.636000;0 +20260204 223400;213.637000;213.660000;213.637000;213.648000;0 +20260204 223500;213.639000;213.654000;213.531000;213.546000;0 +20260204 223600;213.547000;213.582000;213.469000;213.571000;0 +20260204 223700;213.571000;213.647000;213.571000;213.646000;0 +20260204 223800;213.643000;213.658000;213.627000;213.627000;0 +20260204 223900;213.624000;213.648000;213.617000;213.624000;0 +20260204 224000;213.624000;213.653000;213.624000;213.648000;0 +20260204 224100;213.641000;213.668000;213.640000;213.657000;0 +20260204 224200;213.656000;213.679000;213.656000;213.658000;0 +20260204 224300;213.658000;213.663000;213.637000;213.650000;0 +20260204 224400;213.647000;213.658000;213.642000;213.644000;0 +20260204 224500;213.643000;213.643000;213.622000;213.635000;0 +20260204 224600;213.636000;213.647000;213.614000;213.635000;0 +20260204 224700;213.635000;213.635000;213.596000;213.613000;0 +20260204 224800;213.612000;213.635000;213.612000;213.632000;0 +20260204 224900;213.624000;213.645000;213.598000;213.636000;0 +20260204 225000;213.638000;213.645000;213.613000;213.616000;0 +20260204 225100;213.619000;213.633000;213.607000;213.619000;0 +20260204 225200;213.619000;213.642000;213.610000;213.621000;0 +20260204 225300;213.627000;213.639000;213.598000;213.618000;0 +20260204 225400;213.621000;213.640000;213.609000;213.634000;0 +20260204 225500;213.632000;213.656000;213.629000;213.637000;0 +20260204 225600;213.639000;213.659000;213.633000;213.650000;0 +20260204 225700;213.648000;213.651000;213.624000;213.627000;0 +20260204 225800;213.625000;213.625000;213.606000;213.618000;0 +20260204 225900;213.618000;213.642000;213.603000;213.624000;0 +20260204 230000;213.625000;213.664000;213.623000;213.663000;0 +20260204 230100;213.663000;213.683000;213.654000;213.682000;0 +20260204 230200;213.684000;213.689000;213.664000;213.675000;0 +20260204 230300;213.673000;213.684000;213.665000;213.665000;0 +20260204 230400;213.665000;213.671000;213.649000;213.656000;0 +20260204 230500;213.655000;213.681000;213.655000;213.679000;0 +20260204 230600;213.676000;213.680000;213.653000;213.657000;0 +20260204 230700;213.654000;213.667000;213.637000;213.642000;0 +20260204 230800;213.641000;213.641000;213.631000;213.634000;0 +20260204 230900;213.634000;213.678000;213.633000;213.670000;0 +20260204 231000;213.671000;213.695000;213.667000;213.668000;0 +20260204 231100;213.666000;213.703000;213.660000;213.701000;0 +20260204 231200;213.701000;213.710000;213.685000;213.701000;0 +20260204 231300;213.699000;213.709000;213.693000;213.693000;0 +20260204 231400;213.696000;213.703000;213.682000;213.689000;0 +20260204 231500;213.686000;213.689000;213.671000;213.685000;0 +20260204 231600;213.684000;213.694000;213.679000;213.691000;0 +20260204 231700;213.692000;213.692000;213.664000;213.670000;0 +20260204 231800;213.669000;213.676000;213.660000;213.673000;0 +20260204 231900;213.677000;213.684000;213.671000;213.675000;0 +20260204 232000;213.677000;213.694000;213.672000;213.678000;0 +20260204 232100;213.679000;213.700000;213.665000;213.692000;0 +20260204 232200;213.687000;213.704000;213.675000;213.678000;0 +20260204 232300;213.695000;213.695000;213.668000;213.679000;0 +20260204 232400;213.676000;213.680000;213.667000;213.672000;0 +20260204 232500;213.670000;213.681000;213.665000;213.678000;0 +20260204 232600;213.679000;213.681000;213.670000;213.680000;0 +20260204 232700;213.683000;213.705000;213.680000;213.705000;0 +20260204 232800;213.703000;213.706000;213.680000;213.689000;0 +20260204 232900;213.687000;213.706000;213.687000;213.706000;0 +20260204 233000;213.707000;213.716000;213.695000;213.700000;0 +20260204 233100;213.700000;213.707000;213.684000;213.686000;0 +20260204 233200;213.691000;213.702000;213.687000;213.687000;0 +20260204 233300;213.686000;213.689000;213.662000;213.689000;0 +20260204 233400;213.695000;213.700000;213.683000;213.700000;0 +20260204 233500;213.702000;213.719000;213.699000;213.713000;0 +20260204 233600;213.716000;213.716000;213.694000;213.707000;0 +20260204 233700;213.711000;213.716000;213.700000;213.707000;0 +20260204 233800;213.702000;213.720000;213.702000;213.720000;0 +20260204 233900;213.721000;213.723000;213.705000;213.717000;0 +20260204 234000;213.718000;213.726000;213.715000;213.723000;0 +20260204 234100;213.723000;213.742000;213.718000;213.741000;0 +20260204 234200;213.740000;213.749000;213.732000;213.732000;0 +20260204 234300;213.731000;213.745000;213.723000;213.742000;0 +20260204 234400;213.741000;213.753000;213.734000;213.746000;0 +20260204 234500;213.747000;213.749000;213.731000;213.736000;0 +20260204 234600;213.734000;213.737000;213.719000;213.722000;0 +20260204 234700;213.722000;213.738000;213.721000;213.729000;0 +20260204 234800;213.730000;213.750000;213.730000;213.745000;0 +20260204 234900;213.743000;213.746000;213.724000;213.734000;0 +20260204 235000;213.736000;213.747000;213.730000;213.736000;0 +20260204 235100;213.739000;213.742000;213.727000;213.729000;0 +20260204 235200;213.727000;213.735000;213.719000;213.721000;0 +20260204 235300;213.723000;213.748000;213.722000;213.727000;0 +20260204 235400;213.729000;213.735000;213.727000;213.731000;0 +20260204 235500;213.734000;213.741000;213.722000;213.725000;0 +20260204 235600;213.724000;213.724000;213.697000;213.716000;0 +20260204 235700;213.715000;213.715000;213.690000;213.693000;0 +20260204 235800;213.697000;213.709000;213.689000;213.698000;0 +20260204 235900;213.699000;213.699000;213.661000;213.663000;0 +20260205 000000;213.662000;213.684000;213.653000;213.684000;0 +20260205 000100;213.683000;213.714000;213.683000;213.714000;0 +20260205 000200;213.715000;213.720000;213.700000;213.702000;0 +20260205 000300;213.700000;213.707000;213.698000;213.707000;0 +20260205 000400;213.702000;213.715000;213.693000;213.714000;0 +20260205 000500;213.713000;213.740000;213.711000;213.735000;0 +20260205 000600;213.732000;213.732000;213.708000;213.711000;0 +20260205 000700;213.706000;213.719000;213.703000;213.705000;0 +20260205 000800;213.706000;213.706000;213.678000;213.678000;0 +20260205 000900;213.677000;213.686000;213.675000;213.684000;0 +20260205 001000;213.682000;213.695000;213.673000;213.690000;0 +20260205 001100;213.689000;213.702000;213.689000;213.698000;0 +20260205 001200;213.701000;213.703000;213.687000;213.688000;0 +20260205 001300;213.689000;213.691000;213.673000;213.681000;0 +20260205 001400;213.679000;213.682000;213.671000;213.672000;0 +20260205 001500;213.673000;213.674000;213.660000;213.663000;0 +20260205 001600;213.663000;213.664000;213.648000;213.657000;0 +20260205 001700;213.655000;213.664000;213.654000;213.657000;0 +20260205 001800;213.655000;213.655000;213.629000;213.652000;0 +20260205 001900;213.654000;213.654000;213.651000;213.652000;0 +20260205 002000;213.652000;213.652000;213.636000;213.637000;0 +20260205 002100;213.635000;213.640000;213.632000;213.633000;0 +20260205 002200;213.627000;213.657000;213.627000;213.654000;0 +20260205 002300;213.655000;213.668000;213.652000;213.652000;0 +20260205 002400;213.662000;213.666000;213.648000;213.652000;0 +20260205 002500;213.650000;213.665000;213.650000;213.665000;0 +20260205 002600;213.668000;213.673000;213.663000;213.672000;0 +20260205 002700;213.675000;213.687000;213.671000;213.684000;0 +20260205 002800;213.683000;213.683000;213.677000;213.679000;0 +20260205 002900;213.680000;213.681000;213.665000;213.667000;0 +20260205 003000;213.668000;213.668000;213.656000;213.668000;0 +20260205 003100;213.665000;213.675000;213.653000;213.654000;0 +20260205 003200;213.650000;213.655000;213.636000;213.648000;0 +20260205 003300;213.646000;213.658000;213.646000;213.658000;0 +20260205 003400;213.658000;213.659000;213.646000;213.646000;0 +20260205 003500;213.651000;213.660000;213.645000;213.658000;0 +20260205 003600;213.658000;213.666000;213.657000;213.660000;0 +20260205 003700;213.661000;213.673000;213.659000;213.668000;0 +20260205 003800;213.666000;213.675000;213.665000;213.675000;0 +20260205 003900;213.672000;213.677000;213.661000;213.661000;0 +20260205 004000;213.659000;213.676000;213.658000;213.672000;0 +20260205 004100;213.670000;213.681000;213.669000;213.674000;0 +20260205 004200;213.677000;213.682000;213.645000;213.676000;0 +20260205 004300;213.677000;213.681000;213.653000;213.654000;0 +20260205 004400;213.655000;213.655000;213.643000;213.651000;0 +20260205 004500;213.653000;213.687000;213.652000;213.658000;0 +20260205 004600;213.660000;213.667000;213.658000;213.663000;0 +20260205 004700;213.661000;213.707000;213.661000;213.698000;0 +20260205 004800;213.704000;213.709000;213.684000;213.707000;0 +20260205 004900;213.707000;213.709000;213.698000;213.704000;0 +20260205 005000;213.703000;213.703000;213.689000;213.700000;0 +20260205 005100;213.698000;213.740000;213.696000;213.739000;0 +20260205 005200;213.740000;213.750000;213.730000;213.730000;0 +20260205 005300;213.728000;213.749000;213.726000;213.746000;0 +20260205 005400;213.744000;213.766000;213.736000;213.741000;0 +20260205 005500;213.742000;213.774000;213.742000;213.760000;0 +20260205 005600;213.760000;213.760000;213.728000;213.736000;0 +20260205 005700;213.736000;213.762000;213.736000;213.757000;0 +20260205 005800;213.755000;213.797000;213.755000;213.783000;0 +20260205 005900;213.783000;213.799000;213.782000;213.798000;0 +20260205 010000;213.799000;213.812000;213.773000;213.796000;0 +20260205 010100;213.798000;213.810000;213.787000;213.793000;0 +20260205 010200;213.794000;213.887000;213.791000;213.847000;0 +20260205 010300;213.848000;213.875000;213.836000;213.863000;0 +20260205 010400;213.859000;213.860000;213.828000;213.828000;0 +20260205 010500;213.825000;213.842000;213.811000;213.824000;0 +20260205 010600;213.823000;213.830000;213.634000;213.744000;0 +20260205 010700;213.744000;213.747000;213.672000;213.691000;0 +20260205 010800;213.691000;213.691000;213.639000;213.648000;0 +20260205 010900;213.648000;213.675000;213.620000;213.667000;0 +20260205 011000;213.668000;213.690000;213.655000;213.681000;0 +20260205 011100;213.680000;213.690000;213.637000;213.656000;0 +20260205 011200;213.654000;213.664000;213.625000;213.640000;0 +20260205 011300;213.647000;213.666000;213.619000;213.641000;0 +20260205 011400;213.638000;213.676000;213.628000;213.631000;0 +20260205 011500;213.631000;213.643000;213.610000;213.639000;0 +20260205 011600;213.640000;213.641000;213.615000;213.622000;0 +20260205 011700;213.625000;213.634000;213.596000;213.597000;0 +20260205 011800;213.599000;213.616000;213.534000;213.534000;0 +20260205 011900;213.533000;213.570000;213.517000;213.546000;0 +20260205 012000;213.543000;213.566000;213.543000;213.552000;0 +20260205 012100;213.554000;213.593000;213.550000;213.568000;0 +20260205 012200;213.568000;213.584000;213.564000;213.584000;0 +20260205 012300;213.586000;213.586000;213.557000;213.561000;0 +20260205 012400;213.561000;213.570000;213.557000;213.566000;0 +20260205 012500;213.568000;213.600000;213.562000;213.586000;0 +20260205 012600;213.585000;213.601000;213.584000;213.594000;0 +20260205 012700;213.594000;213.595000;213.533000;213.542000;0 +20260205 012800;213.546000;213.597000;213.544000;213.558000;0 +20260205 012900;213.558000;213.594000;213.558000;213.593000;0 +20260205 013000;213.592000;213.605000;213.584000;213.592000;0 +20260205 013100;213.593000;213.601000;213.571000;213.574000;0 +20260205 013200;213.577000;213.613000;213.577000;213.597000;0 +20260205 013300;213.598000;213.640000;213.598000;213.624000;0 +20260205 013400;213.625000;213.629000;213.614000;213.623000;0 +20260205 013500;213.622000;213.628000;213.583000;213.592000;0 +20260205 013600;213.594000;213.599000;213.583000;213.584000;0 +20260205 013700;213.586000;213.592000;213.570000;213.575000;0 +20260205 013800;213.576000;213.589000;213.563000;213.565000;0 +20260205 013900;213.564000;213.583000;213.558000;213.571000;0 +20260205 014000;213.568000;213.600000;213.561000;213.566000;0 +20260205 014100;213.564000;213.626000;213.558000;213.620000;0 +20260205 014200;213.621000;213.621000;213.577000;213.588000;0 +20260205 014300;213.588000;213.604000;213.583000;213.604000;0 +20260205 014400;213.603000;213.630000;213.597000;213.607000;0 +20260205 014500;213.609000;213.659000;213.566000;213.654000;0 +20260205 014600;213.658000;213.685000;213.653000;213.681000;0 +20260205 014700;213.679000;213.684000;213.640000;213.667000;0 +20260205 014800;213.663000;213.689000;213.660000;213.685000;0 +20260205 014900;213.686000;213.687000;213.670000;213.676000;0 +20260205 015000;213.675000;213.708000;213.670000;213.698000;0 +20260205 015100;213.701000;213.731000;213.700000;213.725000;0 +20260205 015200;213.726000;213.740000;213.704000;213.731000;0 +20260205 015300;213.729000;213.729000;213.709000;213.714000;0 +20260205 015400;213.710000;213.713000;213.699000;213.699000;0 +20260205 015500;213.701000;213.741000;213.693000;213.730000;0 +20260205 015600;213.730000;213.777000;213.727000;213.765000;0 +20260205 015700;213.764000;213.800000;213.761000;213.800000;0 +20260205 015800;213.797000;213.802000;213.775000;213.783000;0 +20260205 015900;213.784000;213.808000;213.780000;213.808000;0 +20260205 020000;213.810000;213.851000;213.795000;213.826000;0 +20260205 020100;213.832000;213.860000;213.821000;213.842000;0 +20260205 020200;213.843000;213.866000;213.831000;213.848000;0 +20260205 020300;213.847000;213.883000;213.845000;213.860000;0 +20260205 020400;213.858000;213.896000;213.858000;213.862000;0 +20260205 020500;213.860000;213.873000;213.820000;213.827000;0 +20260205 020600;213.830000;213.843000;213.824000;213.833000;0 +20260205 020700;213.833000;213.850000;213.824000;213.828000;0 +20260205 020800;213.831000;213.857000;213.831000;213.846000;0 +20260205 020900;213.845000;213.854000;213.825000;213.852000;0 +20260205 021000;213.851000;213.877000;213.831000;213.842000;0 +20260205 021100;213.841000;213.880000;213.841000;213.857000;0 +20260205 021200;213.858000;213.898000;213.839000;213.889000;0 +20260205 021300;213.892000;213.908000;213.884000;213.894000;0 +20260205 021400;213.891000;213.905000;213.855000;213.879000;0 +20260205 021500;213.877000;213.918000;213.874000;213.918000;0 +20260205 021600;213.920000;213.976000;213.917000;213.970000;0 +20260205 021700;213.967000;213.984000;213.955000;213.977000;0 +20260205 021800;213.976000;213.992000;213.952000;213.961000;0 +20260205 021900;213.963000;213.989000;213.950000;213.969000;0 +20260205 022000;213.973000;214.006000;213.973000;213.994000;0 +20260205 022100;213.994000;214.013000;213.984000;214.003000;0 +20260205 022200;214.002000;214.039000;213.995000;214.035000;0 +20260205 022300;214.041000;214.045000;213.999000;214.023000;0 +20260205 022400;214.019000;214.049000;214.019000;214.041000;0 +20260205 022500;214.040000;214.048000;213.980000;213.987000;0 +20260205 022600;213.987000;213.997000;213.967000;213.972000;0 +20260205 022700;213.972000;213.988000;213.943000;213.952000;0 +20260205 022800;213.951000;213.972000;213.940000;213.952000;0 +20260205 022900;213.953000;214.006000;213.951000;213.973000;0 +20260205 023000;213.971000;213.976000;213.941000;213.964000;0 +20260205 023100;213.963000;213.967000;213.938000;213.958000;0 +20260205 023200;213.958000;213.978000;213.936000;213.955000;0 +20260205 023300;213.957000;213.980000;213.957000;213.976000;0 +20260205 023400;213.972000;214.023000;213.926000;214.020000;0 +20260205 023500;214.021000;214.062000;214.018000;214.055000;0 +20260205 023600;214.062000;214.066000;214.023000;214.031000;0 +20260205 023700;214.031000;214.066000;214.029000;214.062000;0 +20260205 023800;214.059000;214.086000;214.050000;214.083000;0 +20260205 023900;214.081000;214.099000;214.047000;214.047000;0 +20260205 024000;214.048000;214.060000;213.990000;214.043000;0 +20260205 024100;214.046000;214.051000;213.994000;213.994000;0 +20260205 024200;213.996000;214.019000;213.989000;214.013000;0 +20260205 024300;214.011000;214.021000;213.995000;214.021000;0 +20260205 024400;214.017000;214.054000;214.001000;214.001000;0 +20260205 024500;214.003000;214.055000;214.003000;214.035000;0 +20260205 024600;214.038000;214.052000;214.029000;214.048000;0 +20260205 024700;214.049000;214.053000;214.027000;214.050000;0 +20260205 024800;214.050000;214.060000;214.011000;214.015000;0 +20260205 024900;214.008000;214.009000;213.968000;213.988000;0 +20260205 025000;213.987000;214.036000;213.986000;214.036000;0 +20260205 025100;214.036000;214.077000;214.030000;214.070000;0 +20260205 025200;214.069000;214.152000;214.068000;214.137000;0 +20260205 025300;214.135000;214.177000;214.117000;214.143000;0 +20260205 025400;214.142000;214.173000;214.133000;214.163000;0 +20260205 025500;214.163000;214.172000;214.111000;214.122000;0 +20260205 025600;214.123000;214.143000;214.072000;214.073000;0 +20260205 025700;214.070000;214.107000;214.048000;214.066000;0 +20260205 025800;214.067000;214.088000;214.042000;214.042000;0 +20260205 025900;214.044000;214.047000;213.967000;213.971000;0 +20260205 030000;213.971000;214.087000;213.970000;214.014000;0 +20260205 030100;214.016000;214.126000;213.982000;214.107000;0 +20260205 030200;214.108000;214.121000;214.039000;214.096000;0 +20260205 030300;214.095000;214.119000;214.069000;214.092000;0 +20260205 030400;214.085000;214.110000;214.077000;214.095000;0 +20260205 030500;214.096000;214.156000;214.065000;214.152000;0 +20260205 030600;214.155000;214.158000;214.110000;214.145000;0 +20260205 030700;214.145000;214.185000;214.137000;214.152000;0 +20260205 030800;214.153000;214.190000;214.146000;214.168000;0 +20260205 030900;214.168000;214.192000;214.150000;214.164000;0 +20260205 031000;214.164000;214.176000;214.130000;214.140000;0 +20260205 031100;214.141000;214.165000;214.114000;214.119000;0 +20260205 031200;214.121000;214.140000;214.092000;214.093000;0 +20260205 031300;214.094000;214.100000;214.058000;214.064000;0 +20260205 031400;214.056000;214.070000;213.994000;214.011000;0 +20260205 031500;214.013000;214.014000;213.974000;213.991000;0 +20260205 031600;213.996000;214.015000;213.980000;213.982000;0 +20260205 031700;213.978000;213.997000;213.964000;213.980000;0 +20260205 031800;213.982000;213.994000;213.932000;213.954000;0 +20260205 031900;213.953000;213.979000;213.940000;213.958000;0 +20260205 032000;213.959000;213.979000;213.952000;213.963000;0 +20260205 032100;213.962000;213.974000;213.943000;213.943000;0 +20260205 032200;213.946000;213.950000;213.905000;213.935000;0 +20260205 032300;213.936000;213.958000;213.926000;213.937000;0 +20260205 032400;213.933000;213.958000;213.924000;213.924000;0 +20260205 032500;213.925000;213.939000;213.917000;213.928000;0 +20260205 032600;213.934000;213.979000;213.928000;213.968000;0 +20260205 032700;213.964000;213.984000;213.963000;213.964000;0 +20260205 032800;213.967000;213.983000;213.945000;213.951000;0 +20260205 032900;213.958000;213.984000;213.956000;213.972000;0 +20260205 033000;213.967000;213.983000;213.938000;213.946000;0 +20260205 033100;213.948000;213.955000;213.917000;213.917000;0 +20260205 033200;213.929000;213.964000;213.909000;213.960000;0 +20260205 033300;213.958000;213.971000;213.913000;213.919000;0 +20260205 033400;213.916000;213.920000;213.868000;213.868000;0 +20260205 033500;213.868000;213.873000;213.838000;213.840000;0 +20260205 033600;213.845000;213.865000;213.824000;213.859000;0 +20260205 033700;213.860000;213.889000;213.848000;213.851000;0 +20260205 033800;213.852000;213.874000;213.842000;213.868000;0 +20260205 033900;213.867000;213.869000;213.837000;213.861000;0 +20260205 034000;213.861000;213.913000;213.854000;213.867000;0 +20260205 034100;213.866000;213.877000;213.830000;213.835000;0 +20260205 034200;213.836000;213.836000;213.803000;213.818000;0 +20260205 034300;213.822000;213.854000;213.813000;213.849000;0 +20260205 034400;213.850000;213.864000;213.833000;213.852000;0 +20260205 034500;213.852000;213.854000;213.787000;213.791000;0 +20260205 034600;213.792000;213.806000;213.776000;213.796000;0 +20260205 034700;213.796000;213.815000;213.786000;213.789000;0 +20260205 034800;213.788000;213.788000;213.757000;213.760000;0 +20260205 034900;213.759000;213.767000;213.715000;213.721000;0 +20260205 035000;213.721000;213.744000;213.693000;213.700000;0 +20260205 035100;213.698000;213.728000;213.695000;213.714000;0 +20260205 035200;213.703000;213.715000;213.680000;213.692000;0 +20260205 035300;213.692000;213.692000;213.663000;213.671000;0 +20260205 035400;213.669000;213.672000;213.620000;213.635000;0 +20260205 035500;213.639000;213.675000;213.616000;213.656000;0 +20260205 035600;213.656000;213.656000;213.617000;213.625000;0 +20260205 035700;213.627000;213.633000;213.586000;213.608000;0 +20260205 035800;213.605000;213.632000;213.589000;213.608000;0 +20260205 035900;213.607000;213.619000;213.577000;213.578000;0 +20260205 040000;213.573000;213.612000;213.559000;213.593000;0 +20260205 040100;213.585000;213.611000;213.558000;213.592000;0 +20260205 040200;213.597000;213.616000;213.583000;213.591000;0 +20260205 040300;213.592000;213.602000;213.537000;213.564000;0 +20260205 040400;213.564000;213.581000;213.493000;213.495000;0 +20260205 040500;213.501000;213.513000;213.467000;213.484000;0 +20260205 040600;213.485000;213.495000;213.452000;213.484000;0 +20260205 040700;213.484000;213.502000;213.471000;213.491000;0 +20260205 040800;213.489000;213.517000;213.476000;213.476000;0 +20260205 040900;213.476000;213.479000;213.422000;213.422000;0 +20260205 041000;213.424000;213.427000;213.375000;213.394000;0 +20260205 041100;213.394000;213.415000;213.377000;213.390000;0 +20260205 041200;213.387000;213.431000;213.381000;213.400000;0 +20260205 041300;213.401000;213.411000;213.365000;213.374000;0 +20260205 041400;213.374000;213.379000;213.341000;213.345000;0 +20260205 041500;213.345000;213.405000;213.327000;213.400000;0 +20260205 041600;213.401000;213.462000;213.390000;213.454000;0 +20260205 041700;213.457000;213.463000;213.436000;213.445000;0 +20260205 041800;213.443000;213.506000;213.440000;213.495000;0 +20260205 041900;213.497000;213.548000;213.483000;213.547000;0 +20260205 042000;213.553000;213.586000;213.518000;213.525000;0 +20260205 042100;213.521000;213.545000;213.494000;213.521000;0 +20260205 042200;213.521000;213.552000;213.500000;213.503000;0 +20260205 042300;213.505000;213.534000;213.503000;213.510000;0 +20260205 042400;213.507000;213.526000;213.498000;213.521000;0 +20260205 042500;213.516000;213.516000;213.449000;213.460000;0 +20260205 042600;213.458000;213.482000;213.448000;213.472000;0 +20260205 042700;213.472000;213.515000;213.472000;213.484000;0 +20260205 042800;213.481000;213.497000;213.474000;213.497000;0 +20260205 042900;213.493000;213.532000;213.487000;213.525000;0 +20260205 043000;213.531000;213.589000;213.529000;213.581000;0 +20260205 043100;213.582000;213.615000;213.561000;213.612000;0 +20260205 043200;213.612000;213.619000;213.586000;213.590000;0 +20260205 043300;213.591000;213.600000;213.565000;213.566000;0 +20260205 043400;213.567000;213.584000;213.483000;213.489000;0 +20260205 043500;213.489000;213.501000;213.440000;213.442000;0 +20260205 043600;213.441000;213.443000;213.391000;213.417000;0 +20260205 043700;213.419000;213.419000;213.307000;213.342000;0 +20260205 043800;213.339000;213.339000;213.268000;213.331000;0 +20260205 043900;213.338000;213.364000;213.333000;213.345000;0 +20260205 044000;213.344000;213.350000;213.249000;213.249000;0 +20260205 044100;213.251000;213.308000;213.251000;213.295000;0 +20260205 044200;213.298000;213.332000;213.279000;213.288000;0 +20260205 044300;213.287000;213.303000;213.190000;213.237000;0 +20260205 044400;213.236000;213.289000;213.218000;213.221000;0 +20260205 044500;213.222000;213.252000;213.210000;213.238000;0 +20260205 044600;213.240000;213.317000;213.238000;213.311000;0 +20260205 044700;213.312000;213.331000;213.273000;213.286000;0 +20260205 044800;213.285000;213.302000;213.238000;213.250000;0 +20260205 044900;213.250000;213.257000;213.214000;213.219000;0 +20260205 045000;213.220000;213.257000;213.205000;213.218000;0 +20260205 045100;213.219000;213.233000;213.217000;213.228000;0 +20260205 045200;213.228000;213.241000;213.207000;213.225000;0 +20260205 045300;213.225000;213.284000;213.225000;213.284000;0 +20260205 045400;213.280000;213.308000;213.270000;213.301000;0 +20260205 045500;213.295000;213.319000;213.288000;213.306000;0 +20260205 045600;213.316000;213.352000;213.316000;213.349000;0 +20260205 045700;213.349000;213.374000;213.322000;213.359000;0 +20260205 045800;213.359000;213.447000;213.358000;213.447000;0 +20260205 045900;213.449000;213.463000;213.423000;213.427000;0 +20260205 050000;213.424000;213.424000;213.366000;213.394000;0 +20260205 050100;213.391000;213.404000;213.367000;213.376000;0 +20260205 050200;213.378000;213.389000;213.346000;213.383000;0 +20260205 050300;213.382000;213.398000;213.379000;213.395000;0 +20260205 050400;213.394000;213.424000;213.379000;213.424000;0 +20260205 050500;213.422000;213.443000;213.408000;213.440000;0 +20260205 050600;213.439000;213.475000;213.428000;213.471000;0 +20260205 050700;213.470000;213.492000;213.454000;213.491000;0 +20260205 050800;213.492000;213.526000;213.483000;213.487000;0 +20260205 050900;213.487000;213.544000;213.487000;213.536000;0 +20260205 051000;213.541000;213.557000;213.529000;213.552000;0 +20260205 051100;213.553000;213.568000;213.532000;213.541000;0 +20260205 051200;213.540000;213.540000;213.508000;213.510000;0 +20260205 051300;213.511000;213.520000;213.501000;213.501000;0 +20260205 051400;213.505000;213.564000;213.504000;213.559000;0 +20260205 051500;213.561000;213.572000;213.553000;213.563000;0 +20260205 051600;213.561000;213.573000;213.553000;213.555000;0 +20260205 051700;213.557000;213.557000;213.521000;213.532000;0 +20260205 051800;213.534000;213.534000;213.501000;213.505000;0 +20260205 051900;213.507000;213.510000;213.432000;213.445000;0 +20260205 052000;213.449000;213.473000;213.445000;213.461000;0 +20260205 052100;213.460000;213.522000;213.460000;213.514000;0 +20260205 052200;213.518000;213.551000;213.514000;213.522000;0 +20260205 052300;213.517000;213.529000;213.493000;213.510000;0 +20260205 052400;213.512000;213.525000;213.508000;213.522000;0 +20260205 052500;213.521000;213.529000;213.484000;213.487000;0 +20260205 052600;213.489000;213.519000;213.474000;213.519000;0 +20260205 052700;213.517000;213.572000;213.513000;213.538000;0 +20260205 052800;213.534000;213.554000;213.517000;213.520000;0 +20260205 052900;213.523000;213.552000;213.514000;213.540000;0 +20260205 053000;213.539000;213.582000;213.529000;213.572000;0 +20260205 053100;213.572000;213.608000;213.560000;213.591000;0 +20260205 053200;213.593000;213.647000;213.593000;213.647000;0 +20260205 053300;213.646000;213.647000;213.606000;213.626000;0 +20260205 053400;213.622000;213.640000;213.597000;213.621000;0 +20260205 053500;213.622000;213.634000;213.618000;213.629000;0 +20260205 053600;213.632000;213.666000;213.623000;213.653000;0 +20260205 053700;213.653000;213.676000;213.639000;213.674000;0 +20260205 053800;213.670000;213.686000;213.629000;213.633000;0 +20260205 053900;213.631000;213.639000;213.609000;213.629000;0 +20260205 054000;213.627000;213.667000;213.623000;213.666000;0 +20260205 054100;213.668000;213.699000;213.651000;213.664000;0 +20260205 054200;213.665000;213.690000;213.662000;213.689000;0 +20260205 054300;213.687000;213.724000;213.681000;213.687000;0 +20260205 054400;213.685000;213.709000;213.675000;213.702000;0 +20260205 054500;213.703000;213.706000;213.663000;213.670000;0 +20260205 054600;213.672000;213.694000;213.651000;213.670000;0 +20260205 054700;213.667000;213.679000;213.653000;213.663000;0 +20260205 054800;213.663000;213.690000;213.661000;213.682000;0 +20260205 054900;213.683000;213.702000;213.639000;213.639000;0 +20260205 055000;213.639000;213.647000;213.623000;213.632000;0 +20260205 055100;213.630000;213.630000;213.609000;213.611000;0 +20260205 055200;213.612000;213.635000;213.600000;213.611000;0 +20260205 055300;213.612000;213.616000;213.577000;213.579000;0 +20260205 055400;213.580000;213.612000;213.560000;213.586000;0 +20260205 055500;213.586000;213.633000;213.579000;213.617000;0 +20260205 055600;213.614000;213.636000;213.598000;213.617000;0 +20260205 055700;213.620000;213.673000;213.618000;213.671000;0 +20260205 055800;213.675000;213.677000;213.650000;213.661000;0 +20260205 055900;213.666000;213.668000;213.645000;213.651000;0 +20260205 060000;213.648000;213.666000;213.615000;213.641000;0 +20260205 060100;213.641000;213.701000;213.637000;213.695000;0 +20260205 060200;213.695000;213.717000;213.678000;213.684000;0 +20260205 060300;213.685000;213.685000;213.621000;213.626000;0 +20260205 060400;213.627000;213.645000;213.625000;213.632000;0 +20260205 060500;213.633000;213.651000;213.630000;213.630000;0 +20260205 060600;213.630000;213.648000;213.626000;213.642000;0 +20260205 060700;213.639000;213.649000;213.616000;213.619000;0 +20260205 060800;213.621000;213.625000;213.584000;213.588000;0 +20260205 060900;213.586000;213.609000;213.575000;213.599000;0 +20260205 061000;213.597000;213.634000;213.593000;213.597000;0 +20260205 061100;213.593000;213.635000;213.593000;213.615000;0 +20260205 061200;213.614000;213.632000;213.610000;213.618000;0 +20260205 061300;213.626000;213.651000;213.605000;213.635000;0 +20260205 061400;213.637000;213.673000;213.620000;213.667000;0 +20260205 061500;213.668000;213.707000;213.657000;213.686000;0 +20260205 061600;213.686000;213.746000;213.686000;213.722000;0 +20260205 061700;213.720000;213.846000;213.720000;213.845000;0 +20260205 061800;213.844000;213.866000;213.814000;213.837000;0 +20260205 061900;213.834000;213.843000;213.801000;213.838000;0 +20260205 062000;213.841000;213.857000;213.825000;213.851000;0 +20260205 062100;213.851000;213.913000;213.846000;213.885000;0 +20260205 062200;213.886000;213.886000;213.831000;213.877000;0 +20260205 062300;213.877000;213.910000;213.875000;213.888000;0 +20260205 062400;213.891000;213.901000;213.881000;213.889000;0 +20260205 062500;213.887000;213.901000;213.875000;213.899000;0 +20260205 062600;213.902000;213.914000;213.861000;213.863000;0 +20260205 062700;213.865000;213.873000;213.850000;213.860000;0 +20260205 062800;213.859000;213.871000;213.855000;213.861000;0 +20260205 062900;213.859000;213.870000;213.828000;213.845000;0 +20260205 063000;213.853000;213.853000;213.776000;213.779000;0 +20260205 063100;213.779000;213.793000;213.755000;213.762000;0 +20260205 063200;213.761000;213.788000;213.759000;213.783000;0 +20260205 063300;213.779000;213.804000;213.776000;213.802000;0 +20260205 063400;213.800000;213.830000;213.788000;213.790000;0 +20260205 063500;213.792000;213.826000;213.792000;213.798000;0 +20260205 063600;213.796000;213.851000;213.791000;213.845000;0 +20260205 063700;213.844000;213.849000;213.796000;213.801000;0 +20260205 063800;213.803000;213.803000;213.728000;213.735000;0 +20260205 063900;213.737000;213.742000;213.667000;213.685000;0 +20260205 064000;213.689000;213.697000;213.657000;213.696000;0 +20260205 064100;213.685000;213.734000;213.685000;213.717000;0 +20260205 064200;213.719000;213.726000;213.699000;213.719000;0 +20260205 064300;213.721000;213.721000;213.688000;213.689000;0 +20260205 064400;213.691000;213.697000;213.672000;213.689000;0 +20260205 064500;213.686000;213.701000;213.674000;213.688000;0 +20260205 064600;213.690000;213.720000;213.680000;213.697000;0 +20260205 064700;213.695000;213.781000;213.684000;213.778000;0 +20260205 064800;213.779000;213.849000;213.778000;213.842000;0 +20260205 064900;213.841000;213.846000;213.807000;213.825000;0 +20260205 065000;213.828000;213.846000;213.809000;213.844000;0 +20260205 065100;213.843000;213.844000;213.808000;213.825000;0 +20260205 065200;213.825000;213.877000;213.822000;213.867000;0 +20260205 065300;213.869000;213.899000;213.863000;213.877000;0 +20260205 065400;213.873000;213.902000;213.873000;213.894000;0 +20260205 065500;213.904000;213.907000;213.889000;213.895000;0 +20260205 065600;213.893000;213.938000;213.881000;213.884000;0 +20260205 065700;213.884000;213.898000;213.876000;213.898000;0 +20260205 065800;213.902000;213.951000;213.902000;213.910000;0 +20260205 065900;213.914000;213.945000;213.884000;213.900000;0 +20260205 070000;213.897000;213.900000;213.000000;213.217000;0 +20260205 070100;213.226000;213.294000;213.142000;213.241000;0 +20260205 070200;213.239000;213.276000;213.101000;213.120000;0 +20260205 070300;213.121000;213.297000;213.090000;213.268000;0 +20260205 070400;213.262000;213.367000;213.191000;213.351000;0 +20260205 070500;213.351000;213.385000;213.141000;213.170000;0 +20260205 070600;213.167000;213.227000;213.121000;213.225000;0 +20260205 070700;213.228000;213.298000;213.218000;213.229000;0 +20260205 070800;213.230000;213.280000;213.148000;213.255000;0 +20260205 070900;213.255000;213.270000;213.210000;213.267000;0 +20260205 071000;213.259000;213.318000;213.196000;213.308000;0 +20260205 071100;213.312000;213.330000;213.240000;213.263000;0 +20260205 071200;213.260000;213.362000;213.250000;213.356000;0 +20260205 071300;213.356000;213.359000;213.293000;213.334000;0 +20260205 071400;213.331000;213.374000;213.241000;213.243000;0 +20260205 071500;213.243000;213.300000;213.229000;213.277000;0 +20260205 071600;213.276000;213.287000;213.225000;213.248000;0 +20260205 071700;213.247000;213.254000;213.203000;213.203000;0 +20260205 071800;213.205000;213.227000;213.166000;213.209000;0 +20260205 071900;213.208000;213.215000;213.124000;213.128000;0 +20260205 072000;213.129000;213.147000;213.050000;213.076000;0 +20260205 072100;213.073000;213.114000;213.055000;213.055000;0 +20260205 072200;213.056000;213.056000;212.933000;212.967000;0 +20260205 072300;212.969000;213.011000;212.967000;212.985000;0 +20260205 072400;212.987000;213.053000;212.986000;213.028000;0 +20260205 072500;213.030000;213.109000;213.012000;213.096000;0 +20260205 072600;213.101000;213.119000;213.081000;213.093000;0 +20260205 072700;213.091000;213.179000;213.091000;213.170000;0 +20260205 072800;213.173000;213.177000;213.122000;213.158000;0 +20260205 072900;213.160000;213.191000;213.120000;213.166000;0 +20260205 073000;213.171000;213.198000;213.101000;213.157000;0 +20260205 073100;213.158000;213.173000;213.102000;213.113000;0 +20260205 073200;213.110000;213.140000;213.042000;213.134000;0 +20260205 073300;213.134000;213.180000;213.100000;213.138000;0 +20260205 073400;213.138000;213.140000;213.056000;213.096000;0 +20260205 073500;213.096000;213.117000;213.063000;213.087000;0 +20260205 073600;213.087000;213.096000;213.033000;213.075000;0 +20260205 073700;213.074000;213.117000;213.030000;213.109000;0 +20260205 073800;213.107000;213.156000;213.107000;213.119000;0 +20260205 073900;213.116000;213.123000;213.083000;213.119000;0 +20260205 074000;213.118000;213.145000;213.082000;213.144000;0 +20260205 074100;213.143000;213.165000;213.128000;213.157000;0 +20260205 074200;213.158000;213.158000;213.087000;213.089000;0 +20260205 074300;213.086000;213.126000;213.058000;213.094000;0 +20260205 074400;213.093000;213.105000;213.047000;213.057000;0 +20260205 074500;213.050000;213.120000;213.045000;213.113000;0 +20260205 074600;213.117000;213.196000;213.094000;213.133000;0 +20260205 074700;213.134000;213.151000;213.070000;213.076000;0 +20260205 074800;213.071000;213.097000;213.023000;213.085000;0 +20260205 074900;213.086000;213.111000;213.047000;213.110000;0 +20260205 075000;213.099000;213.123000;213.064000;213.072000;0 +20260205 075100;213.074000;213.132000;213.074000;213.124000;0 +20260205 075200;213.132000;213.148000;213.076000;213.101000;0 +20260205 075300;213.099000;213.115000;213.006000;213.012000;0 +20260205 075400;213.013000;213.053000;213.007000;213.025000;0 +20260205 075500;213.028000;213.087000;213.028000;213.072000;0 +20260205 075600;213.074000;213.136000;213.067000;213.076000;0 +20260205 075700;213.077000;213.094000;213.058000;213.079000;0 +20260205 075800;213.082000;213.158000;213.060000;213.126000;0 +20260205 075900;213.124000;213.162000;213.106000;213.156000;0 +20260205 080000;213.153000;213.206000;213.069000;213.097000;0 +20260205 080100;213.095000;213.095000;212.982000;212.989000;0 +20260205 080200;212.999000;213.038000;212.968000;212.973000;0 +20260205 080300;212.973000;212.993000;212.922000;212.937000;0 +20260205 080400;212.941000;212.964000;212.917000;212.952000;0 +20260205 080500;212.957000;213.022000;212.945000;212.950000;0 +20260205 080600;212.953000;212.983000;212.899000;212.921000;0 +20260205 080700;212.922000;212.961000;212.889000;212.912000;0 +20260205 080800;212.912000;212.967000;212.892000;212.936000;0 +20260205 080900;212.934000;212.994000;212.926000;212.984000;0 +20260205 081000;212.982000;212.989000;212.929000;212.936000;0 +20260205 081100;212.938000;212.974000;212.887000;212.895000;0 +20260205 081200;212.897000;212.926000;212.882000;212.887000;0 +20260205 081300;212.890000;212.934000;212.884000;212.914000;0 +20260205 081400;212.910000;212.938000;212.889000;212.889000;0 +20260205 081500;212.889000;212.989000;212.886000;212.978000;0 +20260205 081600;212.979000;213.001000;212.965000;212.971000;0 +20260205 081700;212.971000;212.992000;212.932000;212.971000;0 +20260205 081800;212.972000;213.008000;212.959000;212.979000;0 +20260205 081900;212.978000;212.985000;212.890000;212.901000;0 +20260205 082000;212.902000;212.957000;212.874000;212.947000;0 +20260205 082100;212.950000;212.977000;212.928000;212.960000;0 +20260205 082200;212.961000;213.018000;212.948000;213.008000;0 +20260205 082300;213.003000;213.020000;212.968000;212.973000;0 +20260205 082400;212.973000;213.031000;212.967000;212.989000;0 +20260205 082500;212.989000;213.112000;212.989000;213.080000;0 +20260205 082600;213.082000;213.086000;213.027000;213.048000;0 +20260205 082700;213.049000;213.054000;212.991000;212.996000;0 +20260205 082800;212.995000;213.024000;212.980000;213.012000;0 +20260205 082900;213.012000;213.017000;212.975000;212.983000;0 +20260205 083000;212.977000;213.021000;212.911000;212.925000;0 +20260205 083100;212.932000;213.001000;212.927000;212.988000;0 +20260205 083200;212.985000;213.010000;212.954000;212.956000;0 +20260205 083300;212.955000;212.967000;212.895000;212.895000;0 +20260205 083400;212.899000;212.904000;212.855000;212.888000;0 +20260205 083500;212.888000;212.933000;212.863000;212.889000;0 +20260205 083600;212.887000;212.910000;212.803000;212.822000;0 +20260205 083700;212.821000;212.831000;212.780000;212.785000;0 +20260205 083800;212.784000;212.813000;212.733000;212.764000;0 +20260205 083900;212.762000;212.769000;212.682000;212.708000;0 +20260205 084000;212.710000;212.729000;212.687000;212.722000;0 +20260205 084100;212.722000;212.731000;212.681000;212.708000;0 +20260205 084200;212.709000;212.734000;212.685000;212.689000;0 +20260205 084300;212.695000;212.695000;212.642000;212.646000;0 +20260205 084400;212.648000;212.661000;212.590000;212.617000;0 +20260205 084500;212.618000;212.662000;212.588000;212.631000;0 +20260205 084600;212.629000;212.697000;212.624000;212.697000;0 +20260205 084700;212.694000;212.730000;212.681000;212.712000;0 +20260205 084800;212.713000;212.734000;212.692000;212.699000;0 +20260205 084900;212.699000;212.708000;212.666000;212.708000;0 +20260205 085000;212.706000;212.709000;212.639000;212.639000;0 +20260205 085100;212.635000;212.686000;212.627000;212.674000;0 +20260205 085200;212.677000;212.694000;212.641000;212.649000;0 +20260205 085300;212.652000;212.688000;212.627000;212.682000;0 +20260205 085400;212.679000;212.736000;212.663000;212.721000;0 +20260205 085500;212.720000;212.786000;212.702000;212.786000;0 +20260205 085600;212.791000;212.820000;212.739000;212.744000;0 +20260205 085700;212.747000;212.755000;212.708000;212.733000;0 +20260205 085800;212.732000;212.770000;212.714000;212.752000;0 +20260205 085900;212.750000;212.765000;212.721000;212.734000;0 +20260205 090000;212.732000;212.737000;212.658000;212.680000;0 +20260205 090100;212.683000;212.750000;212.659000;212.739000;0 +20260205 090200;212.738000;212.809000;212.730000;212.783000;0 +20260205 090300;212.784000;212.836000;212.767000;212.813000;0 +20260205 090400;212.814000;212.851000;212.794000;212.811000;0 +20260205 090500;212.811000;212.817000;212.748000;212.767000;0 +20260205 090600;212.765000;212.775000;212.742000;212.758000;0 +20260205 090700;212.760000;212.782000;212.747000;212.764000;0 +20260205 090800;212.760000;212.768000;212.678000;212.711000;0 +20260205 090900;212.709000;212.713000;212.649000;212.664000;0 +20260205 091000;212.655000;212.698000;212.653000;212.674000;0 +20260205 091100;212.673000;212.682000;212.624000;212.660000;0 +20260205 091200;212.660000;212.704000;212.657000;212.677000;0 +20260205 091300;212.680000;212.696000;212.663000;212.687000;0 +20260205 091400;212.691000;212.714000;212.631000;212.640000;0 +20260205 091500;212.641000;212.683000;212.617000;212.620000;0 +20260205 091600;212.626000;212.629000;212.543000;212.546000;0 +20260205 091700;212.550000;212.598000;212.543000;212.578000;0 +20260205 091800;212.587000;212.606000;212.556000;212.582000;0 +20260205 091900;212.581000;212.585000;212.542000;212.573000;0 +20260205 092000;212.572000;212.666000;212.560000;212.656000;0 +20260205 092100;212.653000;212.660000;212.615000;212.654000;0 +20260205 092200;212.658000;212.708000;212.653000;212.700000;0 +20260205 092300;212.703000;212.805000;212.702000;212.798000;0 +20260205 092400;212.797000;212.803000;212.730000;212.803000;0 +20260205 092500;212.802000;212.822000;212.743000;212.746000;0 +20260205 092600;212.749000;212.803000;212.736000;212.754000;0 +20260205 092700;212.759000;212.808000;212.728000;212.797000;0 +20260205 092800;212.794000;212.826000;212.768000;212.769000;0 +20260205 092900;212.772000;212.780000;212.725000;212.741000;0 +20260205 093000;212.743000;212.817000;212.724000;212.808000;0 +20260205 093100;212.809000;212.866000;212.764000;212.783000;0 +20260205 093200;212.784000;212.861000;212.758000;212.806000;0 +20260205 093300;212.804000;212.842000;212.783000;212.794000;0 +20260205 093400;212.794000;212.829000;212.766000;212.816000;0 +20260205 093500;212.817000;212.842000;212.759000;212.780000;0 +20260205 093600;212.781000;212.799000;212.731000;212.731000;0 +20260205 093700;212.732000;212.793000;212.716000;212.791000;0 +20260205 093800;212.796000;212.847000;212.792000;212.847000;0 +20260205 093900;212.846000;212.877000;212.789000;212.795000;0 +20260205 094000;212.793000;212.798000;212.756000;212.798000;0 +20260205 094100;212.794000;212.816000;212.747000;212.806000;0 +20260205 094200;212.804000;212.864000;212.783000;212.796000;0 +20260205 094300;212.795000;212.899000;212.783000;212.883000;0 +20260205 094400;212.878000;212.892000;212.833000;212.857000;0 +20260205 094500;212.856000;212.867000;212.786000;212.859000;0 +20260205 094600;212.861000;212.911000;212.848000;212.887000;0 +20260205 094700;212.886000;212.892000;212.604000;212.614000;0 +20260205 094800;212.611000;212.652000;212.583000;212.587000;0 +20260205 094900;212.584000;212.604000;212.540000;212.562000;0 +20260205 095000;212.557000;212.608000;212.524000;212.570000;0 +20260205 095100;212.571000;212.633000;212.563000;212.606000;0 +20260205 095200;212.606000;212.654000;212.575000;212.592000;0 +20260205 095300;212.586000;212.633000;212.549000;212.566000;0 +20260205 095400;212.568000;212.586000;212.527000;212.557000;0 +20260205 095500;212.555000;212.574000;212.487000;212.540000;0 +20260205 095600;212.538000;212.550000;212.498000;212.526000;0 +20260205 095700;212.525000;212.545000;212.402000;212.415000;0 +20260205 095800;212.416000;212.416000;212.337000;212.364000;0 +20260205 095900;212.359000;212.392000;212.334000;212.354000;0 +20260205 100000;212.348000;212.368000;212.188000;212.201000;0 +20260205 100100;212.204000;212.336000;212.187000;212.234000;0 +20260205 100200;212.235000;212.256000;212.132000;212.254000;0 +20260205 100300;212.255000;212.372000;212.245000;212.341000;0 +20260205 100400;212.341000;212.416000;212.286000;212.381000;0 +20260205 100500;212.384000;212.411000;212.265000;212.295000;0 +20260205 100600;212.290000;212.382000;212.270000;212.304000;0 +20260205 100700;212.307000;212.342000;212.289000;212.292000;0 +20260205 100800;212.289000;212.394000;212.288000;212.381000;0 +20260205 100900;212.382000;212.434000;212.369000;212.384000;0 +20260205 101000;212.380000;212.418000;212.319000;212.333000;0 +20260205 101100;212.334000;212.353000;212.274000;212.333000;0 +20260205 101200;212.334000;212.398000;212.330000;212.385000;0 +20260205 101300;212.392000;212.436000;212.371000;212.436000;0 +20260205 101400;212.435000;212.444000;212.385000;212.438000;0 +20260205 101500;212.439000;212.526000;212.431000;212.526000;0 +20260205 101600;212.524000;212.604000;212.522000;212.539000;0 +20260205 101700;212.538000;212.585000;212.533000;212.537000;0 +20260205 101800;212.535000;212.542000;212.470000;212.472000;0 +20260205 101900;212.473000;212.509000;212.455000;212.485000;0 +20260205 102000;212.485000;212.491000;212.398000;212.422000;0 +20260205 102100;212.419000;212.441000;212.397000;212.410000;0 +20260205 102200;212.412000;212.432000;212.324000;212.325000;0 +20260205 102300;212.321000;212.369000;212.301000;212.310000;0 +20260205 102400;212.310000;212.316000;212.248000;212.266000;0 +20260205 102500;212.265000;212.292000;212.220000;212.221000;0 +20260205 102600;212.224000;212.249000;212.183000;212.204000;0 +20260205 102700;212.204000;212.253000;212.190000;212.236000;0 +20260205 102800;212.235000;212.288000;212.199000;212.204000;0 +20260205 102900;212.215000;212.215000;212.120000;212.163000;0 +20260205 103000;212.166000;212.188000;212.039000;212.066000;0 +20260205 103100;212.065000;212.092000;211.970000;211.970000;0 +20260205 103200;211.974000;211.976000;211.885000;211.901000;0 +20260205 103300;211.899000;211.926000;211.846000;211.856000;0 +20260205 103400;211.854000;211.908000;211.778000;211.789000;0 +20260205 103500;211.791000;211.884000;211.783000;211.874000;0 +20260205 103600;211.871000;211.915000;211.832000;211.896000;0 +20260205 103700;211.896000;211.982000;211.883000;211.951000;0 +20260205 103800;211.948000;211.999000;211.931000;211.971000;0 +20260205 103900;211.974000;212.029000;211.964000;212.027000;0 +20260205 104000;212.025000;212.026000;211.975000;211.993000;0 +20260205 104100;211.987000;212.085000;211.981000;212.053000;0 +20260205 104200;212.051000;212.118000;212.050000;212.113000;0 +20260205 104300;212.111000;212.134000;212.062000;212.069000;0 +20260205 104400;212.072000;212.129000;212.041000;212.049000;0 +20260205 104500;212.055000;212.055000;211.988000;212.036000;0 +20260205 104600;212.037000;212.130000;212.018000;212.118000;0 +20260205 104700;212.118000;212.130000;212.072000;212.072000;0 +20260205 104800;212.070000;212.131000;212.059000;212.094000;0 +20260205 104900;212.086000;212.095000;212.053000;212.080000;0 +20260205 105000;212.081000;212.089000;212.018000;212.021000;0 +20260205 105100;212.018000;212.064000;212.003000;212.045000;0 +20260205 105200;212.046000;212.048000;211.969000;212.021000;0 +20260205 105300;212.025000;212.068000;211.998000;212.032000;0 +20260205 105400;212.043000;212.067000;211.976000;211.978000;0 +20260205 105500;211.991000;212.126000;211.988000;212.114000;0 +20260205 105600;212.114000;212.216000;212.113000;212.178000;0 +20260205 105700;212.177000;212.177000;212.081000;212.096000;0 +20260205 105800;212.095000;212.142000;212.084000;212.122000;0 +20260205 105900;212.126000;212.168000;212.106000;212.162000;0 +20260205 110000;212.159000;212.176000;212.069000;212.087000;0 +20260205 110100;212.085000;212.146000;212.079000;212.146000;0 +20260205 110200;212.146000;212.174000;212.106000;212.139000;0 +20260205 110300;212.137000;212.170000;212.056000;212.064000;0 +20260205 110400;212.067000;212.127000;212.067000;212.107000;0 +20260205 110500;212.103000;212.132000;212.067000;212.073000;0 +20260205 110600;212.072000;212.100000;212.067000;212.081000;0 +20260205 110700;212.078000;212.102000;212.014000;212.014000;0 +20260205 110800;212.015000;212.065000;212.015000;212.048000;0 +20260205 110900;212.050000;212.078000;212.027000;212.063000;0 +20260205 111000;212.062000;212.170000;212.050000;212.110000;0 +20260205 111100;212.110000;212.132000;212.101000;212.107000;0 +20260205 111200;212.107000;212.132000;212.083000;212.128000;0 +20260205 111300;212.126000;212.150000;212.101000;212.125000;0 +20260205 111400;212.128000;212.144000;212.119000;212.130000;0 +20260205 111500;212.127000;212.146000;212.118000;212.144000;0 +20260205 111600;212.142000;212.184000;212.113000;212.165000;0 +20260205 111700;212.167000;212.227000;212.166000;212.226000;0 +20260205 111800;212.226000;212.237000;212.158000;212.182000;0 +20260205 111900;212.181000;212.215000;212.178000;212.211000;0 +20260205 112000;212.220000;212.294000;212.218000;212.291000;0 +20260205 112100;212.293000;212.376000;212.277000;212.368000;0 +20260205 112200;212.368000;212.498000;212.368000;212.472000;0 +20260205 112300;212.471000;212.498000;212.445000;212.461000;0 +20260205 112400;212.459000;212.465000;212.419000;212.439000;0 +20260205 112500;212.442000;212.526000;212.441000;212.453000;0 +20260205 112600;212.452000;212.465000;212.416000;212.439000;0 +20260205 112700;212.437000;212.486000;212.437000;212.469000;0 +20260205 112800;212.471000;212.508000;212.466000;212.488000;0 +20260205 112900;212.486000;212.512000;212.469000;212.512000;0 +20260205 113000;212.512000;212.564000;212.509000;212.515000;0 +20260205 113100;212.514000;212.533000;212.483000;212.504000;0 +20260205 113200;212.504000;212.553000;212.504000;212.522000;0 +20260205 113300;212.521000;212.612000;212.519000;212.607000;0 +20260205 113400;212.606000;212.608000;212.561000;212.590000;0 +20260205 113500;212.598000;212.627000;212.583000;212.625000;0 +20260205 113600;212.627000;212.668000;212.614000;212.616000;0 +20260205 113700;212.618000;212.650000;212.606000;212.634000;0 +20260205 113800;212.630000;212.672000;212.618000;212.671000;0 +20260205 113900;212.671000;212.682000;212.621000;212.670000;0 +20260205 114000;212.674000;212.685000;212.624000;212.654000;0 +20260205 114100;212.654000;212.666000;212.603000;212.610000;0 +20260205 114200;212.608000;212.638000;212.599000;212.608000;0 +20260205 114300;212.611000;212.651000;212.611000;212.636000;0 +20260205 114400;212.636000;212.636000;212.596000;212.618000;0 +20260205 114500;212.620000;212.663000;212.618000;212.638000;0 +20260205 114600;212.638000;212.678000;212.632000;212.669000;0 +20260205 114700;212.668000;212.668000;212.574000;212.574000;0 +20260205 114800;212.574000;212.605000;212.537000;212.544000;0 +20260205 114900;212.544000;212.580000;212.526000;212.578000;0 +20260205 115000;212.578000;212.660000;212.577000;212.595000;0 +20260205 115100;212.599000;212.626000;212.593000;212.609000;0 +20260205 115200;212.605000;212.629000;212.587000;212.597000;0 +20260205 115300;212.600000;212.619000;212.583000;212.617000;0 +20260205 115400;212.619000;212.620000;212.583000;212.596000;0 +20260205 115500;212.597000;212.664000;212.589000;212.657000;0 +20260205 115600;212.655000;212.665000;212.597000;212.621000;0 +20260205 115700;212.620000;212.625000;212.583000;212.620000;0 +20260205 115800;212.618000;212.628000;212.576000;212.579000;0 +20260205 115900;212.581000;212.609000;212.567000;212.608000;0 +20260205 120000;212.606000;212.617000;212.556000;212.560000;0 +20260205 120100;212.562000;212.568000;212.516000;212.526000;0 +20260205 120200;212.526000;212.538000;212.513000;212.518000;0 +20260205 120300;212.516000;212.522000;212.464000;212.466000;0 +20260205 120400;212.464000;212.481000;212.420000;212.471000;0 +20260205 120500;212.472000;212.530000;212.467000;212.526000;0 +20260205 120600;212.521000;212.552000;212.509000;212.511000;0 +20260205 120700;212.509000;212.540000;212.509000;212.540000;0 +20260205 120800;212.539000;212.542000;212.510000;212.513000;0 +20260205 120900;212.512000;212.516000;212.459000;212.463000;0 +20260205 121000;212.464000;212.473000;212.413000;212.415000;0 +20260205 121100;212.413000;212.452000;212.413000;212.418000;0 +20260205 121200;212.417000;212.427000;212.405000;212.422000;0 +20260205 121300;212.420000;212.450000;212.415000;212.448000;0 +20260205 121400;212.449000;212.492000;212.448000;212.483000;0 +20260205 121500;212.480000;212.494000;212.461000;212.462000;0 +20260205 121600;212.462000;212.514000;212.462000;212.509000;0 +20260205 121700;212.510000;212.519000;212.469000;212.490000;0 +20260205 121800;212.492000;212.500000;212.462000;212.474000;0 +20260205 121900;212.472000;212.505000;212.454000;212.504000;0 +20260205 122000;212.503000;212.535000;212.495000;212.507000;0 +20260205 122100;212.506000;212.508000;212.480000;212.491000;0 +20260205 122200;212.494000;212.527000;212.482000;212.492000;0 +20260205 122300;212.489000;212.523000;212.487000;212.523000;0 +20260205 122400;212.522000;212.587000;212.522000;212.581000;0 +20260205 122500;212.577000;212.644000;212.577000;212.631000;0 +20260205 122600;212.633000;212.683000;212.633000;212.675000;0 +20260205 122700;212.680000;212.697000;212.657000;212.687000;0 +20260205 122800;212.686000;212.705000;212.647000;212.651000;0 +20260205 122900;212.654000;212.661000;212.633000;212.657000;0 +20260205 123000;212.657000;212.680000;212.642000;212.648000;0 +20260205 123100;212.649000;212.651000;212.572000;212.572000;0 +20260205 123200;212.572000;212.649000;212.570000;212.622000;0 +20260205 123300;212.619000;212.619000;212.587000;212.594000;0 +20260205 123400;212.596000;212.604000;212.541000;212.541000;0 +20260205 123500;212.534000;212.556000;212.512000;212.553000;0 +20260205 123600;212.555000;212.600000;212.543000;212.598000;0 +20260205 123700;212.600000;212.604000;212.563000;212.576000;0 +20260205 123800;212.576000;212.585000;212.560000;212.560000;0 +20260205 123900;212.559000;212.585000;212.555000;212.574000;0 +20260205 124000;212.576000;212.612000;212.570000;212.590000;0 +20260205 124100;212.592000;212.600000;212.576000;212.583000;0 +20260205 124200;212.586000;212.594000;212.562000;212.573000;0 +20260205 124300;212.582000;212.621000;212.542000;212.599000;0 +20260205 124400;212.593000;212.594000;212.560000;212.591000;0 +20260205 124500;212.592000;212.637000;212.590000;212.637000;0 +20260205 124600;212.644000;212.669000;212.636000;212.663000;0 +20260205 124700;212.663000;212.665000;212.611000;212.623000;0 +20260205 124800;212.623000;212.623000;212.589000;212.589000;0 +20260205 124900;212.588000;212.589000;212.547000;212.565000;0 +20260205 125000;212.564000;212.564000;212.525000;212.554000;0 +20260205 125100;212.555000;212.587000;212.527000;212.540000;0 +20260205 125200;212.540000;212.541000;212.487000;212.523000;0 +20260205 125300;212.525000;212.539000;212.513000;212.534000;0 +20260205 125400;212.534000;212.540000;212.512000;212.520000;0 +20260205 125500;212.520000;212.542000;212.515000;212.518000;0 +20260205 125600;212.517000;212.531000;212.504000;212.520000;0 +20260205 125700;212.513000;212.518000;212.484000;212.484000;0 +20260205 125800;212.485000;212.507000;212.481000;212.493000;0 +20260205 125900;212.493000;212.502000;212.476000;212.485000;0 +20260205 130000;212.484000;212.505000;212.464000;212.481000;0 +20260205 130100;212.482000;212.546000;212.482000;212.546000;0 +20260205 130200;212.549000;212.556000;212.529000;212.543000;0 +20260205 130300;212.538000;212.561000;212.527000;212.527000;0 +20260205 130400;212.535000;212.548000;212.512000;212.540000;0 +20260205 130500;212.539000;212.549000;212.507000;212.546000;0 +20260205 130600;212.543000;212.543000;212.516000;212.528000;0 +20260205 130700;212.530000;212.533000;212.509000;212.520000;0 +20260205 130800;212.519000;212.528000;212.514000;212.527000;0 +20260205 130900;212.527000;212.547000;212.527000;212.528000;0 +20260205 131000;212.530000;212.544000;212.507000;212.507000;0 +20260205 131100;212.504000;212.558000;212.493000;212.545000;0 +20260205 131200;212.548000;212.559000;212.536000;212.545000;0 +20260205 131300;212.546000;212.556000;212.525000;212.533000;0 +20260205 131400;212.534000;212.551000;212.518000;212.523000;0 +20260205 131500;212.532000;212.551000;212.527000;212.541000;0 +20260205 131600;212.542000;212.547000;212.520000;212.520000;0 +20260205 131700;212.523000;212.533000;212.519000;212.524000;0 +20260205 131800;212.524000;212.533000;212.518000;212.521000;0 +20260205 131900;212.520000;212.566000;212.520000;212.547000;0 +20260205 132000;212.550000;212.563000;212.526000;212.526000;0 +20260205 132100;212.527000;212.544000;212.517000;212.542000;0 +20260205 132200;212.540000;212.554000;212.508000;212.515000;0 +20260205 132300;212.513000;212.527000;212.506000;212.524000;0 +20260205 132400;212.523000;212.542000;212.502000;212.519000;0 +20260205 132500;212.519000;212.525000;212.504000;212.507000;0 +20260205 132600;212.507000;212.525000;212.493000;212.524000;0 +20260205 132700;212.527000;212.531000;212.497000;212.511000;0 +20260205 132800;212.515000;212.515000;212.480000;212.490000;0 +20260205 132900;212.483000;212.493000;212.462000;212.465000;0 +20260205 133000;212.465000;212.520000;212.465000;212.511000;0 +20260205 133100;212.512000;212.552000;212.512000;212.524000;0 +20260205 133200;212.524000;212.538000;212.521000;212.523000;0 +20260205 133300;212.524000;212.531000;212.499000;212.501000;0 +20260205 133400;212.497000;212.505000;212.483000;212.500000;0 +20260205 133500;212.501000;212.521000;212.488000;212.493000;0 +20260205 133600;212.495000;212.497000;212.465000;212.471000;0 +20260205 133700;212.469000;212.499000;212.464000;212.485000;0 +20260205 133800;212.485000;212.490000;212.463000;212.463000;0 +20260205 133900;212.459000;212.475000;212.457000;212.469000;0 +20260205 134000;212.468000;212.482000;212.448000;212.461000;0 +20260205 134100;212.463000;212.473000;212.454000;212.464000;0 +20260205 134200;212.463000;212.463000;212.436000;212.445000;0 +20260205 134300;212.444000;212.450000;212.432000;212.446000;0 +20260205 134400;212.444000;212.459000;212.442000;212.446000;0 +20260205 134500;212.447000;212.462000;212.437000;212.462000;0 +20260205 134600;212.461000;212.476000;212.425000;212.428000;0 +20260205 134700;212.435000;212.445000;212.430000;212.430000;0 +20260205 134800;212.430000;212.439000;212.419000;212.429000;0 +20260205 134900;212.426000;212.446000;212.426000;212.431000;0 +20260205 135000;212.429000;212.431000;212.404000;212.412000;0 +20260205 135100;212.412000;212.412000;212.388000;212.394000;0 +20260205 135200;212.392000;212.401000;212.370000;212.370000;0 +20260205 135300;212.373000;212.375000;212.345000;212.374000;0 +20260205 135400;212.376000;212.382000;212.360000;212.380000;0 +20260205 135500;212.381000;212.381000;212.348000;212.350000;0 +20260205 135600;212.351000;212.389000;212.340000;212.382000;0 +20260205 135700;212.383000;212.394000;212.381000;212.385000;0 +20260205 135800;212.385000;212.385000;212.370000;212.382000;0 +20260205 135900;212.382000;212.417000;212.382000;212.410000;0 +20260205 140000;212.410000;212.429000;212.398000;212.403000;0 +20260205 140100;212.406000;212.409000;212.387000;212.397000;0 +20260205 140200;212.401000;212.427000;212.397000;212.421000;0 +20260205 140300;212.420000;212.477000;212.419000;212.477000;0 +20260205 140400;212.472000;212.501000;212.470000;212.492000;0 +20260205 140500;212.494000;212.501000;212.472000;212.496000;0 +20260205 140600;212.494000;212.520000;212.474000;212.486000;0 +20260205 140700;212.486000;212.488000;212.448000;212.450000;0 +20260205 140800;212.450000;212.459000;212.434000;212.449000;0 +20260205 140900;212.451000;212.469000;212.447000;212.465000;0 +20260205 141000;212.464000;212.485000;212.451000;212.485000;0 +20260205 141100;212.484000;212.491000;212.469000;212.475000;0 +20260205 141200;212.477000;212.498000;212.475000;212.497000;0 +20260205 141300;212.498000;212.525000;212.497000;212.525000;0 +20260205 141400;212.526000;212.539000;212.523000;212.537000;0 +20260205 141500;212.535000;212.535000;212.509000;212.510000;0 +20260205 141600;212.512000;212.539000;212.509000;212.535000;0 +20260205 141700;212.536000;212.541000;212.521000;212.539000;0 +20260205 141800;212.541000;212.545000;212.526000;212.528000;0 +20260205 141900;212.526000;212.538000;212.517000;212.523000;0 +20260205 142000;212.521000;212.524000;212.500000;212.500000;0 +20260205 142100;212.501000;212.510000;212.486000;212.486000;0 +20260205 142200;212.490000;212.505000;212.481000;212.499000;0 +20260205 142300;212.502000;212.512000;212.493000;212.494000;0 +20260205 142400;212.495000;212.495000;212.483000;212.489000;0 +20260205 142500;212.491000;212.501000;212.471000;212.472000;0 +20260205 142600;212.475000;212.497000;212.473000;212.493000;0 +20260205 142700;212.491000;212.494000;212.483000;212.489000;0 +20260205 142800;212.493000;212.519000;212.488000;212.506000;0 +20260205 142900;212.508000;212.509000;212.494000;212.494000;0 +20260205 143000;212.490000;212.494000;212.424000;212.455000;0 +20260205 143100;212.457000;212.468000;212.442000;212.444000;0 +20260205 143200;212.442000;212.442000;212.392000;212.393000;0 +20260205 143300;212.389000;212.402000;212.382000;212.396000;0 +20260205 143400;212.397000;212.448000;212.386000;212.448000;0 +20260205 143500;212.450000;212.453000;212.423000;212.432000;0 +20260205 143600;212.433000;212.437000;212.406000;212.414000;0 +20260205 143700;212.417000;212.430000;212.412000;212.424000;0 +20260205 143800;212.422000;212.451000;212.421000;212.442000;0 +20260205 143900;212.439000;212.439000;212.424000;212.428000;0 +20260205 144000;212.429000;212.440000;212.419000;212.423000;0 +20260205 144100;212.423000;212.426000;212.406000;212.425000;0 +20260205 144200;212.426000;212.442000;212.414000;212.430000;0 +20260205 144300;212.431000;212.441000;212.425000;212.431000;0 +20260205 144400;212.433000;212.444000;212.425000;212.425000;0 +20260205 144500;212.424000;212.456000;212.420000;212.455000;0 +20260205 144600;212.454000;212.456000;212.442000;212.455000;0 +20260205 144700;212.455000;212.464000;212.447000;212.460000;0 +20260205 144800;212.460000;212.473000;212.453000;212.464000;0 +20260205 144900;212.468000;212.489000;212.461000;212.485000;0 +20260205 145000;212.487000;212.498000;212.481000;212.494000;0 +20260205 145100;212.491000;212.501000;212.489000;212.489000;0 +20260205 145200;212.494000;212.500000;212.459000;212.475000;0 +20260205 145300;212.475000;212.507000;212.475000;212.505000;0 +20260205 145400;212.509000;212.531000;212.508000;212.520000;0 +20260205 145500;212.520000;212.569000;212.520000;212.555000;0 +20260205 145600;212.557000;212.585000;212.555000;212.585000;0 +20260205 145700;212.583000;212.583000;212.557000;212.558000;0 +20260205 145800;212.555000;212.581000;212.555000;212.570000;0 +20260205 145900;212.567000;212.589000;212.547000;212.578000;0 +20260205 150000;212.573000;212.573000;212.508000;212.514000;0 +20260205 150100;212.511000;212.559000;212.510000;212.543000;0 +20260205 150200;212.544000;212.557000;212.533000;212.555000;0 +20260205 150300;212.555000;212.555000;212.523000;212.551000;0 +20260205 150400;212.554000;212.555000;212.536000;212.545000;0 +20260205 150500;212.544000;212.563000;212.521000;212.527000;0 +20260205 150600;212.527000;212.561000;212.526000;212.557000;0 +20260205 150700;212.554000;212.604000;212.551000;212.600000;0 +20260205 150800;212.598000;212.632000;212.593000;212.632000;0 +20260205 150900;212.633000;212.677000;212.629000;212.675000;0 +20260205 151000;212.673000;212.685000;212.668000;212.682000;0 +20260205 151100;212.680000;212.701000;212.670000;212.670000;0 +20260205 151200;212.670000;212.671000;212.650000;212.656000;0 +20260205 151300;212.658000;212.666000;212.647000;212.654000;0 +20260205 151400;212.653000;212.668000;212.652000;212.652000;0 +20260205 151500;212.653000;212.660000;212.642000;212.651000;0 +20260205 151600;212.651000;212.665000;212.647000;212.655000;0 +20260205 151700;212.657000;212.663000;212.637000;212.640000;0 +20260205 151800;212.641000;212.648000;212.639000;212.647000;0 +20260205 151900;212.647000;212.654000;212.619000;212.641000;0 +20260205 152000;212.642000;212.663000;212.639000;212.646000;0 +20260205 152100;212.649000;212.650000;212.613000;212.623000;0 +20260205 152200;212.620000;212.638000;212.612000;212.612000;0 +20260205 152300;212.614000;212.629000;212.608000;212.625000;0 +20260205 152400;212.628000;212.630000;212.607000;212.607000;0 +20260205 152500;212.599000;212.620000;212.599000;212.605000;0 +20260205 152600;212.606000;212.616000;212.601000;212.604000;0 +20260205 152700;212.604000;212.620000;212.603000;212.617000;0 +20260205 152800;212.614000;212.614000;212.601000;212.613000;0 +20260205 152900;212.611000;212.611000;212.598000;212.606000;0 +20260205 153000;212.605000;212.637000;212.584000;212.622000;0 +20260205 153100;212.622000;212.624000;212.603000;212.610000;0 +20260205 153200;212.607000;212.609000;212.599000;212.608000;0 +20260205 153300;212.609000;212.621000;212.606000;212.610000;0 +20260205 153400;212.612000;212.621000;212.606000;212.617000;0 +20260205 153500;212.617000;212.627000;212.610000;212.622000;0 +20260205 153600;212.623000;212.625000;212.611000;212.613000;0 +20260205 153700;212.613000;212.626000;212.608000;212.613000;0 +20260205 153800;212.616000;212.626000;212.609000;212.625000;0 +20260205 153900;212.626000;212.647000;212.619000;212.643000;0 +20260205 154000;212.644000;212.657000;212.632000;212.644000;0 +20260205 154100;212.643000;212.647000;212.640000;212.642000;0 +20260205 154200;212.644000;212.661000;212.644000;212.656000;0 +20260205 154300;212.657000;212.657000;212.629000;212.631000;0 +20260205 154400;212.630000;212.641000;212.619000;212.636000;0 +20260205 154500;212.634000;212.639000;212.615000;212.621000;0 +20260205 154600;212.622000;212.635000;212.609000;212.609000;0 +20260205 154700;212.608000;212.633000;212.606000;212.609000;0 +20260205 154800;212.608000;212.631000;212.605000;212.624000;0 +20260205 154900;212.625000;212.625000;212.603000;212.615000;0 +20260205 155000;212.616000;212.628000;212.592000;212.601000;0 +20260205 155100;212.603000;212.616000;212.581000;212.587000;0 +20260205 155200;212.582000;212.585000;212.568000;212.574000;0 +20260205 155300;212.575000;212.595000;212.567000;212.595000;0 +20260205 155400;212.596000;212.597000;212.571000;212.583000;0 +20260205 155500;212.582000;212.594000;212.564000;212.566000;0 +20260205 155600;212.565000;212.591000;212.561000;212.587000;0 +20260205 155700;212.590000;212.609000;212.576000;212.607000;0 +20260205 155800;212.605000;212.617000;212.601000;212.616000;0 +20260205 155900;212.615000;212.615000;212.596000;212.610000;0 +20260205 160000;212.608000;212.647000;212.600000;212.637000;0 +20260205 160100;212.643000;212.659000;212.635000;212.655000;0 +20260205 160200;212.660000;212.664000;212.587000;212.587000;0 +20260205 160300;212.585000;212.593000;212.569000;212.573000;0 +20260205 160400;212.572000;212.595000;212.560000;212.562000;0 +20260205 160500;212.564000;212.592000;212.564000;212.592000;0 +20260205 160600;212.588000;212.591000;212.564000;212.564000;0 +20260205 160700;212.567000;212.582000;212.567000;212.570000;0 +20260205 160800;212.566000;212.570000;212.543000;212.569000;0 +20260205 160900;212.569000;212.592000;212.565000;212.592000;0 +20260205 161000;212.596000;212.625000;212.596000;212.625000;0 +20260205 161100;212.623000;212.630000;212.617000;212.630000;0 +20260205 161200;212.630000;212.636000;212.619000;212.621000;0 +20260205 161300;212.628000;212.630000;212.610000;212.614000;0 +20260205 161400;212.609000;212.615000;212.606000;212.611000;0 +20260205 161500;212.610000;212.612000;212.603000;212.606000;0 +20260205 161600;212.604000;212.604000;212.600000;212.604000;0 +20260205 161700;212.603000;212.605000;212.591000;212.593000;0 +20260205 161800;212.594000;212.597000;212.590000;212.596000;0 +20260205 161900;212.597000;212.597000;212.590000;212.594000;0 +20260205 162000;212.593000;212.594000;212.559000;212.572000;0 +20260205 162100;212.574000;212.582000;212.573000;212.579000;0 +20260205 162200;212.581000;212.592000;212.576000;212.578000;0 +20260205 162300;212.579000;212.581000;212.569000;212.572000;0 +20260205 162400;212.576000;212.576000;212.565000;212.565000;0 +20260205 162500;212.568000;212.581000;212.566000;212.568000;0 +20260205 162600;212.571000;212.589000;212.568000;212.584000;0 +20260205 162700;212.585000;212.589000;212.569000;212.579000;0 +20260205 162800;212.579000;212.590000;212.577000;212.590000;0 +20260205 162900;212.593000;212.605000;212.589000;212.596000;0 +20260205 163000;212.603000;212.609000;212.558000;212.577000;0 +20260205 163100;212.579000;212.586000;212.561000;212.563000;0 +20260205 163200;212.561000;212.561000;212.490000;212.492000;0 +20260205 163300;212.491000;212.516000;212.481000;212.516000;0 +20260205 163400;212.514000;212.514000;212.487000;212.491000;0 +20260205 163500;212.490000;212.511000;212.490000;212.505000;0 +20260205 163600;212.508000;212.523000;212.508000;212.518000;0 +20260205 163700;212.515000;212.525000;212.508000;212.522000;0 +20260205 163800;212.524000;212.531000;212.496000;212.496000;0 +20260205 163900;212.498000;212.509000;212.490000;212.496000;0 +20260205 164000;212.503000;212.537000;212.503000;212.522000;0 +20260205 164100;212.526000;212.531000;212.506000;212.512000;0 +20260205 164200;212.510000;212.532000;212.508000;212.530000;0 +20260205 164300;212.531000;212.533000;212.520000;212.520000;0 +20260205 164400;212.521000;212.523000;212.512000;212.520000;0 +20260205 164500;212.522000;212.522000;212.478000;212.498000;0 +20260205 164600;212.499000;212.506000;212.446000;212.447000;0 +20260205 164700;212.449000;212.457000;212.419000;212.455000;0 +20260205 164800;212.451000;212.493000;212.448000;212.489000;0 +20260205 164900;212.491000;212.491000;212.451000;212.458000;0 +20260205 165000;212.459000;212.483000;212.452000;212.465000;0 +20260205 165100;212.474000;212.483000;212.464000;212.477000;0 +20260205 165200;212.475000;212.479000;212.451000;212.453000;0 +20260205 165300;212.459000;212.475000;212.456000;212.472000;0 +20260205 165400;212.470000;212.486000;212.466000;212.479000;0 +20260205 165500;212.479000;212.484000;212.465000;212.466000;0 +20260205 165600;212.469000;212.496000;212.456000;212.485000;0 +20260205 165700;212.486000;212.489000;212.443000;212.443000;0 +20260205 165800;212.440000;212.466000;212.440000;212.441000;0 +20260205 165900;212.449000;212.449000;212.383000;212.411000;0 +20260205 170500;212.291000;212.381000;212.291000;212.381000;0 +20260205 170600;212.377000;212.467000;212.347000;212.354000;0 +20260205 170700;212.358000;212.376000;212.358000;212.374000;0 +20260205 170800;212.374000;212.501000;212.237000;212.251000;0 +20260205 170900;212.249000;212.251000;212.248000;212.251000;0 +20260205 171000;212.250000;212.258000;212.181000;212.258000;0 +20260205 171100;212.256000;212.364000;212.256000;212.348000;0 +20260205 171200;212.348000;212.386000;212.345000;212.386000;0 +20260205 171300;212.385000;212.415000;212.363000;212.363000;0 +20260205 171400;212.359000;212.409000;212.341000;212.356000;0 +20260205 171500;212.393000;212.432000;212.369000;212.403000;0 +20260205 171600;212.404000;212.412000;212.363000;212.387000;0 +20260205 171700;212.426000;212.430000;212.356000;212.381000;0 +20260205 171800;212.374000;212.436000;212.368000;212.407000;0 +20260205 171900;212.407000;212.438000;212.404000;212.437000;0 +20260205 172000;212.434000;212.438000;212.409000;212.431000;0 +20260205 172100;212.432000;212.433000;212.431000;212.432000;0 +20260205 172200;212.430000;212.431000;212.400000;212.412000;0 +20260205 172300;212.410000;212.415000;212.410000;212.412000;0 +20260205 172400;212.410000;212.412000;212.410000;212.412000;0 +20260205 172500;212.410000;212.414000;212.396000;212.400000;0 +20260205 172600;212.398000;212.401000;212.382000;212.401000;0 +20260205 172700;212.398000;212.400000;212.398000;212.400000;0 +20260205 172800;212.445000;212.506000;212.411000;212.462000;0 +20260205 172900;212.462000;212.499000;212.461000;212.498000;0 +20260205 173000;212.492000;212.492000;212.446000;212.480000;0 +20260205 173100;212.484000;212.485000;212.481000;212.482000;0 +20260205 173200;212.483000;212.489000;212.462000;212.462000;0 +20260205 173300;212.465000;212.468000;212.459000;212.465000;0 +20260205 173400;212.467000;212.471000;212.439000;212.440000;0 +20260205 173500;212.446000;212.483000;212.441000;212.480000;0 +20260205 173600;212.482000;212.494000;212.460000;212.485000;0 +20260205 173700;212.486000;212.494000;212.461000;212.481000;0 +20260205 173800;212.481000;212.497000;212.466000;212.491000;0 +20260205 173900;212.491000;212.495000;212.487000;212.491000;0 +20260205 174000;212.490000;212.497000;212.470000;212.472000;0 +20260205 174100;212.473000;212.494000;212.465000;212.471000;0 +20260205 174200;212.471000;212.495000;212.467000;212.475000;0 +20260205 174300;212.473000;212.502000;212.471000;212.475000;0 +20260205 174400;212.475000;212.515000;212.465000;212.515000;0 +20260205 174500;212.505000;212.508000;212.481000;212.481000;0 +20260205 174600;212.468000;212.500000;212.468000;212.500000;0 +20260205 174700;212.498000;212.518000;212.495000;212.518000;0 +20260205 174800;212.516000;212.534000;212.516000;212.526000;0 +20260205 174900;212.527000;212.529000;212.516000;212.528000;0 +20260205 175000;212.528000;212.538000;212.526000;212.530000;0 +20260205 175100;212.541000;212.544000;212.533000;212.533000;0 +20260205 175200;212.533000;212.550000;212.532000;212.550000;0 +20260205 175300;212.549000;212.557000;212.543000;212.553000;0 +20260205 175400;212.555000;212.565000;212.508000;212.519000;0 +20260205 175500;212.518000;212.525000;212.511000;212.513000;0 +20260205 175600;212.510000;212.510000;212.500000;212.502000;0 +20260205 175700;212.501000;212.509000;212.472000;212.487000;0 +20260205 175800;212.488000;212.488000;212.480000;212.481000;0 +20260205 175900;212.481000;212.489000;212.460000;212.473000;0 +20260205 180000;212.473000;212.511000;212.404000;212.452000;0 +20260205 180100;212.453000;212.454000;212.332000;212.396000;0 +20260205 180200;212.394000;212.409000;212.378000;212.406000;0 +20260205 180300;212.409000;212.443000;212.405000;212.443000;0 +20260205 180400;212.445000;212.469000;212.445000;212.466000;0 +20260205 180500;212.467000;212.468000;212.443000;212.451000;0 +20260205 180600;212.452000;212.454000;212.442000;212.450000;0 +20260205 180700;212.454000;212.454000;212.432000;212.435000;0 +20260205 180800;212.435000;212.459000;212.433000;212.459000;0 +20260205 180900;212.457000;212.463000;212.441000;212.441000;0 +20260205 181000;212.432000;212.435000;212.419000;212.419000;0 +20260205 181100;212.418000;212.420000;212.388000;212.395000;0 +20260205 181200;212.399000;212.412000;212.398000;212.410000;0 +20260205 181300;212.414000;212.447000;212.414000;212.438000;0 +20260205 181400;212.432000;212.432000;212.408000;212.417000;0 +20260205 181500;212.418000;212.429000;212.394000;212.395000;0 +20260205 181600;212.393000;212.393000;212.337000;212.339000;0 +20260205 181700;212.344000;212.362000;212.336000;212.347000;0 +20260205 181800;212.348000;212.370000;212.318000;212.332000;0 +20260205 181900;212.331000;212.335000;212.307000;212.307000;0 +20260205 182000;212.319000;212.319000;212.289000;212.312000;0 +20260205 182100;212.310000;212.323000;212.297000;212.300000;0 +20260205 182200;212.293000;212.299000;212.176000;212.178000;0 +20260205 182300;212.179000;212.215000;212.178000;212.207000;0 +20260205 182400;212.198000;212.211000;212.185000;212.196000;0 +20260205 182500;212.196000;212.214000;212.145000;212.150000;0 +20260205 182600;212.149000;212.173000;212.145000;212.160000;0 +20260205 182700;212.159000;212.188000;212.156000;212.186000;0 +20260205 182800;212.185000;212.191000;212.159000;212.172000;0 +20260205 182900;212.181000;212.198000;212.177000;212.198000;0 +20260205 183000;212.216000;212.245000;212.205000;212.244000;0 +20260205 183100;212.243000;212.245000;212.227000;212.229000;0 +20260205 183200;212.230000;212.265000;212.229000;212.256000;0 +20260205 183300;212.257000;212.258000;212.219000;212.225000;0 +20260205 183400;212.225000;212.262000;212.224000;212.245000;0 +20260205 183500;212.247000;212.251000;212.190000;212.194000;0 +20260205 183600;212.192000;212.201000;212.174000;212.180000;0 +20260205 183700;212.180000;212.183000;212.142000;212.151000;0 +20260205 183800;212.155000;212.166000;212.148000;212.166000;0 +20260205 183900;212.168000;212.170000;212.143000;212.158000;0 +20260205 184000;212.156000;212.184000;212.135000;212.183000;0 +20260205 184100;212.194000;212.194000;212.141000;212.144000;0 +20260205 184200;212.145000;212.156000;212.124000;212.143000;0 +20260205 184300;212.143000;212.152000;212.134000;212.147000;0 +20260205 184400;212.148000;212.154000;212.129000;212.140000;0 +20260205 184500;212.141000;212.171000;212.140000;212.146000;0 +20260205 184600;212.139000;212.139000;212.095000;212.106000;0 +20260205 184700;212.105000;212.107000;212.063000;212.079000;0 +20260205 184800;212.077000;212.100000;212.061000;212.092000;0 +20260205 184900;212.094000;212.106000;212.069000;212.087000;0 +20260205 185000;212.085000;212.098000;212.056000;212.065000;0 +20260205 185100;212.063000;212.090000;212.062000;212.088000;0 +20260205 185200;212.086000;212.086000;212.008000;212.025000;0 +20260205 185300;212.020000;212.020000;211.963000;211.963000;0 +20260205 185400;211.960000;211.996000;211.943000;211.992000;0 +20260205 185500;211.998000;211.998000;211.956000;211.975000;0 +20260205 185600;211.976000;211.986000;211.923000;211.961000;0 +20260205 185700;211.963000;212.002000;211.949000;211.998000;0 +20260205 185800;212.001000;212.013000;211.979000;212.006000;0 +20260205 185900;212.007000;212.020000;211.960000;212.010000;0 +20260205 190000;212.007000;212.016000;211.880000;211.880000;0 +20260205 190100;211.879000;211.907000;211.821000;211.884000;0 +20260205 190200;211.888000;211.900000;211.747000;211.748000;0 +20260205 190300;211.747000;211.784000;211.710000;211.713000;0 +20260205 190400;211.712000;211.759000;211.706000;211.736000;0 +20260205 190500;211.734000;211.748000;211.707000;211.707000;0 +20260205 190600;211.706000;211.805000;211.676000;211.764000;0 +20260205 190700;211.764000;211.788000;211.757000;211.769000;0 +20260205 190800;211.772000;211.772000;211.730000;211.755000;0 +20260205 190900;211.757000;211.757000;211.671000;211.686000;0 +20260205 191000;211.684000;211.740000;211.659000;211.720000;0 +20260205 191100;211.719000;211.730000;211.700000;211.706000;0 +20260205 191200;211.705000;211.754000;211.698000;211.754000;0 +20260205 191300;211.751000;211.771000;211.704000;211.734000;0 +20260205 191400;211.731000;211.752000;211.699000;211.745000;0 +20260205 191500;211.744000;211.755000;211.688000;211.696000;0 +20260205 191600;211.698000;211.698000;211.602000;211.612000;0 +20260205 191700;211.610000;211.664000;211.603000;211.646000;0 +20260205 191800;211.646000;211.717000;211.629000;211.715000;0 +20260205 191900;211.715000;211.742000;211.674000;211.721000;0 +20260205 192000;211.722000;211.812000;211.720000;211.806000;0 +20260205 192100;211.804000;211.808000;211.754000;211.783000;0 +20260205 192200;211.786000;211.825000;211.786000;211.808000;0 +20260205 192300;211.806000;211.849000;211.801000;211.843000;0 +20260205 192400;211.842000;211.864000;211.800000;211.815000;0 +20260205 192500;211.817000;211.873000;211.814000;211.852000;0 +20260205 192600;211.852000;211.954000;211.851000;211.952000;0 +20260205 192700;211.958000;211.964000;211.882000;211.891000;0 +20260205 192800;211.892000;211.906000;211.884000;211.900000;0 +20260205 192900;211.899000;211.949000;211.889000;211.949000;0 +20260205 193000;211.950000;211.993000;211.942000;211.987000;0 +20260205 193100;211.988000;212.006000;211.954000;211.968000;0 +20260205 193200;211.972000;211.994000;211.972000;211.994000;0 +20260205 193300;211.988000;212.011000;211.978000;212.007000;0 +20260205 193400;212.005000;212.005000;211.975000;211.978000;0 +20260205 193500;211.979000;212.054000;211.979000;212.048000;0 +20260205 193600;212.049000;212.066000;212.014000;212.017000;0 +20260205 193700;212.021000;212.021000;211.981000;211.991000;0 +20260205 193800;211.991000;211.994000;211.969000;211.978000;0 +20260205 193900;211.982000;212.010000;211.964000;211.964000;0 +20260205 194000;211.961000;212.037000;211.961000;212.028000;0 +20260205 194100;212.028000;212.038000;211.993000;212.004000;0 +20260205 194200;212.002000;212.036000;211.991000;212.027000;0 +20260205 194300;212.027000;212.085000;212.027000;212.039000;0 +20260205 194400;212.039000;212.039000;211.973000;212.004000;0 +20260205 194500;212.001000;212.033000;212.000000;212.017000;0 +20260205 194600;212.019000;212.051000;211.984000;211.984000;0 +20260205 194700;211.983000;211.986000;211.919000;211.919000;0 +20260205 194800;211.923000;211.958000;211.923000;211.957000;0 +20260205 194900;211.955000;211.980000;211.954000;211.978000;0 +20260205 195000;211.976000;212.023000;211.976000;211.992000;0 +20260205 195100;211.996000;212.001000;211.957000;211.963000;0 +20260205 195200;211.965000;211.971000;211.916000;211.917000;0 +20260205 195300;211.913000;211.931000;211.875000;211.904000;0 +20260205 195400;211.903000;212.020000;211.900000;211.981000;0 +20260205 195500;211.986000;211.986000;211.925000;211.944000;0 +20260205 195600;211.942000;211.983000;211.939000;211.957000;0 +20260205 195700;211.955000;211.971000;211.932000;211.932000;0 +20260205 195800;211.933000;211.982000;211.915000;211.967000;0 +20260205 195900;211.970000;211.990000;211.932000;211.941000;0 +20260205 200000;211.938000;211.974000;211.914000;211.951000;0 +20260205 200100;211.952000;211.989000;211.936000;211.965000;0 +20260205 200200;211.962000;212.043000;211.947000;212.035000;0 +20260205 200300;212.029000;212.081000;212.014000;212.048000;0 +20260205 200400;212.054000;212.079000;212.027000;212.042000;0 +20260205 200500;212.041000;212.049000;212.004000;212.024000;0 +20260205 200600;212.026000;212.037000;212.009000;212.015000;0 +20260205 200700;212.017000;212.022000;211.954000;211.956000;0 +20260205 200800;211.963000;212.013000;211.960000;211.985000;0 +20260205 200900;211.987000;212.011000;211.961000;211.984000;0 +20260205 201000;211.985000;211.994000;211.952000;211.956000;0 +20260205 201100;211.958000;211.984000;211.930000;211.984000;0 +20260205 201200;211.989000;212.025000;211.981000;212.019000;0 +20260205 201300;212.020000;212.021000;211.998000;212.019000;0 +20260205 201400;212.018000;212.018000;211.961000;211.963000;0 +20260205 201500;211.963000;212.013000;211.960000;211.990000;0 +20260205 201600;211.988000;211.988000;211.939000;211.949000;0 +20260205 201700;211.949000;211.949000;211.899000;211.936000;0 +20260205 201800;211.937000;211.937000;211.853000;211.868000;0 +20260205 201900;211.868000;211.880000;211.846000;211.858000;0 +20260205 202000;211.857000;211.922000;211.851000;211.914000;0 +20260205 202100;211.913000;211.913000;211.877000;211.877000;0 +20260205 202200;211.877000;211.902000;211.839000;211.844000;0 +20260205 202300;211.842000;211.876000;211.840000;211.858000;0 +20260205 202400;211.858000;211.862000;211.792000;211.832000;0 +20260205 202500;211.834000;211.855000;211.830000;211.850000;0 +20260205 202600;211.851000;211.864000;211.825000;211.827000;0 +20260205 202700;211.825000;211.840000;211.798000;211.838000;0 +20260205 202800;211.838000;211.863000;211.835000;211.841000;0 +20260205 202900;211.840000;211.846000;211.818000;211.818000;0 +20260205 203000;211.820000;211.879000;211.820000;211.859000;0 +20260205 203100;211.861000;211.867000;211.757000;211.826000;0 +20260205 203200;211.825000;211.871000;211.819000;211.821000;0 +20260205 203300;211.818000;211.872000;211.804000;211.856000;0 +20260205 203400;211.854000;211.892000;211.852000;211.868000;0 +20260205 203500;211.868000;211.942000;211.863000;211.926000;0 +20260205 203600;211.914000;211.946000;211.914000;211.922000;0 +20260205 203700;211.921000;211.972000;211.921000;211.970000;0 +20260205 203800;211.971000;211.974000;211.951000;211.970000;0 +20260205 203900;211.966000;211.996000;211.966000;211.981000;0 +20260205 204000;211.984000;211.986000;211.927000;211.954000;0 +20260205 204100;211.952000;211.965000;211.944000;211.947000;0 +20260205 204200;211.946000;211.969000;211.921000;211.931000;0 +20260205 204300;211.929000;211.951000;211.913000;211.947000;0 +20260205 204400;211.945000;211.992000;211.928000;211.986000;0 +20260205 204500;211.984000;212.013000;211.984000;212.010000;0 +20260205 204600;212.012000;212.037000;211.995000;211.997000;0 +20260205 204700;211.998000;212.015000;211.977000;212.005000;0 +20260205 204800;212.002000;212.029000;212.002000;212.019000;0 +20260205 204900;212.020000;212.022000;211.983000;211.998000;0 +20260205 205000;211.998000;212.004000;211.985000;211.985000;0 +20260205 205100;211.985000;211.991000;211.972000;211.979000;0 +20260205 205200;211.984000;212.016000;211.982000;212.011000;0 +20260205 205300;212.011000;212.023000;211.998000;212.023000;0 +20260205 205400;212.022000;212.060000;212.011000;212.059000;0 +20260205 205500;212.059000;212.146000;212.056000;212.145000;0 +20260205 205600;212.145000;212.146000;212.120000;212.142000;0 +20260205 205700;212.141000;212.148000;212.113000;212.115000;0 +20260205 205800;212.116000;212.118000;212.077000;212.080000;0 +20260205 205900;212.080000;212.113000;212.076000;212.113000;0 +20260205 210000;212.111000;212.224000;212.102000;212.217000;0 +20260205 210100;212.217000;212.306000;212.215000;212.305000;0 +20260205 210200;212.305000;212.385000;212.303000;212.337000;0 +20260205 210300;212.337000;212.337000;212.296000;212.333000;0 +20260205 210400;212.333000;212.348000;212.320000;212.345000;0 +20260205 210500;212.348000;212.367000;212.286000;212.335000;0 +20260205 210600;212.334000;212.340000;212.265000;212.265000;0 +20260205 210700;212.267000;212.287000;212.255000;212.260000;0 +20260205 210800;212.271000;212.300000;212.258000;212.299000;0 +20260205 210900;212.299000;212.332000;212.292000;212.325000;0 +20260205 211000;212.325000;212.329000;212.302000;212.313000;0 +20260205 211100;212.313000;212.333000;212.289000;212.292000;0 +20260205 211200;212.292000;212.347000;212.292000;212.347000;0 +20260205 211300;212.346000;212.358000;212.341000;212.346000;0 +20260205 211400;212.350000;212.367000;212.329000;212.341000;0 +20260205 211500;212.344000;212.357000;212.326000;212.331000;0 +20260205 211600;212.333000;212.336000;212.308000;212.327000;0 +20260205 211700;212.331000;212.378000;212.328000;212.369000;0 +20260205 211800;212.375000;212.381000;212.329000;212.342000;0 +20260205 211900;212.336000;212.391000;212.327000;212.384000;0 +20260205 212000;212.386000;212.386000;212.364000;212.372000;0 +20260205 212100;212.372000;212.400000;212.367000;212.397000;0 +20260205 212200;212.397000;212.410000;212.360000;212.360000;0 +20260205 212300;212.361000;212.377000;212.352000;212.373000;0 +20260205 212400;212.371000;212.375000;212.344000;212.365000;0 +20260205 212500;212.362000;212.373000;212.355000;212.368000;0 +20260205 212600;212.372000;212.373000;212.355000;212.373000;0 +20260205 212700;212.376000;212.385000;212.345000;212.379000;0 +20260205 212800;212.379000;212.411000;212.379000;212.411000;0 +20260205 212900;212.412000;212.414000;212.396000;212.412000;0 +20260205 213000;212.416000;212.433000;212.375000;212.393000;0 +20260205 213100;212.393000;212.401000;212.377000;212.380000;0 +20260205 213200;212.381000;212.407000;212.376000;212.388000;0 +20260205 213300;212.389000;212.425000;212.383000;212.391000;0 +20260205 213400;212.389000;212.410000;212.383000;212.399000;0 +20260205 213500;212.399000;212.410000;212.375000;212.390000;0 +20260205 213600;212.390000;212.409000;212.386000;212.386000;0 +20260205 213700;212.383000;212.390000;212.378000;212.381000;0 +20260205 213800;212.381000;212.387000;212.368000;212.386000;0 +20260205 213900;212.387000;212.416000;212.375000;212.375000;0 +20260205 214000;212.374000;212.388000;212.374000;212.377000;0 +20260205 214100;212.375000;212.426000;212.375000;212.400000;0 +20260205 214200;212.400000;212.424000;212.398000;212.413000;0 +20260205 214300;212.413000;212.439000;212.399000;212.418000;0 +20260205 214400;212.423000;212.423000;212.385000;212.385000;0 +20260205 214500;212.386000;212.400000;212.369000;212.375000;0 +20260205 214600;212.374000;212.380000;212.340000;212.340000;0 +20260205 214700;212.342000;212.344000;212.316000;212.330000;0 +20260205 214800;212.327000;212.352000;212.324000;212.352000;0 +20260205 214900;212.351000;212.363000;212.340000;212.358000;0 +20260205 215000;212.357000;212.364000;212.337000;212.341000;0 +20260205 215100;212.341000;212.365000;212.341000;212.359000;0 +20260205 215200;212.359000;212.363000;212.340000;212.347000;0 +20260205 215300;212.348000;212.375000;212.348000;212.366000;0 +20260205 215400;212.369000;212.372000;212.351000;212.356000;0 +20260205 215500;212.356000;212.360000;212.349000;212.354000;0 +20260205 215600;212.354000;212.364000;212.347000;212.352000;0 +20260205 215700;212.352000;212.353000;212.297000;212.332000;0 +20260205 215800;212.333000;212.339000;212.307000;212.322000;0 +20260205 215900;212.321000;212.326000;212.297000;212.305000;0 +20260205 220000;212.303000;212.312000;212.284000;212.309000;0 +20260205 220100;212.310000;212.328000;212.293000;212.311000;0 +20260205 220200;212.312000;212.344000;212.312000;212.328000;0 +20260205 220300;212.327000;212.348000;212.319000;212.337000;0 +20260205 220400;212.335000;212.350000;212.319000;212.337000;0 +20260205 220500;212.336000;212.337000;212.310000;212.313000;0 +20260205 220600;212.315000;212.320000;212.285000;212.293000;0 +20260205 220700;212.301000;212.315000;212.299000;212.308000;0 +20260205 220800;212.307000;212.318000;212.286000;212.300000;0 +20260205 220900;212.298000;212.307000;212.276000;212.276000;0 +20260205 221000;212.277000;212.305000;212.273000;212.288000;0 +20260205 221100;212.289000;212.297000;212.273000;212.294000;0 +20260205 221200;212.293000;212.296000;212.289000;212.289000;0 +20260205 221300;212.289000;212.299000;212.274000;212.277000;0 +20260205 221400;212.276000;212.297000;212.273000;212.277000;0 +20260205 221500;212.275000;212.308000;212.275000;212.307000;0 +20260205 221600;212.307000;212.318000;212.301000;212.302000;0 +20260205 221700;212.301000;212.323000;212.301000;212.310000;0 +20260205 221800;212.309000;212.319000;212.293000;212.293000;0 +20260205 221900;212.294000;212.301000;212.284000;212.289000;0 +20260205 222000;212.292000;212.311000;212.292000;212.309000;0 +20260205 222100;212.308000;212.330000;212.308000;212.326000;0 +20260205 222200;212.326000;212.344000;212.319000;212.334000;0 +20260205 222300;212.337000;212.337000;212.299000;212.300000;0 +20260205 222400;212.305000;212.319000;212.292000;212.319000;0 +20260205 222500;212.316000;212.328000;212.309000;212.328000;0 +20260205 222600;212.329000;212.334000;212.322000;212.322000;0 +20260205 222700;212.322000;212.324000;212.300000;212.305000;0 +20260205 222800;212.305000;212.317000;212.303000;212.316000;0 +20260205 222900;212.315000;212.322000;212.308000;212.312000;0 +20260205 223000;212.312000;212.344000;212.306000;212.331000;0 +20260205 223100;212.329000;212.350000;212.319000;212.350000;0 +20260205 223200;212.353000;212.355000;212.309000;212.312000;0 +20260205 223300;212.312000;212.326000;212.301000;212.306000;0 +20260205 223400;212.305000;212.322000;212.304000;212.304000;0 +20260205 223500;212.305000;212.317000;212.303000;212.317000;0 +20260205 223600;212.319000;212.369000;212.315000;212.352000;0 +20260205 223700;212.351000;212.356000;212.322000;212.328000;0 +20260205 223800;212.328000;212.332000;212.314000;212.317000;0 +20260205 223900;212.315000;212.329000;212.286000;212.286000;0 +20260205 224000;212.286000;212.305000;212.243000;212.249000;0 +20260205 224100;212.256000;212.266000;212.246000;212.266000;0 +20260205 224200;212.268000;212.269000;212.242000;212.263000;0 +20260205 224300;212.265000;212.265000;212.218000;212.218000;0 +20260205 224400;212.218000;212.252000;212.218000;212.247000;0 +20260205 224500;212.247000;212.255000;212.236000;212.255000;0 +20260205 224600;212.253000;212.256000;212.236000;212.251000;0 +20260205 224700;212.253000;212.261000;212.251000;212.258000;0 +20260205 224800;212.261000;212.265000;212.250000;212.263000;0 +20260205 224900;212.264000;212.287000;212.264000;212.264000;0 +20260205 225000;212.261000;212.275000;212.259000;212.267000;0 +20260205 225100;212.270000;212.304000;212.270000;212.302000;0 +20260205 225200;212.302000;212.345000;212.292000;212.336000;0 +20260205 225300;212.337000;212.350000;212.325000;212.327000;0 +20260205 225400;212.325000;212.329000;212.318000;212.322000;0 +20260205 225500;212.324000;212.345000;212.307000;212.311000;0 +20260205 225600;212.309000;212.345000;212.307000;212.334000;0 +20260205 225700;212.334000;212.349000;212.323000;212.339000;0 +20260205 225800;212.350000;212.357000;212.335000;212.336000;0 +20260205 225900;212.337000;212.348000;212.316000;212.316000;0 +20260205 230000;212.319000;212.344000;212.291000;212.340000;0 +20260205 230100;212.341000;212.341000;212.320000;212.330000;0 +20260205 230200;212.333000;212.334000;212.316000;212.324000;0 +20260205 230300;212.326000;212.327000;212.323000;212.326000;0 +20260205 230400;212.327000;212.332000;212.306000;212.322000;0 +20260205 230500;212.320000;212.320000;212.314000;212.315000;0 +20260205 230600;212.316000;212.341000;212.314000;212.334000;0 +20260205 230700;212.332000;212.332000;212.304000;212.305000;0 +20260205 230800;212.306000;212.328000;212.306000;212.321000;0 +20260205 230900;212.319000;212.328000;212.306000;212.314000;0 +20260205 231000;212.316000;212.332000;212.316000;212.325000;0 +20260205 231100;212.328000;212.355000;212.328000;212.353000;0 +20260205 231200;212.354000;212.359000;212.338000;212.342000;0 +20260205 231300;212.340000;212.347000;212.332000;212.335000;0 +20260205 231400;212.337000;212.337000;212.300000;212.307000;0 +20260205 231500;212.305000;212.328000;212.304000;212.312000;0 +20260205 231600;212.315000;212.317000;212.311000;212.313000;0 +20260205 231700;212.311000;212.323000;212.311000;212.323000;0 +20260205 231800;212.324000;212.360000;212.324000;212.353000;0 +20260205 231900;212.349000;212.350000;212.330000;212.331000;0 +20260205 232000;212.330000;212.330000;212.304000;212.308000;0 +20260205 232100;212.308000;212.345000;212.307000;212.335000;0 +20260205 232200;212.334000;212.357000;212.334000;212.355000;0 +20260205 232300;212.356000;212.361000;212.345000;212.350000;0 +20260205 232400;212.348000;212.350000;212.336000;212.338000;0 +20260205 232500;212.335000;212.349000;212.317000;212.349000;0 +20260205 232600;212.347000;212.358000;212.330000;212.330000;0 +20260205 232700;212.330000;212.340000;212.316000;212.320000;0 +20260205 232800;212.323000;212.334000;212.322000;212.330000;0 +20260205 232900;212.330000;212.339000;212.316000;212.328000;0 +20260205 233000;212.324000;212.332000;212.289000;212.293000;0 +20260205 233100;212.294000;212.322000;212.294000;212.322000;0 +20260205 233200;212.323000;212.333000;212.305000;212.312000;0 +20260205 233300;212.309000;212.310000;212.283000;212.285000;0 +20260205 233400;212.288000;212.315000;212.284000;212.309000;0 +20260205 233500;212.307000;212.325000;212.302000;212.310000;0 +20260205 233600;212.311000;212.313000;212.291000;212.291000;0 +20260205 233700;212.291000;212.321000;212.284000;212.315000;0 +20260205 233800;212.315000;212.330000;212.296000;212.324000;0 +20260205 233900;212.324000;212.343000;212.321000;212.340000;0 +20260205 234000;212.343000;212.360000;212.340000;212.349000;0 +20260205 234100;212.347000;212.357000;212.320000;212.329000;0 +20260205 234200;212.323000;212.376000;212.323000;212.366000;0 +20260205 234300;212.366000;212.401000;212.366000;212.384000;0 +20260205 234400;212.386000;212.398000;212.377000;212.393000;0 +20260205 234500;212.390000;212.412000;212.388000;212.408000;0 +20260205 234600;212.409000;212.423000;212.391000;212.411000;0 +20260205 234700;212.411000;212.426000;212.391000;212.391000;0 +20260205 234800;212.391000;212.406000;212.386000;212.406000;0 +20260205 234900;212.406000;212.408000;212.382000;212.382000;0 +20260205 235000;212.383000;212.384000;212.370000;212.375000;0 +20260205 235100;212.373000;212.375000;212.355000;212.364000;0 +20260205 235200;212.368000;212.381000;212.358000;212.381000;0 +20260205 235300;212.378000;212.391000;212.349000;212.349000;0 +20260205 235400;212.349000;212.352000;212.337000;212.343000;0 +20260205 235500;212.342000;212.352000;212.329000;212.340000;0 +20260205 235600;212.341000;212.345000;212.326000;212.326000;0 +20260205 235700;212.327000;212.348000;212.321000;212.346000;0 +20260205 235800;212.345000;212.364000;212.336000;212.362000;0 +20260205 235900;212.365000;212.399000;212.362000;212.396000;0 +20260206 000000;212.396000;212.400000;212.364000;212.372000;0 +20260206 000100;212.372000;212.414000;212.367000;212.407000;0 +20260206 000200;212.407000;212.416000;212.394000;212.413000;0 +20260206 000300;212.411000;212.421000;212.392000;212.395000;0 +20260206 000400;212.396000;212.397000;212.362000;212.363000;0 +20260206 000500;212.361000;212.383000;212.351000;212.366000;0 +20260206 000600;212.368000;212.378000;212.364000;212.378000;0 +20260206 000700;212.376000;212.376000;212.359000;212.363000;0 +20260206 000800;212.360000;212.375000;212.360000;212.371000;0 +20260206 000900;212.369000;212.396000;212.357000;212.396000;0 +20260206 001000;212.394000;212.401000;212.385000;212.390000;0 +20260206 001100;212.390000;212.397000;212.389000;212.393000;0 +20260206 001200;212.392000;212.403000;212.392000;212.394000;0 +20260206 001300;212.397000;212.422000;212.397000;212.416000;0 +20260206 001400;212.416000;212.441000;212.414000;212.438000;0 +20260206 001500;212.435000;212.450000;212.434000;212.436000;0 +20260206 001600;212.432000;212.438000;212.418000;212.434000;0 +20260206 001700;212.436000;212.439000;212.418000;212.421000;0 +20260206 001800;212.419000;212.445000;212.411000;212.433000;0 +20260206 001900;212.435000;212.452000;212.433000;212.444000;0 +20260206 002000;212.446000;212.446000;212.414000;212.424000;0 +20260206 002100;212.426000;212.435000;212.408000;212.421000;0 +20260206 002200;212.427000;212.431000;212.422000;212.429000;0 +20260206 002300;212.427000;212.442000;212.420000;212.425000;0 +20260206 002400;212.423000;212.438000;212.402000;212.438000;0 +20260206 002500;212.435000;212.437000;212.411000;212.411000;0 +20260206 002600;212.411000;212.428000;212.410000;212.427000;0 +20260206 002700;212.425000;212.425000;212.406000;212.416000;0 +20260206 002800;212.422000;212.443000;212.413000;212.416000;0 +20260206 002900;212.425000;212.446000;212.420000;212.444000;0 +20260206 003000;212.444000;212.445000;212.434000;212.439000;0 +20260206 003100;212.440000;212.473000;212.439000;212.459000;0 +20260206 003200;212.459000;212.525000;212.459000;212.503000;0 +20260206 003300;212.504000;212.511000;212.465000;212.471000;0 +20260206 003400;212.473000;212.474000;212.454000;212.472000;0 +20260206 003500;212.475000;212.528000;212.475000;212.524000;0 +20260206 003600;212.525000;212.544000;212.518000;212.530000;0 +20260206 003700;212.532000;212.577000;212.517000;212.563000;0 +20260206 003800;212.566000;212.600000;212.566000;212.599000;0 +20260206 003900;212.596000;212.621000;212.589000;212.610000;0 +20260206 004000;212.614000;212.628000;212.606000;212.622000;0 +20260206 004100;212.623000;212.627000;212.605000;212.609000;0 +20260206 004200;212.613000;212.629000;212.607000;212.607000;0 +20260206 004300;212.604000;212.633000;212.594000;212.605000;0 +20260206 004400;212.603000;212.617000;212.595000;212.596000;0 +20260206 004500;212.595000;212.613000;212.572000;212.572000;0 +20260206 004600;212.574000;212.593000;212.548000;212.555000;0 +20260206 004700;212.555000;212.588000;212.553000;212.569000;0 +20260206 004800;212.568000;212.574000;212.553000;212.554000;0 +20260206 004900;212.555000;212.606000;212.553000;212.577000;0 +20260206 005000;212.575000;212.584000;212.563000;212.568000;0 +20260206 005100;212.573000;212.585000;212.573000;212.582000;0 +20260206 005200;212.578000;212.593000;212.565000;212.591000;0 +20260206 005300;212.595000;212.611000;212.578000;212.601000;0 +20260206 005400;212.600000;212.615000;212.597000;212.611000;0 +20260206 005500;212.611000;212.630000;212.606000;212.630000;0 +20260206 005600;212.629000;212.650000;212.616000;212.638000;0 +20260206 005700;212.641000;212.650000;212.635000;212.645000;0 +20260206 005800;212.647000;212.680000;212.647000;212.665000;0 +20260206 005900;212.662000;212.717000;212.662000;212.710000;0 +20260206 010000;212.704000;212.724000;212.696000;212.724000;0 +20260206 010100;212.723000;212.790000;212.723000;212.767000;0 +20260206 010200;212.767000;212.785000;212.767000;212.777000;0 +20260206 010300;212.777000;212.811000;212.768000;212.785000;0 +20260206 010400;212.783000;212.801000;212.775000;212.790000;0 +20260206 010500;212.790000;212.830000;212.779000;212.823000;0 +20260206 010600;212.813000;212.875000;212.813000;212.875000;0 +20260206 010700;212.879000;212.924000;212.879000;212.894000;0 +20260206 010800;212.893000;212.893000;212.850000;212.851000;0 +20260206 010900;212.859000;212.873000;212.839000;212.846000;0 +20260206 011000;212.846000;212.868000;212.825000;212.853000;0 +20260206 011100;212.854000;212.914000;212.843000;212.898000;0 +20260206 011200;212.897000;212.905000;212.883000;212.883000;0 +20260206 011300;212.883000;212.905000;212.877000;212.884000;0 +20260206 011400;212.882000;212.905000;212.869000;212.896000;0 +20260206 011500;212.894000;212.912000;212.885000;212.912000;0 +20260206 011600;212.913000;213.003000;212.909000;213.002000;0 +20260206 011700;213.003000;213.004000;212.973000;212.984000;0 +20260206 011800;212.976000;212.978000;212.934000;212.939000;0 +20260206 011900;212.939000;212.947000;212.925000;212.944000;0 +20260206 012000;212.946000;212.962000;212.940000;212.946000;0 +20260206 012100;212.948000;212.986000;212.936000;212.985000;0 +20260206 012200;212.984000;212.985000;212.952000;212.958000;0 +20260206 012300;212.955000;212.961000;212.935000;212.948000;0 +20260206 012400;212.950000;212.960000;212.934000;212.953000;0 +20260206 012500;212.955000;212.961000;212.917000;212.925000;0 +20260206 012600;212.926000;212.945000;212.912000;212.916000;0 +20260206 012700;212.916000;212.924000;212.894000;212.903000;0 +20260206 012800;212.907000;212.941000;212.907000;212.935000;0 +20260206 012900;212.931000;212.962000;212.930000;212.959000;0 +20260206 013000;212.958000;213.010000;212.952000;212.995000;0 +20260206 013100;212.997000;212.997000;212.959000;212.959000;0 +20260206 013200;212.958000;212.970000;212.907000;212.912000;0 +20260206 013300;212.911000;212.920000;212.864000;212.864000;0 +20260206 013400;212.866000;212.894000;212.861000;212.874000;0 +20260206 013500;212.876000;212.877000;212.824000;212.839000;0 +20260206 013600;212.839000;212.875000;212.834000;212.860000;0 +20260206 013700;212.861000;212.879000;212.860000;212.877000;0 +20260206 013800;212.874000;212.874000;212.836000;212.869000;0 +20260206 013900;212.870000;212.885000;212.865000;212.865000;0 +20260206 014000;212.870000;212.875000;212.852000;212.859000;0 +20260206 014100;212.861000;212.868000;212.851000;212.857000;0 +20260206 014200;212.858000;212.866000;212.828000;212.828000;0 +20260206 014300;212.832000;212.851000;212.829000;212.851000;0 +20260206 014400;212.850000;212.872000;212.830000;212.865000;0 +20260206 014500;212.866000;212.886000;212.856000;212.862000;0 +20260206 014600;212.862000;212.869000;212.845000;212.850000;0 +20260206 014700;212.848000;212.859000;212.819000;212.822000;0 +20260206 014800;212.821000;212.861000;212.821000;212.839000;0 +20260206 014900;212.839000;212.847000;212.798000;212.802000;0 +20260206 015000;212.801000;212.824000;212.793000;212.809000;0 +20260206 015100;212.809000;212.832000;212.807000;212.827000;0 +20260206 015200;212.827000;212.830000;212.797000;212.798000;0 +20260206 015300;212.797000;212.798000;212.762000;212.765000;0 +20260206 015400;212.765000;212.819000;212.765000;212.816000;0 +20260206 015500;212.814000;212.816000;212.776000;212.778000;0 +20260206 015600;212.775000;212.791000;212.749000;212.758000;0 +20260206 015700;212.762000;212.803000;212.746000;212.803000;0 +20260206 015800;212.801000;212.815000;212.783000;212.797000;0 +20260206 015900;212.800000;212.802000;212.768000;212.774000;0 +20260206 020000;212.774000;212.789000;212.702000;212.742000;0 +20260206 020100;212.739000;212.754000;212.704000;212.723000;0 +20260206 020200;212.721000;212.741000;212.708000;212.734000;0 +20260206 020300;212.737000;212.746000;212.695000;212.700000;0 +20260206 020400;212.698000;212.708000;212.660000;212.667000;0 +20260206 020500;212.672000;212.686000;212.657000;212.674000;0 +20260206 020600;212.674000;212.720000;212.673000;212.709000;0 +20260206 020700;212.706000;212.706000;212.673000;212.674000;0 +20260206 020800;212.673000;212.685000;212.655000;212.659000;0 +20260206 020900;212.658000;212.658000;212.591000;212.591000;0 +20260206 021000;212.589000;212.599000;212.560000;212.570000;0 +20260206 021100;212.572000;212.598000;212.564000;212.573000;0 +20260206 021200;212.570000;212.584000;212.537000;212.538000;0 +20260206 021300;212.539000;212.557000;212.539000;212.554000;0 +20260206 021400;212.561000;212.566000;212.527000;212.541000;0 +20260206 021500;212.550000;212.626000;212.550000;212.624000;0 +20260206 021600;212.625000;212.658000;212.615000;212.654000;0 +20260206 021700;212.655000;212.690000;212.650000;212.678000;0 +20260206 021800;212.681000;212.683000;212.654000;212.655000;0 +20260206 021900;212.654000;212.663000;212.626000;212.633000;0 +20260206 022000;212.631000;212.695000;212.631000;212.692000;0 +20260206 022100;212.690000;212.730000;212.686000;212.720000;0 +20260206 022200;212.721000;212.776000;212.717000;212.776000;0 +20260206 022300;212.776000;212.882000;212.776000;212.864000;0 +20260206 022400;212.863000;212.863000;212.795000;212.850000;0 +20260206 022500;212.846000;212.870000;212.827000;212.859000;0 +20260206 022600;212.853000;212.863000;212.825000;212.856000;0 +20260206 022700;212.855000;212.856000;212.814000;212.827000;0 +20260206 022800;212.826000;212.874000;212.821000;212.858000;0 +20260206 022900;212.861000;212.861000;212.793000;212.796000;0 +20260206 023000;212.794000;212.810000;212.767000;212.808000;0 +20260206 023100;212.794000;212.816000;212.789000;212.815000;0 +20260206 023200;212.811000;212.833000;212.806000;212.819000;0 +20260206 023300;212.818000;212.844000;212.809000;212.814000;0 +20260206 023400;212.813000;212.820000;212.791000;212.815000;0 +20260206 023500;212.816000;212.838000;212.808000;212.835000;0 +20260206 023600;212.834000;212.848000;212.798000;212.817000;0 +20260206 023700;212.816000;212.820000;212.788000;212.788000;0 +20260206 023800;212.793000;212.794000;212.748000;212.768000;0 +20260206 023900;212.767000;212.781000;212.741000;212.743000;0 +20260206 024000;212.745000;212.745000;212.701000;212.724000;0 +20260206 024100;212.727000;212.746000;212.722000;212.744000;0 +20260206 024200;212.740000;212.765000;212.733000;212.761000;0 +20260206 024300;212.759000;212.759000;212.711000;212.711000;0 +20260206 024400;212.712000;212.752000;212.712000;212.749000;0 +20260206 024500;212.749000;212.809000;212.749000;212.802000;0 +20260206 024600;212.803000;212.806000;212.773000;212.773000;0 +20260206 024700;212.773000;212.783000;212.769000;212.775000;0 +20260206 024800;212.768000;212.809000;212.768000;212.783000;0 +20260206 024900;212.782000;212.794000;212.770000;212.789000;0 +20260206 025000;212.788000;212.791000;212.755000;212.762000;0 +20260206 025100;212.762000;212.820000;212.759000;212.818000;0 +20260206 025200;212.818000;212.824000;212.784000;212.807000;0 +20260206 025300;212.807000;212.853000;212.792000;212.853000;0 +20260206 025400;212.853000;212.857000;212.842000;212.842000;0 +20260206 025500;212.842000;212.842000;212.812000;212.827000;0 +20260206 025600;212.829000;212.833000;212.794000;212.805000;0 +20260206 025700;212.802000;212.810000;212.792000;212.803000;0 +20260206 025800;212.816000;212.835000;212.811000;212.833000;0 +20260206 025900;212.833000;212.840000;212.818000;212.837000;0 +20260206 030000;212.835000;212.835000;212.765000;212.769000;0 +20260206 030100;212.772000;212.856000;212.765000;212.815000;0 +20260206 030200;212.815000;212.861000;212.802000;212.846000;0 +20260206 030300;212.847000;212.865000;212.809000;212.858000;0 +20260206 030400;212.854000;212.866000;212.801000;212.830000;0 +20260206 030500;212.831000;212.865000;212.795000;212.795000;0 +20260206 030600;212.798000;212.819000;212.790000;212.790000;0 +20260206 030700;212.790000;212.806000;212.772000;212.772000;0 +20260206 030800;212.773000;212.815000;212.760000;212.796000;0 +20260206 030900;212.796000;212.812000;212.755000;212.777000;0 +20260206 031000;212.778000;212.820000;212.760000;212.809000;0 +20260206 031100;212.813000;212.824000;212.779000;212.804000;0 +20260206 031200;212.808000;212.866000;212.808000;212.863000;0 +20260206 031300;212.862000;212.916000;212.854000;212.895000;0 +20260206 031400;212.897000;212.899000;212.848000;212.849000;0 +20260206 031500;212.848000;212.900000;212.823000;212.873000;0 +20260206 031600;212.876000;212.889000;212.835000;212.837000;0 +20260206 031700;212.836000;212.851000;212.790000;212.790000;0 +20260206 031800;212.788000;212.804000;212.778000;212.793000;0 +20260206 031900;212.792000;212.793000;212.746000;212.755000;0 +20260206 032000;212.753000;212.823000;212.747000;212.818000;0 +20260206 032100;212.816000;212.821000;212.777000;212.777000;0 +20260206 032200;212.773000;212.774000;212.753000;212.762000;0 +20260206 032300;212.762000;212.794000;212.757000;212.760000;0 +20260206 032400;212.757000;212.772000;212.735000;212.767000;0 +20260206 032500;212.766000;212.802000;212.762000;212.783000;0 +20260206 032600;212.785000;212.787000;212.736000;212.757000;0 +20260206 032700;212.757000;212.757000;212.695000;212.712000;0 +20260206 032800;212.713000;212.745000;212.683000;212.695000;0 +20260206 032900;212.698000;212.717000;212.690000;212.711000;0 +20260206 033000;212.711000;212.746000;212.704000;212.743000;0 +20260206 033100;212.742000;212.781000;212.733000;212.767000;0 +20260206 033200;212.765000;212.785000;212.749000;212.774000;0 +20260206 033300;212.773000;212.773000;212.740000;212.742000;0 +20260206 033400;212.743000;212.764000;212.733000;212.751000;0 +20260206 033500;212.751000;212.755000;212.727000;212.746000;0 +20260206 033600;212.745000;212.787000;212.743000;212.763000;0 +20260206 033700;212.765000;212.801000;212.756000;212.780000;0 +20260206 033800;212.777000;212.830000;212.777000;212.809000;0 +20260206 033900;212.811000;212.814000;212.793000;212.808000;0 +20260206 034000;212.806000;212.806000;212.777000;212.778000;0 +20260206 034100;212.776000;212.779000;212.754000;212.774000;0 +20260206 034200;212.775000;212.788000;212.753000;212.757000;0 +20260206 034300;212.754000;212.756000;212.733000;212.738000;0 +20260206 034400;212.737000;212.767000;212.736000;212.756000;0 +20260206 034500;212.758000;212.771000;212.730000;212.755000;0 +20260206 034600;212.756000;212.776000;212.755000;212.758000;0 +20260206 034700;212.758000;212.771000;212.742000;212.742000;0 +20260206 034800;212.742000;212.747000;212.716000;212.726000;0 +20260206 034900;212.725000;212.759000;212.717000;212.759000;0 +20260206 035000;212.758000;212.803000;212.746000;212.791000;0 +20260206 035100;212.791000;212.811000;212.777000;212.801000;0 +20260206 035200;212.803000;212.871000;212.798000;212.855000;0 +20260206 035300;212.856000;212.926000;212.825000;212.920000;0 +20260206 035400;212.921000;212.927000;212.895000;212.917000;0 +20260206 035500;212.920000;212.953000;212.920000;212.921000;0 +20260206 035600;212.921000;212.947000;212.905000;212.946000;0 +20260206 035700;212.943000;212.988000;212.937000;212.986000;0 +20260206 035800;212.988000;212.994000;212.974000;212.983000;0 +20260206 035900;212.984000;212.994000;212.967000;212.994000;0 +20260206 040000;212.993000;213.051000;212.993000;213.048000;0 +20260206 040100;213.050000;213.101000;213.022000;213.099000;0 +20260206 040200;213.099000;213.132000;213.087000;213.123000;0 +20260206 040300;213.123000;213.124000;213.051000;213.089000;0 +20260206 040400;213.089000;213.089000;213.057000;213.063000;0 +20260206 040500;213.063000;213.078000;213.037000;213.075000;0 +20260206 040600;213.074000;213.089000;213.055000;213.065000;0 +20260206 040700;213.069000;213.079000;213.056000;213.076000;0 +20260206 040800;213.078000;213.125000;213.075000;213.118000;0 +20260206 040900;213.114000;213.133000;213.095000;213.121000;0 +20260206 041000;213.122000;213.122000;213.077000;213.090000;0 +20260206 041100;213.088000;213.097000;213.064000;213.077000;0 +20260206 041200;213.080000;213.099000;213.076000;213.091000;0 +20260206 041300;213.088000;213.089000;213.061000;213.075000;0 +20260206 041400;213.069000;213.081000;213.061000;213.070000;0 +20260206 041500;213.069000;213.082000;213.041000;213.082000;0 +20260206 041600;213.079000;213.124000;213.057000;213.105000;0 +20260206 041700;213.104000;213.118000;213.096000;213.105000;0 +20260206 041800;213.102000;213.107000;213.057000;213.084000;0 +20260206 041900;213.079000;213.142000;213.057000;213.139000;0 +20260206 042000;213.140000;213.150000;213.115000;213.150000;0 +20260206 042100;213.154000;213.179000;213.128000;213.162000;0 +20260206 042200;213.163000;213.167000;213.126000;213.126000;0 +20260206 042300;213.126000;213.138000;213.106000;213.137000;0 +20260206 042400;213.136000;213.142000;213.107000;213.125000;0 +20260206 042500;213.125000;213.145000;213.118000;213.126000;0 +20260206 042600;213.140000;213.156000;213.128000;213.148000;0 +20260206 042700;213.150000;213.174000;213.145000;213.164000;0 +20260206 042800;213.164000;213.167000;213.147000;213.154000;0 +20260206 042900;213.147000;213.170000;213.139000;213.156000;0 +20260206 043000;213.156000;213.218000;213.156000;213.186000;0 +20260206 043100;213.189000;213.221000;213.186000;213.208000;0 +20260206 043200;213.208000;213.245000;213.208000;213.212000;0 +20260206 043300;213.212000;213.234000;213.201000;213.229000;0 +20260206 043400;213.229000;213.260000;213.220000;213.233000;0 +20260206 043500;213.232000;213.250000;213.206000;213.210000;0 +20260206 043600;213.210000;213.248000;213.205000;213.247000;0 +20260206 043700;213.246000;213.246000;213.193000;213.193000;0 +20260206 043800;213.195000;213.200000;213.176000;213.189000;0 +20260206 043900;213.191000;213.213000;213.150000;213.150000;0 +20260206 044000;213.149000;213.160000;213.113000;213.126000;0 +20260206 044100;213.126000;213.164000;213.123000;213.163000;0 +20260206 044200;213.163000;213.194000;213.159000;213.193000;0 +20260206 044300;213.193000;213.226000;213.175000;213.226000;0 +20260206 044400;213.229000;213.247000;213.210000;213.247000;0 +20260206 044500;213.246000;213.266000;213.237000;213.258000;0 +20260206 044600;213.259000;213.285000;213.235000;213.240000;0 +20260206 044700;213.242000;213.245000;213.175000;213.178000;0 +20260206 044800;213.180000;213.215000;213.180000;213.199000;0 +20260206 044900;213.202000;213.212000;213.187000;213.206000;0 +20260206 045000;213.207000;213.220000;213.191000;213.207000;0 +20260206 045100;213.205000;213.238000;213.188000;213.214000;0 +20260206 045200;213.214000;213.220000;213.187000;213.189000;0 +20260206 045300;213.188000;213.227000;213.187000;213.227000;0 +20260206 045400;213.229000;213.263000;213.225000;213.259000;0 +20260206 045500;213.258000;213.264000;213.251000;213.257000;0 +20260206 045600;213.255000;213.256000;213.212000;213.227000;0 +20260206 045700;213.226000;213.241000;213.216000;213.224000;0 +20260206 045800;213.224000;213.245000;213.208000;213.213000;0 +20260206 045900;213.213000;213.228000;213.196000;213.224000;0 +20260206 050000;213.226000;213.273000;213.226000;213.273000;0 +20260206 050100;213.272000;213.273000;213.239000;213.243000;0 +20260206 050200;213.244000;213.267000;213.242000;213.247000;0 +20260206 050300;213.249000;213.257000;213.240000;213.256000;0 +20260206 050400;213.256000;213.270000;213.249000;213.268000;0 +20260206 050500;213.267000;213.281000;213.258000;213.279000;0 +20260206 050600;213.283000;213.295000;213.260000;213.260000;0 +20260206 050700;213.262000;213.265000;213.253000;213.262000;0 +20260206 050800;213.262000;213.262000;213.240000;213.245000;0 +20260206 050900;213.248000;213.273000;213.230000;213.266000;0 +20260206 051000;213.269000;213.274000;213.251000;213.263000;0 +20260206 051100;213.262000;213.269000;213.251000;213.265000;0 +20260206 051200;213.266000;213.271000;213.257000;213.268000;0 +20260206 051300;213.268000;213.288000;213.264000;213.278000;0 +20260206 051400;213.276000;213.282000;213.223000;213.246000;0 +20260206 051500;213.245000;213.251000;213.208000;213.209000;0 +20260206 051600;213.210000;213.227000;213.210000;213.226000;0 +20260206 051700;213.225000;213.245000;213.224000;213.243000;0 +20260206 051800;213.242000;213.251000;213.215000;213.249000;0 +20260206 051900;213.250000;213.254000;213.210000;213.212000;0 +20260206 052000;213.215000;213.223000;213.198000;213.207000;0 +20260206 052100;213.206000;213.206000;213.171000;213.173000;0 +20260206 052200;213.174000;213.193000;213.174000;213.190000;0 +20260206 052300;213.188000;213.188000;213.136000;213.153000;0 +20260206 052400;213.152000;213.189000;213.152000;213.183000;0 +20260206 052500;213.183000;213.184000;213.166000;213.170000;0 +20260206 052600;213.170000;213.170000;213.119000;213.122000;0 +20260206 052700;213.130000;213.130000;213.077000;213.080000;0 +20260206 052800;213.079000;213.080000;213.067000;213.071000;0 +20260206 052900;213.071000;213.086000;213.058000;213.059000;0 +20260206 053000;213.057000;213.067000;213.045000;213.065000;0 +20260206 053100;213.067000;213.069000;213.047000;213.047000;0 +20260206 053200;213.045000;213.059000;213.043000;213.055000;0 +20260206 053300;213.055000;213.069000;213.047000;213.066000;0 +20260206 053400;213.076000;213.082000;213.066000;213.073000;0 +20260206 053500;213.074000;213.082000;213.048000;213.055000;0 +20260206 053600;213.056000;213.077000;213.050000;213.070000;0 +20260206 053700;213.074000;213.074000;213.047000;213.049000;0 +20260206 053800;213.047000;213.069000;213.047000;213.058000;0 +20260206 053900;213.057000;213.064000;213.050000;213.060000;0 +20260206 054000;213.054000;213.056000;213.037000;213.043000;0 +20260206 054100;213.045000;213.049000;213.031000;213.040000;0 +20260206 054200;213.039000;213.043000;213.026000;213.043000;0 +20260206 054300;213.042000;213.059000;213.038000;213.047000;0 +20260206 054400;213.048000;213.049000;213.042000;213.046000;0 +20260206 054500;213.045000;213.047000;213.014000;213.016000;0 +20260206 054600;213.010000;213.017000;212.998000;213.005000;0 +20260206 054700;213.003000;213.014000;212.997000;213.007000;0 +20260206 054800;213.009000;213.025000;213.005000;213.006000;0 +20260206 054900;213.005000;213.056000;213.000000;213.054000;0 +20260206 055000;213.053000;213.055000;213.036000;213.037000;0 +20260206 055100;213.036000;213.044000;213.026000;213.042000;0 +20260206 055200;213.043000;213.064000;213.036000;213.056000;0 +20260206 055300;213.054000;213.071000;213.047000;213.066000;0 +20260206 055400;213.067000;213.089000;213.066000;213.085000;0 +20260206 055500;213.090000;213.137000;213.088000;213.136000;0 +20260206 055600;213.135000;213.135000;213.104000;213.110000;0 +20260206 055700;213.114000;213.136000;213.103000;213.111000;0 +20260206 055800;213.107000;213.117000;213.099000;213.117000;0 +20260206 055900;213.115000;213.126000;213.091000;213.091000;0 +20260206 060000;213.090000;213.154000;213.086000;213.150000;0 +20260206 060100;213.153000;213.164000;213.131000;213.151000;0 +20260206 060200;213.149000;213.191000;213.149000;213.186000;0 +20260206 060300;213.183000;213.207000;213.167000;213.198000;0 +20260206 060400;213.205000;213.226000;213.196000;213.215000;0 +20260206 060500;213.211000;213.212000;213.170000;213.184000;0 +20260206 060600;213.184000;213.186000;213.144000;213.151000;0 +20260206 060700;213.155000;213.164000;213.148000;213.162000;0 +20260206 060800;213.165000;213.186000;213.161000;213.184000;0 +20260206 060900;213.185000;213.242000;213.180000;213.239000;0 +20260206 061000;213.237000;213.268000;213.231000;213.267000;0 +20260206 061100;213.265000;213.291000;213.251000;213.288000;0 +20260206 061200;213.290000;213.308000;213.270000;213.277000;0 +20260206 061300;213.274000;213.306000;213.274000;213.294000;0 +20260206 061400;213.290000;213.335000;213.290000;213.327000;0 +20260206 061500;213.329000;213.330000;213.294000;213.306000;0 +20260206 061600;213.303000;213.361000;213.297000;213.352000;0 +20260206 061700;213.352000;213.354000;213.309000;213.320000;0 +20260206 061800;213.320000;213.320000;213.297000;213.299000;0 +20260206 061900;213.296000;213.391000;213.296000;213.391000;0 +20260206 062000;213.391000;213.402000;213.372000;213.396000;0 +20260206 062100;213.391000;213.402000;213.376000;213.391000;0 +20260206 062200;213.394000;213.418000;213.371000;213.371000;0 +20260206 062300;213.371000;213.406000;213.371000;213.399000;0 +20260206 062400;213.399000;213.434000;213.390000;213.421000;0 +20260206 062500;213.429000;213.429000;213.384000;213.393000;0 +20260206 062600;213.394000;213.421000;213.392000;213.392000;0 +20260206 062700;213.385000;213.398000;213.374000;213.394000;0 +20260206 062800;213.394000;213.421000;213.392000;213.417000;0 +20260206 062900;213.416000;213.431000;213.407000;213.410000;0 +20260206 063000;213.410000;213.469000;213.409000;213.444000;0 +20260206 063100;213.438000;213.458000;213.421000;213.421000;0 +20260206 063200;213.421000;213.429000;213.408000;213.422000;0 +20260206 063300;213.426000;213.427000;213.412000;213.419000;0 +20260206 063400;213.417000;213.426000;213.408000;213.415000;0 +20260206 063500;213.417000;213.442000;213.410000;213.421000;0 +20260206 063600;213.418000;213.422000;213.406000;213.417000;0 +20260206 063700;213.417000;213.417000;213.383000;213.386000;0 +20260206 063800;213.385000;213.399000;213.366000;213.380000;0 +20260206 063900;213.381000;213.393000;213.361000;213.361000;0 +20260206 064000;213.364000;213.390000;213.354000;213.385000;0 +20260206 064100;213.388000;213.394000;213.380000;213.391000;0 +20260206 064200;213.390000;213.426000;213.389000;213.423000;0 +20260206 064300;213.424000;213.442000;213.417000;213.442000;0 +20260206 064400;213.442000;213.468000;213.436000;213.458000;0 +20260206 064500;213.457000;213.457000;213.413000;213.414000;0 +20260206 064600;213.413000;213.428000;213.408000;213.420000;0 +20260206 064700;213.415000;213.441000;213.409000;213.434000;0 +20260206 064800;213.436000;213.478000;213.436000;213.477000;0 +20260206 064900;213.473000;213.478000;213.450000;213.456000;0 +20260206 065000;213.457000;213.464000;213.410000;213.411000;0 +20260206 065100;213.412000;213.420000;213.399000;213.400000;0 +20260206 065200;213.404000;213.408000;213.366000;213.367000;0 +20260206 065300;213.368000;213.396000;213.366000;213.383000;0 +20260206 065400;213.392000;213.418000;213.386000;213.409000;0 +20260206 065500;213.408000;213.418000;213.395000;213.406000;0 +20260206 065600;213.403000;213.429000;213.403000;213.425000;0 +20260206 065700;213.423000;213.444000;213.344000;213.358000;0 +20260206 065800;213.359000;213.371000;213.333000;213.355000;0 +20260206 065900;213.353000;213.360000;213.326000;213.326000;0 +20260206 070000;213.324000;213.383000;213.314000;213.378000;0 +20260206 070100;213.376000;213.385000;213.350000;213.381000;0 +20260206 070200;213.382000;213.408000;213.373000;213.386000;0 +20260206 070300;213.384000;213.398000;213.364000;213.373000;0 +20260206 070400;213.371000;213.384000;213.362000;213.382000;0 +20260206 070500;213.384000;213.386000;213.362000;213.382000;0 +20260206 070600;213.381000;213.407000;213.368000;213.404000;0 +20260206 070700;213.404000;213.467000;213.404000;213.456000;0 +20260206 070800;213.456000;213.459000;213.423000;213.431000;0 +20260206 070900;213.433000;213.454000;213.423000;213.448000;0 +20260206 071000;213.445000;213.445000;213.400000;213.400000;0 +20260206 071100;213.402000;213.419000;213.390000;213.399000;0 +20260206 071200;213.403000;213.420000;213.391000;213.412000;0 +20260206 071300;213.414000;213.419000;213.369000;213.369000;0 +20260206 071400;213.369000;213.397000;213.369000;213.389000;0 +20260206 071500;213.389000;213.397000;213.359000;213.373000;0 +20260206 071600;213.374000;213.376000;213.353000;213.369000;0 +20260206 071700;213.372000;213.373000;213.341000;213.367000;0 +20260206 071800;213.365000;213.387000;213.357000;213.382000;0 +20260206 071900;213.382000;213.383000;213.355000;213.366000;0 +20260206 072000;213.365000;213.383000;213.352000;213.372000;0 +20260206 072100;213.373000;213.391000;213.366000;213.381000;0 +20260206 072200;213.379000;213.384000;213.357000;213.371000;0 +20260206 072300;213.383000;213.400000;213.381000;213.391000;0 +20260206 072400;213.400000;213.420000;213.400000;213.419000;0 +20260206 072500;213.416000;213.416000;213.385000;213.395000;0 +20260206 072600;213.396000;213.414000;213.388000;213.411000;0 +20260206 072700;213.415000;213.418000;213.388000;213.411000;0 +20260206 072800;213.413000;213.431000;213.412000;213.416000;0 +20260206 072900;213.414000;213.433000;213.407000;213.429000;0 +20260206 073000;213.429000;213.461000;213.424000;213.457000;0 +20260206 073100;213.459000;213.477000;213.450000;213.471000;0 +20260206 073200;213.470000;213.497000;213.465000;213.494000;0 +20260206 073300;213.493000;213.493000;213.449000;213.460000;0 +20260206 073400;213.453000;213.476000;213.442000;213.476000;0 +20260206 073500;213.477000;213.509000;213.470000;213.509000;0 +20260206 073600;213.508000;213.524000;213.492000;213.517000;0 +20260206 073700;213.518000;213.544000;213.511000;213.537000;0 +20260206 073800;213.536000;213.550000;213.525000;213.544000;0 +20260206 073900;213.541000;213.570000;213.541000;213.558000;0 +20260206 074000;213.559000;213.568000;213.533000;213.559000;0 +20260206 074100;213.559000;213.578000;213.553000;213.573000;0 +20260206 074200;213.573000;213.592000;213.570000;213.587000;0 +20260206 074300;213.587000;213.587000;213.549000;213.550000;0 +20260206 074400;213.546000;213.548000;213.504000;213.511000;0 +20260206 074500;213.512000;213.553000;213.494000;213.553000;0 +20260206 074600;213.553000;213.590000;213.553000;213.581000;0 +20260206 074700;213.582000;213.603000;213.578000;213.579000;0 +20260206 074800;213.577000;213.589000;213.577000;213.589000;0 +20260206 074900;213.589000;213.596000;213.564000;213.564000;0 +20260206 075000;213.564000;213.564000;213.533000;213.535000;0 +20260206 075100;213.534000;213.545000;213.513000;213.514000;0 +20260206 075200;213.514000;213.515000;213.488000;213.497000;0 +20260206 075300;213.499000;213.507000;213.471000;213.471000;0 +20260206 075400;213.472000;213.484000;213.453000;213.474000;0 +20260206 075500;213.477000;213.485000;213.461000;213.471000;0 +20260206 075600;213.472000;213.497000;213.471000;213.487000;0 +20260206 075700;213.484000;213.489000;213.456000;213.472000;0 +20260206 075800;213.468000;213.478000;213.449000;213.468000;0 +20260206 075900;213.471000;213.477000;213.444000;213.450000;0 +20260206 080000;213.448000;213.454000;213.420000;213.432000;0 +20260206 080100;213.431000;213.433000;213.400000;213.410000;0 +20260206 080200;213.410000;213.433000;213.410000;213.416000;0 +20260206 080300;213.416000;213.428000;213.395000;213.395000;0 +20260206 080400;213.396000;213.442000;213.393000;213.441000;0 +20260206 080500;213.441000;213.455000;213.438000;213.451000;0 +20260206 080600;213.452000;213.479000;213.452000;213.477000;0 +20260206 080700;213.479000;213.499000;213.459000;213.463000;0 +20260206 080800;213.466000;213.483000;213.461000;213.480000;0 +20260206 080900;213.483000;213.487000;213.464000;213.468000;0 +20260206 081000;213.467000;213.469000;213.428000;213.445000;0 +20260206 081100;213.444000;213.465000;213.426000;213.454000;0 +20260206 081200;213.453000;213.473000;213.437000;213.437000;0 +20260206 081300;213.437000;213.497000;213.433000;213.494000;0 +20260206 081400;213.489000;213.510000;213.487000;213.506000;0 +20260206 081500;213.511000;213.513000;213.485000;213.485000;0 +20260206 081600;213.490000;213.495000;213.454000;213.463000;0 +20260206 081700;213.462000;213.462000;213.449000;213.453000;0 +20260206 081800;213.453000;213.453000;213.415000;213.418000;0 +20260206 081900;213.420000;213.434000;213.420000;213.434000;0 +20260206 082000;213.442000;213.506000;213.439000;213.501000;0 +20260206 082100;213.495000;213.527000;213.465000;213.518000;0 +20260206 082200;213.517000;213.523000;213.494000;213.517000;0 +20260206 082300;213.521000;213.533000;213.496000;213.499000;0 +20260206 082400;213.500000;213.527000;213.495000;213.519000;0 +20260206 082500;213.523000;213.534000;213.481000;213.490000;0 +20260206 082600;213.488000;213.500000;213.476000;213.484000;0 +20260206 082700;213.483000;213.510000;213.483000;213.509000;0 +20260206 082800;213.514000;213.525000;213.501000;213.512000;0 +20260206 082900;213.511000;213.517000;213.479000;213.487000;0 +20260206 083000;213.490000;213.504000;213.468000;213.473000;0 +20260206 083100;213.474000;213.524000;213.474000;213.523000;0 +20260206 083200;213.523000;213.541000;213.504000;213.509000;0 +20260206 083300;213.512000;213.515000;213.482000;213.483000;0 +20260206 083400;213.483000;213.493000;213.455000;213.468000;0 +20260206 083500;213.468000;213.480000;213.449000;213.458000;0 +20260206 083600;213.455000;213.466000;213.430000;213.433000;0 +20260206 083700;213.435000;213.449000;213.377000;213.425000;0 +20260206 083800;213.424000;213.443000;213.407000;213.434000;0 +20260206 083900;213.430000;213.430000;213.368000;213.391000;0 +20260206 084000;213.391000;213.391000;213.358000;213.363000;0 +20260206 084100;213.364000;213.389000;213.355000;213.363000;0 +20260206 084200;213.364000;213.384000;213.337000;213.339000;0 +20260206 084300;213.340000;213.352000;213.306000;213.307000;0 +20260206 084400;213.311000;213.326000;213.270000;213.325000;0 +20260206 084500;213.326000;213.353000;213.326000;213.347000;0 +20260206 084600;213.346000;213.355000;213.303000;213.312000;0 +20260206 084700;213.311000;213.321000;213.305000;213.319000;0 +20260206 084800;213.316000;213.351000;213.312000;213.351000;0 +20260206 084900;213.351000;213.352000;213.258000;213.267000;0 +20260206 085000;213.276000;213.303000;213.223000;213.223000;0 +20260206 085100;213.224000;213.246000;213.217000;213.241000;0 +20260206 085200;213.242000;213.246000;213.147000;213.177000;0 +20260206 085300;213.179000;213.221000;213.144000;213.144000;0 +20260206 085400;213.145000;213.168000;213.113000;213.156000;0 +20260206 085500;213.156000;213.175000;213.143000;213.174000;0 +20260206 085600;213.177000;213.199000;213.167000;213.170000;0 +20260206 085700;213.169000;213.201000;213.156000;213.196000;0 +20260206 085800;213.196000;213.219000;213.155000;213.219000;0 +20260206 085900;213.220000;213.255000;213.209000;213.244000;0 +20260206 090000;213.244000;213.329000;213.235000;213.328000;0 +20260206 090100;213.327000;213.352000;213.313000;213.330000;0 +20260206 090200;213.328000;213.352000;213.325000;213.340000;0 +20260206 090300;213.339000;213.360000;213.305000;213.309000;0 +20260206 090400;213.314000;213.353000;213.304000;213.326000;0 +20260206 090500;213.332000;213.342000;213.289000;213.294000;0 +20260206 090600;213.293000;213.324000;213.272000;213.324000;0 +20260206 090700;213.326000;213.329000;213.300000;213.313000;0 +20260206 090800;213.314000;213.318000;213.265000;213.279000;0 +20260206 090900;213.281000;213.284000;213.212000;213.219000;0 +20260206 091000;213.219000;213.223000;213.169000;213.213000;0 +20260206 091100;213.213000;213.251000;213.209000;213.225000;0 +20260206 091200;213.227000;213.290000;213.227000;213.277000;0 +20260206 091300;213.277000;213.288000;213.260000;213.279000;0 +20260206 091400;213.277000;213.277000;213.246000;213.266000;0 +20260206 091500;213.266000;213.291000;213.260000;213.285000;0 +20260206 091600;213.288000;213.305000;213.279000;213.290000;0 +20260206 091700;213.292000;213.318000;213.270000;213.284000;0 +20260206 091800;213.283000;213.309000;213.272000;213.304000;0 +20260206 091900;213.304000;213.324000;213.297000;213.298000;0 +20260206 092000;213.301000;213.314000;213.285000;213.304000;0 +20260206 092100;213.303000;213.303000;213.254000;213.256000;0 +20260206 092200;213.255000;213.261000;213.225000;213.230000;0 +20260206 092300;213.229000;213.261000;213.229000;213.235000;0 +20260206 092400;213.234000;213.257000;213.222000;213.256000;0 +20260206 092500;213.255000;213.262000;213.237000;213.238000;0 +20260206 092600;213.240000;213.257000;213.234000;213.254000;0 +20260206 092700;213.256000;213.265000;213.242000;213.254000;0 +20260206 092800;213.254000;213.282000;213.250000;213.279000;0 +20260206 092900;213.279000;213.301000;213.274000;213.301000;0 +20260206 093000;213.291000;213.302000;213.252000;213.292000;0 +20260206 093100;213.294000;213.311000;213.274000;213.301000;0 +20260206 093200;213.299000;213.338000;213.288000;213.336000;0 +20260206 093300;213.335000;213.365000;213.329000;213.357000;0 +20260206 093400;213.358000;213.370000;213.323000;213.331000;0 +20260206 093500;213.329000;213.331000;213.291000;213.304000;0 +20260206 093600;213.304000;213.327000;213.285000;213.309000;0 +20260206 093700;213.308000;213.363000;213.292000;213.345000;0 +20260206 093800;213.343000;213.354000;213.303000;213.337000;0 +20260206 093900;213.335000;213.370000;213.327000;213.360000;0 +20260206 094000;213.369000;213.393000;213.312000;213.386000;0 +20260206 094100;213.385000;213.392000;213.340000;213.340000;0 +20260206 094200;213.342000;213.394000;213.311000;213.368000;0 +20260206 094300;213.366000;213.376000;213.328000;213.363000;0 +20260206 094400;213.367000;213.377000;213.350000;213.360000;0 +20260206 094500;213.359000;213.368000;213.341000;213.354000;0 +20260206 094600;213.353000;213.368000;213.327000;213.351000;0 +20260206 094700;213.353000;213.399000;213.350000;213.391000;0 +20260206 094800;213.394000;213.404000;213.371000;213.375000;0 +20260206 094900;213.378000;213.418000;213.366000;213.398000;0 +20260206 095000;213.399000;213.399000;213.379000;213.389000;0 +20260206 095100;213.389000;213.406000;213.377000;213.382000;0 +20260206 095200;213.385000;213.385000;213.333000;213.349000;0 +20260206 095300;213.345000;213.373000;213.340000;213.350000;0 +20260206 095400;213.350000;213.410000;213.350000;213.354000;0 +20260206 095500;213.355000;213.378000;213.331000;213.370000;0 +20260206 095600;213.371000;213.419000;213.354000;213.395000;0 +20260206 095700;213.395000;213.436000;213.375000;213.428000;0 +20260206 095800;213.427000;213.449000;213.422000;213.431000;0 +20260206 095900;213.432000;213.498000;213.417000;213.455000;0 +20260206 100000;213.464000;213.547000;213.460000;213.528000;0 +20260206 100100;213.528000;213.555000;213.511000;213.545000;0 +20260206 100200;213.547000;213.604000;213.534000;213.578000;0 +20260206 100300;213.576000;213.598000;213.565000;213.580000;0 +20260206 100400;213.579000;213.584000;213.523000;213.526000;0 +20260206 100500;213.527000;213.581000;213.520000;213.522000;0 +20260206 100600;213.522000;213.558000;213.498000;213.498000;0 +20260206 100700;213.499000;213.528000;213.492000;213.519000;0 +20260206 100800;213.523000;213.544000;213.486000;213.521000;0 +20260206 100900;213.519000;213.552000;213.512000;213.540000;0 +20260206 101000;213.537000;213.628000;213.537000;213.626000;0 +20260206 101100;213.627000;213.664000;213.615000;213.619000;0 +20260206 101200;213.621000;213.633000;213.586000;213.598000;0 +20260206 101300;213.597000;213.678000;213.577000;213.634000;0 +20260206 101400;213.634000;213.665000;213.584000;213.593000;0 +20260206 101500;213.596000;213.601000;213.555000;213.559000;0 +20260206 101600;213.558000;213.584000;213.514000;213.584000;0 +20260206 101700;213.583000;213.603000;213.547000;213.568000;0 +20260206 101800;213.569000;213.569000;213.527000;213.562000;0 +20260206 101900;213.567000;213.593000;213.550000;213.583000;0 +20260206 102000;213.582000;213.625000;213.573000;213.600000;0 +20260206 102100;213.598000;213.629000;213.597000;213.606000;0 +20260206 102200;213.606000;213.632000;213.599000;213.605000;0 +20260206 102300;213.607000;213.620000;213.548000;213.557000;0 +20260206 102400;213.561000;213.563000;213.519000;213.542000;0 +20260206 102500;213.542000;213.613000;213.537000;213.591000;0 +20260206 102600;213.582000;213.615000;213.566000;213.593000;0 +20260206 102700;213.593000;213.598000;213.555000;213.579000;0 +20260206 102800;213.580000;213.602000;213.575000;213.577000;0 +20260206 102900;213.576000;213.593000;213.568000;213.569000;0 +20260206 103000;213.570000;213.589000;213.555000;213.569000;0 +20260206 103100;213.573000;213.578000;213.517000;213.523000;0 +20260206 103200;213.526000;213.586000;213.507000;213.543000;0 +20260206 103300;213.542000;213.601000;213.536000;213.587000;0 +20260206 103400;213.586000;213.612000;213.586000;213.599000;0 +20260206 103500;213.599000;213.621000;213.585000;213.597000;0 +20260206 103600;213.595000;213.607000;213.565000;213.576000;0 +20260206 103700;213.575000;213.600000;213.575000;213.587000;0 +20260206 103800;213.587000;213.597000;213.584000;213.591000;0 +20260206 103900;213.590000;213.604000;213.541000;213.541000;0 +20260206 104000;213.542000;213.566000;213.512000;213.565000;0 +20260206 104100;213.563000;213.574000;213.524000;213.551000;0 +20260206 104200;213.550000;213.578000;213.540000;213.575000;0 +20260206 104300;213.576000;213.624000;213.575000;213.614000;0 +20260206 104400;213.613000;213.636000;213.577000;213.581000;0 +20260206 104500;213.576000;213.616000;213.576000;213.614000;0 +20260206 104600;213.610000;213.616000;213.584000;213.586000;0 +20260206 104700;213.585000;213.595000;213.562000;213.575000;0 +20260206 104800;213.568000;213.573000;213.542000;213.552000;0 +20260206 104900;213.554000;213.589000;213.532000;213.540000;0 +20260206 105000;213.542000;213.600000;213.525000;213.597000;0 +20260206 105100;213.597000;213.631000;213.538000;213.550000;0 +20260206 105200;213.552000;213.566000;213.530000;213.550000;0 +20260206 105300;213.550000;213.573000;213.540000;213.563000;0 +20260206 105400;213.561000;213.596000;213.547000;213.565000;0 +20260206 105500;213.564000;213.564000;213.518000;213.554000;0 +20260206 105600;213.555000;213.558000;213.504000;213.520000;0 +20260206 105700;213.519000;213.559000;213.513000;213.549000;0 +20260206 105800;213.552000;213.560000;213.512000;213.526000;0 +20260206 105900;213.524000;213.548000;213.516000;213.521000;0 +20260206 110000;213.527000;213.542000;213.509000;213.539000;0 +20260206 110100;213.540000;213.557000;213.505000;213.556000;0 +20260206 110200;213.562000;213.618000;213.547000;213.612000;0 +20260206 110300;213.612000;213.617000;213.581000;213.587000;0 +20260206 110400;213.587000;213.610000;213.572000;213.597000;0 +20260206 110500;213.606000;213.611000;213.568000;213.578000;0 +20260206 110600;213.580000;213.591000;213.563000;213.590000;0 +20260206 110700;213.589000;213.597000;213.556000;213.556000;0 +20260206 110800;213.558000;213.572000;213.547000;213.553000;0 +20260206 110900;213.554000;213.561000;213.544000;213.553000;0 +20260206 111000;213.556000;213.626000;213.556000;213.602000;0 +20260206 111100;213.601000;213.608000;213.568000;213.583000;0 +20260206 111200;213.586000;213.622000;213.579000;213.615000;0 +20260206 111300;213.617000;213.640000;213.595000;213.613000;0 +20260206 111400;213.610000;213.630000;213.603000;213.610000;0 +20260206 111500;213.611000;213.633000;213.597000;213.630000;0 +20260206 111600;213.628000;213.634000;213.607000;213.620000;0 +20260206 111700;213.621000;213.623000;213.609000;213.617000;0 +20260206 111800;213.618000;213.631000;213.593000;213.595000;0 +20260206 111900;213.592000;213.592000;213.536000;213.568000;0 +20260206 112000;213.567000;213.575000;213.533000;213.535000;0 +20260206 112100;213.535000;213.584000;213.526000;213.584000;0 +20260206 112200;213.582000;213.621000;213.571000;213.621000;0 +20260206 112300;213.619000;213.632000;213.601000;213.601000;0 +20260206 112400;213.599000;213.638000;213.581000;213.628000;0 +20260206 112500;213.624000;213.642000;213.596000;213.607000;0 +20260206 112600;213.606000;213.613000;213.587000;213.608000;0 +20260206 112700;213.610000;213.610000;213.584000;213.598000;0 +20260206 112800;213.599000;213.629000;213.596000;213.619000;0 +20260206 112900;213.620000;213.661000;213.620000;213.661000;0 +20260206 113000;213.661000;213.723000;213.659000;213.685000;0 +20260206 113100;213.685000;213.709000;213.685000;213.697000;0 +20260206 113200;213.698000;213.709000;213.678000;213.678000;0 +20260206 113300;213.680000;213.700000;213.645000;213.668000;0 +20260206 113400;213.670000;213.711000;213.664000;213.711000;0 +20260206 113500;213.713000;213.751000;213.711000;213.750000;0 +20260206 113600;213.749000;213.769000;213.735000;213.736000;0 +20260206 113700;213.736000;213.736000;213.697000;213.710000;0 +20260206 113800;213.711000;213.730000;213.695000;213.710000;0 +20260206 113900;213.712000;213.742000;213.704000;213.734000;0 +20260206 114000;213.730000;213.756000;213.730000;213.743000;0 +20260206 114100;213.744000;213.775000;213.733000;213.772000;0 +20260206 114200;213.771000;213.852000;213.759000;213.844000;0 +20260206 114300;213.844000;213.846000;213.811000;213.816000;0 +20260206 114400;213.816000;213.858000;213.801000;213.857000;0 +20260206 114500;213.857000;213.858000;213.835000;213.841000;0 +20260206 114600;213.841000;213.879000;213.841000;213.854000;0 +20260206 114700;213.856000;213.865000;213.835000;213.844000;0 +20260206 114800;213.846000;213.858000;213.834000;213.834000;0 +20260206 114900;213.832000;213.836000;213.785000;213.788000;0 +20260206 115000;213.784000;213.804000;213.770000;213.785000;0 +20260206 115100;213.787000;213.800000;213.787000;213.787000;0 +20260206 115200;213.787000;213.812000;213.781000;213.787000;0 +20260206 115300;213.788000;213.801000;213.766000;213.772000;0 +20260206 115400;213.773000;213.796000;213.761000;213.792000;0 +20260206 115500;213.788000;213.788000;213.733000;213.768000;0 +20260206 115600;213.770000;213.770000;213.742000;213.746000;0 +20260206 115700;213.745000;213.759000;213.709000;213.709000;0 +20260206 115800;213.714000;213.732000;213.707000;213.721000;0 +20260206 115900;213.720000;213.727000;213.706000;213.718000;0 +20260206 120000;213.720000;213.727000;213.698000;213.711000;0 +20260206 120100;213.712000;213.724000;213.711000;213.719000;0 +20260206 120200;213.727000;213.743000;213.719000;213.734000;0 +20260206 120300;213.734000;213.742000;213.714000;213.718000;0 +20260206 120400;213.716000;213.719000;213.709000;213.711000;0 +20260206 120500;213.714000;213.736000;213.714000;213.734000;0 +20260206 120600;213.735000;213.794000;213.732000;213.793000;0 +20260206 120700;213.798000;213.814000;213.793000;213.810000;0 +20260206 120800;213.811000;213.824000;213.802000;213.824000;0 +20260206 120900;213.825000;213.825000;213.807000;213.810000;0 +20260206 121000;213.811000;213.817000;213.807000;213.812000;0 +20260206 121100;213.809000;213.826000;213.799000;213.806000;0 +20260206 121200;213.804000;213.809000;213.751000;213.751000;0 +20260206 121300;213.750000;213.777000;213.745000;213.760000;0 +20260206 121400;213.758000;213.763000;213.727000;213.734000;0 +20260206 121500;213.736000;213.758000;213.735000;213.748000;0 +20260206 121600;213.750000;213.789000;213.747000;213.788000;0 +20260206 121700;213.785000;213.792000;213.763000;213.789000;0 +20260206 121800;213.788000;213.797000;213.777000;213.788000;0 +20260206 121900;213.786000;213.803000;213.780000;213.799000;0 +20260206 122000;213.800000;213.802000;213.771000;213.772000;0 +20260206 122100;213.774000;213.780000;213.765000;213.778000;0 +20260206 122200;213.775000;213.783000;213.753000;213.757000;0 +20260206 122300;213.758000;213.773000;213.754000;213.762000;0 +20260206 122400;213.759000;213.775000;213.751000;213.761000;0 +20260206 122500;213.764000;213.781000;213.754000;213.775000;0 +20260206 122600;213.775000;213.777000;213.772000;213.777000;0 +20260206 122700;213.776000;213.787000;213.767000;213.781000;0 +20260206 122800;213.780000;213.796000;213.724000;213.747000;0 +20260206 122900;213.742000;213.748000;213.732000;213.740000;0 +20260206 123000;213.741000;213.754000;213.724000;213.745000;0 +20260206 123100;213.746000;213.748000;213.702000;213.708000;0 +20260206 123200;213.707000;213.744000;213.707000;213.721000;0 +20260206 123300;213.723000;213.733000;213.717000;213.731000;0 +20260206 123400;213.732000;213.747000;213.728000;213.743000;0 +20260206 123500;213.741000;213.779000;213.729000;213.775000;0 +20260206 123600;213.774000;213.778000;213.716000;213.775000;0 +20260206 123700;213.775000;213.804000;213.761000;213.804000;0 +20260206 123800;213.806000;213.825000;213.791000;213.812000;0 +20260206 123900;213.810000;213.841000;213.806000;213.814000;0 +20260206 124000;213.812000;213.832000;213.805000;213.826000;0 +20260206 124100;213.825000;213.832000;213.806000;213.830000;0 +20260206 124200;213.832000;213.845000;213.820000;213.821000;0 +20260206 124300;213.821000;213.821000;213.789000;213.794000;0 +20260206 124400;213.795000;213.801000;213.774000;213.793000;0 +20260206 124500;213.792000;213.804000;213.784000;213.799000;0 +20260206 124600;213.797000;213.806000;213.779000;213.793000;0 +20260206 124700;213.793000;213.805000;213.786000;213.798000;0 +20260206 124800;213.804000;213.830000;213.803000;213.826000;0 +20260206 124900;213.828000;213.838000;213.820000;213.833000;0 +20260206 125000;213.836000;213.845000;213.819000;213.837000;0 +20260206 125100;213.835000;213.880000;213.835000;213.879000;0 +20260206 125200;213.879000;213.902000;213.876000;213.901000;0 +20260206 125300;213.900000;213.900000;213.861000;213.875000;0 +20260206 125400;213.875000;213.895000;213.855000;213.882000;0 +20260206 125500;213.881000;213.886000;213.860000;213.874000;0 +20260206 125600;213.874000;213.895000;213.871000;213.891000;0 +20260206 125700;213.892000;213.899000;213.873000;213.894000;0 +20260206 125800;213.899000;213.906000;213.889000;213.906000;0 +20260206 125900;213.905000;213.906000;213.861000;213.872000;0 +20260206 130000;213.874000;213.885000;213.859000;213.879000;0 +20260206 130100;213.883000;213.903000;213.877000;213.899000;0 +20260206 130200;213.901000;213.907000;213.879000;213.899000;0 +20260206 130300;213.901000;213.908000;213.892000;213.901000;0 +20260206 130400;213.900000;213.907000;213.887000;213.887000;0 +20260206 130500;213.889000;213.903000;213.888000;213.900000;0 +20260206 130600;213.900000;213.902000;213.864000;213.866000;0 +20260206 130700;213.868000;213.868000;213.823000;213.838000;0 +20260206 130800;213.840000;213.849000;213.825000;213.839000;0 +20260206 130900;213.838000;213.855000;213.818000;213.832000;0 +20260206 131000;213.832000;213.845000;213.832000;213.842000;0 +20260206 131100;213.843000;213.855000;213.831000;213.854000;0 +20260206 131200;213.855000;213.871000;213.854000;213.868000;0 +20260206 131300;213.870000;213.895000;213.865000;213.886000;0 +20260206 131400;213.887000;213.903000;213.887000;213.901000;0 +20260206 131500;213.899000;213.907000;213.891000;213.906000;0 +20260206 131600;213.906000;213.914000;213.892000;213.901000;0 +20260206 131700;213.900000;213.904000;213.895000;213.898000;0 +20260206 131800;213.898000;213.923000;213.898000;213.922000;0 +20260206 131900;213.928000;213.931000;213.919000;213.922000;0 +20260206 132000;213.923000;213.935000;213.914000;213.930000;0 +20260206 132100;213.926000;213.933000;213.912000;213.919000;0 +20260206 132200;213.915000;213.926000;213.904000;213.909000;0 +20260206 132300;213.902000;213.902000;213.879000;213.889000;0 +20260206 132400;213.888000;213.893000;213.861000;213.865000;0 +20260206 132500;213.867000;213.878000;213.862000;213.872000;0 +20260206 132600;213.881000;213.881000;213.848000;213.848000;0 +20260206 132700;213.850000;213.868000;213.840000;213.850000;0 +20260206 132800;213.854000;213.856000;213.838000;213.851000;0 +20260206 132900;213.851000;213.862000;213.841000;213.859000;0 +20260206 133000;213.857000;213.873000;213.853000;213.873000;0 +20260206 133100;213.868000;213.911000;213.860000;213.909000;0 +20260206 133200;213.908000;213.915000;213.902000;213.906000;0 +20260206 133300;213.903000;213.919000;213.903000;213.919000;0 +20260206 133400;213.916000;213.923000;213.890000;213.899000;0 +20260206 133500;213.900000;213.920000;213.900000;213.920000;0 +20260206 133600;213.914000;213.931000;213.911000;213.926000;0 +20260206 133700;213.934000;213.934000;213.920000;213.925000;0 +20260206 133800;213.927000;213.938000;213.925000;213.931000;0 +20260206 133900;213.936000;213.946000;213.931000;213.946000;0 +20260206 134000;213.945000;213.945000;213.921000;213.923000;0 +20260206 134100;213.927000;213.932000;213.920000;213.931000;0 +20260206 134200;213.933000;213.933000;213.917000;213.921000;0 +20260206 134300;213.925000;213.931000;213.919000;213.921000;0 +20260206 134400;213.921000;213.931000;213.915000;213.925000;0 +20260206 134500;213.927000;213.927000;213.902000;213.905000;0 +20260206 134600;213.907000;213.907000;213.871000;213.892000;0 +20260206 134700;213.888000;213.895000;213.865000;213.870000;0 +20260206 134800;213.870000;213.874000;213.852000;213.873000;0 +20260206 134900;213.871000;213.895000;213.868000;213.893000;0 +20260206 135000;213.894000;213.898000;213.872000;213.881000;0 +20260206 135100;213.882000;213.886000;213.867000;213.877000;0 +20260206 135200;213.876000;213.882000;213.862000;213.876000;0 +20260206 135300;213.877000;213.889000;213.861000;213.861000;0 +20260206 135400;213.862000;213.863000;213.834000;213.843000;0 +20260206 135500;213.844000;213.885000;213.844000;213.885000;0 +20260206 135600;213.879000;213.884000;213.874000;213.881000;0 +20260206 135700;213.872000;213.876000;213.856000;213.868000;0 +20260206 135800;213.868000;213.869000;213.854000;213.864000;0 +20260206 135900;213.867000;213.867000;213.849000;213.854000;0 +20260206 140000;213.856000;213.877000;213.852000;213.862000;0 +20260206 140100;213.861000;213.887000;213.858000;213.884000;0 +20260206 140200;213.885000;213.888000;213.875000;213.883000;0 +20260206 140300;213.882000;213.902000;213.876000;213.902000;0 +20260206 140400;213.901000;213.904000;213.889000;213.904000;0 +20260206 140500;213.902000;213.907000;213.882000;213.906000;0 +20260206 140600;213.905000;213.908000;213.890000;213.890000;0 +20260206 140700;213.890000;213.906000;213.890000;213.891000;0 +20260206 140800;213.896000;213.915000;213.887000;213.896000;0 +20260206 140900;213.898000;213.898000;213.869000;213.872000;0 +20260206 141000;213.871000;213.884000;213.866000;213.869000;0 +20260206 141100;213.869000;213.876000;213.860000;213.874000;0 +20260206 141200;213.881000;213.883000;213.865000;213.865000;0 +20260206 141300;213.869000;213.878000;213.861000;213.870000;0 +20260206 141400;213.868000;213.885000;213.866000;213.882000;0 +20260206 141500;213.882000;213.887000;213.869000;213.874000;0 +20260206 141600;213.874000;213.875000;213.867000;213.871000;0 +20260206 141700;213.872000;213.876000;213.869000;213.872000;0 +20260206 141800;213.872000;213.893000;213.872000;213.882000;0 +20260206 141900;213.885000;213.891000;213.883000;213.889000;0 +20260206 142000;213.890000;213.898000;213.880000;213.887000;0 +20260206 142100;213.887000;213.896000;213.879000;213.883000;0 +20260206 142200;213.887000;213.890000;213.883000;213.890000;0 +20260206 142300;213.893000;213.898000;213.888000;213.889000;0 +20260206 142400;213.890000;213.890000;213.869000;213.875000;0 +20260206 142500;213.878000;213.893000;213.871000;213.893000;0 +20260206 142600;213.893000;213.905000;213.891000;213.903000;0 +20260206 142700;213.904000;213.905000;213.886000;213.890000;0 +20260206 142800;213.894000;213.895000;213.879000;213.879000;0 +20260206 142900;213.880000;213.885000;213.871000;213.878000;0 +20260206 143000;213.879000;213.909000;213.879000;213.895000;0 +20260206 143100;213.895000;213.902000;213.889000;213.894000;0 +20260206 143200;213.896000;213.914000;213.891000;213.913000;0 +20260206 143300;213.915000;213.915000;213.889000;213.892000;0 +20260206 143400;213.893000;213.893000;213.888000;213.891000;0 +20260206 143500;213.887000;213.891000;213.880000;213.885000;0 +20260206 143600;213.883000;213.894000;213.883000;213.891000;0 +20260206 143700;213.892000;213.902000;213.887000;213.892000;0 +20260206 143800;213.899000;213.917000;213.887000;213.898000;0 +20260206 143900;213.896000;213.896000;213.887000;213.890000;0 +20260206 144000;213.891000;213.906000;213.889000;213.906000;0 +20260206 144100;213.907000;213.919000;213.903000;213.912000;0 +20260206 144200;213.911000;213.922000;213.904000;213.907000;0 +20260206 144300;213.907000;213.913000;213.902000;213.908000;0 +20260206 144400;213.910000;213.922000;213.910000;213.921000;0 +20260206 144500;213.913000;213.943000;213.910000;213.934000;0 +20260206 144600;213.931000;213.954000;213.931000;213.954000;0 +20260206 144700;213.953000;213.970000;213.948000;213.970000;0 +20260206 144800;213.969000;213.969000;213.956000;213.956000;0 +20260206 144900;213.956000;213.975000;213.955000;213.975000;0 +20260206 145000;213.973000;213.975000;213.960000;213.972000;0 +20260206 145100;213.968000;213.982000;213.967000;213.979000;0 +20260206 145200;213.975000;213.983000;213.960000;213.960000;0 +20260206 145300;213.960000;213.962000;213.938000;213.943000;0 +20260206 145400;213.945000;213.947000;213.925000;213.927000;0 +20260206 145500;213.930000;213.934000;213.915000;213.921000;0 +20260206 145600;213.921000;213.921000;213.896000;213.900000;0 +20260206 145700;213.898000;213.916000;213.892000;213.905000;0 +20260206 145800;213.903000;213.911000;213.891000;213.908000;0 +20260206 145900;213.910000;213.935000;213.905000;213.911000;0 +20260206 150000;213.909000;213.931000;213.889000;213.891000;0 +20260206 150100;213.892000;213.900000;213.876000;213.880000;0 +20260206 150200;213.878000;213.878000;213.854000;213.857000;0 +20260206 150300;213.860000;213.869000;213.852000;213.859000;0 +20260206 150400;213.860000;213.866000;213.848000;213.864000;0 +20260206 150500;213.864000;213.886000;213.858000;213.879000;0 +20260206 150600;213.881000;213.888000;213.868000;213.881000;0 +20260206 150700;213.884000;213.890000;213.871000;213.884000;0 +20260206 150800;213.886000;213.895000;213.884000;213.891000;0 +20260206 150900;213.890000;213.897000;213.887000;213.889000;0 +20260206 151000;213.890000;213.896000;213.882000;213.883000;0 +20260206 151100;213.884000;213.884000;213.867000;213.878000;0 +20260206 151200;213.880000;213.882000;213.868000;213.869000;0 +20260206 151300;213.868000;213.884000;213.866000;213.876000;0 +20260206 151400;213.876000;213.904000;213.875000;213.904000;0 +20260206 151500;213.903000;213.906000;213.897000;213.904000;0 +20260206 151600;213.904000;213.909000;213.901000;213.905000;0 +20260206 151700;213.902000;213.908000;213.900000;213.906000;0 +20260206 151800;213.908000;213.911000;213.900000;213.910000;0 +20260206 151900;213.909000;213.930000;213.909000;213.926000;0 +20260206 152000;213.923000;213.937000;213.918000;213.928000;0 +20260206 152100;213.929000;213.944000;213.927000;213.940000;0 +20260206 152200;213.938000;213.954000;213.931000;213.954000;0 +20260206 152300;213.948000;213.955000;213.948000;213.952000;0 +20260206 152400;213.954000;213.954000;213.931000;213.931000;0 +20260206 152500;213.932000;213.935000;213.928000;213.932000;0 +20260206 152600;213.926000;213.942000;213.926000;213.941000;0 +20260206 152700;213.942000;213.942000;213.926000;213.926000;0 +20260206 152800;213.927000;213.931000;213.921000;213.921000;0 +20260206 152900;213.920000;213.922000;213.896000;213.898000;0 +20260206 153000;213.897000;213.897000;213.875000;213.876000;0 +20260206 153100;213.881000;213.893000;213.868000;213.887000;0 +20260206 153200;213.889000;213.889000;213.878000;213.885000;0 +20260206 153300;213.883000;213.896000;213.883000;213.891000;0 +20260206 153400;213.896000;213.898000;213.888000;213.889000;0 +20260206 153500;213.887000;213.893000;213.882000;213.883000;0 +20260206 153600;213.878000;213.885000;213.876000;213.882000;0 +20260206 153700;213.879000;213.887000;213.872000;213.887000;0 +20260206 153800;213.883000;213.888000;213.882000;213.882000;0 +20260206 153900;213.885000;213.911000;213.885000;213.911000;0 +20260206 154000;213.911000;213.917000;213.907000;213.909000;0 +20260206 154100;213.914000;213.923000;213.894000;213.899000;0 +20260206 154200;213.900000;213.917000;213.894000;213.905000;0 +20260206 154300;213.902000;213.918000;213.902000;213.910000;0 +20260206 154400;213.909000;213.916000;213.906000;213.910000;0 +20260206 154500;213.909000;213.915000;213.904000;213.910000;0 +20260206 154600;213.910000;213.941000;213.910000;213.935000;0 +20260206 154700;213.936000;213.946000;213.931000;213.941000;0 +20260206 154800;213.942000;213.956000;213.942000;213.954000;0 +20260206 154900;213.953000;213.962000;213.942000;213.958000;0 +20260206 155000;213.960000;213.967000;213.956000;213.958000;0 +20260206 155100;213.954000;213.978000;213.944000;213.971000;0 +20260206 155200;213.963000;213.976000;213.953000;213.968000;0 +20260206 155300;213.967000;213.979000;213.964000;213.971000;0 +20260206 155400;213.970000;213.988000;213.964000;213.986000;0 +20260206 155500;213.979000;213.984000;213.958000;213.968000;0 +20260206 155600;213.967000;213.967000;213.953000;213.954000;0 +20260206 155700;213.953000;213.985000;213.934000;213.973000;0 +20260206 155800;213.974000;213.975000;213.958000;213.960000;0 +20260206 155900;213.964000;213.972000;213.945000;213.945000;0 +20260206 160000;213.946000;213.952000;213.932000;213.934000;0 +20260206 160100;213.934000;213.970000;213.931000;213.968000;0 +20260206 160200;213.968000;213.976000;213.947000;213.952000;0 +20260206 160300;213.957000;213.964000;213.955000;213.956000;0 +20260206 160400;213.959000;213.967000;213.959000;213.959000;0 +20260206 160500;213.959000;213.970000;213.956000;213.966000;0 +20260206 160600;213.963000;213.971000;213.961000;213.968000;0 +20260206 160700;213.965000;213.985000;213.965000;213.982000;0 +20260206 160800;213.982000;213.987000;213.979000;213.987000;0 +20260206 160900;213.984000;213.989000;213.969000;213.972000;0 +20260206 161000;213.982000;213.997000;213.968000;213.995000;0 +20260206 161100;213.997000;213.997000;213.989000;213.995000;0 +20260206 161200;213.999000;213.999000;213.973000;213.974000;0 +20260206 161300;213.972000;213.994000;213.972000;213.990000;0 +20260206 161400;213.991000;213.998000;213.982000;213.995000;0 +20260206 161500;213.992000;213.998000;213.991000;213.996000;0 +20260206 161600;213.996000;214.004000;213.967000;213.968000;0 +20260206 161700;213.969000;213.985000;213.965000;213.984000;0 +20260206 161800;213.984000;213.988000;213.984000;213.986000;0 +20260206 161900;213.985000;213.990000;213.982000;213.985000;0 +20260206 162000;213.987000;213.991000;213.982000;213.991000;0 +20260206 162100;213.992000;213.993000;213.980000;213.983000;0 +20260206 162200;213.976000;213.976000;213.971000;213.972000;0 +20260206 162300;213.974000;213.974000;213.958000;213.962000;0 +20260206 162400;213.962000;213.974000;213.953000;213.973000;0 +20260206 162500;213.972000;213.997000;213.969000;213.987000;0 +20260206 162600;213.987000;213.991000;213.978000;213.981000;0 +20260206 162700;213.979000;214.001000;213.965000;213.994000;0 +20260206 162800;213.991000;213.998000;213.982000;213.996000;0 +20260206 162900;213.993000;213.995000;213.982000;213.989000;0 +20260206 163000;213.987000;214.008000;213.984000;214.002000;0 +20260206 163100;214.001000;214.006000;213.997000;213.997000;0 +20260206 163200;213.998000;214.001000;213.986000;213.997000;0 +20260206 163300;213.998000;213.999000;213.982000;213.988000;0 +20260206 163400;213.987000;214.006000;213.987000;213.991000;0 +20260206 163500;213.994000;214.029000;213.985000;214.028000;0 +20260206 163600;214.027000;214.033000;214.024000;214.033000;0 +20260206 163700;214.032000;214.051000;214.032000;214.051000;0 +20260206 163800;214.047000;214.047000;214.040000;214.041000;0 +20260206 163900;214.044000;214.053000;214.041000;214.047000;0 +20260206 164000;214.045000;214.047000;214.009000;214.030000;0 +20260206 164100;214.031000;214.051000;214.025000;214.030000;0 +20260206 164200;214.029000;214.040000;214.014000;214.022000;0 +20260206 164300;214.019000;214.037000;214.011000;214.033000;0 +20260206 164400;214.030000;214.030000;214.009000;214.023000;0 +20260206 164500;214.024000;214.024000;213.994000;214.004000;0 +20260206 164600;214.005000;214.007000;213.979000;213.997000;0 +20260206 164700;213.987000;214.002000;213.986000;214.001000;0 +20260206 164800;214.004000;214.004000;213.972000;213.981000;0 +20260206 164900;213.983000;213.985000;213.948000;213.948000;0 +20260206 165000;213.951000;213.979000;213.941000;213.965000;0 +20260206 165100;213.969000;213.992000;213.966000;213.988000;0 +20260206 165200;213.988000;213.996000;213.978000;213.978000;0 +20260206 165300;213.980000;214.001000;213.978000;213.988000;0 +20260206 165400;213.991000;214.036000;213.988000;213.998000;0 +20260206 165500;214.010000;214.019000;213.981000;214.010000;0 +20260206 165600;214.004000;214.012000;213.949000;214.000000;0 +20260206 165700;213.994000;214.001000;213.928000;213.937000;0 +20260206 165800;213.944000;213.989000;213.927000;213.929000;0 +20260206 165900;213.929000;213.930000;213.929000;213.929000;0 +20260208 170400;214.003000;214.006000;213.968000;213.968000;0 +20260208 170500;213.975000;214.084000;213.935000;213.935000;0 +20260208 170600;213.935000;213.996000;213.756000;213.756000;0 +20260208 170700;213.530000;213.530000;213.353000;213.388000;0 +20260208 170800;213.595000;213.685000;213.595000;213.661000;0 +20260208 170900;213.658000;213.658000;213.614000;213.614000;0 +20260208 171000;213.613000;213.688000;213.613000;213.688000;0 +20260208 171100;213.656000;213.656000;213.572000;213.653000;0 +20260208 171200;213.661000;213.697000;213.632000;213.663000;0 +20260208 171300;213.650000;213.650000;213.511000;213.536000;0 +20260208 171400;213.540000;213.636000;213.520000;213.529000;0 +20260208 171500;213.517000;213.565000;213.517000;213.532000;0 +20260208 171600;213.567000;213.579000;213.531000;213.532000;0 +20260208 171700;213.532000;213.639000;213.532000;213.639000;0 +20260208 171800;213.639000;213.652000;213.557000;213.650000;0 +20260208 171900;213.650000;213.679000;213.649000;213.679000;0 +20260208 172000;213.658000;213.658000;213.570000;213.595000;0 +20260208 172100;213.611000;213.633000;213.611000;213.633000;0 +20260208 172200;213.652000;213.652000;213.517000;213.520000;0 +20260208 172300;213.506000;213.577000;213.496000;213.576000;0 +20260208 172400;213.590000;213.760000;213.580000;213.760000;0 +20260208 172500;213.783000;213.818000;213.770000;213.792000;0 +20260208 172600;213.802000;213.802000;213.802000;213.802000;0 +20260208 172700;213.806000;213.815000;213.805000;213.815000;0 +20260208 172800;213.805000;213.839000;213.805000;213.811000;0 +20260208 172900;213.821000;213.845000;213.810000;213.815000;0 +20260208 173000;213.826000;213.826000;213.814000;213.814000;0 +20260208 173100;213.828000;213.893000;213.811000;213.893000;0 +20260208 173200;213.918000;213.946000;213.918000;213.936000;0 +20260208 173300;213.946000;213.946000;213.946000;213.946000;0 +20260208 173400;213.975000;213.987000;213.975000;213.987000;0 +20260208 173500;214.009000;214.018000;213.995000;214.006000;0 +20260208 173600;214.006000;214.015000;214.003000;214.005000;0 +20260208 173700;214.009000;214.102000;214.009000;214.049000;0 +20260208 173800;214.036000;214.043000;213.945000;214.041000;0 +20260208 173900;214.060000;214.088000;214.044000;214.069000;0 +20260208 174000;214.091000;214.091000;214.061000;214.061000;0 +20260208 174100;214.047000;214.062000;214.010000;214.048000;0 +20260208 174200;214.082000;214.083000;214.071000;214.083000;0 +20260208 174300;214.098000;214.098000;214.092000;214.092000;0 +20260208 174400;214.093000;214.093000;214.090000;214.091000;0 +20260208 174500;214.091000;214.103000;214.089000;214.095000;0 +20260208 174600;214.092000;214.095000;214.090000;214.092000;0 +20260208 174700;214.096000;214.099000;214.086000;214.086000;0 +20260208 174800;214.090000;214.095000;214.087000;214.090000;0 +20260208 174900;214.090000;214.092000;214.075000;214.089000;0 +20260208 175000;214.087000;214.091000;214.071000;214.079000;0 +20260208 175100;214.079000;214.081000;214.059000;214.060000;0 +20260208 175200;214.059000;214.086000;214.059000;214.086000;0 +20260208 175300;214.086000;214.090000;214.074000;214.090000;0 +20260208 175400;214.090000;214.090000;214.002000;214.008000;0 +20260208 175500;214.002000;214.080000;213.961000;214.079000;0 +20260208 175600;214.079000;214.080000;214.079000;214.079000;0 +20260208 175700;214.080000;214.089000;214.065000;214.089000;0 +20260208 175800;214.090000;214.102000;214.075000;214.076000;0 +20260208 175900;214.075000;214.090000;214.064000;214.089000;0 +20260208 180000;214.103000;214.208000;214.103000;214.168000;0 +20260208 180100;214.187000;214.266000;214.156000;214.189000;0 +20260208 180200;214.183000;214.271000;214.156000;214.250000;0 +20260208 180300;214.256000;214.327000;214.221000;214.263000;0 +20260208 180400;214.261000;214.292000;214.221000;214.287000;0 +20260208 180500;214.282000;214.410000;214.282000;214.397000;0 +20260208 180600;214.401000;214.406000;214.329000;214.361000;0 +20260208 180700;214.360000;214.375000;214.342000;214.358000;0 +20260208 180800;214.357000;214.407000;214.355000;214.363000;0 +20260208 180900;214.361000;214.394000;214.331000;214.338000;0 +20260208 181000;214.349000;214.361000;214.298000;214.299000;0 +20260208 181100;214.291000;214.310000;214.284000;214.296000;0 +20260208 181200;214.294000;214.295000;214.209000;214.218000;0 +20260208 181300;214.218000;214.232000;214.205000;214.211000;0 +20260208 181400;214.212000;214.259000;214.206000;214.243000;0 +20260208 181500;214.244000;214.274000;214.240000;214.263000;0 +20260208 181600;214.268000;214.293000;214.228000;214.280000;0 +20260208 181700;214.274000;214.277000;214.222000;214.247000;0 +20260208 181800;214.251000;214.284000;214.241000;214.273000;0 +20260208 181900;214.272000;214.276000;214.255000;214.261000;0 +20260208 182000;214.267000;214.274000;214.253000;214.257000;0 +20260208 182100;214.262000;214.262000;214.232000;214.248000;0 +20260208 182200;214.243000;214.248000;214.181000;214.192000;0 +20260208 182300;214.194000;214.204000;214.146000;214.161000;0 +20260208 182400;214.159000;214.162000;214.140000;214.141000;0 +20260208 182500;214.136000;214.169000;214.108000;214.117000;0 +20260208 182600;214.120000;214.149000;214.120000;214.128000;0 +20260208 182700;214.130000;214.167000;214.130000;214.150000;0 +20260208 182800;214.159000;214.189000;214.149000;214.182000;0 +20260208 182900;214.179000;214.185000;214.170000;214.180000;0 +20260208 183000;214.179000;214.232000;214.125000;214.140000;0 +20260208 183100;214.147000;214.167000;214.026000;214.038000;0 +20260208 183200;214.029000;214.064000;213.922000;214.008000;0 +20260208 183300;214.020000;214.128000;214.017000;214.099000;0 +20260208 183400;214.095000;214.125000;214.038000;214.041000;0 +20260208 183500;214.039000;214.157000;214.039000;214.148000;0 +20260208 183600;214.149000;214.172000;214.128000;214.128000;0 +20260208 183700;214.129000;214.172000;214.110000;214.158000;0 +20260208 183800;214.156000;214.178000;214.128000;214.147000;0 +20260208 183900;214.148000;214.158000;214.141000;214.149000;0 +20260208 184000;214.151000;214.175000;214.131000;214.141000;0 +20260208 184100;214.140000;214.158000;214.112000;214.136000;0 +20260208 184200;214.138000;214.162000;214.135000;214.137000;0 +20260208 184300;214.134000;214.137000;214.089000;214.099000;0 +20260208 184400;214.092000;214.227000;214.091000;214.224000;0 +20260208 184500;214.237000;214.283000;214.091000;214.094000;0 +20260208 184600;214.097000;214.141000;214.083000;214.101000;0 +20260208 184700;214.103000;214.134000;214.084000;214.101000;0 +20260208 184800;214.098000;214.119000;214.087000;214.089000;0 +20260208 184900;214.089000;214.093000;213.861000;213.885000;0 +20260208 185000;213.889000;213.922000;213.770000;213.892000;0 +20260208 185100;213.895000;214.011000;213.888000;213.932000;0 +20260208 185200;213.934000;213.963000;213.902000;213.951000;0 +20260208 185300;213.950000;213.989000;213.870000;213.972000;0 +20260208 185400;213.972000;214.008000;213.955000;213.968000;0 +20260208 185500;213.968000;213.987000;213.950000;213.960000;0 +20260208 185600;213.959000;213.995000;213.947000;213.991000;0 +20260208 185700;213.995000;214.008000;213.954000;213.994000;0 +20260208 185800;213.996000;214.021000;213.972000;213.981000;0 +20260208 185900;213.975000;214.031000;213.930000;214.006000;0 +20260208 190000;214.016000;214.032000;213.919000;213.938000;0 +20260208 190100;213.939000;213.947000;213.874000;213.876000;0 +20260208 190200;213.886000;213.935000;213.821000;213.824000;0 +20260208 190300;213.825000;213.833000;213.481000;213.491000;0 +20260208 190400;213.506000;213.703000;213.506000;213.703000;0 +20260208 190500;213.703000;213.729000;213.631000;213.656000;0 +20260208 190600;213.681000;213.695000;213.549000;213.649000;0 +20260208 190700;213.650000;213.714000;213.551000;213.618000;0 +20260208 190800;213.620000;213.643000;213.574000;213.574000;0 +20260208 190900;213.579000;213.587000;213.527000;213.575000;0 +20260208 191000;213.576000;213.576000;213.493000;213.517000;0 +20260208 191100;213.531000;213.591000;213.462000;213.550000;0 +20260208 191200;213.551000;213.559000;213.375000;213.427000;0 +20260208 191300;213.429000;213.478000;213.389000;213.391000;0 +20260208 191400;213.394000;213.512000;213.360000;213.472000;0 +20260208 191500;213.477000;213.538000;213.460000;213.527000;0 +20260208 191600;213.528000;213.608000;213.521000;213.603000;0 +20260208 191700;213.591000;213.605000;213.564000;213.575000;0 +20260208 191800;213.579000;213.607000;213.550000;213.603000;0 +20260208 191900;213.599000;213.646000;213.598000;213.646000;0 +20260208 192000;213.639000;213.728000;213.600000;213.714000;0 +20260208 192100;213.712000;213.740000;213.696000;213.729000;0 +20260208 192200;213.729000;213.751000;213.688000;213.701000;0 +20260208 192300;213.703000;213.713000;213.671000;213.672000;0 +20260208 192400;213.672000;213.700000;213.642000;213.676000;0 +20260208 192500;213.675000;213.738000;213.675000;213.724000;0 +20260208 192600;213.726000;213.743000;213.704000;213.728000;0 +20260208 192700;213.724000;213.725000;213.692000;213.714000;0 +20260208 192800;213.715000;213.715000;213.670000;213.703000;0 +20260208 192900;213.721000;213.724000;213.592000;213.592000;0 +20260208 193000;213.590000;213.620000;213.483000;213.537000;0 +20260208 193100;213.536000;213.556000;213.489000;213.504000;0 +20260208 193200;213.505000;213.505000;213.435000;213.455000;0 +20260208 193300;213.451000;213.494000;213.404000;213.489000;0 +20260208 193400;213.488000;213.524000;213.477000;213.511000;0 +20260208 193500;213.510000;213.567000;213.502000;213.553000;0 +20260208 193600;213.545000;213.545000;213.447000;213.449000;0 +20260208 193700;213.450000;213.467000;213.394000;213.429000;0 +20260208 193800;213.428000;213.506000;213.417000;213.497000;0 +20260208 193900;213.495000;213.512000;213.456000;213.478000;0 +20260208 194000;213.474000;213.494000;213.426000;213.436000;0 +20260208 194100;213.432000;213.456000;213.386000;213.441000;0 +20260208 194200;213.443000;213.444000;213.385000;213.421000;0 +20260208 194300;213.420000;213.430000;213.389000;213.424000;0 +20260208 194400;213.420000;213.428000;213.381000;213.425000;0 +20260208 194500;213.418000;213.459000;213.413000;213.443000;0 +20260208 194600;213.441000;213.506000;213.440000;213.503000;0 +20260208 194700;213.501000;213.521000;213.460000;213.500000;0 +20260208 194800;213.499000;213.522000;213.465000;213.477000;0 +20260208 194900;213.473000;213.515000;213.463000;213.510000;0 +20260208 195000;213.508000;213.565000;213.494000;213.535000;0 +20260208 195100;213.531000;213.553000;213.463000;213.468000;0 +20260208 195200;213.468000;213.532000;213.418000;213.456000;0 +20260208 195300;213.457000;213.481000;213.352000;213.435000;0 +20260208 195400;213.435000;213.515000;213.408000;213.515000;0 +20260208 195500;213.505000;213.575000;213.491000;213.561000;0 +20260208 195600;213.562000;213.586000;213.543000;213.559000;0 +20260208 195700;213.561000;213.596000;213.524000;213.582000;0 +20260208 195800;213.578000;213.611000;213.516000;213.550000;0 +20260208 195900;213.549000;213.553000;213.511000;213.539000;0 +20260208 200000;213.533000;213.559000;213.465000;213.496000;0 +20260208 200100;213.494000;213.494000;213.416000;213.437000;0 +20260208 200200;213.432000;213.456000;213.391000;213.443000;0 +20260208 200300;213.441000;213.471000;213.424000;213.467000;0 +20260208 200400;213.465000;213.479000;213.403000;213.453000;0 +20260208 200500;213.449000;213.463000;213.424000;213.455000;0 +20260208 200600;213.466000;213.479000;213.379000;213.379000;0 +20260208 200700;213.379000;213.417000;213.318000;213.320000;0 +20260208 200800;213.323000;213.399000;213.311000;213.393000;0 +20260208 200900;213.392000;213.392000;213.352000;213.383000;0 +20260208 201000;213.383000;213.402000;213.348000;213.386000;0 +20260208 201100;213.385000;213.389000;213.351000;213.364000;0 +20260208 201200;213.363000;213.368000;213.350000;213.354000;0 +20260208 201300;213.354000;213.374000;213.293000;213.293000;0 +20260208 201400;213.294000;213.321000;213.224000;213.227000;0 +20260208 201500;213.226000;213.261000;213.197000;213.229000;0 +20260208 201600;213.229000;213.262000;213.194000;213.223000;0 +20260208 201700;213.223000;213.263000;213.218000;213.252000;0 +20260208 201800;213.254000;213.259000;213.148000;213.170000;0 +20260208 201900;213.171000;213.207000;213.142000;213.182000;0 +20260208 202000;213.180000;213.210000;213.145000;213.178000;0 +20260208 202100;213.177000;213.209000;213.160000;213.205000;0 +20260208 202200;213.204000;213.204000;213.148000;213.161000;0 +20260208 202300;213.159000;213.180000;213.113000;213.115000;0 +20260208 202400;213.112000;213.123000;213.085000;213.108000;0 +20260208 202500;213.105000;213.133000;213.057000;213.064000;0 +20260208 202600;213.062000;213.062000;213.016000;213.028000;0 +20260208 202700;213.026000;213.037000;213.008000;213.009000;0 +20260208 202800;213.010000;213.033000;212.983000;213.001000;0 +20260208 202900;213.002000;213.002000;212.941000;212.968000;0 +20260208 203000;212.971000;212.971000;212.845000;212.845000;0 +20260208 203100;212.843000;212.926000;212.761000;212.873000;0 +20260208 203200;212.879000;212.923000;212.844000;212.897000;0 +20260208 203300;212.896000;212.897000;212.853000;212.858000;0 +20260208 203400;212.854000;212.854000;212.773000;212.779000;0 +20260208 203500;212.770000;212.770000;212.628000;212.696000;0 +20260208 203600;212.696000;212.730000;212.617000;212.688000;0 +20260208 203700;212.688000;212.693000;212.600000;212.624000;0 +20260208 203800;212.625000;212.690000;212.591000;212.681000;0 +20260208 203900;212.682000;212.743000;212.672000;212.730000;0 +20260208 204000;212.729000;212.815000;212.709000;212.803000;0 +20260208 204100;212.802000;212.836000;212.771000;212.815000;0 +20260208 204200;212.813000;212.846000;212.764000;212.835000;0 +20260208 204300;212.843000;212.851000;212.821000;212.848000;0 +20260208 204400;212.848000;212.883000;212.834000;212.871000;0 +20260208 204500;212.869000;212.957000;212.864000;212.947000;0 +20260208 204600;212.945000;213.017000;212.912000;212.988000;0 +20260208 204700;212.986000;213.124000;212.985000;213.123000;0 +20260208 204800;213.122000;213.122000;213.048000;213.048000;0 +20260208 204900;213.045000;213.047000;213.000000;213.010000;0 +20260208 205000;213.010000;213.028000;212.935000;212.935000;0 +20260208 205100;212.930000;212.972000;212.885000;212.971000;0 +20260208 205200;212.967000;212.980000;212.950000;212.964000;0 +20260208 205300;212.963000;212.963000;212.911000;212.923000;0 +20260208 205400;212.922000;213.034000;212.920000;213.031000;0 +20260208 205500;213.030000;213.030000;212.988000;213.021000;0 +20260208 205600;213.020000;213.055000;213.017000;213.030000;0 +20260208 205700;213.033000;213.033000;212.986000;213.007000;0 +20260208 205800;213.006000;213.024000;212.992000;213.017000;0 +20260208 205900;213.015000;213.042000;212.997000;213.033000;0 +20260208 210000;213.034000;213.084000;213.025000;213.069000;0 +20260208 210100;213.068000;213.119000;213.058000;213.115000;0 +20260208 210200;213.113000;213.189000;213.101000;213.182000;0 +20260208 210300;213.180000;213.186000;213.098000;213.118000;0 +20260208 210400;213.117000;213.149000;213.102000;213.102000;0 +20260208 210500;213.107000;213.115000;213.034000;213.035000;0 +20260208 210600;213.036000;213.050000;213.012000;213.031000;0 +20260208 210700;213.030000;213.071000;213.027000;213.061000;0 +20260208 210800;213.056000;213.102000;213.045000;213.098000;0 +20260208 210900;213.100000;213.180000;213.100000;213.176000;0 +20260208 211000;213.176000;213.204000;213.156000;213.158000;0 +20260208 211100;213.161000;213.189000;213.143000;213.175000;0 +20260208 211200;213.177000;213.212000;213.159000;213.182000;0 +20260208 211300;213.185000;213.204000;213.139000;213.160000;0 +20260208 211400;213.161000;213.193000;213.137000;213.182000;0 +20260208 211500;213.183000;213.183000;213.147000;213.159000;0 +20260208 211600;213.158000;213.174000;213.135000;213.142000;0 +20260208 211700;213.142000;213.166000;213.137000;213.163000;0 +20260208 211800;213.161000;213.176000;213.124000;213.172000;0 +20260208 211900;213.169000;213.192000;213.158000;213.185000;0 +20260208 212000;213.184000;213.226000;213.175000;213.211000;0 +20260208 212100;213.212000;213.224000;213.194000;213.217000;0 +20260208 212200;213.219000;213.253000;213.207000;213.213000;0 +20260208 212300;213.213000;213.220000;213.178000;213.196000;0 +20260208 212400;213.197000;213.228000;213.193000;213.221000;0 +20260208 212500;213.221000;213.235000;213.166000;213.201000;0 +20260208 212600;213.203000;213.234000;213.200000;213.234000;0 +20260208 212700;213.235000;213.235000;213.210000;213.226000;0 +20260208 212800;213.225000;213.271000;213.220000;213.268000;0 +20260208 212900;213.270000;213.271000;213.263000;213.266000;0 +20260208 213000;213.268000;213.298000;213.256000;213.298000;0 +20260208 213100;213.301000;213.326000;213.286000;213.320000;0 +20260208 213200;213.316000;213.393000;213.316000;213.391000;0 +20260208 213300;213.389000;213.501000;213.389000;213.442000;0 +20260208 213400;213.442000;213.478000;213.437000;213.474000;0 +20260208 213500;213.474000;213.482000;213.426000;213.442000;0 +20260208 213600;213.442000;213.453000;213.404000;213.404000;0 +20260208 213700;213.399000;213.415000;213.392000;213.406000;0 +20260208 213800;213.406000;213.412000;213.393000;213.393000;0 +20260208 213900;213.394000;213.394000;213.358000;213.388000;0 +20260208 214000;213.386000;213.418000;213.386000;213.405000;0 +20260208 214100;213.405000;213.428000;213.387000;213.418000;0 +20260208 214200;213.418000;213.425000;213.384000;213.387000;0 +20260208 214300;213.389000;213.398000;213.373000;213.393000;0 +20260208 214400;213.396000;213.407000;213.391000;213.396000;0 +20260208 214500;213.395000;213.429000;213.395000;213.417000;0 +20260208 214600;213.418000;213.430000;213.399000;213.429000;0 +20260208 214700;213.428000;213.434000;213.396000;213.413000;0 +20260208 214800;213.413000;213.417000;213.383000;213.396000;0 +20260208 214900;213.399000;213.402000;213.384000;213.394000;0 +20260208 215000;213.394000;213.409000;213.394000;213.398000;0 +20260208 215100;213.398000;213.404000;213.371000;213.373000;0 +20260208 215200;213.368000;213.371000;213.359000;213.366000;0 +20260208 215300;213.364000;213.364000;213.341000;213.344000;0 +20260208 215400;213.347000;213.356000;213.331000;213.344000;0 +20260208 215500;213.345000;213.372000;213.330000;213.330000;0 +20260208 215600;213.330000;213.331000;213.257000;213.267000;0 +20260208 215700;213.267000;213.310000;213.255000;213.298000;0 +20260208 215800;213.298000;213.348000;213.293000;213.320000;0 +20260208 215900;213.323000;213.353000;213.307000;213.353000;0 +20260208 220000;213.354000;213.452000;213.354000;213.444000;0 +20260208 220100;213.442000;213.461000;213.415000;213.459000;0 +20260208 220200;213.460000;213.461000;213.424000;213.444000;0 +20260208 220300;213.441000;213.454000;213.436000;213.448000;0 +20260208 220400;213.446000;213.449000;213.410000;213.424000;0 +20260208 220500;213.422000;213.478000;213.422000;213.478000;0 +20260208 220600;213.476000;213.485000;213.435000;213.447000;0 +20260208 220700;213.449000;213.468000;213.443000;213.464000;0 +20260208 220800;213.463000;213.473000;213.421000;213.424000;0 +20260208 220900;213.423000;213.432000;213.401000;213.401000;0 +20260208 221000;213.405000;213.417000;213.377000;213.383000;0 +20260208 221100;213.383000;213.410000;213.378000;213.390000;0 +20260208 221200;213.399000;213.399000;213.377000;213.386000;0 +20260208 221300;213.383000;213.414000;213.382000;213.396000;0 +20260208 221400;213.397000;213.402000;213.393000;213.400000;0 +20260208 221500;213.400000;213.407000;213.380000;213.383000;0 +20260208 221600;213.383000;213.440000;213.383000;213.423000;0 +20260208 221700;213.418000;213.420000;213.391000;213.392000;0 +20260208 221800;213.394000;213.401000;213.364000;213.374000;0 +20260208 221900;213.374000;213.398000;213.328000;213.391000;0 +20260208 222000;213.390000;213.411000;213.377000;213.392000;0 +20260208 222100;213.392000;213.421000;213.391000;213.409000;0 +20260208 222200;213.407000;213.426000;213.404000;213.425000;0 +20260208 222300;213.425000;213.430000;213.403000;213.425000;0 +20260208 222400;213.426000;213.428000;213.419000;213.423000;0 +20260208 222500;213.424000;213.445000;213.422000;213.438000;0 +20260208 222600;213.440000;213.440000;213.427000;213.427000;0 +20260208 222700;213.428000;213.428000;213.400000;213.413000;0 +20260208 222800;213.409000;213.435000;213.409000;213.426000;0 +20260208 222900;213.429000;213.435000;213.419000;213.422000;0 +20260208 223000;213.423000;213.442000;213.392000;213.432000;0 +20260208 223100;213.423000;213.450000;213.404000;213.435000;0 +20260208 223200;213.436000;213.436000;213.411000;213.429000;0 +20260208 223300;213.428000;213.428000;213.373000;213.375000;0 +20260208 223400;213.376000;213.426000;213.374000;213.404000;0 +20260208 223500;213.404000;213.418000;213.384000;213.386000;0 +20260208 223600;213.387000;213.387000;213.360000;213.362000;0 +20260208 223700;213.360000;213.368000;213.339000;213.347000;0 +20260208 223800;213.346000;213.364000;213.336000;213.337000;0 +20260208 223900;213.338000;213.358000;213.334000;213.339000;0 +20260208 224000;213.334000;213.334000;213.279000;213.318000;0 +20260208 224100;213.323000;213.354000;213.318000;213.346000;0 +20260208 224200;213.346000;213.379000;213.346000;213.378000;0 +20260208 224300;213.372000;213.379000;213.358000;213.366000;0 +20260208 224400;213.363000;213.383000;213.359000;213.362000;0 +20260208 224500;213.363000;213.368000;213.351000;213.366000;0 +20260208 224600;213.364000;213.364000;213.344000;213.349000;0 +20260208 224700;213.349000;213.357000;213.345000;213.350000;0 +20260208 224800;213.349000;213.349000;213.316000;213.319000;0 +20260208 224900;213.319000;213.358000;213.297000;213.346000;0 +20260208 225000;213.346000;213.361000;213.328000;213.331000;0 +20260208 225100;213.330000;213.330000;213.308000;213.325000;0 +20260208 225200;213.323000;213.348000;213.314000;213.321000;0 +20260208 225300;213.320000;213.344000;213.320000;213.340000;0 +20260208 225400;213.342000;213.348000;213.307000;213.310000;0 +20260208 225500;213.310000;213.332000;213.289000;213.304000;0 +20260208 225600;213.300000;213.312000;213.293000;213.310000;0 +20260208 225700;213.310000;213.310000;213.294000;213.308000;0 +20260208 225800;213.308000;213.330000;213.296000;213.316000;0 +20260208 225900;213.315000;213.344000;213.315000;213.317000;0 +20260208 230000;213.322000;213.385000;213.322000;213.376000;0 +20260208 230100;213.378000;213.401000;213.374000;213.380000;0 +20260208 230200;213.378000;213.384000;213.342000;213.351000;0 +20260208 230300;213.350000;213.357000;213.343000;213.346000;0 +20260208 230400;213.347000;213.382000;213.346000;213.379000;0 +20260208 230500;213.378000;213.392000;213.377000;213.377000;0 +20260208 230600;213.379000;213.387000;213.364000;213.366000;0 +20260208 230700;213.363000;213.378000;213.354000;213.358000;0 +20260208 230800;213.356000;213.368000;213.310000;213.327000;0 +20260208 230900;213.322000;213.355000;213.320000;213.345000;0 +20260208 231000;213.346000;213.360000;213.331000;213.336000;0 +20260208 231100;213.333000;213.338000;213.299000;213.306000;0 +20260208 231200;213.311000;213.337000;213.307000;213.307000;0 +20260208 231300;213.308000;213.313000;213.296000;213.298000;0 +20260208 231400;213.297000;213.319000;213.295000;213.304000;0 +20260208 231500;213.302000;213.322000;213.300000;213.307000;0 +20260208 231600;213.311000;213.319000;213.306000;213.313000;0 +20260208 231700;213.314000;213.314000;213.244000;213.246000;0 +20260208 231800;213.248000;213.266000;213.226000;213.242000;0 +20260208 231900;213.240000;213.241000;213.224000;213.228000;0 +20260208 232000;213.224000;213.226000;213.188000;213.198000;0 +20260208 232100;213.199000;213.220000;213.192000;213.194000;0 +20260208 232200;213.196000;213.201000;213.162000;213.162000;0 +20260208 232300;213.159000;213.166000;213.128000;213.134000;0 +20260208 232400;213.133000;213.169000;213.132000;213.160000;0 +20260208 232500;213.161000;213.163000;213.112000;213.112000;0 +20260208 232600;213.113000;213.139000;213.105000;213.106000;0 +20260208 232700;213.106000;213.125000;213.096000;213.121000;0 +20260208 232800;213.120000;213.130000;213.103000;213.122000;0 +20260208 232900;213.121000;213.123000;213.100000;213.107000;0 +20260208 233000;213.104000;213.115000;213.094000;213.104000;0 +20260208 233100;213.105000;213.107000;213.088000;213.090000;0 +20260208 233200;213.089000;213.134000;213.078000;213.098000;0 +20260208 233300;213.099000;213.110000;213.098000;213.108000;0 +20260208 233400;213.109000;213.134000;213.109000;213.128000;0 +20260208 233500;213.128000;213.143000;213.114000;213.119000;0 +20260208 233600;213.119000;213.138000;213.114000;213.136000;0 +20260208 233700;213.136000;213.149000;213.127000;213.129000;0 +20260208 233800;213.128000;213.146000;213.127000;213.146000;0 +20260208 233900;213.145000;213.182000;213.137000;213.181000;0 +20260208 234000;213.181000;213.190000;213.129000;213.171000;0 +20260208 234100;213.171000;213.184000;213.148000;213.182000;0 +20260208 234200;213.182000;213.184000;213.168000;213.174000;0 +20260208 234300;213.173000;213.194000;213.156000;213.159000;0 +20260208 234400;213.158000;213.176000;213.156000;213.171000;0 +20260208 234500;213.169000;213.181000;213.159000;213.163000;0 +20260208 234600;213.163000;213.180000;213.161000;213.175000;0 +20260208 234700;213.183000;213.189000;213.179000;213.182000;0 +20260208 234800;213.182000;213.214000;213.178000;213.211000;0 +20260208 234900;213.211000;213.228000;213.206000;213.217000;0 +20260208 235000;213.217000;213.221000;213.205000;213.211000;0 +20260208 235100;213.212000;213.212000;213.170000;213.172000;0 +20260208 235200;213.182000;213.183000;213.131000;213.142000;0 +20260208 235300;213.141000;213.156000;213.141000;213.145000;0 +20260208 235400;213.145000;213.146000;213.124000;213.138000;0 +20260208 235500;213.139000;213.154000;213.136000;213.145000;0 +20260208 235600;213.147000;213.166000;213.144000;213.164000;0 +20260208 235700;213.160000;213.163000;213.147000;213.148000;0 +20260208 235800;213.149000;213.154000;213.135000;213.136000;0 +20260208 235900;213.139000;213.165000;213.137000;213.165000;0 +20260209 000000;213.166000;213.172000;213.141000;213.145000;0 +20260209 000100;213.143000;213.159000;213.133000;213.158000;0 +20260209 000200;213.157000;213.166000;213.152000;213.158000;0 +20260209 000300;213.157000;213.168000;213.150000;213.155000;0 +20260209 000400;213.156000;213.165000;213.061000;213.067000;0 +20260209 000500;213.067000;213.100000;213.067000;213.076000;0 +20260209 000600;213.075000;213.105000;213.073000;213.102000;0 +20260209 000700;213.102000;213.106000;213.077000;213.085000;0 +20260209 000800;213.084000;213.115000;213.082000;213.115000;0 +20260209 000900;213.117000;213.124000;213.113000;213.113000;0 +20260209 001000;213.127000;213.139000;213.106000;213.137000;0 +20260209 001100;213.136000;213.152000;213.134000;213.149000;0 +20260209 001200;213.150000;213.159000;213.130000;213.145000;0 +20260209 001300;213.147000;213.162000;213.146000;213.148000;0 +20260209 001400;213.149000;213.149000;213.130000;213.135000;0 +20260209 001500;213.143000;213.161000;213.143000;213.160000;0 +20260209 001600;213.157000;213.158000;213.110000;213.147000;0 +20260209 001700;213.143000;213.182000;213.140000;213.181000;0 +20260209 001800;213.182000;213.203000;213.181000;213.187000;0 +20260209 001900;213.189000;213.196000;213.154000;213.168000;0 +20260209 002000;213.168000;213.182000;213.145000;213.182000;0 +20260209 002100;213.179000;213.191000;213.179000;213.185000;0 +20260209 002200;213.184000;213.211000;213.180000;213.205000;0 +20260209 002300;213.201000;213.232000;213.201000;213.224000;0 +20260209 002400;213.226000;213.251000;213.207000;213.216000;0 +20260209 002500;213.214000;213.270000;213.214000;213.268000;0 +20260209 002600;213.272000;213.279000;213.238000;213.277000;0 +20260209 002700;213.278000;213.279000;213.246000;213.252000;0 +20260209 002800;213.248000;213.275000;213.234000;213.234000;0 +20260209 002900;213.236000;213.243000;213.225000;213.229000;0 +20260209 003000;213.231000;213.241000;213.196000;213.196000;0 +20260209 003100;213.197000;213.201000;213.179000;213.197000;0 +20260209 003200;213.183000;213.190000;213.175000;213.179000;0 +20260209 003300;213.179000;213.186000;213.162000;213.175000;0 +20260209 003400;213.175000;213.185000;213.166000;213.184000;0 +20260209 003500;213.198000;213.201000;213.129000;213.153000;0 +20260209 003600;213.153000;213.170000;213.130000;213.165000;0 +20260209 003700;213.164000;213.166000;213.134000;213.147000;0 +20260209 003800;213.140000;213.181000;213.140000;213.169000;0 +20260209 003900;213.165000;213.185000;213.161000;213.174000;0 +20260209 004000;213.171000;213.195000;213.161000;213.184000;0 +20260209 004100;213.184000;213.207000;213.165000;213.172000;0 +20260209 004200;213.168000;213.179000;213.163000;213.172000;0 +20260209 004300;213.174000;213.174000;213.165000;213.172000;0 +20260209 004400;213.168000;213.174000;213.152000;213.173000;0 +20260209 004500;213.174000;213.175000;213.123000;213.132000;0 +20260209 004600;213.126000;213.131000;213.111000;213.121000;0 +20260209 004700;213.121000;213.138000;213.099000;213.102000;0 +20260209 004800;213.101000;213.107000;213.083000;213.092000;0 +20260209 004900;213.094000;213.095000;213.087000;213.092000;0 +20260209 005000;213.093000;213.113000;213.089000;213.105000;0 +20260209 005100;213.107000;213.110000;213.089000;213.106000;0 +20260209 005200;213.106000;213.137000;213.102000;213.135000;0 +20260209 005300;213.136000;213.174000;213.132000;213.171000;0 +20260209 005400;213.170000;213.187000;213.155000;213.183000;0 +20260209 005500;213.183000;213.211000;213.153000;213.153000;0 +20260209 005600;213.168000;213.179000;213.159000;213.160000;0 +20260209 005700;213.159000;213.182000;213.159000;213.177000;0 +20260209 005800;213.179000;213.216000;213.168000;213.213000;0 +20260209 005900;213.211000;213.216000;213.206000;213.208000;0 +20260209 010000;213.207000;213.207000;212.979000;213.008000;0 +20260209 010100;213.009000;213.103000;213.005000;213.092000;0 +20260209 010200;213.092000;213.181000;213.058000;213.162000;0 +20260209 010300;213.161000;213.162000;213.071000;213.124000;0 +20260209 010400;213.119000;213.139000;213.071000;213.130000;0 +20260209 010500;213.124000;213.169000;213.102000;213.122000;0 +20260209 010600;213.120000;213.165000;213.102000;213.109000;0 +20260209 010700;213.105000;213.136000;213.085000;213.128000;0 +20260209 010800;213.128000;213.152000;213.110000;213.123000;0 +20260209 010900;213.124000;213.128000;213.073000;213.075000;0 +20260209 011000;213.078000;213.096000;213.067000;213.070000;0 +20260209 011100;213.067000;213.067000;213.026000;213.045000;0 +20260209 011200;213.044000;213.051000;213.013000;213.033000;0 +20260209 011300;213.032000;213.075000;213.016000;213.075000;0 +20260209 011400;213.084000;213.115000;213.076000;213.111000;0 +20260209 011500;213.113000;213.138000;213.107000;213.121000;0 +20260209 011600;213.124000;213.137000;213.106000;213.106000;0 +20260209 011700;213.108000;213.121000;213.085000;213.100000;0 +20260209 011800;213.096000;213.113000;213.044000;213.054000;0 +20260209 011900;213.052000;213.080000;213.021000;213.021000;0 +20260209 012000;213.024000;213.035000;213.003000;213.030000;0 +20260209 012100;213.029000;213.054000;213.028000;213.035000;0 +20260209 012200;213.032000;213.036000;212.954000;212.955000;0 +20260209 012300;212.955000;212.956000;212.913000;212.931000;0 +20260209 012400;212.932000;212.936000;212.883000;212.887000;0 +20260209 012500;212.888000;212.894000;212.857000;212.875000;0 +20260209 012600;212.874000;212.889000;212.844000;212.888000;0 +20260209 012700;212.888000;212.927000;212.881000;212.890000;0 +20260209 012800;212.895000;212.898000;212.852000;212.858000;0 +20260209 012900;212.855000;212.872000;212.841000;212.856000;0 +20260209 013000;212.858000;212.906000;212.818000;212.838000;0 +20260209 013100;212.840000;212.916000;212.835000;212.908000;0 +20260209 013200;212.909000;212.981000;212.892000;212.976000;0 +20260209 013300;212.975000;212.976000;212.919000;212.919000;0 +20260209 013400;212.916000;212.970000;212.875000;212.905000;0 +20260209 013500;212.901000;212.946000;212.896000;212.922000;0 +20260209 013600;212.923000;212.948000;212.914000;212.942000;0 +20260209 013700;212.949000;212.950000;212.915000;212.937000;0 +20260209 013800;212.936000;212.971000;212.925000;212.936000;0 +20260209 013900;212.937000;212.949000;212.920000;212.927000;0 +20260209 014000;212.927000;212.945000;212.908000;212.909000;0 +20260209 014100;212.909000;212.920000;212.877000;212.890000;0 +20260209 014200;212.891000;212.908000;212.845000;212.850000;0 +20260209 014300;212.858000;212.906000;212.858000;212.883000;0 +20260209 014400;212.879000;212.911000;212.858000;212.910000;0 +20260209 014500;212.911000;212.911000;212.874000;212.897000;0 +20260209 014600;212.896000;212.925000;212.891000;212.922000;0 +20260209 014700;212.931000;212.997000;212.925000;212.989000;0 +20260209 014800;212.991000;213.006000;212.965000;212.982000;0 +20260209 014900;212.981000;213.048000;212.978000;213.045000;0 +20260209 015000;213.045000;213.067000;212.999000;213.067000;0 +20260209 015100;213.065000;213.085000;213.040000;213.041000;0 +20260209 015200;213.043000;213.046000;213.001000;213.019000;0 +20260209 015300;213.029000;213.065000;213.022000;213.031000;0 +20260209 015400;213.033000;213.077000;213.033000;213.063000;0 +20260209 015500;213.065000;213.094000;213.058000;213.094000;0 +20260209 015600;213.095000;213.113000;213.068000;213.110000;0 +20260209 015700;213.104000;213.130000;213.093000;213.130000;0 +20260209 015800;213.127000;213.132000;213.104000;213.110000;0 +20260209 015900;213.108000;213.142000;213.087000;213.118000;0 +20260209 020000;213.108000;213.120000;213.040000;213.040000;0 +20260209 020100;213.052000;213.070000;213.034000;213.049000;0 +20260209 020200;213.051000;213.059000;213.012000;213.020000;0 +20260209 020300;213.019000;213.037000;213.004000;213.032000;0 +20260209 020400;213.037000;213.053000;213.021000;213.026000;0 +20260209 020500;213.025000;213.052000;213.006000;213.025000;0 +20260209 020600;213.021000;213.027000;213.005000;213.017000;0 +20260209 020700;213.023000;213.048000;213.011000;213.015000;0 +20260209 020800;213.015000;213.015000;212.971000;212.994000;0 +20260209 020900;212.994000;213.056000;212.982000;213.053000;0 +20260209 021000;213.053000;213.058000;213.020000;213.047000;0 +20260209 021100;213.043000;213.043000;212.974000;212.995000;0 +20260209 021200;212.999000;213.010000;212.981000;213.001000;0 +20260209 021300;213.001000;213.001000;212.927000;212.932000;0 +20260209 021400;212.930000;212.955000;212.898000;212.904000;0 +20260209 021500;212.905000;212.942000;212.887000;212.888000;0 +20260209 021600;212.889000;212.915000;212.878000;212.886000;0 +20260209 021700;212.886000;212.902000;212.852000;212.853000;0 +20260209 021800;212.855000;212.855000;212.752000;212.760000;0 +20260209 021900;212.758000;212.788000;212.752000;212.781000;0 +20260209 022000;212.781000;212.822000;212.727000;212.731000;0 +20260209 022100;212.731000;212.750000;212.699000;212.724000;0 +20260209 022200;212.725000;212.731000;212.631000;212.640000;0 +20260209 022300;212.645000;212.671000;212.616000;212.628000;0 +20260209 022400;212.633000;212.633000;212.587000;212.594000;0 +20260209 022500;212.599000;212.645000;212.591000;212.635000;0 +20260209 022600;212.635000;212.653000;212.610000;212.642000;0 +20260209 022700;212.641000;212.667000;212.591000;212.615000;0 +20260209 022800;212.616000;212.633000;212.588000;212.616000;0 +20260209 022900;212.605000;212.633000;212.593000;212.610000;0 +20260209 023000;212.611000;212.623000;212.566000;212.616000;0 +20260209 023100;212.609000;212.633000;212.549000;212.570000;0 +20260209 023200;212.571000;212.635000;212.569000;212.587000;0 +20260209 023300;212.580000;212.619000;212.569000;212.603000;0 +20260209 023400;212.601000;212.647000;212.595000;212.613000;0 +20260209 023500;212.611000;212.632000;212.561000;212.593000;0 +20260209 023600;212.594000;212.628000;212.565000;212.608000;0 +20260209 023700;212.614000;212.634000;212.579000;212.594000;0 +20260209 023800;212.596000;212.676000;212.596000;212.675000;0 +20260209 023900;212.673000;212.698000;212.662000;212.683000;0 +20260209 024000;212.684000;212.706000;212.663000;212.702000;0 +20260209 024100;212.701000;212.719000;212.696000;212.716000;0 +20260209 024200;212.712000;212.733000;212.700000;212.732000;0 +20260209 024300;212.732000;212.788000;212.724000;212.768000;0 +20260209 024400;212.768000;212.790000;212.742000;212.750000;0 +20260209 024500;212.748000;212.811000;212.743000;212.795000;0 +20260209 024600;212.794000;212.848000;212.794000;212.845000;0 +20260209 024700;212.846000;212.849000;212.785000;212.796000;0 +20260209 024800;212.792000;212.860000;212.787000;212.855000;0 +20260209 024900;212.856000;212.925000;212.852000;212.908000;0 +20260209 025000;212.912000;212.933000;212.889000;212.919000;0 +20260209 025100;212.918000;212.972000;212.918000;212.941000;0 +20260209 025200;212.948000;212.965000;212.930000;212.948000;0 +20260209 025300;212.947000;212.990000;212.947000;212.975000;0 +20260209 025400;212.969000;212.971000;212.898000;212.920000;0 +20260209 025500;212.919000;212.925000;212.883000;212.923000;0 +20260209 025600;212.921000;212.974000;212.921000;212.971000;0 +20260209 025700;212.973000;213.054000;212.960000;213.042000;0 +20260209 025800;213.042000;213.072000;213.040000;213.040000;0 +20260209 025900;213.032000;213.051000;213.027000;213.036000;0 +20260209 030000;213.036000;213.073000;213.031000;213.056000;0 +20260209 030100;213.056000;213.056000;212.898000;213.029000;0 +20260209 030200;213.030000;213.030000;212.958000;212.977000;0 +20260209 030300;212.975000;213.038000;212.961000;213.016000;0 +20260209 030400;213.016000;213.080000;212.988000;213.005000;0 +20260209 030500;213.006000;213.022000;212.948000;212.982000;0 +20260209 030600;212.979000;213.053000;212.967000;213.027000;0 +20260209 030700;213.038000;213.080000;213.016000;213.080000;0 +20260209 030800;213.081000;213.128000;213.073000;213.100000;0 +20260209 030900;213.098000;213.121000;213.076000;213.099000;0 +20260209 031000;213.101000;213.117000;213.064000;213.117000;0 +20260209 031100;213.115000;213.135000;213.088000;213.130000;0 +20260209 031200;213.129000;213.132000;213.064000;213.064000;0 +20260209 031300;213.071000;213.078000;212.977000;212.983000;0 +20260209 031400;212.986000;213.029000;212.985000;213.013000;0 +20260209 031500;213.015000;213.040000;212.996000;213.028000;0 +20260209 031600;213.030000;213.074000;213.020000;213.067000;0 +20260209 031700;213.065000;213.103000;213.041000;213.093000;0 +20260209 031800;213.091000;213.099000;213.019000;213.029000;0 +20260209 031900;213.027000;213.177000;213.027000;213.163000;0 +20260209 032000;213.165000;213.202000;213.122000;213.126000;0 +20260209 032100;213.125000;213.164000;213.114000;213.127000;0 +20260209 032200;213.127000;213.128000;213.079000;213.093000;0 +20260209 032300;213.091000;213.140000;213.081000;213.113000;0 +20260209 032400;213.114000;213.162000;213.103000;213.162000;0 +20260209 032500;213.157000;213.157000;213.092000;213.115000;0 +20260209 032600;213.112000;213.112000;213.059000;213.092000;0 +20260209 032700;213.092000;213.120000;213.051000;213.078000;0 +20260209 032800;213.079000;213.093000;213.050000;213.072000;0 +20260209 032900;213.072000;213.083000;213.050000;213.069000;0 +20260209 033000;213.068000;213.100000;213.060000;213.082000;0 +20260209 033100;213.084000;213.107000;213.040000;213.046000;0 +20260209 033200;213.045000;213.065000;213.044000;213.048000;0 +20260209 033300;213.043000;213.055000;212.955000;212.977000;0 +20260209 033400;212.981000;213.051000;212.973000;213.034000;0 +20260209 033500;213.030000;213.040000;212.995000;213.027000;0 +20260209 033600;213.025000;213.027000;212.983000;212.990000;0 +20260209 033700;212.992000;213.037000;212.987000;213.004000;0 +20260209 033800;213.005000;213.041000;212.999000;213.031000;0 +20260209 033900;213.029000;213.052000;213.011000;213.052000;0 +20260209 034000;213.052000;213.078000;212.988000;213.003000;0 +20260209 034100;213.003000;213.045000;212.998000;213.043000;0 +20260209 034200;213.040000;213.066000;212.990000;213.009000;0 +20260209 034300;213.008000;213.029000;212.981000;213.014000;0 +20260209 034400;213.015000;213.024000;212.989000;213.021000;0 +20260209 034500;213.021000;213.030000;212.999000;213.023000;0 +20260209 034600;213.030000;213.092000;213.030000;213.091000;0 +20260209 034700;213.093000;213.126000;213.089000;213.124000;0 +20260209 034800;213.125000;213.171000;213.125000;213.168000;0 +20260209 034900;213.169000;213.172000;213.091000;213.112000;0 +20260209 035000;213.110000;213.114000;213.068000;213.080000;0 +20260209 035100;213.082000;213.121000;213.069000;213.100000;0 +20260209 035200;213.100000;213.142000;213.095000;213.115000;0 +20260209 035300;213.115000;213.142000;213.110000;213.114000;0 +20260209 035400;213.113000;213.125000;213.089000;213.098000;0 +20260209 035500;213.099000;213.127000;213.065000;213.070000;0 +20260209 035600;213.068000;213.097000;213.065000;213.094000;0 +20260209 035700;213.093000;213.095000;212.974000;212.974000;0 +20260209 035800;212.975000;212.987000;212.951000;212.971000;0 +20260209 035900;212.972000;212.992000;212.937000;212.989000;0 +20260209 040000;212.991000;213.003000;212.917000;212.931000;0 +20260209 040100;212.933000;212.953000;212.922000;212.953000;0 +20260209 040200;212.954000;213.040000;212.949000;213.040000;0 +20260209 040300;213.036000;213.087000;213.031000;213.037000;0 +20260209 040400;213.039000;213.060000;213.031000;213.050000;0 +20260209 040500;213.055000;213.121000;213.055000;213.121000;0 +20260209 040600;213.121000;213.125000;213.066000;213.066000;0 +20260209 040700;213.068000;213.098000;213.056000;213.082000;0 +20260209 040800;213.074000;213.134000;213.073000;213.114000;0 +20260209 040900;213.115000;213.121000;213.089000;213.089000;0 +20260209 041000;213.092000;213.129000;213.091000;213.129000;0 +20260209 041100;213.135000;213.135000;213.078000;213.079000;0 +20260209 041200;213.078000;213.092000;213.027000;213.092000;0 +20260209 041300;213.087000;213.088000;213.011000;213.014000;0 +20260209 041400;213.015000;213.027000;212.977000;212.988000;0 +20260209 041500;212.987000;213.006000;212.967000;212.997000;0 +20260209 041600;212.998000;213.032000;212.991000;213.027000;0 +20260209 041700;213.034000;213.065000;213.011000;213.065000;0 +20260209 041800;213.061000;213.066000;213.048000;213.048000;0 +20260209 041900;213.046000;213.052000;213.017000;213.040000;0 +20260209 042000;213.042000;213.044000;212.990000;213.013000;0 +20260209 042100;213.014000;213.020000;212.997000;212.998000;0 +20260209 042200;213.000000;213.019000;212.952000;212.952000;0 +20260209 042300;212.953000;212.956000;212.876000;212.888000;0 +20260209 042400;212.889000;212.894000;212.819000;212.867000;0 +20260209 042500;212.873000;212.890000;212.839000;212.842000;0 +20260209 042600;212.840000;212.894000;212.829000;212.881000;0 +20260209 042700;212.882000;212.948000;212.875000;212.936000;0 +20260209 042800;212.934000;212.935000;212.907000;212.934000;0 +20260209 042900;212.934000;212.952000;212.914000;212.917000;0 +20260209 043000;212.918000;212.922000;212.871000;212.889000;0 +20260209 043100;212.888000;212.951000;212.886000;212.924000;0 +20260209 043200;212.929000;212.953000;212.924000;212.952000;0 +20260209 043300;212.949000;212.997000;212.943000;212.983000;0 +20260209 043400;212.982000;212.996000;212.958000;212.965000;0 +20260209 043500;212.967000;213.006000;212.965000;212.986000;0 +20260209 043600;212.985000;213.017000;212.984000;213.009000;0 +20260209 043700;213.007000;213.008000;212.974000;212.980000;0 +20260209 043800;212.980000;213.004000;212.964000;212.971000;0 +20260209 043900;212.970000;212.983000;212.956000;212.973000;0 +20260209 044000;212.972000;212.976000;212.950000;212.960000;0 +20260209 044100;212.962000;212.990000;212.961000;212.981000;0 +20260209 044200;212.980000;212.983000;212.940000;212.944000;0 +20260209 044300;212.944000;212.977000;212.923000;212.975000;0 +20260209 044400;212.974000;212.994000;212.971000;212.986000;0 +20260209 044500;212.987000;212.987000;212.938000;212.939000;0 +20260209 044600;212.939000;212.953000;212.922000;212.937000;0 +20260209 044700;212.935000;212.971000;212.933000;212.971000;0 +20260209 044800;212.974000;212.984000;212.951000;212.968000;0 +20260209 044900;212.974000;212.978000;212.960000;212.960000;0 +20260209 045000;212.964000;213.001000;212.961000;212.997000;0 +20260209 045100;212.994000;213.022000;212.993000;213.013000;0 +20260209 045200;213.012000;213.014000;212.977000;213.005000;0 +20260209 045300;213.008000;213.049000;213.004000;213.035000;0 +20260209 045400;213.029000;213.067000;213.028000;213.047000;0 +20260209 045500;213.050000;213.074000;213.044000;213.061000;0 +20260209 045600;213.057000;213.096000;213.049000;213.070000;0 +20260209 045700;213.074000;213.089000;213.049000;213.056000;0 +20260209 045800;213.058000;213.078000;213.045000;213.050000;0 +20260209 045900;213.050000;213.055000;213.031000;213.038000;0 +20260209 050000;213.041000;213.056000;213.015000;213.045000;0 +20260209 050100;213.046000;213.051000;213.026000;213.048000;0 +20260209 050200;213.048000;213.048000;213.001000;213.013000;0 +20260209 050300;213.012000;213.040000;212.993000;213.029000;0 +20260209 050400;213.028000;213.073000;213.028000;213.037000;0 +20260209 050500;213.035000;213.070000;213.027000;213.064000;0 +20260209 050600;213.066000;213.069000;213.023000;213.028000;0 +20260209 050700;213.024000;213.093000;213.023000;213.093000;0 +20260209 050800;213.094000;213.114000;213.078000;213.094000;0 +20260209 050900;213.095000;213.115000;213.073000;213.074000;0 +20260209 051000;213.073000;213.109000;213.072000;213.103000;0 +20260209 051100;213.104000;213.167000;213.094000;213.121000;0 +20260209 051200;213.120000;213.130000;213.087000;213.125000;0 +20260209 051300;213.119000;213.121000;213.091000;213.113000;0 +20260209 051400;213.112000;213.149000;213.112000;213.132000;0 +20260209 051500;213.133000;213.133000;213.099000;213.120000;0 +20260209 051600;213.118000;213.142000;213.118000;213.142000;0 +20260209 051700;213.144000;213.155000;213.111000;213.126000;0 +20260209 051800;213.124000;213.154000;213.116000;213.147000;0 +20260209 051900;213.150000;213.152000;213.129000;213.152000;0 +20260209 052000;213.149000;213.149000;213.098000;213.108000;0 +20260209 052100;213.104000;213.124000;213.090000;213.094000;0 +20260209 052200;213.094000;213.098000;213.076000;213.094000;0 +20260209 052300;213.095000;213.118000;213.083000;213.108000;0 +20260209 052400;213.109000;213.124000;213.102000;213.111000;0 +20260209 052500;213.108000;213.121000;213.080000;213.120000;0 +20260209 052600;213.120000;213.125000;213.085000;213.105000;0 +20260209 052700;213.103000;213.133000;213.098000;213.110000;0 +20260209 052800;213.108000;213.124000;213.095000;213.123000;0 +20260209 052900;213.131000;213.135000;213.098000;213.098000;0 +20260209 053000;213.096000;213.121000;213.081000;213.120000;0 +20260209 053100;213.118000;213.132000;213.082000;213.087000;0 +20260209 053200;213.084000;213.107000;213.062000;213.063000;0 +20260209 053300;213.064000;213.064000;213.013000;213.013000;0 +20260209 053400;213.013000;213.043000;213.013000;213.028000;0 +20260209 053500;213.024000;213.040000;213.002000;213.018000;0 +20260209 053600;213.019000;213.039000;212.980000;213.035000;0 +20260209 053700;213.039000;213.081000;213.038000;213.078000;0 +20260209 053800;213.082000;213.107000;213.072000;213.104000;0 +20260209 053900;213.105000;213.142000;213.101000;213.130000;0 +20260209 054000;213.127000;213.181000;213.115000;213.177000;0 +20260209 054100;213.174000;213.180000;213.114000;213.122000;0 +20260209 054200;213.118000;213.133000;213.099000;213.131000;0 +20260209 054300;213.130000;213.163000;213.130000;213.146000;0 +20260209 054400;213.145000;213.218000;213.142000;213.206000;0 +20260209 054500;213.204000;213.283000;213.195000;213.276000;0 +20260209 054600;213.280000;213.314000;213.274000;213.291000;0 +20260209 054700;213.296000;213.298000;213.223000;213.228000;0 +20260209 054800;213.230000;213.244000;213.171000;213.174000;0 +20260209 054900;213.175000;213.230000;213.168000;213.204000;0 +20260209 055000;213.204000;213.253000;213.194000;213.252000;0 +20260209 055100;213.253000;213.267000;213.223000;213.247000;0 +20260209 055200;213.250000;213.308000;213.240000;213.306000;0 +20260209 055300;213.307000;213.316000;213.287000;213.299000;0 +20260209 055400;213.301000;213.310000;213.269000;213.279000;0 +20260209 055500;213.279000;213.287000;213.210000;213.220000;0 +20260209 055600;213.223000;213.292000;213.219000;213.284000;0 +20260209 055700;213.281000;213.281000;213.247000;213.259000;0 +20260209 055800;213.258000;213.277000;213.258000;213.266000;0 +20260209 055900;213.260000;213.285000;213.226000;213.226000;0 +20260209 060000;213.224000;213.256000;213.170000;213.225000;0 +20260209 060100;213.223000;213.251000;213.063000;213.223000;0 +20260209 060200;213.223000;213.266000;213.183000;213.237000;0 +20260209 060300;213.241000;213.241000;213.148000;213.178000;0 +20260209 060400;213.179000;213.188000;213.122000;213.183000;0 +20260209 060500;213.182000;213.211000;213.139000;213.154000;0 +20260209 060600;213.152000;213.152000;213.091000;213.101000;0 +20260209 060700;213.099000;213.149000;213.089000;213.098000;0 +20260209 060800;213.097000;213.110000;213.080000;213.080000;0 +20260209 060900;213.090000;213.113000;213.076000;213.105000;0 +20260209 061000;213.103000;213.132000;213.091000;213.100000;0 +20260209 061100;213.107000;213.124000;213.089000;213.101000;0 +20260209 061200;213.102000;213.144000;213.085000;213.130000;0 +20260209 061300;213.128000;213.201000;213.117000;213.201000;0 +20260209 061400;213.204000;213.324000;213.204000;213.319000;0 +20260209 061500;213.316000;213.333000;213.221000;213.221000;0 +20260209 061600;213.220000;213.263000;213.210000;213.231000;0 +20260209 061700;213.230000;213.263000;213.212000;213.233000;0 +20260209 061800;213.232000;213.237000;213.204000;213.209000;0 +20260209 061900;213.206000;213.222000;213.183000;213.193000;0 +20260209 062000;213.193000;213.196000;213.147000;213.147000;0 +20260209 062100;213.145000;213.149000;213.132000;213.146000;0 +20260209 062200;213.145000;213.152000;213.137000;213.150000;0 +20260209 062300;213.151000;213.162000;213.132000;213.143000;0 +20260209 062400;213.143000;213.168000;213.133000;213.138000;0 +20260209 062500;213.138000;213.160000;213.136000;213.154000;0 +20260209 062600;213.155000;213.165000;213.125000;213.126000;0 +20260209 062700;213.127000;213.181000;213.121000;213.162000;0 +20260209 062800;213.161000;213.168000;213.129000;213.134000;0 +20260209 062900;213.133000;213.195000;213.127000;213.184000;0 +20260209 063000;213.182000;213.195000;213.145000;213.153000;0 +20260209 063100;213.162000;213.181000;213.152000;213.181000;0 +20260209 063200;213.185000;213.218000;213.167000;213.195000;0 +20260209 063300;213.193000;213.242000;213.192000;213.237000;0 +20260209 063400;213.232000;213.267000;213.217000;213.248000;0 +20260209 063500;213.249000;213.314000;213.248000;213.311000;0 +20260209 063600;213.310000;213.349000;213.308000;213.333000;0 +20260209 063700;213.332000;213.360000;213.328000;213.350000;0 +20260209 063800;213.352000;213.352000;213.285000;213.319000;0 +20260209 063900;213.322000;213.328000;213.302000;213.321000;0 +20260209 064000;213.324000;213.398000;213.298000;213.320000;0 +20260209 064100;213.320000;213.343000;213.309000;213.329000;0 +20260209 064200;213.328000;213.374000;213.293000;213.369000;0 +20260209 064300;213.371000;213.375000;213.340000;213.354000;0 +20260209 064400;213.354000;213.393000;213.340000;213.384000;0 +20260209 064500;213.388000;213.449000;213.381000;213.381000;0 +20260209 064600;213.379000;213.398000;213.345000;213.383000;0 +20260209 064700;213.384000;213.385000;213.363000;213.366000;0 +20260209 064800;213.368000;213.387000;213.317000;213.325000;0 +20260209 064900;213.326000;213.343000;213.302000;213.317000;0 +20260209 065000;213.315000;213.392000;213.314000;213.389000;0 +20260209 065100;213.387000;213.438000;213.382000;213.436000;0 +20260209 065200;213.437000;213.443000;213.389000;213.393000;0 +20260209 065300;213.395000;213.405000;213.355000;213.366000;0 +20260209 065400;213.364000;213.417000;213.355000;213.417000;0 +20260209 065500;213.412000;213.437000;213.392000;213.399000;0 +20260209 065600;213.400000;213.421000;213.384000;213.387000;0 +20260209 065700;213.389000;213.414000;213.341000;213.402000;0 +20260209 065800;213.401000;213.445000;213.395000;213.397000;0 +20260209 065900;213.396000;213.414000;213.355000;213.374000;0 +20260209 070000;213.376000;213.387000;213.356000;213.372000;0 +20260209 070100;213.372000;213.398000;213.296000;213.313000;0 +20260209 070200;213.310000;213.310000;213.267000;213.284000;0 +20260209 070300;213.283000;213.296000;213.263000;213.294000;0 +20260209 070400;213.294000;213.312000;213.288000;213.296000;0 +20260209 070500;213.296000;213.324000;213.283000;213.324000;0 +20260209 070600;213.323000;213.356000;213.315000;213.327000;0 +20260209 070700;213.327000;213.366000;213.327000;213.352000;0 +20260209 070800;213.350000;213.350000;213.317000;213.327000;0 +20260209 070900;213.323000;213.355000;213.323000;213.345000;0 +20260209 071000;213.343000;213.412000;213.343000;213.408000;0 +20260209 071100;213.405000;213.491000;213.405000;213.489000;0 +20260209 071200;213.489000;213.491000;213.422000;213.424000;0 +20260209 071300;213.423000;213.433000;213.395000;213.407000;0 +20260209 071400;213.408000;213.436000;213.406000;213.420000;0 +20260209 071500;213.421000;213.459000;213.417000;213.441000;0 +20260209 071600;213.439000;213.464000;213.438000;213.463000;0 +20260209 071700;213.462000;213.470000;213.449000;213.454000;0 +20260209 071800;213.453000;213.455000;213.379000;213.420000;0 +20260209 071900;213.419000;213.465000;213.417000;213.461000;0 +20260209 072000;213.460000;213.472000;213.447000;213.471000;0 +20260209 072100;213.469000;213.549000;213.456000;213.540000;0 +20260209 072200;213.540000;213.577000;213.534000;213.572000;0 +20260209 072300;213.573000;213.629000;213.572000;213.626000;0 +20260209 072400;213.627000;213.628000;213.600000;213.613000;0 +20260209 072500;213.612000;213.612000;213.572000;213.581000;0 +20260209 072600;213.580000;213.600000;213.571000;213.573000;0 +20260209 072700;213.570000;213.588000;213.564000;213.580000;0 +20260209 072800;213.579000;213.628000;213.573000;213.606000;0 +20260209 072900;213.607000;213.634000;213.607000;213.615000;0 +20260209 073000;213.617000;213.629000;213.597000;213.600000;0 +20260209 073100;213.601000;213.606000;213.546000;213.550000;0 +20260209 073200;213.552000;213.563000;213.532000;213.546000;0 +20260209 073300;213.544000;213.574000;213.529000;213.560000;0 +20260209 073400;213.560000;213.581000;213.553000;213.569000;0 +20260209 073500;213.578000;213.604000;213.571000;213.592000;0 +20260209 073600;213.594000;213.633000;213.592000;213.618000;0 +20260209 073700;213.619000;213.623000;213.602000;213.612000;0 +20260209 073800;213.611000;213.623000;213.604000;213.608000;0 +20260209 073900;213.614000;213.648000;213.614000;213.639000;0 +20260209 074000;213.641000;213.657000;213.592000;213.592000;0 +20260209 074100;213.592000;213.620000;213.587000;213.602000;0 +20260209 074200;213.604000;213.623000;213.577000;213.585000;0 +20260209 074300;213.585000;213.594000;213.571000;213.593000;0 +20260209 074400;213.605000;213.625000;213.603000;213.609000;0 +20260209 074500;213.609000;213.636000;213.596000;213.619000;0 +20260209 074600;213.620000;213.658000;213.613000;213.627000;0 +20260209 074700;213.627000;213.662000;213.627000;213.650000;0 +20260209 074800;213.651000;213.660000;213.649000;213.653000;0 +20260209 074900;213.651000;213.651000;213.613000;213.617000;0 +20260209 075000;213.619000;213.624000;213.585000;213.596000;0 +20260209 075100;213.597000;213.597000;213.564000;213.577000;0 +20260209 075200;213.565000;213.621000;213.565000;213.621000;0 +20260209 075300;213.621000;213.652000;213.613000;213.643000;0 +20260209 075400;213.645000;213.711000;213.637000;213.678000;0 +20260209 075500;213.677000;213.677000;213.569000;213.593000;0 +20260209 075600;213.590000;213.633000;213.581000;213.625000;0 +20260209 075700;213.624000;213.647000;213.606000;213.628000;0 +20260209 075800;213.628000;213.652000;213.578000;213.620000;0 +20260209 075900;213.621000;213.637000;213.600000;213.615000;0 +20260209 080000;213.617000;213.630000;213.565000;213.582000;0 +20260209 080100;213.583000;213.597000;213.529000;213.538000;0 +20260209 080200;213.541000;213.567000;213.510000;213.541000;0 +20260209 080300;213.538000;213.564000;213.520000;213.528000;0 +20260209 080400;213.529000;213.561000;213.527000;213.554000;0 +20260209 080500;213.550000;213.608000;213.541000;213.588000;0 +20260209 080600;213.588000;213.616000;213.588000;213.599000;0 +20260209 080700;213.600000;213.601000;213.470000;213.513000;0 +20260209 080800;213.512000;213.533000;213.480000;213.480000;0 +20260209 080900;213.474000;213.479000;213.311000;213.339000;0 +20260209 081000;213.337000;213.363000;213.316000;213.331000;0 +20260209 081100;213.329000;213.334000;213.265000;213.287000;0 +20260209 081200;213.287000;213.339000;213.275000;213.306000;0 +20260209 081300;213.304000;213.322000;213.291000;213.317000;0 +20260209 081400;213.318000;213.325000;213.234000;213.244000;0 +20260209 081500;213.240000;213.243000;213.181000;213.184000;0 +20260209 081600;213.183000;213.219000;213.128000;213.128000;0 +20260209 081700;213.129000;213.178000;213.129000;213.154000;0 +20260209 081800;213.161000;213.182000;213.150000;213.178000;0 +20260209 081900;213.173000;213.255000;213.166000;213.217000;0 +20260209 082000;213.216000;213.243000;213.196000;213.211000;0 +20260209 082100;213.208000;213.208000;213.169000;213.200000;0 +20260209 082200;213.204000;213.205000;213.171000;213.200000;0 +20260209 082300;213.200000;213.233000;213.117000;213.125000;0 +20260209 082400;213.127000;213.194000;213.062000;213.175000;0 +20260209 082500;213.175000;213.191000;213.115000;213.121000;0 +20260209 082600;213.121000;213.151000;213.095000;213.097000;0 +20260209 082700;213.097000;213.159000;213.093000;213.109000;0 +20260209 082800;213.106000;213.118000;213.048000;213.091000;0 +20260209 082900;213.089000;213.163000;213.072000;213.163000;0 +20260209 083000;213.163000;213.176000;213.105000;213.107000;0 +20260209 083100;213.106000;213.160000;213.092000;213.109000;0 +20260209 083200;213.109000;213.154000;213.090000;213.152000;0 +20260209 083300;213.150000;213.153000;213.107000;213.136000;0 +20260209 083400;213.136000;213.155000;213.100000;213.120000;0 +20260209 083500;213.119000;213.182000;213.119000;213.127000;0 +20260209 083600;213.129000;213.183000;213.122000;213.163000;0 +20260209 083700;213.163000;213.170000;213.125000;213.135000;0 +20260209 083800;213.130000;213.149000;213.112000;213.131000;0 +20260209 083900;213.129000;213.143000;213.095000;213.126000;0 +20260209 084000;213.126000;213.140000;213.074000;213.084000;0 +20260209 084100;213.085000;213.093000;213.052000;213.084000;0 +20260209 084200;213.088000;213.122000;213.078000;213.111000;0 +20260209 084300;213.118000;213.152000;213.115000;213.142000;0 +20260209 084400;213.140000;213.148000;213.103000;213.111000;0 +20260209 084500;213.108000;213.120000;213.036000;213.040000;0 +20260209 084600;213.039000;213.102000;213.039000;213.095000;0 +20260209 084700;213.092000;213.096000;213.054000;213.056000;0 +20260209 084800;213.051000;213.051000;212.956000;212.956000;0 +20260209 084900;212.954000;212.991000;212.954000;212.977000;0 +20260209 085000;212.979000;213.019000;212.977000;213.019000;0 +20260209 085100;213.018000;213.021000;212.950000;212.969000;0 +20260209 085200;212.971000;212.989000;212.929000;212.971000;0 +20260209 085300;212.971000;212.976000;212.910000;212.918000;0 +20260209 085400;212.918000;212.943000;212.892000;212.909000;0 +20260209 085500;212.914000;212.918000;212.855000;212.898000;0 +20260209 085600;212.902000;212.921000;212.881000;212.891000;0 +20260209 085700;212.894000;212.922000;212.886000;212.916000;0 +20260209 085800;212.919000;212.919000;212.840000;212.842000;0 +20260209 085900;212.842000;212.876000;212.823000;212.853000;0 +20260209 090000;212.852000;212.870000;212.799000;212.802000;0 +20260209 090100;212.800000;212.819000;212.736000;212.736000;0 +20260209 090200;212.739000;212.765000;212.705000;212.710000;0 +20260209 090300;212.712000;212.712000;212.571000;212.609000;0 +20260209 090400;212.612000;212.612000;212.503000;212.518000;0 +20260209 090500;212.518000;212.525000;212.424000;212.433000;0 +20260209 090600;212.429000;212.457000;212.294000;212.306000;0 +20260209 090700;212.305000;212.385000;212.221000;212.376000;0 +20260209 090800;212.382000;212.418000;212.324000;212.348000;0 +20260209 090900;212.347000;212.409000;212.338000;212.390000;0 +20260209 091000;212.393000;212.406000;212.300000;212.322000;0 +20260209 091100;212.322000;212.360000;212.301000;212.342000;0 +20260209 091200;212.343000;212.356000;212.220000;212.249000;0 +20260209 091300;212.248000;212.314000;212.241000;212.301000;0 +20260209 091400;212.301000;212.315000;212.256000;212.264000;0 +20260209 091500;212.271000;212.290000;212.235000;212.243000;0 +20260209 091600;212.246000;212.334000;212.240000;212.331000;0 +20260209 091700;212.335000;212.395000;212.324000;212.385000;0 +20260209 091800;212.394000;212.396000;212.368000;212.389000;0 +20260209 091900;212.391000;212.394000;212.292000;212.303000;0 +20260209 092000;212.311000;212.398000;212.274000;212.280000;0 +20260209 092100;212.275000;212.306000;212.173000;212.250000;0 +20260209 092200;212.250000;212.303000;212.228000;212.300000;0 +20260209 092300;212.299000;212.443000;212.299000;212.428000;0 +20260209 092400;212.433000;212.478000;212.426000;212.428000;0 +20260209 092500;212.415000;212.415000;212.291000;212.293000;0 +20260209 092600;212.290000;212.371000;212.248000;212.308000;0 +20260209 092700;212.313000;212.354000;212.293000;212.335000;0 +20260209 092800;212.334000;212.343000;212.247000;212.283000;0 +20260209 092900;212.275000;212.374000;212.262000;212.338000;0 +20260209 093000;212.347000;212.349000;212.232000;212.249000;0 +20260209 093100;212.250000;212.265000;212.217000;212.244000;0 +20260209 093200;212.244000;212.306000;212.188000;212.290000;0 +20260209 093300;212.294000;212.317000;212.235000;212.276000;0 +20260209 093400;212.274000;212.319000;212.205000;212.214000;0 +20260209 093500;212.211000;212.237000;212.145000;212.172000;0 +20260209 093600;212.174000;212.194000;212.121000;212.158000;0 +20260209 093700;212.156000;212.191000;212.134000;212.173000;0 +20260209 093800;212.177000;212.220000;212.141000;212.155000;0 +20260209 093900;212.154000;212.307000;212.140000;212.307000;0 +20260209 094000;212.306000;212.350000;212.283000;212.304000;0 +20260209 094100;212.301000;212.301000;212.256000;212.296000;0 +20260209 094200;212.299000;212.392000;212.296000;212.372000;0 +20260209 094300;212.371000;212.398000;212.275000;212.289000;0 +20260209 094400;212.285000;212.289000;212.256000;212.262000;0 +20260209 094500;212.259000;212.260000;212.199000;212.223000;0 +20260209 094600;212.223000;212.268000;212.220000;212.246000;0 +20260209 094700;212.247000;212.285000;212.165000;212.284000;0 +20260209 094800;212.283000;212.319000;212.271000;212.287000;0 +20260209 094900;212.288000;212.322000;212.240000;212.321000;0 +20260209 095000;212.323000;212.326000;212.253000;212.272000;0 +20260209 095100;212.270000;212.330000;212.263000;212.329000;0 +20260209 095200;212.335000;212.363000;212.292000;212.351000;0 +20260209 095300;212.359000;212.375000;212.325000;212.325000;0 +20260209 095400;212.324000;212.341000;212.310000;212.323000;0 +20260209 095500;212.322000;212.423000;212.313000;212.423000;0 +20260209 095600;212.421000;212.486000;212.417000;212.456000;0 +20260209 095700;212.449000;212.449000;212.324000;212.343000;0 +20260209 095800;212.345000;212.397000;212.301000;212.320000;0 +20260209 095900;212.317000;212.319000;212.241000;212.308000;0 +20260209 100000;212.308000;212.441000;212.293000;212.398000;0 +20260209 100100;212.394000;212.476000;212.365000;212.476000;0 +20260209 100200;212.476000;212.508000;212.427000;212.435000;0 +20260209 100300;212.435000;212.642000;212.434000;212.608000;0 +20260209 100400;212.609000;212.664000;212.554000;212.646000;0 +20260209 100500;212.649000;212.653000;212.621000;212.644000;0 +20260209 100600;212.642000;212.667000;212.615000;212.666000;0 +20260209 100700;212.667000;212.683000;212.651000;212.664000;0 +20260209 100800;212.670000;212.702000;212.650000;212.671000;0 +20260209 100900;212.673000;212.673000;212.606000;212.635000;0 +20260209 101000;212.634000;212.722000;212.623000;212.692000;0 +20260209 101100;212.692000;212.728000;212.672000;212.718000;0 +20260209 101200;212.718000;212.783000;212.688000;212.771000;0 +20260209 101300;212.771000;212.813000;212.737000;212.805000;0 +20260209 101400;212.805000;212.889000;212.782000;212.844000;0 +20260209 101500;212.846000;212.890000;212.830000;212.874000;0 +20260209 101600;212.872000;212.907000;212.845000;212.854000;0 +20260209 101700;212.859000;212.871000;212.830000;212.854000;0 +20260209 101800;212.853000;212.899000;212.842000;212.888000;0 +20260209 101900;212.885000;213.015000;212.877000;213.002000;0 +20260209 102000;212.992000;213.028000;212.985000;212.987000;0 +20260209 102100;212.984000;212.989000;212.937000;212.952000;0 +20260209 102200;212.950000;212.951000;212.851000;212.882000;0 +20260209 102300;212.882000;212.919000;212.878000;212.909000;0 +20260209 102400;212.911000;212.931000;212.898000;212.912000;0 +20260209 102500;212.910000;212.917000;212.855000;212.876000;0 +20260209 102600;212.877000;212.878000;212.806000;212.816000;0 +20260209 102700;212.822000;212.851000;212.808000;212.844000;0 +20260209 102800;212.844000;212.864000;212.804000;212.812000;0 +20260209 102900;212.810000;212.904000;212.808000;212.902000;0 +20260209 103000;212.899000;212.931000;212.890000;212.917000;0 +20260209 103100;212.916000;212.929000;212.898000;212.903000;0 +20260209 103200;212.901000;212.903000;212.857000;212.875000;0 +20260209 103300;212.875000;212.881000;212.821000;212.835000;0 +20260209 103400;212.835000;212.850000;212.809000;212.844000;0 +20260209 103500;212.843000;212.851000;212.826000;212.836000;0 +20260209 103600;212.836000;212.846000;212.798000;212.817000;0 +20260209 103700;212.815000;212.837000;212.815000;212.832000;0 +20260209 103800;212.830000;212.985000;212.814000;212.955000;0 +20260209 103900;212.954000;213.032000;212.945000;213.032000;0 +20260209 104000;213.032000;213.160000;213.011000;213.152000;0 +20260209 104100;213.153000;213.153000;213.078000;213.081000;0 +20260209 104200;213.081000;213.103000;213.043000;213.076000;0 +20260209 104300;213.077000;213.084000;213.032000;213.032000;0 +20260209 104400;213.032000;213.036000;212.975000;213.008000;0 +20260209 104500;213.011000;213.012000;212.949000;212.949000;0 +20260209 104600;212.950000;212.967000;212.904000;212.930000;0 +20260209 104700;212.928000;212.989000;212.890000;212.968000;0 +20260209 104800;212.970000;213.132000;212.968000;213.114000;0 +20260209 104900;213.117000;213.117000;213.049000;213.061000;0 +20260209 105000;213.061000;213.067000;213.029000;213.061000;0 +20260209 105100;213.060000;213.072000;213.013000;213.049000;0 +20260209 105200;213.048000;213.086000;213.048000;213.057000;0 +20260209 105300;213.060000;213.140000;213.044000;213.137000;0 +20260209 105400;213.133000;213.161000;213.113000;213.120000;0 +20260209 105500;213.128000;213.155000;213.092000;213.134000;0 +20260209 105600;213.136000;213.177000;213.123000;213.171000;0 +20260209 105700;213.174000;213.252000;213.171000;213.200000;0 +20260209 105800;213.199000;213.235000;213.189000;213.197000;0 +20260209 105900;213.202000;213.210000;213.163000;213.167000;0 +20260209 110000;213.176000;213.230000;213.169000;213.218000;0 +20260209 110100;213.219000;213.251000;213.201000;213.242000;0 +20260209 110200;213.244000;213.296000;213.229000;213.293000;0 +20260209 110300;213.293000;213.367000;213.288000;213.365000;0 +20260209 110400;213.368000;213.378000;213.343000;213.372000;0 +20260209 110500;213.370000;213.380000;213.307000;213.307000;0 +20260209 110600;213.304000;213.304000;213.264000;213.270000;0 +20260209 110700;213.270000;213.278000;213.250000;213.258000;0 +20260209 110800;213.260000;213.302000;213.252000;213.290000;0 +20260209 110900;213.289000;213.303000;213.274000;213.281000;0 +20260209 111000;213.282000;213.325000;213.267000;213.315000;0 +20260209 111100;213.318000;213.331000;213.270000;213.307000;0 +20260209 111200;213.309000;213.325000;213.283000;213.324000;0 +20260209 111300;213.323000;213.388000;213.323000;213.381000;0 +20260209 111400;213.378000;213.381000;213.347000;213.349000;0 +20260209 111500;213.348000;213.366000;213.333000;213.344000;0 +20260209 111600;213.341000;213.357000;213.299000;213.299000;0 +20260209 111700;213.300000;213.364000;213.295000;213.322000;0 +20260209 111800;213.323000;213.351000;213.284000;213.284000;0 +20260209 111900;213.284000;213.286000;213.232000;213.232000;0 +20260209 112000;213.234000;213.289000;213.229000;213.259000;0 +20260209 112100;213.260000;213.279000;213.243000;213.243000;0 +20260209 112200;213.243000;213.270000;213.231000;213.248000;0 +20260209 112300;213.247000;213.276000;213.245000;213.257000;0 +20260209 112400;213.251000;213.275000;213.244000;213.266000;0 +20260209 112500;213.266000;213.266000;213.210000;213.234000;0 +20260209 112600;213.235000;213.264000;213.228000;213.252000;0 +20260209 112700;213.254000;213.298000;213.243000;213.289000;0 +20260209 112800;213.291000;213.300000;213.280000;213.287000;0 +20260209 112900;213.288000;213.303000;213.275000;213.293000;0 +20260209 113000;213.296000;213.309000;213.270000;213.271000;0 +20260209 113100;213.275000;213.291000;213.243000;213.291000;0 +20260209 113200;213.290000;213.292000;213.240000;213.255000;0 +20260209 113300;213.258000;213.286000;213.256000;213.278000;0 +20260209 113400;213.275000;213.287000;213.263000;213.275000;0 +20260209 113500;213.271000;213.298000;213.266000;213.293000;0 +20260209 113600;213.295000;213.339000;213.293000;213.314000;0 +20260209 113700;213.310000;213.310000;213.282000;213.282000;0 +20260209 113800;213.283000;213.295000;213.264000;213.276000;0 +20260209 113900;213.278000;213.326000;213.278000;213.324000;0 +20260209 114000;213.331000;213.342000;213.320000;213.330000;0 +20260209 114100;213.331000;213.349000;213.320000;213.321000;0 +20260209 114200;213.319000;213.336000;213.316000;213.326000;0 +20260209 114300;213.327000;213.365000;213.314000;213.363000;0 +20260209 114400;213.363000;213.364000;213.330000;213.343000;0 +20260209 114500;213.345000;213.346000;213.321000;213.332000;0 +20260209 114600;213.331000;213.334000;213.284000;213.300000;0 +20260209 114700;213.300000;213.313000;213.292000;213.301000;0 +20260209 114800;213.304000;213.308000;213.287000;213.287000;0 +20260209 114900;213.286000;213.320000;213.282000;213.310000;0 +20260209 115000;213.311000;213.321000;213.297000;213.311000;0 +20260209 115100;213.310000;213.345000;213.308000;213.329000;0 +20260209 115200;213.327000;213.366000;213.315000;213.358000;0 +20260209 115300;213.357000;213.357000;213.303000;213.303000;0 +20260209 115400;213.307000;213.309000;213.290000;213.293000;0 +20260209 115500;213.291000;213.300000;213.269000;213.300000;0 +20260209 115600;213.302000;213.312000;213.293000;213.304000;0 +20260209 115700;213.298000;213.313000;213.292000;213.305000;0 +20260209 115800;213.302000;213.330000;213.289000;213.328000;0 +20260209 115900;213.329000;213.356000;213.305000;213.306000;0 +20260209 120000;213.306000;213.328000;213.297000;213.326000;0 +20260209 120100;213.324000;213.327000;213.284000;213.312000;0 +20260209 120200;213.314000;213.332000;213.267000;213.267000;0 +20260209 120300;213.269000;213.301000;213.269000;213.277000;0 +20260209 120400;213.278000;213.292000;213.253000;213.291000;0 +20260209 120500;213.288000;213.322000;213.288000;213.315000;0 +20260209 120600;213.318000;213.330000;213.301000;213.306000;0 +20260209 120700;213.307000;213.311000;213.255000;213.256000;0 +20260209 120800;213.255000;213.282000;213.242000;213.251000;0 +20260209 120900;213.249000;213.257000;213.225000;213.226000;0 +20260209 121000;213.232000;213.240000;213.216000;213.222000;0 +20260209 121100;213.218000;213.219000;213.198000;213.209000;0 +20260209 121200;213.204000;213.224000;213.175000;213.183000;0 +20260209 121300;213.183000;213.197000;213.182000;213.193000;0 +20260209 121400;213.192000;213.207000;213.188000;213.201000;0 +20260209 121500;213.198000;213.245000;213.198000;213.243000;0 +20260209 121600;213.244000;213.314000;213.233000;213.310000;0 +20260209 121700;213.310000;213.323000;213.263000;213.274000;0 +20260209 121800;213.276000;213.285000;213.260000;213.270000;0 +20260209 121900;213.272000;213.280000;213.265000;213.266000;0 +20260209 122000;213.267000;213.281000;213.244000;213.246000;0 +20260209 122100;213.250000;213.262000;213.232000;213.233000;0 +20260209 122200;213.233000;213.246000;213.222000;213.246000;0 +20260209 122300;213.249000;213.268000;213.241000;213.255000;0 +20260209 122400;213.255000;213.281000;213.253000;213.280000;0 +20260209 122500;213.282000;213.282000;213.253000;213.257000;0 +20260209 122600;213.254000;213.260000;213.196000;213.198000;0 +20260209 122700;213.198000;213.251000;213.198000;213.249000;0 +20260209 122800;213.245000;213.278000;213.245000;213.275000;0 +20260209 122900;213.275000;213.310000;213.274000;213.301000;0 +20260209 123000;213.301000;213.328000;213.301000;213.312000;0 +20260209 123100;213.311000;213.335000;213.311000;213.331000;0 +20260209 123200;213.328000;213.364000;213.325000;213.361000;0 +20260209 123300;213.364000;213.366000;213.351000;213.353000;0 +20260209 123400;213.352000;213.368000;213.346000;213.346000;0 +20260209 123500;213.347000;213.371000;213.346000;213.361000;0 +20260209 123600;213.365000;213.374000;213.350000;213.351000;0 +20260209 123700;213.349000;213.355000;213.320000;213.321000;0 +20260209 123800;213.323000;213.333000;213.307000;213.317000;0 +20260209 123900;213.321000;213.321000;213.289000;213.304000;0 +20260209 124000;213.305000;213.314000;213.292000;213.303000;0 +20260209 124100;213.302000;213.303000;213.283000;213.284000;0 +20260209 124200;213.284000;213.300000;213.276000;213.276000;0 +20260209 124300;213.270000;213.285000;213.266000;213.267000;0 +20260209 124400;213.268000;213.282000;213.261000;213.277000;0 +20260209 124500;213.276000;213.281000;213.269000;213.280000;0 +20260209 124600;213.281000;213.295000;213.272000;213.274000;0 +20260209 124700;213.275000;213.291000;213.268000;213.287000;0 +20260209 124800;213.284000;213.291000;213.270000;213.279000;0 +20260209 124900;213.280000;213.318000;213.280000;213.318000;0 +20260209 125000;213.317000;213.335000;213.311000;213.331000;0 +20260209 125100;213.327000;213.331000;213.305000;213.313000;0 +20260209 125200;213.318000;213.325000;213.306000;213.324000;0 +20260209 125300;213.320000;213.330000;213.318000;213.324000;0 +20260209 125400;213.323000;213.328000;213.306000;213.327000;0 +20260209 125500;213.327000;213.338000;213.296000;213.312000;0 +20260209 125600;213.310000;213.344000;213.300000;213.302000;0 +20260209 125700;213.300000;213.303000;213.278000;213.282000;0 +20260209 125800;213.280000;213.296000;213.260000;213.260000;0 +20260209 125900;213.262000;213.262000;213.220000;213.226000;0 +20260209 130000;213.224000;213.233000;213.201000;213.203000;0 +20260209 130100;213.204000;213.223000;213.172000;213.175000;0 +20260209 130200;213.177000;213.192000;213.170000;213.184000;0 +20260209 130300;213.184000;213.216000;213.179000;213.184000;0 +20260209 130400;213.188000;213.204000;213.179000;213.194000;0 +20260209 130500;213.194000;213.198000;213.166000;213.188000;0 +20260209 130600;213.183000;213.217000;213.169000;213.217000;0 +20260209 130700;213.222000;213.222000;213.193000;213.194000;0 +20260209 130800;213.194000;213.194000;213.180000;213.191000;0 +20260209 130900;213.190000;213.196000;213.167000;213.189000;0 +20260209 131000;213.188000;213.203000;213.188000;213.200000;0 +20260209 131100;213.201000;213.221000;213.201000;213.212000;0 +20260209 131200;213.210000;213.213000;213.206000;213.210000;0 +20260209 131300;213.220000;213.233000;213.198000;213.227000;0 +20260209 131400;213.225000;213.237000;213.225000;213.234000;0 +20260209 131500;213.235000;213.243000;213.228000;213.236000;0 +20260209 131600;213.236000;213.271000;213.235000;213.256000;0 +20260209 131700;213.256000;213.256000;213.249000;213.253000;0 +20260209 131800;213.256000;213.273000;213.255000;213.259000;0 +20260209 131900;213.261000;213.297000;213.251000;213.271000;0 +20260209 132000;213.269000;213.304000;213.269000;213.297000;0 +20260209 132100;213.296000;213.297000;213.190000;213.212000;0 +20260209 132200;213.213000;213.246000;213.207000;213.240000;0 +20260209 132300;213.234000;213.249000;213.216000;213.249000;0 +20260209 132400;213.247000;213.254000;213.236000;213.247000;0 +20260209 132500;213.248000;213.267000;213.237000;213.262000;0 +20260209 132600;213.263000;213.276000;213.248000;213.275000;0 +20260209 132700;213.277000;213.323000;213.273000;213.319000;0 +20260209 132800;213.319000;213.327000;213.306000;213.314000;0 +20260209 132900;213.314000;213.333000;213.310000;213.330000;0 +20260209 133000;213.330000;213.343000;213.300000;213.320000;0 +20260209 133100;213.321000;213.352000;213.316000;213.323000;0 +20260209 133200;213.323000;213.331000;213.306000;213.331000;0 +20260209 133300;213.329000;213.336000;213.314000;213.331000;0 +20260209 133400;213.330000;213.344000;213.322000;213.338000;0 +20260209 133500;213.337000;213.387000;213.337000;213.384000;0 +20260209 133600;213.384000;213.400000;213.365000;213.367000;0 +20260209 133700;213.367000;213.367000;213.340000;213.343000;0 +20260209 133800;213.342000;213.344000;213.319000;213.327000;0 +20260209 133900;213.327000;213.341000;213.326000;213.339000;0 +20260209 134000;213.340000;213.353000;213.331000;213.332000;0 +20260209 134100;213.331000;213.341000;213.329000;213.341000;0 +20260209 134200;213.340000;213.343000;213.322000;213.333000;0 +20260209 134300;213.335000;213.351000;213.332000;213.351000;0 +20260209 134400;213.349000;213.350000;213.317000;213.344000;0 +20260209 134500;213.343000;213.359000;213.328000;213.329000;0 +20260209 134600;213.328000;213.342000;213.320000;213.329000;0 +20260209 134700;213.328000;213.347000;213.327000;213.332000;0 +20260209 134800;213.333000;213.366000;213.332000;213.351000;0 +20260209 134900;213.352000;213.369000;213.345000;213.352000;0 +20260209 135000;213.354000;213.369000;213.343000;213.369000;0 +20260209 135100;213.368000;213.387000;213.348000;213.377000;0 +20260209 135200;213.379000;213.390000;213.369000;213.387000;0 +20260209 135300;213.388000;213.397000;213.375000;213.382000;0 +20260209 135400;213.386000;213.388000;213.359000;213.359000;0 +20260209 135500;213.362000;213.362000;213.330000;213.354000;0 +20260209 135600;213.353000;213.388000;213.349000;213.383000;0 +20260209 135700;213.384000;213.455000;213.370000;213.451000;0 +20260209 135800;213.453000;213.454000;213.409000;213.412000;0 +20260209 135900;213.411000;213.427000;213.397000;213.427000;0 +20260209 140000;213.429000;213.444000;213.413000;213.431000;0 +20260209 140100;213.425000;213.433000;213.412000;213.415000;0 +20260209 140200;213.417000;213.417000;213.382000;213.385000;0 +20260209 140300;213.382000;213.382000;213.339000;213.349000;0 +20260209 140400;213.350000;213.369000;213.334000;213.363000;0 +20260209 140500;213.365000;213.365000;213.326000;213.333000;0 +20260209 140600;213.336000;213.345000;213.331000;213.345000;0 +20260209 140700;213.346000;213.367000;213.346000;213.367000;0 +20260209 140800;213.359000;213.373000;213.338000;213.338000;0 +20260209 140900;213.340000;213.350000;213.326000;213.333000;0 +20260209 141000;213.331000;213.355000;213.329000;213.352000;0 +20260209 141100;213.353000;213.397000;213.352000;213.394000;0 +20260209 141200;213.395000;213.395000;213.377000;213.383000;0 +20260209 141300;213.384000;213.391000;213.367000;213.383000;0 +20260209 141400;213.384000;213.389000;213.377000;213.383000;0 +20260209 141500;213.384000;213.399000;213.379000;213.388000;0 +20260209 141600;213.387000;213.395000;213.371000;213.376000;0 +20260209 141700;213.372000;213.379000;213.366000;213.366000;0 +20260209 141800;213.367000;213.369000;213.354000;213.368000;0 +20260209 141900;213.364000;213.381000;213.359000;213.367000;0 +20260209 142000;213.368000;213.368000;213.353000;213.357000;0 +20260209 142100;213.359000;213.361000;213.343000;213.346000;0 +20260209 142200;213.345000;213.367000;213.341000;213.367000;0 +20260209 142300;213.363000;213.368000;213.356000;213.364000;0 +20260209 142400;213.364000;213.410000;213.363000;213.410000;0 +20260209 142500;213.408000;213.416000;213.400000;213.412000;0 +20260209 142600;213.413000;213.418000;213.389000;213.412000;0 +20260209 142700;213.412000;213.417000;213.398000;213.399000;0 +20260209 142800;213.395000;213.400000;213.386000;213.400000;0 +20260209 142900;213.401000;213.417000;213.396000;213.414000;0 +20260209 143000;213.416000;213.417000;213.395000;213.410000;0 +20260209 143100;213.409000;213.411000;213.361000;213.364000;0 +20260209 143200;213.364000;213.368000;213.339000;213.340000;0 +20260209 143300;213.337000;213.345000;213.314000;213.324000;0 +20260209 143400;213.324000;213.339000;213.302000;213.302000;0 +20260209 143500;213.304000;213.311000;213.280000;213.289000;0 +20260209 143600;213.292000;213.292000;213.270000;213.289000;0 +20260209 143700;213.287000;213.287000;213.265000;213.274000;0 +20260209 143800;213.273000;213.295000;213.269000;213.281000;0 +20260209 143900;213.283000;213.286000;213.250000;213.283000;0 +20260209 144000;213.282000;213.284000;213.255000;213.258000;0 +20260209 144100;213.259000;213.261000;213.237000;213.253000;0 +20260209 144200;213.254000;213.275000;213.218000;213.220000;0 +20260209 144300;213.221000;213.277000;213.221000;213.269000;0 +20260209 144400;213.268000;213.270000;213.223000;213.223000;0 +20260209 144500;213.222000;213.224000;213.194000;213.201000;0 +20260209 144600;213.202000;213.209000;213.196000;213.203000;0 +20260209 144700;213.208000;213.250000;213.203000;213.241000;0 +20260209 144800;213.239000;213.250000;213.215000;213.217000;0 +20260209 144900;213.221000;213.228000;213.205000;213.207000;0 +20260209 145000;213.208000;213.240000;213.208000;213.232000;0 +20260209 145100;213.234000;213.261000;213.231000;213.243000;0 +20260209 145200;213.245000;213.271000;213.242000;213.257000;0 +20260209 145300;213.258000;213.264000;213.232000;213.262000;0 +20260209 145400;213.264000;213.278000;213.241000;213.244000;0 +20260209 145500;213.250000;213.260000;213.235000;213.257000;0 +20260209 145600;213.256000;213.260000;213.246000;213.248000;0 +20260209 145700;213.246000;213.267000;213.231000;213.249000;0 +20260209 145800;213.252000;213.260000;213.224000;213.247000;0 +20260209 145900;213.251000;213.283000;213.246000;213.274000;0 +20260209 150000;213.272000;213.307000;213.266000;213.302000;0 +20260209 150100;213.304000;213.310000;213.291000;213.299000;0 +20260209 150200;213.297000;213.325000;213.295000;213.318000;0 +20260209 150300;213.321000;213.327000;213.310000;213.311000;0 +20260209 150400;213.312000;213.336000;213.309000;213.323000;0 +20260209 150500;213.323000;213.356000;213.323000;213.351000;0 +20260209 150600;213.354000;213.354000;213.333000;213.345000;0 +20260209 150700;213.351000;213.365000;213.345000;213.351000;0 +20260209 150800;213.349000;213.359000;213.344000;213.359000;0 +20260209 150900;213.359000;213.360000;213.310000;213.310000;0 +20260209 151000;213.308000;213.317000;213.304000;213.313000;0 +20260209 151100;213.314000;213.321000;213.299000;213.311000;0 +20260209 151200;213.310000;213.322000;213.309000;213.322000;0 +20260209 151300;213.320000;213.327000;213.308000;213.326000;0 +20260209 151400;213.325000;213.335000;213.322000;213.330000;0 +20260209 151500;213.327000;213.341000;213.318000;213.340000;0 +20260209 151600;213.340000;213.351000;213.333000;213.347000;0 +20260209 151700;213.346000;213.352000;213.338000;213.348000;0 +20260209 151800;213.347000;213.353000;213.317000;213.322000;0 +20260209 151900;213.321000;213.333000;213.314000;213.323000;0 +20260209 152000;213.325000;213.334000;213.318000;213.328000;0 +20260209 152100;213.330000;213.330000;213.291000;213.292000;0 +20260209 152200;213.295000;213.299000;213.272000;213.290000;0 +20260209 152300;213.289000;213.314000;213.284000;213.314000;0 +20260209 152400;213.311000;213.314000;213.301000;213.310000;0 +20260209 152500;213.308000;213.310000;213.293000;213.295000;0 +20260209 152600;213.292000;213.296000;213.276000;213.282000;0 +20260209 152700;213.282000;213.291000;213.282000;213.283000;0 +20260209 152800;213.289000;213.293000;213.273000;213.282000;0 +20260209 152900;213.277000;213.303000;213.277000;213.301000;0 +20260209 153000;213.299000;213.340000;213.296000;213.330000;0 +20260209 153100;213.328000;213.336000;213.319000;213.326000;0 +20260209 153200;213.327000;213.333000;213.319000;213.333000;0 +20260209 153300;213.335000;213.346000;213.335000;213.341000;0 +20260209 153400;213.343000;213.345000;213.326000;213.327000;0 +20260209 153500;213.326000;213.337000;213.309000;213.333000;0 +20260209 153600;213.332000;213.337000;213.307000;213.310000;0 +20260209 153700;213.310000;213.365000;213.309000;213.361000;0 +20260209 153800;213.361000;213.375000;213.356000;213.369000;0 +20260209 153900;213.367000;213.398000;213.347000;213.394000;0 +20260209 154000;213.394000;213.408000;213.393000;213.399000;0 +20260209 154100;213.398000;213.412000;213.389000;213.398000;0 +20260209 154200;213.404000;213.405000;213.389000;213.394000;0 +20260209 154300;213.395000;213.416000;213.395000;213.412000;0 +20260209 154400;213.417000;213.419000;213.410000;213.419000;0 +20260209 154500;213.421000;213.425000;213.405000;213.418000;0 +20260209 154600;213.418000;213.419000;213.394000;213.397000;0 +20260209 154700;213.403000;213.420000;213.392000;213.417000;0 +20260209 154800;213.418000;213.420000;213.398000;213.398000;0 +20260209 154900;213.397000;213.406000;213.395000;213.398000;0 +20260209 155000;213.400000;213.411000;213.393000;213.411000;0 +20260209 155100;213.410000;213.429000;213.410000;213.419000;0 +20260209 155200;213.418000;213.425000;213.416000;213.418000;0 +20260209 155300;213.414000;213.421000;213.406000;213.411000;0 +20260209 155400;213.412000;213.424000;213.405000;213.415000;0 +20260209 155500;213.417000;213.453000;213.417000;213.447000;0 +20260209 155600;213.445000;213.445000;213.424000;213.444000;0 +20260209 155700;213.448000;213.473000;213.444000;213.473000;0 +20260209 155800;213.472000;213.494000;213.471000;213.489000;0 +20260209 155900;213.488000;213.489000;213.456000;213.462000;0 +20260209 160000;213.460000;213.486000;213.455000;213.466000;0 +20260209 160100;213.462000;213.482000;213.462000;213.477000;0 +20260209 160200;213.476000;213.506000;213.475000;213.504000;0 +20260209 160300;213.503000;213.504000;213.492000;213.492000;0 +20260209 160400;213.492000;213.499000;213.482000;213.494000;0 +20260209 160500;213.491000;213.516000;213.491000;213.513000;0 +20260209 160600;213.505000;213.511000;213.495000;213.495000;0 +20260209 160700;213.498000;213.498000;213.490000;213.496000;0 +20260209 160800;213.500000;213.500000;213.449000;213.449000;0 +20260209 160900;213.452000;213.490000;213.445000;213.490000;0 +20260209 161000;213.489000;213.528000;213.489000;213.528000;0 +20260209 161100;213.532000;213.537000;213.512000;213.516000;0 +20260209 161200;213.519000;213.520000;213.493000;213.494000;0 +20260209 161300;213.494000;213.494000;213.494000;213.494000;0 +20260209 161400;213.497000;213.502000;213.490000;213.496000;0 +20260209 161500;213.498000;213.501000;213.485000;213.488000;0 +20260209 161600;213.491000;213.498000;213.476000;213.491000;0 +20260209 161700;213.497000;213.498000;213.449000;213.449000;0 +20260209 161800;213.450000;213.462000;213.443000;213.446000;0 +20260209 161900;213.448000;213.453000;213.438000;213.444000;0 +20260209 162000;213.441000;213.449000;213.435000;213.443000;0 +20260209 162100;213.443000;213.448000;213.425000;213.427000;0 +20260209 162200;213.424000;213.424000;213.401000;213.422000;0 +20260209 162300;213.422000;213.431000;213.422000;213.428000;0 +20260209 162400;213.430000;213.449000;213.430000;213.441000;0 +20260209 162500;213.445000;213.453000;213.438000;213.439000;0 +20260209 162600;213.438000;213.444000;213.428000;213.430000;0 +20260209 162700;213.430000;213.448000;213.430000;213.442000;0 +20260209 162800;213.442000;213.450000;213.436000;213.437000;0 +20260209 162900;213.438000;213.460000;213.436000;213.448000;0 +20260209 163000;213.449000;213.470000;213.445000;213.457000;0 +20260209 163100;213.458000;213.459000;213.446000;213.449000;0 +20260209 163200;213.455000;213.482000;213.455000;213.473000;0 +20260209 163300;213.478000;213.505000;213.478000;213.493000;0 +20260209 163400;213.490000;213.514000;213.490000;213.509000;0 +20260209 163500;213.503000;213.535000;213.498000;213.522000;0 +20260209 163600;213.529000;213.533000;213.516000;213.525000;0 +20260209 163700;213.523000;213.530000;213.511000;213.521000;0 +20260209 163800;213.526000;213.543000;213.521000;213.537000;0 +20260209 163900;213.535000;213.540000;213.529000;213.540000;0 +20260209 164000;213.540000;213.556000;213.535000;213.549000;0 +20260209 164100;213.548000;213.568000;213.546000;213.552000;0 +20260209 164200;213.551000;213.552000;213.541000;213.547000;0 +20260209 164300;213.546000;213.549000;213.535000;213.536000;0 +20260209 164400;213.544000;213.559000;213.539000;213.549000;0 +20260209 164500;213.550000;213.554000;213.531000;213.551000;0 +20260209 164600;213.558000;213.570000;213.555000;213.557000;0 +20260209 164700;213.570000;213.571000;213.563000;213.570000;0 +20260209 164800;213.571000;213.571000;213.566000;213.567000;0 +20260209 164900;213.571000;213.571000;213.565000;213.568000;0 +20260209 165000;213.572000;213.572000;213.557000;213.567000;0 +20260209 165100;213.560000;213.568000;213.560000;213.565000;0 +20260209 165200;213.567000;213.574000;213.557000;213.565000;0 +20260209 165300;213.566000;213.566000;213.552000;213.559000;0 +20260209 165400;213.556000;213.564000;213.530000;213.538000;0 +20260209 165500;213.538000;213.564000;213.528000;213.557000;0 +20260209 165600;213.551000;213.558000;213.497000;213.512000;0 +20260209 165700;213.510000;213.539000;213.470000;213.533000;0 +20260209 165800;213.532000;213.532000;213.461000;213.469000;0 +20260209 165900;213.464000;213.497000;213.426000;213.426000;0 +20260209 171500;213.190000;213.240000;213.190000;213.202000;0 +20260209 171600;213.202000;213.370000;213.202000;213.359000;0 +20260209 171700;213.382000;213.440000;213.319000;213.325000;0 +20260209 171800;213.322000;213.360000;213.318000;213.342000;0 +20260209 171900;213.340000;213.348000;213.339000;213.344000;0 +20260209 172000;213.345000;213.350000;213.345000;213.350000;0 +20260209 172100;213.351000;213.365000;213.351000;213.365000;0 +20260209 172200;213.366000;213.367000;213.365000;213.366000;0 +20260209 172300;213.366000;213.367000;213.357000;213.364000;0 +20260209 172400;213.351000;213.387000;213.344000;213.387000;0 +20260209 172500;213.372000;213.372000;213.350000;213.366000;0 +20260209 172600;213.360000;213.366000;213.328000;213.337000;0 +20260209 172700;213.332000;213.339000;213.327000;213.333000;0 +20260209 172800;213.334000;213.339000;213.234000;213.236000;0 +20260209 172900;213.235000;213.294000;213.223000;213.234000;0 +20260209 173000;213.234000;213.335000;213.226000;213.334000;0 +20260209 173100;213.336000;213.344000;213.301000;213.305000;0 +20260209 173200;213.304000;213.336000;213.302000;213.335000;0 +20260209 173300;213.333000;213.354000;213.298000;213.344000;0 +20260209 173400;213.343000;213.351000;213.284000;213.285000;0 +20260209 173500;213.284000;213.404000;213.281000;213.373000;0 +20260209 173600;213.364000;213.384000;213.353000;213.377000;0 +20260209 173700;213.377000;213.436000;213.363000;213.425000;0 +20260209 173800;213.424000;213.441000;213.406000;213.416000;0 +20260209 173900;213.415000;213.416000;213.412000;213.413000;0 +20260209 174000;213.413000;213.413000;213.331000;213.365000;0 +20260209 174100;213.365000;213.395000;213.313000;213.313000;0 +20260209 174200;213.313000;213.330000;213.311000;213.315000;0 +20260209 174300;213.313000;213.315000;213.294000;213.294000;0 +20260209 174400;213.295000;213.349000;213.294000;213.343000;0 +20260209 174500;213.348000;213.365000;213.348000;213.357000;0 +20260209 174600;213.355000;213.438000;213.355000;213.437000;0 +20260209 174700;213.438000;213.452000;213.438000;213.447000;0 +20260209 174800;213.449000;213.468000;213.449000;213.465000;0 +20260209 174900;213.467000;213.479000;213.314000;213.326000;0 +20260209 175000;213.315000;213.396000;213.315000;213.378000;0 +20260209 175100;213.382000;213.398000;213.367000;213.391000;0 +20260209 175200;213.386000;213.398000;213.381000;213.385000;0 +20260209 175300;213.385000;213.390000;213.372000;213.381000;0 +20260209 175400;213.382000;213.384000;213.380000;213.380000;0 +20260209 175500;213.377000;213.390000;213.373000;213.381000;0 +20260209 175600;213.382000;213.382000;213.338000;213.351000;0 +20260209 175700;213.357000;213.371000;213.334000;213.368000;0 +20260209 175800;213.368000;213.399000;213.358000;213.364000;0 +20260209 175900;213.363000;213.390000;213.348000;213.362000;0 +20260209 180000;213.361000;213.511000;213.354000;213.484000;0 +20260209 180100;213.484000;213.522000;213.481000;213.519000;0 +20260209 180200;213.521000;213.562000;213.472000;213.485000;0 +20260209 180300;213.495000;213.520000;213.494000;213.520000;0 +20260209 180400;213.520000;213.546000;213.496000;213.544000;0 +20260209 180500;213.548000;213.607000;213.548000;213.601000;0 +20260209 180600;213.602000;213.605000;213.580000;213.581000;0 +20260209 180700;213.581000;213.582000;213.534000;213.537000;0 +20260209 180800;213.536000;213.572000;213.534000;213.551000;0 +20260209 180900;213.551000;213.557000;213.536000;213.537000;0 +20260209 181000;213.539000;213.559000;213.524000;213.525000;0 +20260209 181100;213.526000;213.531000;213.493000;213.508000;0 +20260209 181200;213.509000;213.517000;213.498000;213.503000;0 +20260209 181300;213.501000;213.528000;213.495000;213.527000;0 +20260209 181400;213.527000;213.527000;213.504000;213.504000;0 +20260209 181500;213.505000;213.512000;213.485000;213.485000;0 +20260209 181600;213.486000;213.488000;213.482000;213.482000;0 +20260209 181700;213.481000;213.506000;213.472000;213.506000;0 +20260209 181800;213.504000;213.532000;213.504000;213.529000;0 +20260209 181900;213.531000;213.537000;213.527000;213.527000;0 +20260209 182000;213.527000;213.531000;213.522000;213.529000;0 +20260209 182100;213.529000;213.531000;213.509000;213.522000;0 +20260209 182200;213.522000;213.560000;213.513000;213.553000;0 +20260209 182300;213.553000;213.581000;213.549000;213.577000;0 +20260209 182400;213.578000;213.586000;213.564000;213.577000;0 +20260209 182500;213.578000;213.578000;213.569000;213.572000;0 +20260209 182600;213.573000;213.612000;213.571000;213.599000;0 +20260209 182700;213.599000;213.614000;213.585000;213.611000;0 +20260209 182800;213.611000;213.621000;213.592000;213.616000;0 +20260209 182900;213.620000;213.625000;213.605000;213.620000;0 +20260209 183000;213.618000;213.632000;213.604000;213.611000;0 +20260209 183100;213.617000;213.623000;213.608000;213.609000;0 +20260209 183200;213.610000;213.610000;213.581000;213.596000;0 +20260209 183300;213.598000;213.610000;213.595000;213.606000;0 +20260209 183400;213.597000;213.619000;213.594000;213.619000;0 +20260209 183500;213.620000;213.620000;213.592000;213.597000;0 +20260209 183600;213.600000;213.604000;213.590000;213.604000;0 +20260209 183700;213.602000;213.627000;213.601000;213.624000;0 +20260209 183800;213.629000;213.646000;213.612000;213.621000;0 +20260209 183900;213.620000;213.631000;213.620000;213.622000;0 +20260209 184000;213.623000;213.637000;213.622000;213.634000;0 +20260209 184100;213.633000;213.636000;213.622000;213.622000;0 +20260209 184200;213.619000;213.629000;213.602000;213.615000;0 +20260209 184300;213.614000;213.614000;213.596000;213.600000;0 +20260209 184400;213.602000;213.602000;213.582000;213.589000;0 +20260209 184500;213.589000;213.624000;213.583000;213.623000;0 +20260209 184600;213.620000;213.627000;213.614000;213.623000;0 +20260209 184700;213.623000;213.655000;213.621000;213.637000;0 +20260209 184800;213.638000;213.641000;213.624000;213.638000;0 +20260209 184900;213.636000;213.661000;213.636000;213.658000;0 +20260209 185000;213.656000;213.662000;213.648000;213.652000;0 +20260209 185100;213.652000;213.662000;213.641000;213.647000;0 +20260209 185200;213.648000;213.649000;213.602000;213.630000;0 +20260209 185300;213.628000;213.628000;213.607000;213.607000;0 +20260209 185400;213.608000;213.633000;213.608000;213.630000;0 +20260209 185500;213.631000;213.646000;213.628000;213.646000;0 +20260209 185600;213.640000;213.646000;213.623000;213.628000;0 +20260209 185700;213.627000;213.630000;213.617000;213.622000;0 +20260209 185800;213.619000;213.644000;213.607000;213.621000;0 +20260209 185900;213.622000;213.647000;213.608000;213.612000;0 +20260209 190000;213.615000;213.651000;213.611000;213.624000;0 +20260209 190100;213.623000;213.652000;213.623000;213.638000;0 +20260209 190200;213.633000;213.674000;213.627000;213.627000;0 +20260209 190300;213.622000;213.661000;213.543000;213.661000;0 +20260209 190400;213.661000;213.700000;213.661000;213.689000;0 +20260209 190500;213.684000;213.701000;213.683000;213.694000;0 +20260209 190600;213.693000;213.699000;213.659000;213.661000;0 +20260209 190700;213.660000;213.711000;213.660000;213.690000;0 +20260209 190800;213.692000;213.697000;213.671000;213.677000;0 +20260209 190900;213.675000;213.697000;213.663000;213.695000;0 +20260209 191000;213.694000;213.695000;213.662000;213.678000;0 +20260209 191100;213.676000;213.677000;213.662000;213.673000;0 +20260209 191200;213.669000;213.689000;213.647000;213.647000;0 +20260209 191300;213.650000;213.652000;213.637000;213.637000;0 +20260209 191400;213.636000;213.636000;213.613000;213.625000;0 +20260209 191500;213.626000;213.639000;213.623000;213.637000;0 +20260209 191600;213.633000;213.643000;213.613000;213.636000;0 +20260209 191700;213.626000;213.626000;213.591000;213.593000;0 +20260209 191800;213.595000;213.637000;213.595000;213.635000;0 +20260209 191900;213.630000;213.652000;213.630000;213.641000;0 +20260209 192000;213.638000;213.664000;213.638000;213.654000;0 +20260209 192100;213.652000;213.656000;213.632000;213.647000;0 +20260209 192200;213.647000;213.655000;213.637000;213.641000;0 +20260209 192300;213.642000;213.645000;213.628000;213.637000;0 +20260209 192400;213.635000;213.644000;213.629000;213.629000;0 +20260209 192500;213.628000;213.646000;213.623000;213.646000;0 +20260209 192600;213.644000;213.669000;213.644000;213.669000;0 +20260209 192700;213.670000;213.699000;213.667000;213.680000;0 +20260209 192800;213.680000;213.700000;213.679000;213.690000;0 +20260209 192900;213.688000;213.693000;213.673000;213.678000;0 +20260209 193000;213.678000;213.705000;213.672000;213.697000;0 +20260209 193100;213.697000;213.708000;213.679000;213.694000;0 +20260209 193200;213.693000;213.706000;213.683000;213.705000;0 +20260209 193300;213.705000;213.724000;213.690000;213.698000;0 +20260209 193400;213.697000;213.712000;213.693000;213.701000;0 +20260209 193500;213.697000;213.719000;213.691000;213.705000;0 +20260209 193600;213.704000;213.704000;213.674000;213.690000;0 +20260209 193700;213.690000;213.692000;213.660000;213.665000;0 +20260209 193800;213.670000;213.708000;213.666000;213.708000;0 +20260209 193900;213.707000;213.720000;213.686000;213.686000;0 +20260209 194000;213.684000;213.692000;213.659000;213.659000;0 +20260209 194100;213.660000;213.694000;213.652000;213.676000;0 +20260209 194200;213.678000;213.685000;213.629000;213.649000;0 +20260209 194300;213.648000;213.649000;213.616000;213.617000;0 +20260209 194400;213.618000;213.633000;213.609000;213.609000;0 +20260209 194500;213.607000;213.633000;213.604000;213.608000;0 +20260209 194600;213.611000;213.632000;213.606000;213.632000;0 +20260209 194700;213.634000;213.634000;213.611000;213.625000;0 +20260209 194800;213.621000;213.652000;213.612000;213.648000;0 +20260209 194900;213.656000;213.674000;213.648000;213.660000;0 +20260209 195000;213.662000;213.666000;213.610000;213.621000;0 +20260209 195100;213.622000;213.626000;213.577000;213.588000;0 +20260209 195200;213.587000;213.592000;213.543000;213.572000;0 +20260209 195300;213.577000;213.605000;213.562000;213.587000;0 +20260209 195400;213.582000;213.588000;213.441000;213.485000;0 +20260209 195500;213.485000;213.493000;213.390000;213.396000;0 +20260209 195600;213.399000;213.438000;213.381000;213.435000;0 +20260209 195700;213.436000;213.504000;213.435000;213.503000;0 +20260209 195800;213.508000;213.508000;213.434000;213.460000;0 +20260209 195900;213.457000;213.470000;213.364000;213.386000;0 +20260209 200000;213.386000;213.434000;213.303000;213.317000;0 +20260209 200100;213.320000;213.347000;213.297000;213.319000;0 +20260209 200200;213.316000;213.364000;213.310000;213.336000;0 +20260209 200300;213.336000;213.366000;213.312000;213.336000;0 +20260209 200400;213.331000;213.344000;213.301000;213.303000;0 +20260209 200500;213.301000;213.360000;213.299000;213.333000;0 +20260209 200600;213.335000;213.349000;213.325000;213.349000;0 +20260209 200700;213.353000;213.353000;213.320000;213.324000;0 +20260209 200800;213.326000;213.334000;213.300000;213.303000;0 +20260209 200900;213.304000;213.308000;213.249000;213.282000;0 +20260209 201000;213.277000;213.285000;213.249000;213.254000;0 +20260209 201100;213.244000;213.268000;213.208000;213.213000;0 +20260209 201200;213.223000;213.274000;213.202000;213.229000;0 +20260209 201300;213.228000;213.253000;213.197000;213.206000;0 +20260209 201400;213.205000;213.243000;213.203000;213.208000;0 +20260209 201500;213.211000;213.249000;213.195000;213.201000;0 +20260209 201600;213.205000;213.250000;213.205000;213.233000;0 +20260209 201700;213.246000;213.273000;213.243000;213.271000;0 +20260209 201800;213.269000;213.295000;213.262000;213.283000;0 +20260209 201900;213.284000;213.284000;213.225000;213.229000;0 +20260209 202000;213.229000;213.268000;213.217000;213.265000;0 +20260209 202100;213.268000;213.284000;213.259000;213.267000;0 +20260209 202200;213.267000;213.312000;213.267000;213.311000;0 +20260209 202300;213.311000;213.335000;213.294000;213.325000;0 +20260209 202400;213.329000;213.338000;213.314000;213.321000;0 +20260209 202500;213.321000;213.333000;213.311000;213.319000;0 +20260209 202600;213.326000;213.343000;213.318000;213.339000;0 +20260209 202700;213.341000;213.374000;213.335000;213.362000;0 +20260209 202800;213.357000;213.385000;213.357000;213.379000;0 +20260209 202900;213.380000;213.402000;213.354000;213.354000;0 +20260209 203000;213.353000;213.353000;213.302000;213.342000;0 +20260209 203100;213.343000;213.365000;213.338000;213.340000;0 +20260209 203200;213.341000;213.378000;213.341000;213.365000;0 +20260209 203300;213.365000;213.382000;213.342000;213.343000;0 +20260209 203400;213.345000;213.351000;213.285000;213.314000;0 +20260209 203500;213.312000;213.332000;213.262000;213.279000;0 +20260209 203600;213.275000;213.288000;213.249000;213.260000;0 +20260209 203700;213.257000;213.284000;213.249000;213.279000;0 +20260209 203800;213.276000;213.300000;213.267000;213.290000;0 +20260209 203900;213.292000;213.317000;213.276000;213.296000;0 +20260209 204000;213.295000;213.304000;213.273000;213.276000;0 +20260209 204100;213.279000;213.280000;213.251000;213.276000;0 +20260209 204200;213.274000;213.283000;213.244000;213.275000;0 +20260209 204300;213.277000;213.294000;213.262000;213.279000;0 +20260209 204400;213.279000;213.279000;213.225000;213.249000;0 +20260209 204500;213.247000;213.267000;213.235000;213.235000;0 +20260209 204600;213.237000;213.239000;213.140000;213.164000;0 +20260209 204700;213.166000;213.166000;213.115000;213.138000;0 +20260209 204800;213.136000;213.151000;213.098000;213.098000;0 +20260209 204900;213.096000;213.157000;213.096000;213.144000;0 +20260209 205000;213.141000;213.159000;213.126000;213.126000;0 +20260209 205100;213.126000;213.127000;213.085000;213.099000;0 +20260209 205200;213.103000;213.119000;213.080000;213.088000;0 +20260209 205300;213.085000;213.123000;213.084000;213.116000;0 +20260209 205400;213.116000;213.144000;213.109000;213.119000;0 +20260209 205500;213.118000;213.123000;213.099000;213.114000;0 +20260209 205600;213.113000;213.130000;213.071000;213.130000;0 +20260209 205700;213.129000;213.153000;213.126000;213.145000;0 +20260209 205800;213.147000;213.150000;213.121000;213.123000;0 +20260209 205900;213.126000;213.126000;213.088000;213.106000;0 +20260209 210000;213.103000;213.126000;213.099000;213.126000;0 +20260209 210100;213.132000;213.171000;213.130000;213.151000;0 +20260209 210200;213.146000;213.199000;213.146000;213.181000;0 +20260209 210300;213.181000;213.218000;213.167000;213.171000;0 +20260209 210400;213.166000;213.183000;213.154000;213.154000;0 +20260209 210500;213.154000;213.175000;213.139000;213.144000;0 +20260209 210600;213.142000;213.170000;213.116000;213.159000;0 +20260209 210700;213.156000;213.188000;213.152000;213.181000;0 +20260209 210800;213.180000;213.189000;213.166000;213.169000;0 +20260209 210900;213.167000;213.197000;213.166000;213.194000;0 +20260209 211000;213.194000;213.195000;213.151000;213.155000;0 +20260209 211100;213.146000;213.164000;213.121000;213.143000;0 +20260209 211200;213.149000;213.166000;213.128000;213.144000;0 +20260209 211300;213.145000;213.148000;213.131000;213.134000;0 +20260209 211400;213.134000;213.161000;213.123000;213.136000;0 +20260209 211500;213.136000;213.163000;213.128000;213.159000;0 +20260209 211600;213.160000;213.184000;213.135000;213.184000;0 +20260209 211700;213.183000;213.214000;213.175000;213.205000;0 +20260209 211800;213.204000;213.222000;213.181000;213.200000;0 +20260209 211900;213.201000;213.241000;213.201000;213.233000;0 +20260209 212000;213.237000;213.238000;213.211000;213.213000;0 +20260209 212100;213.215000;213.217000;213.204000;213.211000;0 +20260209 212200;213.207000;213.260000;213.201000;213.238000;0 +20260209 212300;213.239000;213.239000;213.206000;213.207000;0 +20260209 212400;213.210000;213.210000;213.200000;213.210000;0 +20260209 212500;213.208000;213.216000;213.202000;213.204000;0 +20260209 212600;213.205000;213.214000;213.187000;213.187000;0 +20260209 212700;213.187000;213.202000;213.183000;213.193000;0 +20260209 212800;213.191000;213.196000;213.185000;213.188000;0 +20260209 212900;213.189000;213.191000;213.155000;213.164000;0 +20260209 213000;213.166000;213.166000;213.055000;213.059000;0 +20260209 213100;213.060000;213.068000;213.024000;213.024000;0 +20260209 213200;213.025000;213.047000;212.967000;213.023000;0 +20260209 213300;213.022000;213.031000;212.977000;212.985000;0 +20260209 213400;212.987000;212.990000;212.933000;212.941000;0 +20260209 213500;212.937000;212.950000;212.902000;212.917000;0 +20260209 213600;212.914000;212.932000;212.904000;212.905000;0 +20260209 213700;212.907000;212.912000;212.868000;212.900000;0 +20260209 213800;212.906000;212.947000;212.894000;212.945000;0 +20260209 213900;212.946000;212.969000;212.946000;212.961000;0 +20260209 214000;212.961000;212.975000;212.925000;212.931000;0 +20260209 214100;212.931000;212.978000;212.931000;212.975000;0 +20260209 214200;212.977000;212.977000;212.947000;212.963000;0 +20260209 214300;212.959000;212.975000;212.953000;212.975000;0 +20260209 214400;212.979000;212.991000;212.964000;212.971000;0 +20260209 214500;212.965000;212.972000;212.947000;212.947000;0 +20260209 214600;212.947000;212.952000;212.907000;212.915000;0 +20260209 214700;212.921000;212.921000;212.877000;212.880000;0 +20260209 214800;212.878000;212.885000;212.730000;212.741000;0 +20260209 214900;212.741000;212.790000;212.733000;212.757000;0 +20260209 215000;212.758000;212.787000;212.690000;212.701000;0 +20260209 215100;212.712000;212.792000;212.704000;212.771000;0 +20260209 215200;212.776000;212.808000;212.758000;212.805000;0 +20260209 215300;212.805000;212.823000;212.771000;212.802000;0 +20260209 215400;212.800000;212.832000;212.784000;212.830000;0 +20260209 215500;212.833000;212.833000;212.783000;212.783000;0 +20260209 215600;212.782000;212.795000;212.758000;212.787000;0 +20260209 215700;212.786000;212.790000;212.769000;212.783000;0 +20260209 215800;212.780000;212.785000;212.747000;212.757000;0 +20260209 215900;212.755000;212.769000;212.727000;212.746000;0 +20260209 220000;212.750000;212.775000;212.686000;212.686000;0 +20260209 220100;212.688000;212.718000;212.604000;212.629000;0 +20260209 220200;212.630000;212.637000;212.587000;212.598000;0 +20260209 220300;212.603000;212.618000;212.597000;212.604000;0 +20260209 220400;212.609000;212.642000;212.598000;212.635000;0 +20260209 220500;212.632000;212.693000;212.630000;212.685000;0 +20260209 220600;212.683000;212.754000;212.683000;212.741000;0 +20260209 220700;212.743000;212.748000;212.705000;212.705000;0 +20260209 220800;212.705000;212.708000;212.651000;212.674000;0 +20260209 220900;212.672000;212.684000;212.651000;212.655000;0 +20260209 221000;212.655000;212.675000;212.636000;212.638000;0 +20260209 221100;212.639000;212.681000;212.609000;212.678000;0 +20260209 221200;212.685000;212.686000;212.630000;212.630000;0 +20260209 221300;212.629000;212.638000;212.624000;212.630000;0 +20260209 221400;212.631000;212.647000;212.623000;212.628000;0 +20260209 221500;212.628000;212.648000;212.618000;212.624000;0 +20260209 221600;212.624000;212.630000;212.593000;212.617000;0 +20260209 221700;212.611000;212.617000;212.598000;212.615000;0 +20260209 221800;212.614000;212.629000;212.601000;212.627000;0 +20260209 221900;212.629000;212.642000;212.620000;212.630000;0 +20260209 222000;212.629000;212.637000;212.589000;212.607000;0 +20260209 222100;212.604000;212.624000;212.587000;212.588000;0 +20260209 222200;212.586000;212.664000;212.585000;212.663000;0 +20260209 222300;212.664000;212.681000;212.652000;212.660000;0 +20260209 222400;212.657000;212.662000;212.623000;212.625000;0 +20260209 222500;212.622000;212.633000;212.585000;212.585000;0 +20260209 222600;212.586000;212.610000;212.584000;212.595000;0 +20260209 222700;212.596000;212.616000;212.590000;212.616000;0 +20260209 222800;212.615000;212.618000;212.586000;212.605000;0 +20260209 222900;212.602000;212.602000;212.572000;212.580000;0 +20260209 223000;212.583000;212.598000;212.546000;212.554000;0 +20260209 223100;212.554000;212.583000;212.545000;212.570000;0 +20260209 223200;212.569000;212.596000;212.566000;212.594000;0 +20260209 223300;212.596000;212.596000;212.565000;212.565000;0 +20260209 223400;212.564000;212.564000;212.492000;212.493000;0 +20260209 223500;212.496000;212.516000;212.485000;212.514000;0 +20260209 223600;212.513000;212.529000;212.492000;212.523000;0 +20260209 223700;212.525000;212.525000;212.476000;212.476000;0 +20260209 223800;212.476000;212.498000;212.474000;212.492000;0 +20260209 223900;212.490000;212.500000;212.477000;212.477000;0 +20260209 224000;212.479000;212.492000;212.472000;212.477000;0 +20260209 224100;212.477000;212.481000;212.461000;212.465000;0 +20260209 224200;212.469000;212.502000;212.456000;212.493000;0 +20260209 224300;212.493000;212.497000;212.436000;212.451000;0 +20260209 224400;212.444000;212.454000;212.409000;212.419000;0 +20260209 224500;212.417000;212.434000;212.404000;212.421000;0 +20260209 224600;212.419000;212.458000;212.419000;212.458000;0 +20260209 224700;212.459000;212.472000;212.451000;212.452000;0 +20260209 224800;212.451000;212.465000;212.443000;212.463000;0 +20260209 224900;212.461000;212.513000;212.458000;212.512000;0 +20260209 225000;212.512000;212.560000;212.510000;212.560000;0 +20260209 225100;212.560000;212.568000;212.547000;212.563000;0 +20260209 225200;212.562000;212.567000;212.528000;212.530000;0 +20260209 225300;212.531000;212.538000;212.513000;212.518000;0 +20260209 225400;212.521000;212.529000;212.505000;212.506000;0 +20260209 225500;212.521000;212.547000;212.520000;212.543000;0 +20260209 225600;212.539000;212.540000;212.518000;212.522000;0 +20260209 225700;212.524000;212.524000;212.505000;212.511000;0 +20260209 225800;212.510000;212.541000;212.508000;212.533000;0 +20260209 225900;212.534000;212.577000;212.532000;212.569000;0 +20260209 230000;212.568000;212.574000;212.545000;212.551000;0 +20260209 230100;212.549000;212.560000;212.528000;212.530000;0 +20260209 230200;212.528000;212.558000;212.522000;212.545000;0 +20260209 230300;212.547000;212.553000;212.534000;212.551000;0 +20260209 230400;212.550000;212.557000;212.530000;212.533000;0 +20260209 230500;212.533000;212.542000;212.527000;212.532000;0 +20260209 230600;212.528000;212.545000;212.525000;212.545000;0 +20260209 230700;212.545000;212.559000;212.528000;212.551000;0 +20260209 230800;212.551000;212.557000;212.535000;212.543000;0 +20260209 230900;212.540000;212.548000;212.526000;212.543000;0 +20260209 231000;212.548000;212.553000;212.506000;212.526000;0 +20260209 231100;212.527000;212.532000;212.510000;212.520000;0 +20260209 231200;212.525000;212.528000;212.478000;212.484000;0 +20260209 231300;212.483000;212.499000;212.459000;212.470000;0 +20260209 231400;212.471000;212.475000;212.442000;212.463000;0 +20260209 231500;212.463000;212.463000;212.448000;212.452000;0 +20260209 231600;212.456000;212.459000;212.426000;212.440000;0 +20260209 231700;212.439000;212.439000;212.424000;212.425000;0 +20260209 231800;212.427000;212.460000;212.425000;212.458000;0 +20260209 231900;212.457000;212.543000;212.455000;212.543000;0 +20260209 232000;212.540000;212.566000;212.533000;212.551000;0 +20260209 232100;212.546000;212.551000;212.528000;212.538000;0 +20260209 232200;212.536000;212.538000;212.524000;212.526000;0 +20260209 232300;212.527000;212.541000;212.523000;212.541000;0 +20260209 232400;212.541000;212.546000;212.469000;212.500000;0 +20260209 232500;212.501000;212.535000;212.480000;212.508000;0 +20260209 232600;212.508000;212.510000;212.468000;212.470000;0 +20260209 232700;212.471000;212.473000;212.447000;212.450000;0 +20260209 232800;212.447000;212.448000;212.408000;212.424000;0 +20260209 232900;212.424000;212.487000;212.424000;212.467000;0 +20260209 233000;212.464000;212.497000;212.452000;212.494000;0 +20260209 233100;212.495000;212.499000;212.461000;212.462000;0 +20260209 233200;212.463000;212.463000;212.441000;212.450000;0 +20260209 233300;212.449000;212.463000;212.440000;212.447000;0 +20260209 233400;212.448000;212.464000;212.446000;212.460000;0 +20260209 233500;212.456000;212.466000;212.447000;212.454000;0 +20260209 233600;212.456000;212.461000;212.438000;212.439000;0 +20260209 233700;212.440000;212.478000;212.438000;212.463000;0 +20260209 233800;212.460000;212.466000;212.436000;212.439000;0 +20260209 233900;212.438000;212.453000;212.436000;212.447000;0 +20260209 234000;212.447000;212.453000;212.420000;212.422000;0 +20260209 234100;212.417000;212.431000;212.412000;212.420000;0 +20260209 234200;212.421000;212.422000;212.393000;212.393000;0 +20260209 234300;212.394000;212.405000;212.379000;212.398000;0 +20260209 234400;212.399000;212.402000;212.377000;212.381000;0 +20260209 234500;212.380000;212.386000;212.374000;212.375000;0 +20260209 234600;212.375000;212.405000;212.359000;212.394000;0 +20260209 234700;212.394000;212.425000;212.393000;212.425000;0 +20260209 234800;212.424000;212.444000;212.419000;212.432000;0 +20260209 234900;212.433000;212.433000;212.405000;212.410000;0 +20260209 235000;212.409000;212.409000;212.346000;212.354000;0 +20260209 235100;212.357000;212.367000;212.352000;212.357000;0 +20260209 235200;212.357000;212.361000;212.331000;212.343000;0 +20260209 235300;212.343000;212.359000;212.336000;212.352000;0 +20260209 235400;212.351000;212.354000;212.312000;212.312000;0 +20260209 235500;212.312000;212.341000;212.299000;212.324000;0 +20260209 235600;212.327000;212.341000;212.318000;212.322000;0 +20260209 235700;212.322000;212.370000;212.321000;212.369000;0 +20260209 235800;212.371000;212.372000;212.354000;212.371000;0 +20260209 235900;212.371000;212.416000;212.365000;212.415000;0 +20260210 000000;212.419000;212.441000;212.408000;212.438000;0 +20260210 000100;212.437000;212.444000;212.394000;212.422000;0 +20260210 000200;212.423000;212.424000;212.381000;212.385000;0 +20260210 000300;212.387000;212.387000;212.375000;212.378000;0 +20260210 000400;212.376000;212.405000;212.373000;212.402000;0 +20260210 000500;212.402000;212.410000;212.396000;212.401000;0 +20260210 000600;212.400000;212.402000;212.387000;212.388000;0 +20260210 000700;212.387000;212.387000;212.346000;212.373000;0 +20260210 000800;212.373000;212.385000;212.370000;212.374000;0 +20260210 000900;212.377000;212.380000;212.359000;212.365000;0 +20260210 001000;212.367000;212.386000;212.354000;212.382000;0 +20260210 001100;212.381000;212.383000;212.339000;212.352000;0 +20260210 001200;212.347000;212.349000;212.322000;212.333000;0 +20260210 001300;212.324000;212.349000;212.317000;212.344000;0 +20260210 001400;212.342000;212.346000;212.318000;212.321000;0 +20260210 001500;212.325000;212.343000;212.311000;212.311000;0 +20260210 001600;212.310000;212.324000;212.280000;212.287000;0 +20260210 001700;212.287000;212.298000;212.225000;212.229000;0 +20260210 001800;212.227000;212.234000;212.220000;212.226000;0 +20260210 001900;212.226000;212.236000;212.223000;212.229000;0 +20260210 002000;212.237000;212.252000;212.232000;212.252000;0 +20260210 002100;212.252000;212.268000;212.237000;212.259000;0 +20260210 002200;212.261000;212.262000;212.229000;212.233000;0 +20260210 002300;212.238000;212.238000;212.214000;212.214000;0 +20260210 002400;212.214000;212.234000;212.203000;212.221000;0 +20260210 002500;212.220000;212.227000;212.215000;212.217000;0 +20260210 002600;212.220000;212.220000;212.186000;212.190000;0 +20260210 002700;212.188000;212.200000;212.162000;212.191000;0 +20260210 002800;212.192000;212.206000;212.189000;212.194000;0 +20260210 002900;212.191000;212.226000;212.191000;212.215000;0 +20260210 003000;212.217000;212.231000;212.208000;212.223000;0 +20260210 003100;212.223000;212.289000;212.218000;212.289000;0 +20260210 003200;212.295000;212.309000;212.270000;212.304000;0 +20260210 003300;212.304000;212.319000;212.303000;212.309000;0 +20260210 003400;212.310000;212.343000;212.308000;212.308000;0 +20260210 003500;212.310000;212.329000;212.304000;212.326000;0 +20260210 003600;212.328000;212.351000;212.328000;212.336000;0 +20260210 003700;212.341000;212.353000;212.334000;212.347000;0 +20260210 003800;212.350000;212.391000;212.350000;212.388000;0 +20260210 003900;212.387000;212.387000;212.360000;212.363000;0 +20260210 004000;212.366000;212.366000;212.334000;212.339000;0 +20260210 004100;212.337000;212.353000;212.336000;212.341000;0 +20260210 004200;212.345000;212.353000;212.323000;212.326000;0 +20260210 004300;212.326000;212.342000;212.310000;212.314000;0 +20260210 004400;212.319000;212.320000;212.244000;212.289000;0 +20260210 004500;212.291000;212.311000;212.289000;212.295000;0 +20260210 004600;212.281000;212.285000;212.257000;212.263000;0 +20260210 004700;212.267000;212.283000;212.255000;212.265000;0 +20260210 004800;212.267000;212.383000;212.267000;212.378000;0 +20260210 004900;212.378000;212.394000;212.359000;212.392000;0 +20260210 005000;212.394000;212.396000;212.373000;212.374000;0 +20260210 005100;212.373000;212.398000;212.353000;212.371000;0 +20260210 005200;212.377000;212.416000;212.374000;212.411000;0 +20260210 005300;212.409000;212.415000;212.386000;212.402000;0 +20260210 005400;212.404000;212.418000;212.390000;212.417000;0 +20260210 005500;212.418000;212.428000;212.407000;212.414000;0 +20260210 005600;212.417000;212.439000;212.404000;212.412000;0 +20260210 005700;212.410000;212.413000;212.396000;212.413000;0 +20260210 005800;212.420000;212.428000;212.398000;212.422000;0 +20260210 005900;212.420000;212.438000;212.400000;212.425000;0 +20260210 010000;212.421000;212.434000;212.408000;212.420000;0 +20260210 010100;212.421000;212.432000;212.404000;212.430000;0 +20260210 010200;212.431000;212.447000;212.423000;212.445000;0 +20260210 010300;212.444000;212.482000;212.407000;212.460000;0 +20260210 010400;212.460000;212.482000;212.427000;212.482000;0 +20260210 010500;212.483000;212.484000;212.451000;212.461000;0 +20260210 010600;212.462000;212.480000;212.434000;212.471000;0 +20260210 010700;212.469000;212.469000;212.424000;212.430000;0 +20260210 010800;212.428000;212.467000;212.413000;212.465000;0 +20260210 010900;212.461000;212.496000;212.459000;212.459000;0 +20260210 011000;212.466000;212.466000;212.428000;212.440000;0 +20260210 011100;212.442000;212.469000;212.440000;212.468000;0 +20260210 011200;212.468000;212.468000;212.415000;212.417000;0 +20260210 011300;212.410000;212.410000;212.386000;212.393000;0 +20260210 011400;212.395000;212.399000;212.370000;212.370000;0 +20260210 011500;212.371000;212.387000;212.359000;212.369000;0 +20260210 011600;212.371000;212.394000;212.350000;212.394000;0 +20260210 011700;212.395000;212.397000;212.363000;212.363000;0 +20260210 011800;212.358000;212.360000;212.338000;212.345000;0 +20260210 011900;212.346000;212.346000;212.323000;212.340000;0 +20260210 012000;212.341000;212.350000;212.330000;212.342000;0 +20260210 012100;212.337000;212.355000;212.324000;212.347000;0 +20260210 012200;212.348000;212.369000;212.337000;212.359000;0 +20260210 012300;212.356000;212.375000;212.343000;212.375000;0 +20260210 012400;212.372000;212.384000;212.363000;212.384000;0 +20260210 012500;212.385000;212.399000;212.365000;212.386000;0 +20260210 012600;212.382000;212.391000;212.352000;212.384000;0 +20260210 012700;212.382000;212.429000;212.367000;212.405000;0 +20260210 012800;212.405000;212.441000;212.386000;212.437000;0 +20260210 012900;212.444000;212.474000;212.429000;212.464000;0 +20260210 013000;212.466000;212.495000;212.453000;212.486000;0 +20260210 013100;212.486000;212.514000;212.465000;212.465000;0 +20260210 013200;212.468000;212.469000;212.452000;212.455000;0 +20260210 013300;212.454000;212.458000;212.431000;212.446000;0 +20260210 013400;212.447000;212.447000;212.417000;212.425000;0 +20260210 013500;212.425000;212.452000;212.425000;212.433000;0 +20260210 013600;212.432000;212.443000;212.385000;212.388000;0 +20260210 013700;212.389000;212.395000;212.372000;212.379000;0 +20260210 013800;212.381000;212.394000;212.374000;212.389000;0 +20260210 013900;212.387000;212.389000;212.372000;212.385000;0 +20260210 014000;212.387000;212.433000;212.387000;212.424000;0 +20260210 014100;212.425000;212.433000;212.421000;212.428000;0 +20260210 014200;212.431000;212.443000;212.428000;212.437000;0 +20260210 014300;212.437000;212.438000;212.405000;212.416000;0 +20260210 014400;212.418000;212.418000;212.400000;212.401000;0 +20260210 014500;212.403000;212.420000;212.338000;212.352000;0 +20260210 014600;212.354000;212.358000;212.330000;212.330000;0 +20260210 014700;212.330000;212.334000;212.314000;212.321000;0 +20260210 014800;212.321000;212.345000;212.319000;212.328000;0 +20260210 014900;212.328000;212.387000;212.325000;212.371000;0 +20260210 015000;212.379000;212.422000;212.374000;212.375000;0 +20260210 015100;212.374000;212.383000;212.354000;212.366000;0 +20260210 015200;212.365000;212.390000;212.361000;212.390000;0 +20260210 015300;212.390000;212.419000;212.384000;212.416000;0 +20260210 015400;212.416000;212.428000;212.402000;212.417000;0 +20260210 015500;212.419000;212.435000;212.401000;212.431000;0 +20260210 015600;212.435000;212.456000;212.386000;212.456000;0 +20260210 015700;212.456000;212.502000;212.442000;212.468000;0 +20260210 015800;212.467000;212.469000;212.435000;212.454000;0 +20260210 015900;212.450000;212.469000;212.437000;212.469000;0 +20260210 020000;212.473000;212.483000;212.435000;212.467000;0 +20260210 020100;212.466000;212.467000;212.418000;212.423000;0 +20260210 020200;212.422000;212.445000;212.407000;212.415000;0 +20260210 020300;212.414000;212.417000;212.369000;212.393000;0 +20260210 020400;212.394000;212.394000;212.350000;212.359000;0 +20260210 020500;212.359000;212.369000;212.325000;212.358000;0 +20260210 020600;212.367000;212.429000;212.360000;212.423000;0 +20260210 020700;212.428000;212.449000;212.405000;212.436000;0 +20260210 020800;212.437000;212.439000;212.418000;212.438000;0 +20260210 020900;212.436000;212.468000;212.419000;212.465000;0 +20260210 021000;212.467000;212.518000;212.462000;212.514000;0 +20260210 021100;212.513000;212.540000;212.496000;212.538000;0 +20260210 021200;212.540000;212.543000;212.507000;212.520000;0 +20260210 021300;212.519000;212.544000;212.502000;212.506000;0 +20260210 021400;212.505000;212.514000;212.474000;212.492000;0 +20260210 021500;212.496000;212.501000;212.480000;212.497000;0 +20260210 021600;212.500000;212.500000;212.467000;212.471000;0 +20260210 021700;212.474000;212.475000;212.432000;212.444000;0 +20260210 021800;212.445000;212.474000;212.439000;212.441000;0 +20260210 021900;212.444000;212.473000;212.444000;212.453000;0 +20260210 022000;212.452000;212.503000;212.452000;212.491000;0 +20260210 022100;212.492000;212.499000;212.472000;212.481000;0 +20260210 022200;212.482000;212.486000;212.454000;212.463000;0 +20260210 022300;212.463000;212.486000;212.463000;212.486000;0 +20260210 022400;212.486000;212.517000;212.479000;212.504000;0 +20260210 022500;212.506000;212.527000;212.504000;212.524000;0 +20260210 022600;212.516000;212.550000;212.513000;212.546000;0 +20260210 022700;212.543000;212.551000;212.524000;212.549000;0 +20260210 022800;212.546000;212.547000;212.515000;212.524000;0 +20260210 022900;212.527000;212.544000;212.515000;212.543000;0 +20260210 023000;212.546000;212.551000;212.526000;212.526000;0 +20260210 023100;212.530000;212.544000;212.519000;212.528000;0 +20260210 023200;212.529000;212.537000;212.519000;212.519000;0 +20260210 023300;212.520000;212.534000;212.510000;212.533000;0 +20260210 023400;212.533000;212.534000;212.506000;212.517000;0 +20260210 023500;212.520000;212.568000;212.512000;212.539000;0 +20260210 023600;212.538000;212.573000;212.526000;212.538000;0 +20260210 023700;212.538000;212.566000;212.529000;212.553000;0 +20260210 023800;212.551000;212.570000;212.544000;212.550000;0 +20260210 023900;212.553000;212.553000;212.520000;212.535000;0 +20260210 024000;212.540000;212.571000;212.537000;212.548000;0 +20260210 024100;212.546000;212.564000;212.533000;212.533000;0 +20260210 024200;212.533000;212.553000;212.528000;212.550000;0 +20260210 024300;212.554000;212.554000;212.526000;212.550000;0 +20260210 024400;212.551000;212.609000;212.551000;212.609000;0 +20260210 024500;212.609000;212.661000;212.607000;212.649000;0 +20260210 024600;212.651000;212.660000;212.618000;212.620000;0 +20260210 024700;212.622000;212.656000;212.621000;212.648000;0 +20260210 024800;212.649000;212.656000;212.637000;212.647000;0 +20260210 024900;212.649000;212.674000;212.638000;212.640000;0 +20260210 025000;212.640000;212.692000;212.633000;212.685000;0 +20260210 025100;212.684000;212.723000;212.682000;212.718000;0 +20260210 025200;212.718000;212.733000;212.674000;212.688000;0 +20260210 025300;212.687000;212.726000;212.687000;212.708000;0 +20260210 025400;212.707000;212.710000;212.653000;212.656000;0 +20260210 025500;212.657000;212.697000;212.648000;212.653000;0 +20260210 025600;212.654000;212.654000;212.583000;212.644000;0 +20260210 025700;212.642000;212.650000;212.611000;212.625000;0 +20260210 025800;212.624000;212.657000;212.615000;212.650000;0 +20260210 025900;212.651000;212.684000;212.641000;212.680000;0 +20260210 030000;212.687000;212.742000;212.677000;212.721000;0 +20260210 030100;212.721000;212.770000;212.711000;212.738000;0 +20260210 030200;212.739000;212.739000;212.696000;212.735000;0 +20260210 030300;212.731000;212.737000;212.704000;212.718000;0 +20260210 030400;212.719000;212.742000;212.676000;212.684000;0 +20260210 030500;212.684000;212.720000;212.683000;212.704000;0 +20260210 030600;212.704000;212.713000;212.659000;212.676000;0 +20260210 030700;212.675000;212.681000;212.586000;212.604000;0 +20260210 030800;212.606000;212.631000;212.592000;212.600000;0 +20260210 030900;212.602000;212.648000;212.597000;212.647000;0 +20260210 031000;212.644000;212.657000;212.622000;212.644000;0 +20260210 031100;212.646000;212.655000;212.614000;212.617000;0 +20260210 031200;212.617000;212.637000;212.583000;212.624000;0 +20260210 031300;212.626000;212.628000;212.586000;212.605000;0 +20260210 031400;212.609000;212.616000;212.594000;212.599000;0 +20260210 031500;212.597000;212.619000;212.582000;212.598000;0 +20260210 031600;212.596000;212.617000;212.587000;212.609000;0 +20260210 031700;212.609000;212.621000;212.555000;212.556000;0 +20260210 031800;212.555000;212.567000;212.544000;212.544000;0 +20260210 031900;212.543000;212.551000;212.512000;212.522000;0 +20260210 032000;212.523000;212.542000;212.511000;212.539000;0 +20260210 032100;212.544000;212.570000;212.520000;212.558000;0 +20260210 032200;212.556000;212.606000;212.556000;212.593000;0 +20260210 032300;212.600000;212.639000;212.600000;212.636000;0 +20260210 032400;212.638000;212.657000;212.618000;212.648000;0 +20260210 032500;212.649000;212.668000;212.644000;212.667000;0 +20260210 032600;212.666000;212.672000;212.654000;212.656000;0 +20260210 032700;212.666000;212.683000;212.649000;212.657000;0 +20260210 032800;212.656000;212.664000;212.634000;212.648000;0 +20260210 032900;212.648000;212.649000;212.625000;212.628000;0 +20260210 033000;212.629000;212.649000;212.618000;212.636000;0 +20260210 033100;212.639000;212.658000;212.632000;212.654000;0 +20260210 033200;212.654000;212.659000;212.623000;212.628000;0 +20260210 033300;212.626000;212.628000;212.583000;212.595000;0 +20260210 033400;212.596000;212.641000;212.594000;212.622000;0 +20260210 033500;212.615000;212.615000;212.589000;212.595000;0 +20260210 033600;212.594000;212.599000;212.578000;212.592000;0 +20260210 033700;212.591000;212.650000;212.584000;212.638000;0 +20260210 033800;212.643000;212.667000;212.643000;212.654000;0 +20260210 033900;212.655000;212.671000;212.647000;212.647000;0 +20260210 034000;212.646000;212.693000;212.639000;212.678000;0 +20260210 034100;212.678000;212.719000;212.668000;212.716000;0 +20260210 034200;212.713000;212.730000;212.706000;212.725000;0 +20260210 034300;212.727000;212.753000;212.727000;212.751000;0 +20260210 034400;212.744000;212.759000;212.714000;212.719000;0 +20260210 034500;212.719000;212.719000;212.706000;212.715000;0 +20260210 034600;212.716000;212.759000;212.706000;212.746000;0 +20260210 034700;212.759000;212.786000;212.757000;212.773000;0 +20260210 034800;212.774000;212.778000;212.733000;212.748000;0 +20260210 034900;212.749000;212.764000;212.738000;212.760000;0 +20260210 035000;212.757000;212.757000;212.703000;212.723000;0 +20260210 035100;212.724000;212.735000;212.705000;212.709000;0 +20260210 035200;212.709000;212.709000;212.691000;212.696000;0 +20260210 035300;212.695000;212.699000;212.668000;212.678000;0 +20260210 035400;212.679000;212.693000;212.644000;212.644000;0 +20260210 035500;212.641000;212.659000;212.624000;212.637000;0 +20260210 035600;212.640000;212.640000;212.596000;212.596000;0 +20260210 035700;212.600000;212.600000;212.564000;212.591000;0 +20260210 035800;212.589000;212.679000;212.585000;212.667000;0 +20260210 035900;212.670000;212.672000;212.629000;212.644000;0 +20260210 040000;212.641000;212.668000;212.612000;212.662000;0 +20260210 040100;212.661000;212.665000;212.634000;212.657000;0 +20260210 040200;212.657000;212.689000;212.642000;212.644000;0 +20260210 040300;212.647000;212.650000;212.566000;212.590000;0 +20260210 040400;212.588000;212.612000;212.587000;212.591000;0 +20260210 040500;212.591000;212.644000;212.588000;212.612000;0 +20260210 040600;212.613000;212.626000;212.583000;212.596000;0 +20260210 040700;212.595000;212.611000;212.575000;212.603000;0 +20260210 040800;212.608000;212.612000;212.527000;212.529000;0 +20260210 040900;212.527000;212.568000;212.517000;212.566000;0 +20260210 041000;212.564000;212.586000;212.551000;212.562000;0 +20260210 041100;212.564000;212.588000;212.557000;212.560000;0 +20260210 041200;212.560000;212.561000;212.534000;212.535000;0 +20260210 041300;212.537000;212.544000;212.512000;212.522000;0 +20260210 041400;212.520000;212.520000;212.493000;212.498000;0 +20260210 041500;212.498000;212.531000;212.486000;212.531000;0 +20260210 041600;212.533000;212.577000;212.529000;212.574000;0 +20260210 041700;212.572000;212.584000;212.557000;212.584000;0 +20260210 041800;212.583000;212.583000;212.530000;212.541000;0 +20260210 041900;212.541000;212.567000;212.507000;212.510000;0 +20260210 042000;212.512000;212.512000;212.485000;212.485000;0 +20260210 042100;212.486000;212.494000;212.454000;212.465000;0 +20260210 042200;212.470000;212.479000;212.411000;212.413000;0 +20260210 042300;212.412000;212.429000;212.393000;212.405000;0 +20260210 042400;212.406000;212.435000;212.403000;212.419000;0 +20260210 042500;212.422000;212.422000;212.383000;212.383000;0 +20260210 042600;212.380000;212.384000;212.331000;212.341000;0 +20260210 042700;212.343000;212.367000;212.334000;212.367000;0 +20260210 042800;212.367000;212.409000;212.363000;212.409000;0 +20260210 042900;212.407000;212.408000;212.364000;212.365000;0 +20260210 043000;212.370000;212.375000;212.338000;212.374000;0 +20260210 043100;212.371000;212.374000;212.331000;212.335000;0 +20260210 043200;212.331000;212.342000;212.306000;212.339000;0 +20260210 043300;212.341000;212.352000;212.305000;212.308000;0 +20260210 043400;212.308000;212.317000;212.303000;212.315000;0 +20260210 043500;212.313000;212.326000;212.284000;212.290000;0 +20260210 043600;212.287000;212.287000;212.261000;212.284000;0 +20260210 043700;212.285000;212.302000;212.275000;212.278000;0 +20260210 043800;212.281000;212.302000;212.252000;212.302000;0 +20260210 043900;212.301000;212.312000;212.276000;212.284000;0 +20260210 044000;212.282000;212.291000;212.267000;212.277000;0 +20260210 044100;212.279000;212.281000;212.270000;212.273000;0 +20260210 044200;212.272000;212.274000;212.229000;212.257000;0 +20260210 044300;212.254000;212.277000;212.228000;212.228000;0 +20260210 044400;212.234000;212.246000;212.223000;212.234000;0 +20260210 044500;212.239000;212.262000;212.223000;212.230000;0 +20260210 044600;212.230000;212.262000;212.229000;212.238000;0 +20260210 044700;212.246000;212.258000;212.233000;212.240000;0 +20260210 044800;212.243000;212.295000;212.239000;212.295000;0 +20260210 044900;212.297000;212.315000;212.288000;212.298000;0 +20260210 045000;212.299000;212.315000;212.282000;212.287000;0 +20260210 045100;212.286000;212.338000;212.278000;212.291000;0 +20260210 045200;212.289000;212.303000;212.273000;212.281000;0 +20260210 045300;212.280000;212.283000;212.233000;212.258000;0 +20260210 045400;212.258000;212.261000;212.235000;212.241000;0 +20260210 045500;212.238000;212.238000;212.186000;212.192000;0 +20260210 045600;212.191000;212.196000;212.182000;212.195000;0 +20260210 045700;212.191000;212.258000;212.171000;212.246000;0 +20260210 045800;212.246000;212.256000;212.237000;212.252000;0 +20260210 045900;212.253000;212.256000;212.237000;212.238000;0 +20260210 050000;212.239000;212.261000;212.231000;212.251000;0 +20260210 050100;212.252000;212.252000;212.207000;212.213000;0 +20260210 050200;212.213000;212.238000;212.198000;212.199000;0 +20260210 050300;212.198000;212.198000;212.169000;212.169000;0 +20260210 050400;212.168000;212.173000;212.135000;212.156000;0 +20260210 050500;212.156000;212.179000;212.147000;212.164000;0 +20260210 050600;212.165000;212.165000;212.114000;212.128000;0 +20260210 050700;212.130000;212.178000;212.130000;212.173000;0 +20260210 050800;212.173000;212.215000;212.173000;212.176000;0 +20260210 050900;212.180000;212.198000;212.158000;212.195000;0 +20260210 051000;212.196000;212.233000;212.194000;212.227000;0 +20260210 051100;212.228000;212.229000;212.166000;212.167000;0 +20260210 051200;212.167000;212.189000;212.153000;212.155000;0 +20260210 051300;212.154000;212.169000;212.153000;212.165000;0 +20260210 051400;212.166000;212.172000;212.128000;212.130000;0 +20260210 051500;212.129000;212.137000;212.110000;212.115000;0 +20260210 051600;212.113000;212.116000;212.090000;212.090000;0 +20260210 051700;212.091000;212.099000;212.046000;212.055000;0 +20260210 051800;212.056000;212.057000;212.024000;212.034000;0 +20260210 051900;212.036000;212.059000;212.015000;212.041000;0 +20260210 052000;212.043000;212.066000;212.034000;212.062000;0 +20260210 052100;212.065000;212.072000;212.027000;212.034000;0 +20260210 052200;212.028000;212.034000;212.000000;212.006000;0 +20260210 052300;212.006000;212.052000;212.006000;212.044000;0 +20260210 052400;212.043000;212.058000;212.041000;212.045000;0 +20260210 052500;212.044000;212.067000;212.020000;212.061000;0 +20260210 052600;212.061000;212.090000;212.036000;212.087000;0 +20260210 052700;212.086000;212.095000;212.050000;212.052000;0 +20260210 052800;212.060000;212.062000;212.038000;212.059000;0 +20260210 052900;212.058000;212.067000;212.035000;212.042000;0 +20260210 053000;212.043000;212.054000;212.023000;212.028000;0 +20260210 053100;212.028000;212.031000;211.989000;212.000000;0 +20260210 053200;212.001000;212.052000;212.000000;212.052000;0 +20260210 053300;212.051000;212.077000;212.032000;212.076000;0 +20260210 053400;212.074000;212.090000;212.060000;212.079000;0 +20260210 053500;212.081000;212.109000;212.079000;212.105000;0 +20260210 053600;212.102000;212.102000;212.076000;212.076000;0 +20260210 053700;212.077000;212.084000;212.065000;212.065000;0 +20260210 053800;212.067000;212.071000;212.009000;212.029000;0 +20260210 053900;212.027000;212.028000;212.005000;212.007000;0 +20260210 054000;212.009000;212.010000;211.960000;211.984000;0 +20260210 054100;211.990000;211.996000;211.945000;211.945000;0 +20260210 054200;211.948000;211.982000;211.944000;211.974000;0 +20260210 054300;211.971000;211.984000;211.952000;211.952000;0 +20260210 054400;211.959000;211.959000;211.916000;211.916000;0 +20260210 054500;211.915000;211.937000;211.910000;211.930000;0 +20260210 054600;211.928000;211.949000;211.922000;211.928000;0 +20260210 054700;211.926000;211.926000;211.898000;211.901000;0 +20260210 054800;211.897000;211.913000;211.890000;211.908000;0 +20260210 054900;211.908000;211.930000;211.902000;211.906000;0 +20260210 055000;211.911000;211.935000;211.902000;211.921000;0 +20260210 055100;211.921000;211.953000;211.905000;211.953000;0 +20260210 055200;211.955000;211.972000;211.939000;211.942000;0 +20260210 055300;211.943000;211.949000;211.927000;211.929000;0 +20260210 055400;211.935000;211.954000;211.935000;211.950000;0 +20260210 055500;211.951000;212.000000;211.947000;211.981000;0 +20260210 055600;211.980000;212.001000;211.964000;211.998000;0 +20260210 055700;212.001000;212.034000;211.992000;211.995000;0 +20260210 055800;211.995000;212.026000;211.993000;212.006000;0 +20260210 055900;212.007000;212.020000;211.992000;211.993000;0 +20260210 060000;211.988000;211.997000;211.971000;211.975000;0 +20260210 060100;211.978000;211.988000;211.942000;211.983000;0 +20260210 060200;211.983000;212.007000;211.975000;211.997000;0 +20260210 060300;211.997000;211.997000;211.974000;211.976000;0 +20260210 060400;211.976000;212.016000;211.968000;212.015000;0 +20260210 060500;212.016000;212.051000;212.011000;212.050000;0 +20260210 060600;212.050000;212.052000;212.035000;212.035000;0 +20260210 060700;212.036000;212.044000;212.026000;212.037000;0 +20260210 060800;212.036000;212.070000;212.036000;212.067000;0 +20260210 060900;212.069000;212.079000;212.066000;212.079000;0 +20260210 061000;212.083000;212.088000;212.065000;212.068000;0 +20260210 061100;212.066000;212.069000;212.009000;212.009000;0 +20260210 061200;212.008000;212.022000;211.995000;212.014000;0 +20260210 061300;212.015000;212.052000;212.010000;212.051000;0 +20260210 061400;212.052000;212.076000;212.043000;212.063000;0 +20260210 061500;212.060000;212.061000;212.020000;212.020000;0 +20260210 061600;212.020000;212.026000;212.004000;212.022000;0 +20260210 061700;212.023000;212.040000;212.013000;212.019000;0 +20260210 061800;212.020000;212.059000;212.010000;212.048000;0 +20260210 061900;212.046000;212.055000;212.039000;212.052000;0 +20260210 062000;212.052000;212.072000;212.046000;212.070000;0 +20260210 062100;212.067000;212.088000;212.063000;212.077000;0 +20260210 062200;212.078000;212.083000;212.049000;212.055000;0 +20260210 062300;212.057000;212.067000;212.054000;212.054000;0 +20260210 062400;212.054000;212.065000;212.035000;212.036000;0 +20260210 062500;212.035000;212.055000;212.035000;212.044000;0 +20260210 062600;212.046000;212.060000;212.035000;212.038000;0 +20260210 062700;212.037000;212.062000;212.037000;212.046000;0 +20260210 062800;212.047000;212.056000;212.040000;212.049000;0 +20260210 062900;212.050000;212.064000;212.039000;212.054000;0 +20260210 063000;212.057000;212.089000;212.053000;212.089000;0 +20260210 063100;212.090000;212.117000;212.088000;212.088000;0 +20260210 063200;212.089000;212.089000;212.048000;212.052000;0 +20260210 063300;212.051000;212.065000;212.036000;212.064000;0 +20260210 063400;212.064000;212.093000;212.058000;212.090000;0 +20260210 063500;212.089000;212.137000;212.082000;212.137000;0 +20260210 063600;212.133000;212.137000;212.112000;212.117000;0 +20260210 063700;212.117000;212.128000;212.109000;212.115000;0 +20260210 063800;212.106000;212.133000;212.101000;212.131000;0 +20260210 063900;212.132000;212.154000;212.122000;212.123000;0 +20260210 064000;212.122000;212.145000;212.116000;212.119000;0 +20260210 064100;212.119000;212.124000;212.087000;212.087000;0 +20260210 064200;212.086000;212.092000;212.070000;212.081000;0 +20260210 064300;212.089000;212.130000;212.087000;212.122000;0 +20260210 064400;212.123000;212.134000;212.114000;212.134000;0 +20260210 064500;212.134000;212.145000;212.119000;212.131000;0 +20260210 064600;212.132000;212.132000;212.107000;212.115000;0 +20260210 064700;212.120000;212.123000;212.103000;212.108000;0 +20260210 064800;212.111000;212.126000;212.110000;212.117000;0 +20260210 064900;212.117000;212.142000;212.117000;212.132000;0 +20260210 065000;212.134000;212.165000;212.134000;212.164000;0 +20260210 065100;212.164000;212.167000;212.151000;212.163000;0 +20260210 065200;212.161000;212.166000;212.143000;212.161000;0 +20260210 065300;212.161000;212.167000;212.146000;212.154000;0 +20260210 065400;212.152000;212.153000;212.135000;212.141000;0 +20260210 065500;212.138000;212.140000;212.118000;212.121000;0 +20260210 065600;212.122000;212.133000;212.113000;212.132000;0 +20260210 065700;212.131000;212.172000;212.131000;212.158000;0 +20260210 065800;212.158000;212.170000;212.141000;212.157000;0 +20260210 065900;212.158000;212.158000;212.134000;212.143000;0 +20260210 070000;212.140000;212.160000;212.136000;212.156000;0 +20260210 070100;212.158000;212.162000;212.124000;212.154000;0 +20260210 070200;212.156000;212.189000;212.150000;212.154000;0 +20260210 070300;212.153000;212.153000;212.117000;212.144000;0 +20260210 070400;212.141000;212.142000;212.121000;212.121000;0 +20260210 070500;212.121000;212.123000;212.084000;212.086000;0 +20260210 070600;212.085000;212.094000;212.071000;212.086000;0 +20260210 070700;212.085000;212.089000;212.050000;212.064000;0 +20260210 070800;212.065000;212.103000;212.062000;212.098000;0 +20260210 070900;212.112000;212.133000;212.112000;212.124000;0 +20260210 071000;212.121000;212.184000;212.111000;212.166000;0 +20260210 071100;212.166000;212.193000;212.153000;212.189000;0 +20260210 071200;212.190000;212.254000;212.182000;212.227000;0 +20260210 071300;212.227000;212.245000;212.217000;212.220000;0 +20260210 071400;212.221000;212.309000;212.218000;212.306000;0 +20260210 071500;212.309000;212.311000;212.256000;212.256000;0 +20260210 071600;212.264000;212.264000;212.202000;212.202000;0 +20260210 071700;212.209000;212.218000;212.198000;212.208000;0 +20260210 071800;212.204000;212.251000;212.197000;212.250000;0 +20260210 071900;212.253000;212.302000;212.245000;212.277000;0 +20260210 072000;212.276000;212.314000;212.276000;212.298000;0 +20260210 072100;212.300000;212.370000;212.261000;212.352000;0 +20260210 072200;212.352000;212.422000;212.347000;212.384000;0 +20260210 072300;212.380000;212.380000;212.305000;212.311000;0 +20260210 072400;212.309000;212.316000;212.273000;212.308000;0 +20260210 072500;212.306000;212.314000;212.283000;212.294000;0 +20260210 072600;212.295000;212.317000;212.288000;212.313000;0 +20260210 072700;212.316000;212.317000;212.286000;212.293000;0 +20260210 072800;212.291000;212.305000;212.283000;212.298000;0 +20260210 072900;212.302000;212.307000;212.268000;212.271000;0 +20260210 073000;212.271000;212.271000;212.199000;212.207000;0 +20260210 073100;212.214000;212.217000;212.187000;212.191000;0 +20260210 073200;212.196000;212.226000;212.193000;212.226000;0 +20260210 073300;212.226000;212.250000;212.221000;212.240000;0 +20260210 073400;212.242000;212.256000;212.229000;212.242000;0 +20260210 073500;212.242000;212.242000;212.165000;212.170000;0 +20260210 073600;212.174000;212.177000;212.142000;212.168000;0 +20260210 073700;212.169000;212.190000;212.167000;212.186000;0 +20260210 073800;212.184000;212.188000;212.142000;212.151000;0 +20260210 073900;212.148000;212.163000;212.146000;212.158000;0 +20260210 074000;212.156000;212.175000;212.128000;212.168000;0 +20260210 074100;212.167000;212.182000;212.151000;212.177000;0 +20260210 074200;212.176000;212.207000;212.161000;212.207000;0 +20260210 074300;212.205000;212.230000;212.188000;212.217000;0 +20260210 074400;212.217000;212.241000;212.197000;212.239000;0 +20260210 074500;212.237000;212.269000;212.229000;212.246000;0 +20260210 074600;212.248000;212.287000;212.217000;212.271000;0 +20260210 074700;212.271000;212.311000;212.271000;212.311000;0 +20260210 074800;212.312000;212.320000;212.294000;212.316000;0 +20260210 074900;212.314000;212.327000;212.291000;212.301000;0 +20260210 075000;212.299000;212.305000;212.260000;212.262000;0 +20260210 075100;212.266000;212.340000;212.247000;212.340000;0 +20260210 075200;212.338000;212.385000;212.330000;212.370000;0 +20260210 075300;212.370000;212.422000;212.361000;212.414000;0 +20260210 075400;212.415000;212.443000;212.395000;212.441000;0 +20260210 075500;212.441000;212.463000;212.389000;212.452000;0 +20260210 075600;212.449000;212.456000;212.411000;212.444000;0 +20260210 075700;212.445000;212.500000;212.410000;212.499000;0 +20260210 075800;212.497000;212.509000;212.428000;212.493000;0 +20260210 075900;212.494000;212.495000;212.358000;212.368000;0 +20260210 080000;212.372000;212.412000;212.339000;212.395000;0 +20260210 080100;212.400000;212.449000;212.392000;212.440000;0 +20260210 080200;212.439000;212.442000;212.343000;212.343000;0 +20260210 080300;212.344000;212.347000;212.321000;212.339000;0 +20260210 080400;212.340000;212.355000;212.311000;212.320000;0 +20260210 080500;212.317000;212.319000;212.281000;212.285000;0 +20260210 080600;212.282000;212.300000;212.274000;212.291000;0 +20260210 080700;212.286000;212.286000;212.235000;212.237000;0 +20260210 080800;212.237000;212.263000;212.216000;212.226000;0 +20260210 080900;212.225000;212.252000;212.183000;212.191000;0 +20260210 081000;212.190000;212.203000;212.171000;212.184000;0 +20260210 081100;212.184000;212.189000;212.125000;212.133000;0 +20260210 081200;212.136000;212.167000;212.108000;212.119000;0 +20260210 081300;212.120000;212.120000;212.091000;212.093000;0 +20260210 081400;212.095000;212.123000;212.073000;212.073000;0 +20260210 081500;212.073000;212.104000;212.073000;212.077000;0 +20260210 081600;212.076000;212.085000;212.046000;212.072000;0 +20260210 081700;212.073000;212.110000;212.064000;212.107000;0 +20260210 081800;212.120000;212.136000;212.086000;212.109000;0 +20260210 081900;212.108000;212.109000;212.079000;212.079000;0 +20260210 082000;212.079000;212.098000;212.072000;212.076000;0 +20260210 082100;212.074000;212.074000;211.993000;212.016000;0 +20260210 082200;212.016000;212.035000;212.008000;212.017000;0 +20260210 082300;212.018000;212.084000;212.007000;212.084000;0 +20260210 082400;212.082000;212.082000;212.056000;212.062000;0 +20260210 082500;212.063000;212.064000;212.024000;212.038000;0 +20260210 082600;212.041000;212.049000;212.010000;212.031000;0 +20260210 082700;212.033000;212.063000;212.024000;212.059000;0 +20260210 082800;212.060000;212.071000;212.043000;212.051000;0 +20260210 082900;212.049000;212.068000;212.012000;212.026000;0 +20260210 083000;211.972000;212.025000;211.873000;211.980000;0 +20260210 083100;211.982000;211.994000;211.881000;211.910000;0 +20260210 083200;211.909000;211.933000;211.883000;211.923000;0 +20260210 083300;211.925000;211.978000;211.901000;211.925000;0 +20260210 083400;211.925000;211.926000;211.845000;211.847000;0 +20260210 083500;211.846000;211.858000;211.773000;211.790000;0 +20260210 083600;211.790000;211.908000;211.780000;211.867000;0 +20260210 083700;211.865000;211.899000;211.774000;211.783000;0 +20260210 083800;211.779000;211.818000;211.773000;211.808000;0 +20260210 083900;211.805000;211.835000;211.792000;211.828000;0 +20260210 084000;211.831000;211.858000;211.822000;211.842000;0 +20260210 084100;211.845000;211.850000;211.813000;211.847000;0 +20260210 084200;211.851000;211.929000;211.845000;211.894000;0 +20260210 084300;211.893000;211.931000;211.883000;211.910000;0 +20260210 084400;211.913000;211.934000;211.896000;211.912000;0 +20260210 084500;211.908000;211.980000;211.898000;211.952000;0 +20260210 084600;211.945000;211.969000;211.913000;211.963000;0 +20260210 084700;211.963000;211.970000;211.916000;211.917000;0 +20260210 084800;211.916000;211.932000;211.875000;211.881000;0 +20260210 084900;211.881000;211.894000;211.863000;211.872000;0 +20260210 085000;211.870000;211.880000;211.822000;211.848000;0 +20260210 085100;211.847000;211.860000;211.806000;211.827000;0 +20260210 085200;211.829000;211.829000;211.783000;211.796000;0 +20260210 085300;211.797000;211.819000;211.718000;211.723000;0 +20260210 085400;211.723000;211.747000;211.702000;211.714000;0 +20260210 085500;211.713000;211.713000;211.640000;211.670000;0 +20260210 085600;211.667000;211.726000;211.666000;211.705000;0 +20260210 085700;211.707000;211.713000;211.665000;211.677000;0 +20260210 085800;211.675000;211.756000;211.673000;211.738000;0 +20260210 085900;211.735000;211.739000;211.694000;211.723000;0 +20260210 090000;211.722000;211.770000;211.721000;211.726000;0 +20260210 090100;211.728000;211.739000;211.668000;211.673000;0 +20260210 090200;211.672000;211.726000;211.670000;211.704000;0 +20260210 090300;211.705000;211.712000;211.667000;211.696000;0 +20260210 090400;211.696000;211.728000;211.696000;211.713000;0 +20260210 090500;211.713000;211.713000;211.650000;211.664000;0 +20260210 090600;211.662000;211.701000;211.658000;211.678000;0 +20260210 090700;211.682000;211.692000;211.602000;211.603000;0 +20260210 090800;211.606000;211.622000;211.584000;211.594000;0 +20260210 090900;211.595000;211.631000;211.588000;211.594000;0 +20260210 091000;211.592000;211.608000;211.584000;211.604000;0 +20260210 091100;211.605000;211.616000;211.580000;211.599000;0 +20260210 091200;211.605000;211.659000;211.591000;211.638000;0 +20260210 091300;211.636000;211.646000;211.613000;211.619000;0 +20260210 091400;211.619000;211.635000;211.579000;211.635000;0 +20260210 091500;211.630000;211.630000;211.595000;211.624000;0 +20260210 091600;211.626000;211.644000;211.609000;211.620000;0 +20260210 091700;211.621000;211.625000;211.560000;211.560000;0 +20260210 091800;211.558000;211.560000;211.500000;211.506000;0 +20260210 091900;211.508000;211.508000;211.481000;211.496000;0 +20260210 092000;211.493000;211.493000;211.456000;211.460000;0 +20260210 092100;211.467000;211.502000;211.447000;211.493000;0 +20260210 092200;211.491000;211.506000;211.405000;211.448000;0 +20260210 092300;211.448000;211.484000;211.439000;211.463000;0 +20260210 092400;211.463000;211.485000;211.410000;211.423000;0 +20260210 092500;211.427000;211.438000;211.385000;211.438000;0 +20260210 092600;211.438000;211.456000;211.414000;211.423000;0 +20260210 092700;211.428000;211.444000;211.410000;211.418000;0 +20260210 092800;211.414000;211.458000;211.403000;211.455000;0 +20260210 092900;211.457000;211.457000;211.397000;211.415000;0 +20260210 093000;211.417000;211.485000;211.412000;211.433000;0 +20260210 093100;211.434000;211.451000;211.388000;211.409000;0 +20260210 093200;211.412000;211.423000;211.353000;211.360000;0 +20260210 093300;211.361000;211.371000;211.297000;211.299000;0 +20260210 093400;211.302000;211.388000;211.298000;211.366000;0 +20260210 093500;211.366000;211.371000;211.324000;211.327000;0 +20260210 093600;211.326000;211.342000;211.279000;211.303000;0 +20260210 093700;211.304000;211.304000;211.244000;211.244000;0 +20260210 093800;211.245000;211.250000;211.179000;211.183000;0 +20260210 093900;211.178000;211.178000;211.133000;211.133000;0 +20260210 094000;211.134000;211.150000;211.042000;211.059000;0 +20260210 094100;211.061000;211.067000;210.989000;211.015000;0 +20260210 094200;211.015000;211.033000;210.975000;211.013000;0 +20260210 094300;211.012000;211.125000;211.009000;211.094000;0 +20260210 094400;211.096000;211.106000;211.046000;211.063000;0 +20260210 094500;211.062000;211.065000;210.960000;210.978000;0 +20260210 094600;210.977000;211.090000;210.976000;211.089000;0 +20260210 094700;211.086000;211.087000;211.016000;211.017000;0 +20260210 094800;211.019000;211.066000;211.014000;211.017000;0 +20260210 094900;211.015000;211.015000;210.947000;210.954000;0 +20260210 095000;210.956000;211.086000;210.938000;211.079000;0 +20260210 095100;211.077000;211.159000;211.076000;211.158000;0 +20260210 095200;211.157000;211.175000;211.121000;211.171000;0 +20260210 095300;211.176000;211.192000;211.150000;211.168000;0 +20260210 095400;211.161000;211.203000;211.141000;211.194000;0 +20260210 095500;211.192000;211.208000;211.155000;211.183000;0 +20260210 095600;211.184000;211.201000;211.159000;211.166000;0 +20260210 095700;211.169000;211.197000;211.133000;211.194000;0 +20260210 095800;211.194000;211.201000;211.140000;211.170000;0 +20260210 095900;211.167000;211.181000;211.146000;211.155000;0 +20260210 100000;211.153000;211.165000;211.077000;211.083000;0 +20260210 100100;211.085000;211.085000;210.974000;210.974000;0 +20260210 100200;210.972000;210.982000;210.916000;210.918000;0 +20260210 100300;210.916000;210.930000;210.869000;210.869000;0 +20260210 100400;210.864000;210.949000;210.857000;210.929000;0 +20260210 100500;210.927000;211.038000;210.909000;211.035000;0 +20260210 100600;211.035000;211.080000;211.018000;211.079000;0 +20260210 100700;211.079000;211.079000;211.026000;211.040000;0 +20260210 100800;211.039000;211.049000;210.956000;210.968000;0 +20260210 100900;210.968000;210.996000;210.926000;210.931000;0 +20260210 101000;210.930000;210.973000;210.926000;210.966000;0 +20260210 101100;210.967000;210.967000;210.929000;210.937000;0 +20260210 101200;210.938000;210.990000;210.925000;210.976000;0 +20260210 101300;210.973000;210.979000;210.872000;210.883000;0 +20260210 101400;210.884000;210.942000;210.863000;210.932000;0 +20260210 101500;210.926000;210.926000;210.769000;210.780000;0 +20260210 101600;210.782000;210.793000;210.747000;210.754000;0 +20260210 101700;210.757000;210.772000;210.705000;210.717000;0 +20260210 101800;210.718000;210.805000;210.690000;210.805000;0 +20260210 101900;210.805000;210.807000;210.761000;210.793000;0 +20260210 102000;210.794000;210.911000;210.786000;210.894000;0 +20260210 102100;210.894000;210.894000;210.853000;210.860000;0 +20260210 102200;210.857000;210.881000;210.845000;210.845000;0 +20260210 102300;210.838000;210.846000;210.799000;210.803000;0 +20260210 102400;210.804000;210.818000;210.784000;210.799000;0 +20260210 102500;210.799000;210.873000;210.794000;210.853000;0 +20260210 102600;210.852000;210.864000;210.827000;210.861000;0 +20260210 102700;210.865000;210.866000;210.830000;210.848000;0 +20260210 102800;210.845000;210.858000;210.813000;210.814000;0 +20260210 102900;210.813000;210.871000;210.798000;210.827000;0 +20260210 103000;210.828000;210.855000;210.814000;210.841000;0 +20260210 103100;210.849000;210.900000;210.819000;210.895000;0 +20260210 103200;210.893000;210.902000;210.855000;210.881000;0 +20260210 103300;210.881000;210.902000;210.866000;210.891000;0 +20260210 103400;210.885000;210.945000;210.885000;210.929000;0 +20260210 103500;210.926000;210.927000;210.894000;210.910000;0 +20260210 103600;210.908000;210.910000;210.863000;210.864000;0 +20260210 103700;210.860000;210.880000;210.803000;210.803000;0 +20260210 103800;210.805000;210.833000;210.798000;210.802000;0 +20260210 103900;210.802000;210.833000;210.764000;210.769000;0 +20260210 104000;210.765000;210.787000;210.669000;210.697000;0 +20260210 104100;210.702000;210.744000;210.621000;210.668000;0 +20260210 104200;210.666000;210.697000;210.657000;210.674000;0 +20260210 104300;210.676000;210.676000;210.627000;210.661000;0 +20260210 104400;210.657000;210.698000;210.641000;210.675000;0 +20260210 104500;210.672000;210.729000;210.672000;210.698000;0 +20260210 104600;210.697000;210.720000;210.670000;210.679000;0 +20260210 104700;210.673000;210.712000;210.655000;210.660000;0 +20260210 104800;210.663000;210.722000;210.649000;210.704000;0 +20260210 104900;210.707000;210.745000;210.612000;210.744000;0 +20260210 105000;210.743000;210.758000;210.642000;210.737000;0 +20260210 105100;210.736000;210.889000;210.734000;210.839000;0 +20260210 105200;210.835000;210.911000;210.814000;210.883000;0 +20260210 105300;210.883000;210.883000;210.806000;210.814000;0 +20260210 105400;210.815000;210.846000;210.745000;210.772000;0 +20260210 105500;210.775000;210.822000;210.759000;210.805000;0 +20260210 105600;210.802000;210.818000;210.783000;210.805000;0 +20260210 105700;210.803000;210.849000;210.782000;210.829000;0 +20260210 105800;210.827000;210.870000;210.827000;210.855000;0 +20260210 105900;210.855000;210.875000;210.851000;210.861000;0 +20260210 110000;210.859000;210.863000;210.809000;210.809000;0 +20260210 110100;210.811000;210.884000;210.809000;210.860000;0 +20260210 110200;210.860000;210.863000;210.809000;210.820000;0 +20260210 110300;210.819000;210.840000;210.779000;210.789000;0 +20260210 110400;210.790000;210.802000;210.735000;210.748000;0 +20260210 110500;210.746000;210.766000;210.703000;210.703000;0 +20260210 110600;210.705000;210.725000;210.697000;210.710000;0 +20260210 110700;210.710000;210.750000;210.698000;210.726000;0 +20260210 110800;210.726000;210.749000;210.713000;210.717000;0 +20260210 110900;210.716000;210.743000;210.668000;210.668000;0 +20260210 111000;210.670000;210.688000;210.633000;210.633000;0 +20260210 111100;210.636000;210.657000;210.619000;210.624000;0 +20260210 111200;210.629000;210.698000;210.613000;210.696000;0 +20260210 111300;210.693000;210.706000;210.649000;210.657000;0 +20260210 111400;210.657000;210.684000;210.640000;210.659000;0 +20260210 111500;210.653000;210.654000;210.543000;210.547000;0 +20260210 111600;210.549000;210.604000;210.544000;210.547000;0 +20260210 111700;210.549000;210.646000;210.542000;210.643000;0 +20260210 111800;210.646000;210.666000;210.631000;210.633000;0 +20260210 111900;210.630000;210.687000;210.599000;210.657000;0 +20260210 112000;210.655000;210.685000;210.639000;210.646000;0 +20260210 112100;210.645000;210.650000;210.599000;210.600000;0 +20260210 112200;210.600000;210.641000;210.589000;210.639000;0 +20260210 112300;210.635000;210.676000;210.635000;210.672000;0 +20260210 112400;210.671000;210.687000;210.661000;210.678000;0 +20260210 112500;210.674000;210.743000;210.673000;210.743000;0 +20260210 112600;210.746000;210.779000;210.735000;210.771000;0 +20260210 112700;210.769000;210.769000;210.748000;210.751000;0 +20260210 112800;210.751000;210.780000;210.729000;210.733000;0 +20260210 112900;210.731000;210.784000;210.727000;210.783000;0 +20260210 113000;210.780000;210.780000;210.734000;210.748000;0 +20260210 113100;210.753000;210.767000;210.738000;210.765000;0 +20260210 113200;210.763000;210.797000;210.757000;210.794000;0 +20260210 113300;210.791000;210.793000;210.751000;210.755000;0 +20260210 113400;210.753000;210.756000;210.723000;210.734000;0 +20260210 113500;210.737000;210.774000;210.722000;210.774000;0 +20260210 113600;210.770000;210.776000;210.749000;210.757000;0 +20260210 113700;210.755000;210.773000;210.747000;210.747000;0 +20260210 113800;210.746000;210.754000;210.739000;210.751000;0 +20260210 113900;210.747000;210.751000;210.709000;210.729000;0 +20260210 114000;210.729000;210.731000;210.690000;210.725000;0 +20260210 114100;210.725000;210.725000;210.682000;210.682000;0 +20260210 114200;210.680000;210.694000;210.626000;210.650000;0 +20260210 114300;210.651000;210.677000;210.651000;210.663000;0 +20260210 114400;210.660000;210.730000;210.660000;210.723000;0 +20260210 114500;210.718000;210.781000;210.714000;210.779000;0 +20260210 114600;210.779000;210.823000;210.778000;210.811000;0 +20260210 114700;210.812000;210.840000;210.806000;210.820000;0 +20260210 114800;210.818000;210.818000;210.774000;210.776000;0 +20260210 114900;210.777000;210.792000;210.755000;210.762000;0 +20260210 115000;210.763000;210.805000;210.752000;210.795000;0 +20260210 115100;210.797000;210.810000;210.763000;210.763000;0 +20260210 115200;210.766000;210.806000;210.763000;210.801000;0 +20260210 115300;210.801000;210.823000;210.788000;210.811000;0 +20260210 115400;210.806000;210.849000;210.804000;210.831000;0 +20260210 115500;210.837000;210.876000;210.829000;210.850000;0 +20260210 115600;210.851000;210.869000;210.841000;210.847000;0 +20260210 115700;210.845000;210.849000;210.812000;210.821000;0 +20260210 115800;210.822000;210.857000;210.821000;210.834000;0 +20260210 115900;210.831000;210.846000;210.808000;210.809000;0 +20260210 120000;210.809000;210.824000;210.797000;210.814000;0 +20260210 120100;210.813000;210.822000;210.783000;210.796000;0 +20260210 120200;210.793000;210.797000;210.774000;210.796000;0 +20260210 120300;210.798000;210.815000;210.792000;210.795000;0 +20260210 120400;210.796000;210.825000;210.796000;210.813000;0 +20260210 120500;210.812000;210.840000;210.802000;210.802000;0 +20260210 120600;210.803000;210.818000;210.784000;210.784000;0 +20260210 120700;210.788000;210.790000;210.714000;210.715000;0 +20260210 120800;210.716000;210.754000;210.716000;210.732000;0 +20260210 120900;210.731000;210.746000;210.721000;210.740000;0 +20260210 121000;210.742000;210.749000;210.719000;210.724000;0 +20260210 121100;210.723000;210.753000;210.723000;210.734000;0 +20260210 121200;210.735000;210.740000;210.680000;210.682000;0 +20260210 121300;210.674000;210.693000;210.662000;210.663000;0 +20260210 121400;210.666000;210.666000;210.651000;210.662000;0 +20260210 121500;210.664000;210.680000;210.646000;210.646000;0 +20260210 121600;210.647000;210.678000;210.643000;210.657000;0 +20260210 121700;210.655000;210.656000;210.625000;210.634000;0 +20260210 121800;210.632000;210.660000;210.631000;210.645000;0 +20260210 121900;210.644000;210.671000;210.629000;210.670000;0 +20260210 122000;210.670000;210.681000;210.661000;210.677000;0 +20260210 122100;210.681000;210.681000;210.649000;210.668000;0 +20260210 122200;210.668000;210.668000;210.628000;210.636000;0 +20260210 122300;210.638000;210.663000;210.631000;210.662000;0 +20260210 122400;210.660000;210.660000;210.627000;210.630000;0 +20260210 122500;210.629000;210.649000;210.613000;210.635000;0 +20260210 122600;210.636000;210.646000;210.623000;210.646000;0 +20260210 122700;210.643000;210.666000;210.636000;210.658000;0 +20260210 122800;210.659000;210.660000;210.630000;210.648000;0 +20260210 122900;210.649000;210.667000;210.639000;210.664000;0 +20260210 123000;210.662000;210.678000;210.656000;210.661000;0 +20260210 123100;210.666000;210.731000;210.659000;210.725000;0 +20260210 123200;210.732000;210.741000;210.660000;210.674000;0 +20260210 123300;210.670000;210.692000;210.668000;210.692000;0 +20260210 123400;210.691000;210.719000;210.689000;210.707000;0 +20260210 123500;210.709000;210.759000;210.709000;210.744000;0 +20260210 123600;210.743000;210.766000;210.739000;210.758000;0 +20260210 123700;210.765000;210.796000;210.755000;210.791000;0 +20260210 123800;210.786000;210.786000;210.762000;210.777000;0 +20260210 123900;210.774000;210.790000;210.752000;210.752000;0 +20260210 124000;210.754000;210.779000;210.751000;210.754000;0 +20260210 124100;210.755000;210.774000;210.736000;210.745000;0 +20260210 124200;210.744000;210.766000;210.736000;210.751000;0 +20260210 124300;210.750000;210.766000;210.750000;210.763000;0 +20260210 124400;210.764000;210.789000;210.748000;210.787000;0 +20260210 124500;210.788000;210.802000;210.782000;210.788000;0 +20260210 124600;210.788000;210.794000;210.729000;210.731000;0 +20260210 124700;210.728000;210.731000;210.677000;210.681000;0 +20260210 124800;210.678000;210.687000;210.633000;210.633000;0 +20260210 124900;210.629000;210.646000;210.629000;210.641000;0 +20260210 125000;210.641000;210.707000;210.641000;210.707000;0 +20260210 125100;210.707000;210.744000;210.697000;210.740000;0 +20260210 125200;210.741000;210.755000;210.736000;210.753000;0 +20260210 125300;210.752000;210.789000;210.747000;210.785000;0 +20260210 125400;210.790000;210.799000;210.776000;210.781000;0 +20260210 125500;210.780000;210.805000;210.764000;210.800000;0 +20260210 125600;210.798000;210.810000;210.772000;210.775000;0 +20260210 125700;210.774000;210.785000;210.756000;210.769000;0 +20260210 125800;210.767000;210.777000;210.764000;210.772000;0 +20260210 125900;210.774000;210.792000;210.767000;210.782000;0 +20260210 130000;210.779000;210.796000;210.768000;210.778000;0 +20260210 130100;210.777000;210.778000;210.757000;210.759000;0 +20260210 130200;210.760000;210.769000;210.745000;210.748000;0 +20260210 130300;210.752000;210.756000;210.740000;210.753000;0 +20260210 130400;210.752000;210.794000;210.752000;210.788000;0 +20260210 130500;210.787000;210.789000;210.765000;210.768000;0 +20260210 130600;210.765000;210.777000;210.760000;210.769000;0 +20260210 130700;210.766000;210.787000;210.765000;210.782000;0 +20260210 130800;210.784000;210.794000;210.766000;210.767000;0 +20260210 130900;210.766000;210.783000;210.765000;210.783000;0 +20260210 131000;210.781000;210.802000;210.781000;210.802000;0 +20260210 131100;210.801000;210.801000;210.782000;210.796000;0 +20260210 131200;210.798000;210.808000;210.791000;210.807000;0 +20260210 131300;210.805000;210.805000;210.770000;210.782000;0 +20260210 131400;210.784000;210.793000;210.772000;210.774000;0 +20260210 131500;210.775000;210.804000;210.775000;210.796000;0 +20260210 131600;210.796000;210.805000;210.778000;210.780000;0 +20260210 131700;210.780000;210.801000;210.780000;210.795000;0 +20260210 131800;210.795000;210.837000;210.795000;210.816000;0 +20260210 131900;210.817000;210.828000;210.803000;210.812000;0 +20260210 132000;210.812000;210.825000;210.784000;210.804000;0 +20260210 132100;210.803000;210.810000;210.766000;210.776000;0 +20260210 132200;210.776000;210.791000;210.767000;210.768000;0 +20260210 132300;210.770000;210.797000;210.754000;210.791000;0 +20260210 132400;210.789000;210.790000;210.766000;210.785000;0 +20260210 132500;210.784000;210.795000;210.764000;210.784000;0 +20260210 132600;210.776000;210.785000;210.767000;210.780000;0 +20260210 132700;210.781000;210.781000;210.750000;210.767000;0 +20260210 132800;210.766000;210.780000;210.752000;210.772000;0 +20260210 132900;210.774000;210.804000;210.774000;210.795000;0 +20260210 133000;210.795000;210.807000;210.777000;210.794000;0 +20260210 133100;210.795000;210.817000;210.787000;210.794000;0 +20260210 133200;210.795000;210.804000;210.785000;210.794000;0 +20260210 133300;210.797000;210.811000;210.789000;210.806000;0 +20260210 133400;210.805000;210.822000;210.800000;210.814000;0 +20260210 133500;210.815000;210.848000;210.813000;210.834000;0 +20260210 133600;210.833000;210.833000;210.804000;210.805000;0 +20260210 133700;210.805000;210.810000;210.794000;210.801000;0 +20260210 133800;210.788000;210.788000;210.768000;210.770000;0 +20260210 133900;210.772000;210.791000;210.772000;210.779000;0 +20260210 134000;210.780000;210.810000;210.777000;210.804000;0 +20260210 134100;210.803000;210.805000;210.766000;210.772000;0 +20260210 134200;210.774000;210.785000;210.772000;210.784000;0 +20260210 134300;210.783000;210.783000;210.766000;210.769000;0 +20260210 134400;210.771000;210.782000;210.758000;210.767000;0 +20260210 134500;210.772000;210.784000;210.770000;210.784000;0 +20260210 134600;210.787000;210.817000;210.787000;210.792000;0 +20260210 134700;210.790000;210.798000;210.782000;210.796000;0 +20260210 134800;210.801000;210.827000;210.794000;210.822000;0 +20260210 134900;210.821000;210.826000;210.806000;210.824000;0 +20260210 135000;210.823000;210.826000;210.805000;210.816000;0 +20260210 135100;210.817000;210.817000;210.786000;210.789000;0 +20260210 135200;210.789000;210.789000;210.771000;210.776000;0 +20260210 135300;210.786000;210.818000;210.783000;210.810000;0 +20260210 135400;210.812000;210.812000;210.790000;210.804000;0 +20260210 135500;210.802000;210.808000;210.799000;210.805000;0 +20260210 135600;210.806000;210.817000;210.797000;210.811000;0 +20260210 135700;210.812000;210.813000;210.770000;210.770000;0 +20260210 135800;210.772000;210.791000;210.763000;210.791000;0 +20260210 135900;210.793000;210.809000;210.784000;210.793000;0 +20260210 140000;210.794000;210.811000;210.768000;210.802000;0 +20260210 140100;210.801000;210.850000;210.799000;210.846000;0 +20260210 140200;210.853000;210.871000;210.849000;210.851000;0 +20260210 140300;210.853000;210.858000;210.839000;210.854000;0 +20260210 140400;210.857000;210.862000;210.839000;210.862000;0 +20260210 140500;210.865000;210.865000;210.843000;210.845000;0 +20260210 140600;210.847000;210.861000;210.845000;210.854000;0 +20260210 140700;210.854000;210.863000;210.852000;210.857000;0 +20260210 140800;210.858000;210.860000;210.842000;210.846000;0 +20260210 140900;210.850000;210.859000;210.842000;210.856000;0 +20260210 141000;210.856000;210.882000;210.840000;210.868000;0 +20260210 141100;210.869000;210.872000;210.852000;210.858000;0 +20260210 141200;210.859000;210.862000;210.839000;210.842000;0 +20260210 141300;210.840000;210.850000;210.836000;210.840000;0 +20260210 141400;210.840000;210.854000;210.839000;210.850000;0 +20260210 141500;210.849000;210.863000;210.849000;210.850000;0 +20260210 141600;210.849000;210.863000;210.841000;210.861000;0 +20260210 141700;210.867000;210.869000;210.852000;210.860000;0 +20260210 141800;210.858000;210.863000;210.837000;210.851000;0 +20260210 141900;210.849000;210.849000;210.817000;210.817000;0 +20260210 142000;210.816000;210.835000;210.808000;210.826000;0 +20260210 142100;210.824000;210.840000;210.822000;210.823000;0 +20260210 142200;210.822000;210.827000;210.817000;210.824000;0 +20260210 142300;210.821000;210.825000;210.792000;210.803000;0 +20260210 142400;210.801000;210.804000;210.788000;210.788000;0 +20260210 142500;210.794000;210.814000;210.791000;210.795000;0 +20260210 142600;210.796000;210.805000;210.793000;210.798000;0 +20260210 142700;210.802000;210.807000;210.793000;210.793000;0 +20260210 142800;210.791000;210.807000;210.778000;210.781000;0 +20260210 142900;210.780000;210.794000;210.774000;210.786000;0 +20260210 143000;210.788000;210.792000;210.777000;210.778000;0 +20260210 143100;210.780000;210.785000;210.767000;210.767000;0 +20260210 143200;210.770000;210.802000;210.770000;210.796000;0 +20260210 143300;210.802000;210.813000;210.793000;210.793000;0 +20260210 143400;210.790000;210.790000;210.771000;210.774000;0 +20260210 143500;210.774000;210.796000;210.774000;210.790000;0 +20260210 143600;210.791000;210.797000;210.786000;210.792000;0 +20260210 143700;210.793000;210.814000;210.793000;210.813000;0 +20260210 143800;210.811000;210.851000;210.809000;210.835000;0 +20260210 143900;210.835000;210.841000;210.820000;210.840000;0 +20260210 144000;210.841000;210.861000;210.827000;210.831000;0 +20260210 144100;210.831000;210.841000;210.825000;210.834000;0 +20260210 144200;210.835000;210.843000;210.826000;210.838000;0 +20260210 144300;210.840000;210.845000;210.833000;210.839000;0 +20260210 144400;210.838000;210.840000;210.827000;210.827000;0 +20260210 144500;210.825000;210.830000;210.805000;210.807000;0 +20260210 144600;210.808000;210.814000;210.790000;210.811000;0 +20260210 144700;210.808000;210.808000;210.789000;210.802000;0 +20260210 144800;210.796000;210.802000;210.765000;210.768000;0 +20260210 144900;210.767000;210.771000;210.751000;210.755000;0 +20260210 145000;210.756000;210.763000;210.729000;210.729000;0 +20260210 145100;210.727000;210.746000;210.716000;210.744000;0 +20260210 145200;210.747000;210.757000;210.730000;210.736000;0 +20260210 145300;210.736000;210.736000;210.697000;210.698000;0 +20260210 145400;210.702000;210.719000;210.702000;210.714000;0 +20260210 145500;210.709000;210.720000;210.702000;210.709000;0 +20260210 145600;210.710000;210.718000;210.690000;210.701000;0 +20260210 145700;210.704000;210.708000;210.679000;210.707000;0 +20260210 145800;210.706000;210.722000;210.703000;210.714000;0 +20260210 145900;210.718000;210.752000;210.713000;210.739000;0 +20260210 150000;210.735000;210.740000;210.720000;210.738000;0 +20260210 150100;210.738000;210.755000;210.738000;210.748000;0 +20260210 150200;210.748000;210.758000;210.726000;210.726000;0 +20260210 150300;210.726000;210.734000;210.709000;210.709000;0 +20260210 150400;210.711000;210.728000;210.693000;210.728000;0 +20260210 150500;210.726000;210.765000;210.726000;210.728000;0 +20260210 150600;210.728000;210.735000;210.702000;210.708000;0 +20260210 150700;210.707000;210.713000;210.705000;210.713000;0 +20260210 150800;210.711000;210.727000;210.710000;210.714000;0 +20260210 150900;210.710000;210.710000;210.699000;210.706000;0 +20260210 151000;210.705000;210.715000;210.702000;210.712000;0 +20260210 151100;210.714000;210.714000;210.703000;210.707000;0 +20260210 151200;210.711000;210.715000;210.683000;210.686000;0 +20260210 151300;210.687000;210.697000;210.682000;210.696000;0 +20260210 151400;210.692000;210.697000;210.691000;210.696000;0 +20260210 151500;210.695000;210.710000;210.692000;210.704000;0 +20260210 151600;210.705000;210.707000;210.689000;210.689000;0 +20260210 151700;210.690000;210.695000;210.684000;210.692000;0 +20260210 151800;210.697000;210.698000;210.682000;210.694000;0 +20260210 151900;210.695000;210.706000;210.687000;210.691000;0 +20260210 152000;210.688000;210.709000;210.688000;210.699000;0 +20260210 152100;210.701000;210.715000;210.695000;210.712000;0 +20260210 152200;210.712000;210.715000;210.703000;210.706000;0 +20260210 152300;210.704000;210.713000;210.692000;210.701000;0 +20260210 152400;210.703000;210.709000;210.698000;210.704000;0 +20260210 152500;210.701000;210.710000;210.691000;210.709000;0 +20260210 152600;210.710000;210.712000;210.691000;210.697000;0 +20260210 152700;210.699000;210.705000;210.693000;210.705000;0 +20260210 152800;210.702000;210.704000;210.684000;210.687000;0 +20260210 152900;210.685000;210.702000;210.685000;210.687000;0 +20260210 153000;210.689000;210.714000;210.685000;210.702000;0 +20260210 153100;210.700000;210.705000;210.692000;210.693000;0 +20260210 153200;210.692000;210.698000;210.684000;210.696000;0 +20260210 153300;210.698000;210.702000;210.688000;210.690000;0 +20260210 153400;210.689000;210.699000;210.679000;210.685000;0 +20260210 153500;210.686000;210.691000;210.671000;210.672000;0 +20260210 153600;210.674000;210.676000;210.667000;210.671000;0 +20260210 153700;210.670000;210.671000;210.638000;210.640000;0 +20260210 153800;210.635000;210.635000;210.619000;210.626000;0 +20260210 153900;210.624000;210.634000;210.623000;210.625000;0 +20260210 154000;210.613000;210.623000;210.609000;210.619000;0 +20260210 154100;210.617000;210.617000;210.586000;210.590000;0 +20260210 154200;210.589000;210.600000;210.575000;210.589000;0 +20260210 154300;210.590000;210.597000;210.580000;210.580000;0 +20260210 154400;210.581000;210.594000;210.581000;210.593000;0 +20260210 154500;210.594000;210.611000;210.594000;210.611000;0 +20260210 154600;210.609000;210.621000;210.604000;210.618000;0 +20260210 154700;210.619000;210.621000;210.610000;210.610000;0 +20260210 154800;210.613000;210.623000;210.601000;210.618000;0 +20260210 154900;210.612000;210.639000;210.606000;210.639000;0 +20260210 155000;210.640000;210.642000;210.622000;210.641000;0 +20260210 155100;210.640000;210.640000;210.600000;210.601000;0 +20260210 155200;210.598000;210.604000;210.577000;210.589000;0 +20260210 155300;210.587000;210.593000;210.574000;210.592000;0 +20260210 155400;210.595000;210.599000;210.586000;210.595000;0 +20260210 155500;210.596000;210.609000;210.560000;210.561000;0 +20260210 155600;210.562000;210.562000;210.532000;210.534000;0 +20260210 155700;210.532000;210.547000;210.522000;210.532000;0 +20260210 155800;210.531000;210.552000;210.515000;210.552000;0 +20260210 155900;210.551000;210.571000;210.545000;210.565000;0 +20260210 160000;210.564000;210.586000;210.550000;210.579000;0 +20260210 160100;210.575000;210.576000;210.546000;210.567000;0 +20260210 160200;210.568000;210.579000;210.568000;210.575000;0 +20260210 160300;210.575000;210.584000;210.553000;210.557000;0 +20260210 160400;210.557000;210.569000;210.541000;210.541000;0 +20260210 160500;210.538000;210.538000;210.510000;210.510000;0 +20260210 160600;210.510000;210.526000;210.509000;210.510000;0 +20260210 160700;210.506000;210.506000;210.480000;210.480000;0 +20260210 160800;210.485000;210.515000;210.482000;210.515000;0 +20260210 160900;210.519000;210.538000;210.516000;210.517000;0 +20260210 161000;210.513000;210.539000;210.513000;210.531000;0 +20260210 161100;210.533000;210.569000;210.533000;210.542000;0 +20260210 161200;210.541000;210.558000;210.537000;210.537000;0 +20260210 161300;210.539000;210.546000;210.530000;210.537000;0 +20260210 161400;210.536000;210.539000;210.527000;210.539000;0 +20260210 161500;210.540000;210.562000;210.540000;210.561000;0 +20260210 161600;210.562000;210.563000;210.554000;210.555000;0 +20260210 161700;210.563000;210.566000;210.553000;210.555000;0 +20260210 161800;210.556000;210.562000;210.556000;210.562000;0 +20260210 161900;210.562000;210.574000;210.562000;210.565000;0 +20260210 162000;210.558000;210.567000;210.554000;210.567000;0 +20260210 162100;210.568000;210.568000;210.546000;210.557000;0 +20260210 162200;210.561000;210.561000;210.548000;210.548000;0 +20260210 162300;210.548000;210.548000;210.539000;210.539000;0 +20260210 162400;210.540000;210.543000;210.533000;210.533000;0 +20260210 162500;210.533000;210.538000;210.532000;210.537000;0 +20260210 162600;210.528000;210.531000;210.518000;210.521000;0 +20260210 162700;210.524000;210.527000;210.519000;210.527000;0 +20260210 162800;210.529000;210.533000;210.528000;210.531000;0 +20260210 162900;210.532000;210.532000;210.516000;210.530000;0 +20260210 163000;210.528000;210.538000;210.526000;210.538000;0 +20260210 163100;210.537000;210.549000;210.536000;210.549000;0 +20260210 163200;210.549000;210.575000;210.549000;210.566000;0 +20260210 163300;210.564000;210.577000;210.558000;210.570000;0 +20260210 163400;210.568000;210.568000;210.541000;210.541000;0 +20260210 163500;210.543000;210.550000;210.537000;210.537000;0 +20260210 163600;210.532000;210.545000;210.527000;210.544000;0 +20260210 163700;210.545000;210.545000;210.536000;210.541000;0 +20260210 163800;210.540000;210.548000;210.530000;210.540000;0 +20260210 163900;210.542000;210.555000;210.536000;210.553000;0 +20260210 164000;210.548000;210.558000;210.536000;210.549000;0 +20260210 164100;210.551000;210.555000;210.540000;210.540000;0 +20260210 164200;210.539000;210.548000;210.535000;210.539000;0 +20260210 164300;210.538000;210.544000;210.537000;210.538000;0 +20260210 164400;210.538000;210.567000;210.534000;210.567000;0 +20260210 164500;210.568000;210.623000;210.566000;210.605000;0 +20260210 164600;210.597000;210.613000;210.595000;210.599000;0 +20260210 164700;210.598000;210.617000;210.598000;210.612000;0 +20260210 164800;210.611000;210.613000;210.604000;210.611000;0 +20260210 164900;210.616000;210.616000;210.604000;210.604000;0 +20260210 165000;210.603000;210.618000;210.597000;210.608000;0 +20260210 165100;210.608000;210.613000;210.606000;210.613000;0 +20260210 165200;210.611000;210.616000;210.603000;210.611000;0 +20260210 165300;210.613000;210.613000;210.611000;210.611000;0 +20260210 165400;210.612000;210.623000;210.605000;210.615000;0 +20260210 165500;210.606000;210.620000;210.606000;210.614000;0 +20260210 165600;210.612000;210.642000;210.571000;210.589000;0 +20260210 165700;210.590000;210.602000;210.569000;210.582000;0 +20260210 165800;210.581000;210.600000;210.565000;210.589000;0 +20260210 165900;210.587000;210.601000;210.559000;210.601000;0 +20260210 170000;210.573000;210.573000;210.573000;210.573000;0 +20260210 170400;210.484000;210.484000;210.484000;210.484000;0 +20260210 170500;210.520000;210.520000;210.520000;210.520000;0 +20260210 170600;210.540000;210.541000;210.520000;210.541000;0 +20260210 170700;210.532000;210.532000;210.510000;210.526000;0 +20260210 170800;210.526000;210.601000;210.504000;210.545000;0 +20260210 170900;210.523000;210.545000;210.523000;210.545000;0 +20260210 171000;210.525000;210.548000;210.524000;210.548000;0 +20260210 171100;210.550000;210.550000;210.546000;210.546000;0 +20260210 171200;210.546000;210.546000;210.546000;210.546000;0 +20260210 171300;210.546000;210.546000;210.544000;210.544000;0 +20260210 171400;210.545000;210.545000;210.544000;210.544000;0 +20260210 171500;210.536000;210.536000;210.522000;210.523000;0 +20260210 171600;210.522000;210.537000;210.480000;210.523000;0 +20260210 171700;210.524000;210.524000;210.524000;210.524000;0 +20260210 171800;210.523000;210.525000;210.523000;210.525000;0 +20260210 171900;210.526000;210.526000;210.526000;210.526000;0 +20260210 172000;210.526000;210.526000;210.509000;210.509000;0 +20260210 172100;210.510000;210.515000;210.510000;210.512000;0 +20260210 172200;210.513000;210.517000;210.513000;210.513000;0 +20260210 172300;210.514000;210.519000;210.511000;210.515000;0 +20260210 172400;210.512000;210.516000;210.511000;210.516000;0 +20260210 172500;210.520000;210.525000;210.470000;210.470000;0 +20260210 172600;210.470000;210.471000;210.470000;210.471000;0 +20260210 172700;210.449000;210.453000;210.449000;210.453000;0 +20260210 172800;210.453000;210.469000;210.449000;210.469000;0 +20260210 172900;210.472000;210.513000;210.472000;210.481000;0 +20260210 173000;210.482000;210.521000;210.481000;210.520000;0 +20260210 173100;210.522000;210.583000;210.522000;210.555000;0 +20260210 173200;210.552000;210.556000;210.552000;210.555000;0 +20260210 173300;210.554000;210.556000;210.554000;210.556000;0 +20260210 173400;210.557000;210.559000;210.551000;210.554000;0 +20260210 173500;210.555000;210.556000;210.553000;210.553000;0 +20260210 173600;210.552000;210.555000;210.549000;210.552000;0 +20260210 173700;210.552000;210.558000;210.551000;210.556000;0 +20260210 173800;210.555000;210.560000;210.534000;210.558000;0 +20260210 173900;210.559000;210.568000;210.552000;210.567000;0 +20260210 174000;210.566000;210.568000;210.561000;210.565000;0 +20260210 174100;210.566000;210.569000;210.554000;210.565000;0 +20260210 174200;210.564000;210.569000;210.561000;210.564000;0 +20260210 174300;210.562000;210.564000;210.561000;210.562000;0 +20260210 174400;210.562000;210.568000;210.562000;210.563000;0 +20260210 174500;210.564000;210.568000;210.561000;210.563000;0 +20260210 174600;210.564000;210.571000;210.562000;210.571000;0 +20260210 174700;210.572000;210.572000;210.564000;210.567000;0 +20260210 174800;210.566000;210.573000;210.563000;210.564000;0 +20260210 174900;210.564000;210.570000;210.560000;210.566000;0 +20260210 175000;210.565000;210.575000;210.563000;210.565000;0 +20260210 175100;210.564000;210.564000;210.560000;210.561000;0 +20260210 175200;210.560000;210.567000;210.560000;210.564000;0 +20260210 175300;210.563000;210.566000;210.499000;210.540000;0 +20260210 175400;210.540000;210.552000;210.518000;210.542000;0 +20260210 175500;210.543000;210.543000;210.498000;210.499000;0 +20260210 175600;210.500000;210.526000;210.497000;210.502000;0 +20260210 175700;210.522000;210.528000;210.504000;210.504000;0 +20260210 175800;210.513000;210.555000;210.511000;210.549000;0 +20260210 175900;210.550000;210.565000;210.533000;210.561000;0 +20260210 180000;210.561000;210.564000;210.507000;210.548000;0 +20260210 180100;210.557000;210.585000;210.557000;210.571000;0 +20260210 180200;210.574000;210.588000;210.562000;210.580000;0 +20260210 180300;210.576000;210.585000;210.541000;210.547000;0 +20260210 180400;210.552000;210.566000;210.543000;210.565000;0 +20260210 180500;210.551000;210.597000;210.551000;210.590000;0 +20260210 180600;210.589000;210.595000;210.576000;210.579000;0 +20260210 180700;210.581000;210.581000;210.562000;210.562000;0 +20260210 180800;210.565000;210.583000;210.565000;210.583000;0 +20260210 180900;210.582000;210.592000;210.568000;210.569000;0 +20260210 181000;210.571000;210.594000;210.571000;210.587000;0 +20260210 181100;210.586000;210.606000;210.584000;210.605000;0 +20260210 181200;210.606000;210.607000;210.600000;210.604000;0 +20260210 181300;210.606000;210.607000;210.588000;210.595000;0 +20260210 181400;210.596000;210.600000;210.594000;210.599000;0 +20260210 181500;210.596000;210.605000;210.583000;210.600000;0 +20260210 181600;210.600000;210.602000;210.597000;210.598000;0 +20260210 181700;210.599000;210.600000;210.591000;210.597000;0 +20260210 181800;210.598000;210.616000;210.597000;210.604000;0 +20260210 181900;210.603000;210.607000;210.597000;210.597000;0 +20260210 182000;210.597000;210.613000;210.592000;210.612000;0 +20260210 182100;210.610000;210.614000;210.591000;210.595000;0 +20260210 182200;210.593000;210.619000;210.593000;210.619000;0 +20260210 182300;210.617000;210.622000;210.616000;210.620000;0 +20260210 182400;210.619000;210.628000;210.611000;210.619000;0 +20260210 182500;210.620000;210.626000;210.604000;210.624000;0 +20260210 182600;210.625000;210.626000;210.621000;210.621000;0 +20260210 182700;210.622000;210.636000;210.622000;210.633000;0 +20260210 182800;210.634000;210.660000;210.633000;210.659000;0 +20260210 182900;210.659000;210.662000;210.640000;210.643000;0 +20260210 183000;210.646000;210.652000;210.641000;210.649000;0 +20260210 183100;210.648000;210.648000;210.620000;210.629000;0 +20260210 183200;210.627000;210.631000;210.617000;210.621000;0 +20260210 183300;210.623000;210.623000;210.601000;210.615000;0 +20260210 183400;210.614000;210.625000;210.614000;210.622000;0 +20260210 183500;210.622000;210.626000;210.614000;210.619000;0 +20260210 183600;210.617000;210.628000;210.611000;210.628000;0 +20260210 183700;210.629000;210.640000;210.623000;210.630000;0 +20260210 183800;210.631000;210.631000;210.620000;210.623000;0 +20260210 183900;210.631000;210.631000;210.621000;210.623000;0 +20260210 184000;210.621000;210.622000;210.607000;210.609000;0 +20260210 184100;210.615000;210.624000;210.607000;210.607000;0 +20260210 184200;210.609000;210.612000;210.605000;210.608000;0 +20260210 184300;210.609000;210.609000;210.595000;210.604000;0 +20260210 184400;210.605000;210.609000;210.593000;210.608000;0 +20260210 184500;210.609000;210.619000;210.603000;210.608000;0 +20260210 184600;210.609000;210.613000;210.607000;210.609000;0 +20260210 184700;210.608000;210.619000;210.601000;210.618000;0 +20260210 184800;210.616000;210.626000;210.604000;210.609000;0 +20260210 184900;210.605000;210.609000;210.603000;210.608000;0 +20260210 185000;210.607000;210.613000;210.599000;210.610000;0 +20260210 185100;210.611000;210.611000;210.602000;210.607000;0 +20260210 185200;210.610000;210.613000;210.606000;210.608000;0 +20260210 185300;210.607000;210.612000;210.604000;210.612000;0 +20260210 185400;210.609000;210.609000;210.607000;210.607000;0 +20260210 185500;210.608000;210.621000;210.607000;210.619000;0 +20260210 185600;210.617000;210.619000;210.615000;210.617000;0 +20260210 185700;210.616000;210.626000;210.612000;210.620000;0 +20260210 185800;210.619000;210.623000;210.608000;210.615000;0 +20260210 185900;210.614000;210.624000;210.608000;210.622000;0 +20260210 190000;210.621000;210.643000;210.618000;210.631000;0 +20260210 190100;210.634000;210.636000;210.597000;210.599000;0 +20260210 190200;210.599000;210.603000;210.553000;210.554000;0 +20260210 190300;210.554000;210.574000;210.542000;210.552000;0 +20260210 190400;210.559000;210.561000;210.507000;210.517000;0 +20260210 190500;210.517000;210.538000;210.514000;210.538000;0 +20260210 190600;210.538000;210.572000;210.536000;210.572000;0 +20260210 190700;210.570000;210.570000;210.543000;210.544000;0 +20260210 190800;210.543000;210.573000;210.542000;210.557000;0 +20260210 190900;210.551000;210.551000;210.531000;210.533000;0 +20260210 191000;210.530000;210.555000;210.527000;210.555000;0 +20260210 191100;210.560000;210.562000;210.542000;210.542000;0 +20260210 191200;210.546000;210.557000;210.538000;210.543000;0 +20260210 191300;210.541000;210.556000;210.530000;210.555000;0 +20260210 191400;210.556000;210.559000;210.550000;210.555000;0 +20260210 191500;210.550000;210.576000;210.550000;210.564000;0 +20260210 191600;210.559000;210.563000;210.529000;210.536000;0 +20260210 191700;210.531000;210.531000;210.472000;210.472000;0 +20260210 191800;210.473000;210.485000;210.442000;210.444000;0 +20260210 191900;210.444000;210.450000;210.427000;210.442000;0 +20260210 192000;210.444000;210.466000;210.442000;210.466000;0 +20260210 192100;210.468000;210.468000;210.458000;210.461000;0 +20260210 192200;210.458000;210.473000;210.437000;210.441000;0 +20260210 192300;210.444000;210.449000;210.425000;210.426000;0 +20260210 192400;210.425000;210.429000;210.406000;210.407000;0 +20260210 192500;210.405000;210.429000;210.398000;210.406000;0 +20260210 192600;210.407000;210.414000;210.397000;210.405000;0 +20260210 192700;210.407000;210.410000;210.389000;210.405000;0 +20260210 192800;210.407000;210.407000;210.366000;210.375000;0 +20260210 192900;210.376000;210.395000;210.376000;210.385000;0 +20260210 193000;210.385000;210.386000;210.328000;210.335000;0 +20260210 193100;210.336000;210.336000;210.269000;210.293000;0 +20260210 193200;210.299000;210.299000;210.257000;210.289000;0 +20260210 193300;210.293000;210.295000;210.268000;210.270000;0 +20260210 193400;210.269000;210.284000;210.265000;210.284000;0 +20260210 193500;210.282000;210.299000;210.264000;210.277000;0 +20260210 193600;210.280000;210.282000;210.245000;210.265000;0 +20260210 193700;210.264000;210.307000;210.264000;210.278000;0 +20260210 193800;210.281000;210.300000;210.280000;210.296000;0 +20260210 193900;210.298000;210.326000;210.298000;210.302000;0 +20260210 194000;210.302000;210.302000;210.271000;210.274000;0 +20260210 194100;210.273000;210.275000;210.183000;210.214000;0 +20260210 194200;210.216000;210.231000;210.183000;210.206000;0 +20260210 194300;210.215000;210.228000;210.160000;210.177000;0 +20260210 194400;210.178000;210.188000;210.141000;210.150000;0 +20260210 194500;210.151000;210.165000;210.138000;210.164000;0 +20260210 194600;210.169000;210.197000;210.159000;210.175000;0 +20260210 194700;210.172000;210.173000;210.157000;210.166000;0 +20260210 194800;210.167000;210.193000;210.163000;210.170000;0 +20260210 194900;210.170000;210.195000;210.120000;210.169000;0 +20260210 195000;210.169000;210.192000;210.112000;210.163000;0 +20260210 195100;210.164000;210.193000;210.132000;210.132000;0 +20260210 195200;210.132000;210.183000;210.132000;210.140000;0 +20260210 195300;210.140000;210.176000;210.105000;210.112000;0 +20260210 195400;210.117000;210.170000;210.079000;210.165000;0 +20260210 195500;210.166000;210.174000;210.103000;210.112000;0 +20260210 195600;210.122000;210.180000;210.119000;210.169000;0 +20260210 195700;210.169000;210.211000;210.150000;210.170000;0 +20260210 195800;210.174000;210.186000;210.141000;210.176000;0 +20260210 195900;210.176000;210.177000;210.081000;210.097000;0 +20260210 200000;210.100000;210.127000;210.040000;210.040000;0 +20260210 200100;210.036000;210.128000;210.036000;210.103000;0 +20260210 200200;210.103000;210.167000;210.103000;210.130000;0 +20260210 200300;210.135000;210.161000;210.084000;210.110000;0 +20260210 200400;210.109000;210.112000;210.067000;210.104000;0 +20260210 200500;210.099000;210.128000;210.057000;210.069000;0 +20260210 200600;210.064000;210.108000;210.054000;210.090000;0 +20260210 200700;210.090000;210.168000;210.077000;210.157000;0 +20260210 200800;210.152000;210.181000;210.129000;210.129000;0 +20260210 200900;210.126000;210.164000;210.123000;210.153000;0 +20260210 201000;210.148000;210.172000;210.139000;210.153000;0 +20260210 201100;210.152000;210.156000;210.079000;210.084000;0 +20260210 201200;210.084000;210.084000;210.030000;210.043000;0 +20260210 201300;210.042000;210.043000;209.985000;210.003000;0 +20260210 201400;210.004000;210.042000;210.003000;210.029000;0 +20260210 201500;210.022000;210.056000;210.009000;210.020000;0 +20260210 201600;210.023000;210.042000;210.020000;210.020000;0 +20260210 201700;210.019000;210.036000;209.994000;210.003000;0 +20260210 201800;209.993000;210.016000;209.987000;209.993000;0 +20260210 201900;209.994000;209.999000;209.939000;209.952000;0 +20260210 202000;209.949000;210.011000;209.949000;210.000000;0 +20260210 202100;209.996000;210.018000;209.993000;210.001000;0 +20260210 202200;210.000000;210.019000;209.996000;210.008000;0 +20260210 202300;210.009000;210.014000;209.990000;209.997000;0 +20260210 202400;209.997000;210.001000;209.966000;209.997000;0 +20260210 202500;210.000000;210.013000;209.995000;210.002000;0 +20260210 202600;210.002000;210.022000;210.001000;210.012000;0 +20260210 202700;210.004000;210.023000;210.002000;210.022000;0 +20260210 202800;210.018000;210.033000;209.998000;210.033000;0 +20260210 202900;210.038000;210.058000;210.036000;210.036000;0 +20260210 203000;210.033000;210.044000;210.019000;210.036000;0 +20260210 203100;210.036000;210.055000;210.029000;210.042000;0 +20260210 203200;210.042000;210.066000;210.037000;210.061000;0 +20260210 203300;210.058000;210.069000;210.045000;210.066000;0 +20260210 203400;210.068000;210.075000;210.031000;210.050000;0 +20260210 203500;210.047000;210.047000;210.000000;210.025000;0 +20260210 203600;210.027000;210.066000;210.027000;210.062000;0 +20260210 203700;210.059000;210.103000;210.059000;210.103000;0 +20260210 203800;210.104000;210.129000;210.075000;210.082000;0 +20260210 203900;210.083000;210.090000;210.034000;210.089000;0 +20260210 204000;210.089000;210.109000;210.082000;210.090000;0 +20260210 204100;210.088000;210.096000;210.070000;210.093000;0 +20260210 204200;210.095000;210.112000;210.048000;210.064000;0 +20260210 204300;210.065000;210.079000;210.051000;210.072000;0 +20260210 204400;210.076000;210.107000;210.069000;210.092000;0 +20260210 204500;210.092000;210.123000;210.092000;210.117000;0 +20260210 204600;210.117000;210.118000;210.097000;210.103000;0 +20260210 204700;210.104000;210.116000;210.089000;210.103000;0 +20260210 204800;210.105000;210.117000;210.072000;210.100000;0 +20260210 204900;210.102000;210.110000;210.087000;210.098000;0 +20260210 205000;210.097000;210.115000;210.095000;210.115000;0 +20260210 205100;210.109000;210.146000;210.102000;210.138000;0 +20260210 205200;210.137000;210.138000;210.117000;210.129000;0 +20260210 205300;210.129000;210.139000;210.123000;210.136000;0 +20260210 205400;210.136000;210.137000;210.132000;210.134000;0 +20260210 205500;210.134000;210.149000;210.129000;210.144000;0 +20260210 205600;210.147000;210.151000;210.122000;210.135000;0 +20260210 205700;210.137000;210.137000;210.116000;210.116000;0 +20260210 205800;210.115000;210.122000;210.088000;210.089000;0 +20260210 205900;210.090000;210.090000;210.071000;210.087000;0 +20260210 210000;210.087000;210.102000;210.081000;210.100000;0 +20260210 210100;210.100000;210.102000;210.057000;210.073000;0 +20260210 210200;210.076000;210.087000;210.050000;210.051000;0 +20260210 210300;210.054000;210.076000;210.054000;210.066000;0 +20260210 210400;210.068000;210.081000;210.051000;210.069000;0 +20260210 210500;210.069000;210.080000;210.054000;210.061000;0 +20260210 210600;210.063000;210.068000;210.047000;210.055000;0 +20260210 210700;210.055000;210.063000;210.048000;210.053000;0 +20260210 210800;210.055000;210.069000;210.008000;210.017000;0 +20260210 210900;210.014000;210.032000;210.005000;210.014000;0 +20260210 211000;210.005000;210.028000;209.997000;210.024000;0 +20260210 211100;210.024000;210.035000;210.024000;210.032000;0 +20260210 211200;210.032000;210.034000;210.017000;210.018000;0 +20260210 211300;210.019000;210.030000;210.010000;210.029000;0 +20260210 211400;210.030000;210.043000;210.028000;210.031000;0 +20260210 211500;210.031000;210.068000;210.027000;210.051000;0 +20260210 211600;210.051000;210.059000;210.035000;210.046000;0 +20260210 211700;210.046000;210.060000;210.038000;210.056000;0 +20260210 211800;210.056000;210.056000;210.002000;210.006000;0 +20260210 211900;210.008000;210.028000;209.959000;209.972000;0 +20260210 212000;209.977000;210.077000;209.977000;210.062000;0 +20260210 212100;210.057000;210.073000;210.049000;210.066000;0 +20260210 212200;210.065000;210.076000;210.029000;210.030000;0 +20260210 212300;210.031000;210.037000;209.997000;210.027000;0 +20260210 212400;210.025000;210.031000;209.974000;210.013000;0 +20260210 212500;210.020000;210.025000;210.000000;210.009000;0 +20260210 212600;210.009000;210.065000;210.008000;210.052000;0 +20260210 212700;210.054000;210.074000;210.052000;210.073000;0 +20260210 212800;210.072000;210.075000;210.017000;210.033000;0 +20260210 212900;210.032000;210.053000;210.024000;210.052000;0 +20260210 213000;210.051000;210.070000;210.004000;210.007000;0 +20260210 213100;210.006000;210.046000;210.001000;210.035000;0 +20260210 213200;210.033000;210.033000;209.990000;209.993000;0 +20260210 213300;209.992000;210.004000;209.975000;209.996000;0 +20260210 213400;209.998000;210.013000;209.939000;209.946000;0 +20260210 213500;209.944000;209.970000;209.931000;209.963000;0 +20260210 213600;209.963000;210.001000;209.959000;209.967000;0 +20260210 213700;209.967000;209.983000;209.930000;209.937000;0 +20260210 213800;209.937000;209.944000;209.855000;209.858000;0 +20260210 213900;209.855000;209.922000;209.855000;209.919000;0 +20260210 214000;209.919000;209.927000;209.894000;209.901000;0 +20260210 214100;209.901000;209.932000;209.891000;209.927000;0 +20260210 214200;209.926000;209.959000;209.919000;209.942000;0 +20260210 214300;209.943000;209.992000;209.943000;209.992000;0 +20260210 214400;209.992000;210.007000;209.985000;210.001000;0 +20260210 214500;210.002000;210.010000;209.961000;209.963000;0 +20260210 214600;209.961000;209.977000;209.954000;209.965000;0 +20260210 214700;209.968000;209.969000;209.933000;209.934000;0 +20260210 214800;209.934000;209.955000;209.920000;209.950000;0 +20260210 214900;209.951000;209.959000;209.932000;209.940000;0 +20260210 215000;209.938000;209.941000;209.896000;209.900000;0 +20260210 215100;209.892000;209.920000;209.857000;209.915000;0 +20260210 215200;209.918000;209.935000;209.873000;209.878000;0 +20260210 215300;209.878000;209.893000;209.872000;209.893000;0 +20260210 215400;209.895000;209.911000;209.876000;209.911000;0 +20260210 215500;209.911000;209.919000;209.887000;209.893000;0 +20260210 215600;209.889000;209.893000;209.864000;209.881000;0 +20260210 215700;209.874000;209.878000;209.809000;209.826000;0 +20260210 215800;209.828000;209.836000;209.809000;209.826000;0 +20260210 215900;209.828000;209.841000;209.800000;209.801000;0 +20260210 220000;209.800000;209.835000;209.800000;209.831000;0 +20260210 220100;209.821000;209.844000;209.812000;209.821000;0 +20260210 220200;209.819000;209.832000;209.802000;209.829000;0 +20260210 220300;209.829000;209.831000;209.807000;209.828000;0 +20260210 220400;209.831000;209.868000;209.819000;209.843000;0 +20260210 220500;209.844000;209.880000;209.844000;209.853000;0 +20260210 220600;209.853000;209.881000;209.847000;209.849000;0 +20260210 220700;209.848000;209.869000;209.848000;209.869000;0 +20260210 220800;209.869000;209.870000;209.806000;209.811000;0 +20260210 220900;209.807000;209.850000;209.783000;209.841000;0 +20260210 221000;209.843000;209.845000;209.808000;209.835000;0 +20260210 221100;209.834000;209.847000;209.819000;209.842000;0 +20260210 221200;209.843000;209.887000;209.843000;209.876000;0 +20260210 221300;209.878000;209.879000;209.843000;209.854000;0 +20260210 221400;209.853000;209.864000;209.835000;209.860000;0 +20260210 221500;209.860000;209.872000;209.846000;209.862000;0 +20260210 221600;209.860000;209.915000;209.860000;209.900000;0 +20260210 221700;209.900000;209.909000;209.875000;209.880000;0 +20260210 221800;209.883000;209.914000;209.878000;209.914000;0 +20260210 221900;209.914000;209.928000;209.905000;209.915000;0 +20260210 222000;209.913000;209.914000;209.890000;209.904000;0 +20260210 222100;209.907000;209.930000;209.902000;209.905000;0 +20260210 222200;209.909000;209.919000;209.900000;209.918000;0 +20260210 222300;209.919000;209.919000;209.903000;209.906000;0 +20260210 222400;209.916000;209.920000;209.900000;209.917000;0 +20260210 222500;209.916000;209.945000;209.861000;209.936000;0 +20260210 222600;209.934000;209.936000;209.911000;209.918000;0 +20260210 222700;209.918000;209.921000;209.895000;209.904000;0 +20260210 222800;209.901000;209.929000;209.897000;209.928000;0 +20260210 222900;209.930000;209.964000;209.930000;209.940000;0 +20260210 223000;209.938000;209.956000;209.923000;209.953000;0 +20260210 223100;209.952000;209.971000;209.939000;209.970000;0 +20260210 223200;209.970000;209.970000;209.927000;209.931000;0 +20260210 223300;209.932000;209.961000;209.932000;209.952000;0 +20260210 223400;209.951000;209.951000;209.927000;209.933000;0 +20260210 223500;209.933000;209.942000;209.903000;209.912000;0 +20260210 223600;209.906000;209.925000;209.885000;209.920000;0 +20260210 223700;209.919000;209.928000;209.911000;209.913000;0 +20260210 223800;209.905000;209.914000;209.895000;209.902000;0 +20260210 223900;209.907000;209.907000;209.877000;209.902000;0 +20260210 224000;209.901000;209.901000;209.832000;209.842000;0 +20260210 224100;209.845000;209.877000;209.842000;209.874000;0 +20260210 224200;209.874000;209.875000;209.858000;209.866000;0 +20260210 224300;209.864000;209.887000;209.858000;209.875000;0 +20260210 224400;209.872000;209.889000;209.870000;209.872000;0 +20260210 224500;209.872000;209.873000;209.854000;209.857000;0 +20260210 224600;209.861000;209.887000;209.858000;209.876000;0 +20260210 224700;209.881000;209.915000;209.876000;209.904000;0 +20260210 224800;209.901000;209.920000;209.897000;209.897000;0 +20260210 224900;209.892000;209.898000;209.869000;209.880000;0 +20260210 225000;209.879000;209.895000;209.871000;209.885000;0 +20260210 225100;209.882000;209.893000;209.868000;209.887000;0 +20260210 225200;209.886000;209.892000;209.874000;209.875000;0 +20260210 225300;209.876000;209.879000;209.854000;209.860000;0 +20260210 225400;209.856000;209.863000;209.845000;209.855000;0 +20260210 225500;209.853000;209.854000;209.840000;209.851000;0 +20260210 225600;209.850000;209.854000;209.841000;209.849000;0 +20260210 225700;209.847000;209.855000;209.829000;209.842000;0 +20260210 225800;209.842000;209.852000;209.838000;209.852000;0 +20260210 225900;209.857000;209.860000;209.835000;209.842000;0 +20260210 230000;209.844000;209.849000;209.834000;209.841000;0 +20260210 230100;209.848000;209.852000;209.830000;209.838000;0 +20260210 230200;209.835000;209.842000;209.829000;209.842000;0 +20260210 230300;209.843000;209.847000;209.838000;209.842000;0 +20260210 230400;209.843000;209.863000;209.842000;209.858000;0 +20260210 230500;209.859000;209.872000;209.858000;209.869000;0 +20260210 230600;209.868000;209.872000;209.850000;209.869000;0 +20260210 230700;209.864000;209.864000;209.837000;209.838000;0 +20260210 230800;209.838000;209.839000;209.804000;209.823000;0 +20260210 230900;209.823000;209.832000;209.814000;209.816000;0 +20260210 231000;209.815000;209.816000;209.779000;209.795000;0 +20260210 231100;209.796000;209.802000;209.783000;209.784000;0 +20260210 231200;209.783000;209.793000;209.779000;209.783000;0 +20260210 231300;209.783000;209.790000;209.781000;209.784000;0 +20260210 231400;209.783000;209.795000;209.783000;209.789000;0 +20260210 231500;209.791000;209.791000;209.743000;209.789000;0 +20260210 231600;209.789000;209.792000;209.739000;209.756000;0 +20260210 231700;209.756000;209.768000;209.731000;209.768000;0 +20260210 231800;209.769000;209.769000;209.732000;209.737000;0 +20260210 231900;209.739000;209.739000;209.690000;209.697000;0 +20260210 232000;209.699000;209.700000;209.688000;209.698000;0 +20260210 232100;209.699000;209.700000;209.612000;209.629000;0 +20260210 232200;209.629000;209.656000;209.612000;209.648000;0 +20260210 232300;209.648000;209.666000;209.644000;209.657000;0 +20260210 232400;209.655000;209.674000;209.654000;209.671000;0 +20260210 232500;209.672000;209.672000;209.639000;209.645000;0 +20260210 232600;209.642000;209.650000;209.622000;209.649000;0 +20260210 232700;209.647000;209.649000;209.632000;209.649000;0 +20260210 232800;209.648000;209.648000;209.629000;209.633000;0 +20260210 232900;209.632000;209.638000;209.576000;209.582000;0 +20260210 233000;209.582000;209.604000;209.574000;209.587000;0 +20260210 233100;209.590000;209.598000;209.581000;209.592000;0 +20260210 233200;209.594000;209.600000;209.570000;209.588000;0 +20260210 233300;209.588000;209.600000;209.582000;209.591000;0 +20260210 233400;209.590000;209.596000;209.572000;209.583000;0 +20260210 233500;209.580000;209.592000;209.575000;209.587000;0 +20260210 233600;209.605000;209.606000;209.550000;209.570000;0 +20260210 233700;209.570000;209.572000;209.536000;209.541000;0 +20260210 233800;209.541000;209.551000;209.517000;209.522000;0 +20260210 233900;209.522000;209.523000;209.493000;209.502000;0 +20260210 234000;209.507000;209.531000;209.503000;209.530000;0 +20260210 234100;209.531000;209.565000;209.517000;209.553000;0 +20260210 234200;209.553000;209.570000;209.544000;209.550000;0 +20260210 234300;209.551000;209.551000;209.529000;209.533000;0 +20260210 234400;209.533000;209.536000;209.512000;209.519000;0 +20260210 234500;209.518000;209.547000;209.515000;209.542000;0 +20260210 234600;209.542000;209.553000;209.538000;209.550000;0 +20260210 234700;209.552000;209.580000;209.547000;209.580000;0 +20260210 234800;209.581000;209.599000;209.578000;209.578000;0 +20260210 234900;209.579000;209.580000;209.537000;209.547000;0 +20260210 235000;209.544000;209.544000;209.465000;209.473000;0 +20260210 235100;209.470000;209.474000;209.448000;209.453000;0 +20260210 235200;209.450000;209.459000;209.437000;209.446000;0 +20260210 235300;209.446000;209.451000;209.404000;209.411000;0 +20260210 235400;209.412000;209.415000;209.398000;209.400000;0 +20260210 235500;209.401000;209.449000;209.399000;209.447000;0 +20260210 235600;209.450000;209.466000;209.447000;209.464000;0 +20260210 235700;209.462000;209.462000;209.430000;209.442000;0 +20260210 235800;209.444000;209.449000;209.413000;209.416000;0 +20260210 235900;209.420000;209.433000;209.405000;209.417000;0 +20260211 000000;209.415000;209.452000;209.414000;209.451000;0 +20260211 000100;209.448000;209.462000;209.447000;209.458000;0 +20260211 000200;209.457000;209.468000;209.454000;209.467000;0 +20260211 000300;209.472000;209.502000;209.467000;209.483000;0 +20260211 000400;209.479000;209.479000;209.437000;209.449000;0 +20260211 000500;209.450000;209.460000;209.394000;209.394000;0 +20260211 000600;209.405000;209.425000;209.382000;209.394000;0 +20260211 000700;209.395000;209.419000;209.393000;209.417000;0 +20260211 000800;209.416000;209.416000;209.362000;209.392000;0 +20260211 000900;209.400000;209.406000;209.394000;209.404000;0 +20260211 001000;209.403000;209.406000;209.367000;209.373000;0 +20260211 001100;209.383000;209.387000;209.350000;209.361000;0 +20260211 001200;209.367000;209.386000;209.362000;209.372000;0 +20260211 001300;209.371000;209.392000;209.371000;209.391000;0 +20260211 001400;209.394000;209.428000;209.391000;209.427000;0 +20260211 001500;209.430000;209.430000;209.389000;209.410000;0 +20260211 001600;209.411000;209.436000;209.400000;209.418000;0 +20260211 001700;209.417000;209.471000;209.415000;209.431000;0 +20260211 001800;209.430000;209.432000;209.411000;209.413000;0 +20260211 001900;209.413000;209.417000;209.408000;209.414000;0 +20260211 002000;209.417000;209.449000;209.412000;209.442000;0 +20260211 002100;209.442000;209.442000;209.408000;209.415000;0 +20260211 002200;209.408000;209.409000;209.384000;209.395000;0 +20260211 002300;209.387000;209.387000;209.338000;209.342000;0 +20260211 002400;209.344000;209.362000;209.342000;209.356000;0 +20260211 002500;209.348000;209.373000;209.334000;209.368000;0 +20260211 002600;209.365000;209.373000;209.338000;209.345000;0 +20260211 002700;209.346000;209.349000;209.312000;209.329000;0 +20260211 002800;209.328000;209.334000;209.316000;209.330000;0 +20260211 002900;209.330000;209.330000;209.294000;209.294000;0 +20260211 003000;209.298000;209.308000;209.277000;209.301000;0 +20260211 003100;209.301000;209.312000;209.289000;209.303000;0 +20260211 003200;209.296000;209.298000;209.253000;209.269000;0 +20260211 003300;209.267000;209.290000;209.266000;209.278000;0 +20260211 003400;209.277000;209.298000;209.265000;209.277000;0 +20260211 003500;209.280000;209.288000;209.270000;209.287000;0 +20260211 003600;209.285000;209.289000;209.202000;209.222000;0 +20260211 003700;209.224000;209.254000;209.222000;209.227000;0 +20260211 003800;209.225000;209.225000;209.173000;209.180000;0 +20260211 003900;209.171000;209.189000;209.165000;209.181000;0 +20260211 004000;209.178000;209.217000;209.133000;209.212000;0 +20260211 004100;209.211000;209.255000;209.196000;209.255000;0 +20260211 004200;209.251000;209.325000;209.251000;209.321000;0 +20260211 004300;209.321000;209.321000;209.273000;209.293000;0 +20260211 004400;209.300000;209.327000;209.286000;209.318000;0 +20260211 004500;209.316000;209.321000;209.280000;209.284000;0 +20260211 004600;209.282000;209.304000;209.279000;209.304000;0 +20260211 004700;209.304000;209.323000;209.295000;209.317000;0 +20260211 004800;209.318000;209.325000;209.309000;209.318000;0 +20260211 004900;209.316000;209.317000;209.264000;209.279000;0 +20260211 005000;209.277000;209.328000;209.277000;209.328000;0 +20260211 005100;209.322000;209.322000;209.285000;209.298000;0 +20260211 005200;209.299000;209.305000;209.287000;209.305000;0 +20260211 005300;209.307000;209.315000;209.304000;209.315000;0 +20260211 005400;209.312000;209.312000;209.274000;209.283000;0 +20260211 005500;209.280000;209.281000;209.244000;209.255000;0 +20260211 005600;209.252000;209.252000;209.218000;209.226000;0 +20260211 005700;209.224000;209.244000;209.191000;209.242000;0 +20260211 005800;209.242000;209.251000;209.231000;209.244000;0 +20260211 005900;209.246000;209.246000;209.177000;209.199000;0 +20260211 010000;209.198000;209.217000;209.142000;209.168000;0 +20260211 010100;209.167000;209.183000;209.102000;209.114000;0 +20260211 010200;209.115000;209.121000;209.070000;209.096000;0 +20260211 010300;209.094000;209.104000;209.040000;209.041000;0 +20260211 010400;209.040000;209.058000;209.026000;209.048000;0 +20260211 010500;209.048000;209.110000;209.042000;209.110000;0 +20260211 010600;209.110000;209.110000;209.054000;209.055000;0 +20260211 010700;209.055000;209.063000;209.016000;209.018000;0 +20260211 010800;209.017000;209.044000;208.980000;208.990000;0 +20260211 010900;208.990000;209.041000;208.986000;209.041000;0 +20260211 011000;209.038000;209.038000;208.990000;209.018000;0 +20260211 011100;209.018000;209.051000;209.018000;209.042000;0 +20260211 011200;209.041000;209.110000;209.041000;209.088000;0 +20260211 011300;209.088000;209.147000;209.074000;209.145000;0 +20260211 011400;209.145000;209.150000;209.097000;209.104000;0 +20260211 011500;209.105000;209.137000;209.080000;209.118000;0 +20260211 011600;209.121000;209.125000;209.052000;209.052000;0 +20260211 011700;209.049000;209.051000;209.010000;209.029000;0 +20260211 011800;209.030000;209.054000;209.006000;209.007000;0 +20260211 011900;209.008000;209.045000;209.005000;209.033000;0 +20260211 012000;209.032000;209.081000;209.016000;209.075000;0 +20260211 012100;209.077000;209.107000;209.077000;209.099000;0 +20260211 012200;209.097000;209.131000;209.063000;209.122000;0 +20260211 012300;209.120000;209.134000;209.092000;209.109000;0 +20260211 012400;209.108000;209.226000;209.105000;209.224000;0 +20260211 012500;209.218000;209.250000;209.205000;209.229000;0 +20260211 012600;209.228000;209.249000;209.216000;209.217000;0 +20260211 012700;209.216000;209.225000;209.194000;209.224000;0 +20260211 012800;209.222000;209.222000;209.182000;209.211000;0 +20260211 012900;209.210000;209.240000;209.201000;209.225000;0 +20260211 013000;209.224000;209.279000;209.215000;209.229000;0 +20260211 013100;209.229000;209.229000;209.158000;209.161000;0 +20260211 013200;209.162000;209.172000;209.121000;209.165000;0 +20260211 013300;209.164000;209.165000;209.122000;209.129000;0 +20260211 013400;209.130000;209.168000;209.128000;209.162000;0 +20260211 013500;209.167000;209.230000;209.167000;209.222000;0 +20260211 013600;209.221000;209.238000;209.197000;209.228000;0 +20260211 013700;209.238000;209.248000;209.222000;209.226000;0 +20260211 013800;209.228000;209.254000;209.204000;209.252000;0 +20260211 013900;209.249000;209.279000;209.245000;209.266000;0 +20260211 014000;209.266000;209.280000;209.258000;209.280000;0 +20260211 014100;209.279000;209.317000;209.278000;209.287000;0 +20260211 014200;209.288000;209.336000;209.288000;209.336000;0 +20260211 014300;209.334000;209.338000;209.305000;209.306000;0 +20260211 014400;209.304000;209.321000;209.279000;209.289000;0 +20260211 014500;209.293000;209.330000;209.276000;209.276000;0 +20260211 014600;209.275000;209.303000;209.270000;209.301000;0 +20260211 014700;209.300000;209.301000;209.261000;209.265000;0 +20260211 014800;209.268000;209.303000;209.264000;209.303000;0 +20260211 014900;209.301000;209.352000;209.279000;209.320000;0 +20260211 015000;209.320000;209.333000;209.300000;209.302000;0 +20260211 015100;209.310000;209.316000;209.292000;209.303000;0 +20260211 015200;209.296000;209.320000;209.262000;209.290000;0 +20260211 015300;209.290000;209.301000;209.263000;209.263000;0 +20260211 015400;209.253000;209.259000;209.187000;209.187000;0 +20260211 015500;209.186000;209.226000;209.166000;209.226000;0 +20260211 015600;209.224000;209.278000;209.217000;209.278000;0 +20260211 015700;209.275000;209.308000;209.273000;209.307000;0 +20260211 015800;209.307000;209.311000;209.276000;209.292000;0 +20260211 015900;209.294000;209.358000;209.281000;209.346000;0 +20260211 020000;209.347000;209.358000;209.267000;209.297000;0 +20260211 020100;209.297000;209.318000;209.286000;209.302000;0 +20260211 020200;209.303000;209.326000;209.274000;209.292000;0 +20260211 020300;209.289000;209.378000;209.288000;209.374000;0 +20260211 020400;209.374000;209.404000;209.361000;209.378000;0 +20260211 020500;209.375000;209.380000;209.344000;209.355000;0 +20260211 020600;209.354000;209.409000;209.354000;209.385000;0 +20260211 020700;209.385000;209.392000;209.367000;209.391000;0 +20260211 020800;209.388000;209.427000;209.378000;209.398000;0 +20260211 020900;209.401000;209.412000;209.361000;209.395000;0 +20260211 021000;209.395000;209.437000;209.395000;209.422000;0 +20260211 021100;209.418000;209.433000;209.387000;209.387000;0 +20260211 021200;209.391000;209.424000;209.382000;209.382000;0 +20260211 021300;209.387000;209.414000;209.377000;209.385000;0 +20260211 021400;209.381000;209.387000;209.346000;209.361000;0 +20260211 021500;209.363000;209.398000;209.348000;209.398000;0 +20260211 021600;209.401000;209.405000;209.381000;209.403000;0 +20260211 021700;209.403000;209.440000;209.366000;209.411000;0 +20260211 021800;209.409000;209.418000;209.387000;209.401000;0 +20260211 021900;209.407000;209.413000;209.394000;209.397000;0 +20260211 022000;209.407000;209.411000;209.373000;209.378000;0 +20260211 022100;209.377000;209.385000;209.307000;209.320000;0 +20260211 022200;209.324000;209.324000;209.294000;209.297000;0 +20260211 022300;209.300000;209.304000;209.285000;209.293000;0 +20260211 022400;209.292000;209.336000;209.276000;209.329000;0 +20260211 022500;209.331000;209.342000;209.304000;209.342000;0 +20260211 022600;209.347000;209.390000;209.338000;209.390000;0 +20260211 022700;209.392000;209.475000;209.392000;209.473000;0 +20260211 022800;209.477000;209.477000;209.443000;209.474000;0 +20260211 022900;209.472000;209.472000;209.435000;209.439000;0 +20260211 023000;209.438000;209.438000;209.411000;209.414000;0 +20260211 023100;209.415000;209.415000;209.391000;209.410000;0 +20260211 023200;209.408000;209.414000;209.394000;209.412000;0 +20260211 023300;209.412000;209.462000;209.386000;209.458000;0 +20260211 023400;209.461000;209.478000;209.442000;209.469000;0 +20260211 023500;209.466000;209.502000;209.466000;209.491000;0 +20260211 023600;209.487000;209.501000;209.475000;209.494000;0 +20260211 023700;209.495000;209.539000;209.495000;209.517000;0 +20260211 023800;209.522000;209.533000;209.481000;209.481000;0 +20260211 023900;209.486000;209.486000;209.443000;209.443000;0 +20260211 024000;209.456000;209.456000;209.423000;209.439000;0 +20260211 024100;209.436000;209.461000;209.421000;209.457000;0 +20260211 024200;209.459000;209.465000;209.449000;209.453000;0 +20260211 024300;209.451000;209.523000;209.442000;209.519000;0 +20260211 024400;209.520000;209.544000;209.498000;209.505000;0 +20260211 024500;209.506000;209.508000;209.478000;209.502000;0 +20260211 024600;209.504000;209.555000;209.501000;209.553000;0 +20260211 024700;209.552000;209.553000;209.516000;209.519000;0 +20260211 024800;209.519000;209.526000;209.489000;209.503000;0 +20260211 024900;209.501000;209.515000;209.481000;209.508000;0 +20260211 025000;209.508000;209.541000;209.503000;209.535000;0 +20260211 025100;209.538000;209.543000;209.491000;209.491000;0 +20260211 025200;209.486000;209.507000;209.476000;209.483000;0 +20260211 025300;209.481000;209.494000;209.433000;209.440000;0 +20260211 025400;209.439000;209.443000;209.405000;209.412000;0 +20260211 025500;209.411000;209.411000;209.342000;209.390000;0 +20260211 025600;209.389000;209.417000;209.378000;209.384000;0 +20260211 025700;209.386000;209.431000;209.380000;209.411000;0 +20260211 025800;209.408000;209.431000;209.365000;209.367000;0 +20260211 025900;209.365000;209.384000;209.350000;209.358000;0 +20260211 030000;209.362000;209.370000;209.314000;209.360000;0 +20260211 030100;209.358000;209.437000;209.349000;209.390000;0 +20260211 030200;209.389000;209.392000;209.342000;209.348000;0 +20260211 030300;209.345000;209.365000;209.301000;209.307000;0 +20260211 030400;209.312000;209.342000;209.291000;209.337000;0 +20260211 030500;209.341000;209.360000;209.297000;209.299000;0 +20260211 030600;209.306000;209.361000;209.296000;209.337000;0 +20260211 030700;209.336000;209.411000;209.315000;209.387000;0 +20260211 030800;209.393000;209.474000;209.388000;209.461000;0 +20260211 030900;209.456000;209.458000;209.403000;209.403000;0 +20260211 031000;209.405000;209.447000;209.402000;209.430000;0 +20260211 031100;209.427000;209.503000;209.413000;209.503000;0 +20260211 031200;209.504000;209.545000;209.491000;209.500000;0 +20260211 031300;209.505000;209.516000;209.482000;209.496000;0 +20260211 031400;209.498000;209.509000;209.476000;209.509000;0 +20260211 031500;209.510000;209.529000;209.460000;209.482000;0 +20260211 031600;209.477000;209.504000;209.452000;209.500000;0 +20260211 031700;209.497000;209.532000;209.482000;209.515000;0 +20260211 031800;209.515000;209.531000;209.486000;209.489000;0 +20260211 031900;209.487000;209.533000;209.481000;209.526000;0 +20260211 032000;209.527000;209.575000;209.513000;209.537000;0 +20260211 032100;209.536000;209.540000;209.521000;209.524000;0 +20260211 032200;209.522000;209.586000;209.515000;209.519000;0 +20260211 032300;209.519000;209.560000;209.516000;209.528000;0 +20260211 032400;209.529000;209.544000;209.494000;209.537000;0 +20260211 032500;209.532000;209.563000;209.510000;209.558000;0 +20260211 032600;209.561000;209.640000;209.552000;209.622000;0 +20260211 032700;209.622000;209.675000;209.619000;209.670000;0 +20260211 032800;209.670000;209.676000;209.636000;209.647000;0 +20260211 032900;209.650000;209.665000;209.612000;209.658000;0 +20260211 033000;209.659000;209.714000;209.647000;209.713000;0 +20260211 033100;209.712000;209.712000;209.674000;209.707000;0 +20260211 033200;209.709000;209.720000;209.669000;209.674000;0 +20260211 033300;209.677000;209.702000;209.671000;209.686000;0 +20260211 033400;209.686000;209.692000;209.647000;209.655000;0 +20260211 033500;209.653000;209.681000;209.652000;209.666000;0 +20260211 033600;209.666000;209.696000;209.629000;209.639000;0 +20260211 033700;209.639000;209.682000;209.626000;209.680000;0 +20260211 033800;209.677000;209.708000;209.677000;209.691000;0 +20260211 033900;209.692000;209.699000;209.658000;209.687000;0 +20260211 034000;209.691000;209.691000;209.652000;209.654000;0 +20260211 034100;209.654000;209.681000;209.640000;209.673000;0 +20260211 034200;209.673000;209.712000;209.673000;209.692000;0 +20260211 034300;209.693000;209.704000;209.685000;209.694000;0 +20260211 034400;209.692000;209.706000;209.658000;209.680000;0 +20260211 034500;209.680000;209.692000;209.666000;209.668000;0 +20260211 034600;209.667000;209.681000;209.637000;209.677000;0 +20260211 034700;209.678000;209.682000;209.626000;209.639000;0 +20260211 034800;209.638000;209.656000;209.620000;209.655000;0 +20260211 034900;209.656000;209.664000;209.608000;209.647000;0 +20260211 035000;209.646000;209.668000;209.636000;209.656000;0 +20260211 035100;209.657000;209.670000;209.650000;209.668000;0 +20260211 035200;209.670000;209.680000;209.659000;209.678000;0 +20260211 035300;209.678000;209.679000;209.653000;209.653000;0 +20260211 035400;209.651000;209.675000;209.651000;209.675000;0 +20260211 035500;209.673000;209.716000;209.673000;209.696000;0 +20260211 035600;209.693000;209.724000;209.688000;209.716000;0 +20260211 035700;209.715000;209.730000;209.695000;209.718000;0 +20260211 035800;209.716000;209.733000;209.713000;209.732000;0 +20260211 035900;209.732000;209.736000;209.678000;209.687000;0 +20260211 040000;209.694000;209.740000;209.681000;209.739000;0 +20260211 040100;209.736000;209.776000;209.731000;209.767000;0 +20260211 040200;209.767000;209.775000;209.723000;209.759000;0 +20260211 040300;209.759000;209.777000;209.745000;209.773000;0 +20260211 040400;209.772000;209.775000;209.747000;209.765000;0 +20260211 040500;209.765000;209.820000;209.761000;209.789000;0 +20260211 040600;209.787000;209.820000;209.785000;209.809000;0 +20260211 040700;209.816000;209.824000;209.781000;209.788000;0 +20260211 040800;209.788000;209.811000;209.767000;209.781000;0 +20260211 040900;209.778000;209.839000;209.778000;209.836000;0 +20260211 041000;209.835000;209.839000;209.814000;209.814000;0 +20260211 041100;209.813000;209.842000;209.807000;209.842000;0 +20260211 041200;209.840000;209.859000;209.831000;209.843000;0 +20260211 041300;209.840000;209.875000;209.829000;209.871000;0 +20260211 041400;209.870000;209.884000;209.862000;209.870000;0 +20260211 041500;209.871000;209.899000;209.861000;209.868000;0 +20260211 041600;209.863000;209.873000;209.848000;209.850000;0 +20260211 041700;209.857000;209.871000;209.843000;209.849000;0 +20260211 041800;209.850000;209.893000;209.847000;209.886000;0 +20260211 041900;209.881000;209.905000;209.873000;209.899000;0 +20260211 042000;209.899000;209.919000;209.894000;209.917000;0 +20260211 042100;209.920000;209.942000;209.915000;209.942000;0 +20260211 042200;209.942000;209.946000;209.919000;209.929000;0 +20260211 042300;209.930000;209.968000;209.925000;209.961000;0 +20260211 042400;209.959000;210.005000;209.959000;210.005000;0 +20260211 042500;210.007000;210.009000;209.986000;209.998000;0 +20260211 042600;209.995000;209.999000;209.946000;209.948000;0 +20260211 042700;209.944000;209.958000;209.929000;209.948000;0 +20260211 042800;209.946000;209.951000;209.913000;209.924000;0 +20260211 042900;209.926000;209.926000;209.902000;209.915000;0 +20260211 043000;209.914000;209.925000;209.899000;209.924000;0 +20260211 043100;209.923000;209.927000;209.882000;209.882000;0 +20260211 043200;209.884000;209.894000;209.841000;209.864000;0 +20260211 043300;209.863000;209.870000;209.852000;209.852000;0 +20260211 043400;209.854000;209.904000;209.847000;209.898000;0 +20260211 043500;209.899000;209.943000;209.892000;209.924000;0 +20260211 043600;209.925000;209.928000;209.904000;209.913000;0 +20260211 043700;209.913000;209.932000;209.902000;209.922000;0 +20260211 043800;209.926000;209.951000;209.922000;209.923000;0 +20260211 043900;209.922000;209.935000;209.916000;209.921000;0 +20260211 044000;209.922000;209.924000;209.891000;209.903000;0 +20260211 044100;209.902000;209.902000;209.885000;209.890000;0 +20260211 044200;209.889000;209.901000;209.876000;209.883000;0 +20260211 044300;209.887000;209.887000;209.849000;209.849000;0 +20260211 044400;209.845000;209.849000;209.760000;209.769000;0 +20260211 044500;209.768000;209.781000;209.736000;209.739000;0 +20260211 044600;209.736000;209.749000;209.719000;209.733000;0 +20260211 044700;209.732000;209.734000;209.706000;209.720000;0 +20260211 044800;209.720000;209.727000;209.688000;209.688000;0 +20260211 044900;209.689000;209.703000;209.678000;209.702000;0 +20260211 045000;209.703000;209.714000;209.695000;209.703000;0 +20260211 045100;209.704000;209.737000;209.699000;209.736000;0 +20260211 045200;209.734000;209.771000;209.703000;209.709000;0 +20260211 045300;209.706000;209.714000;209.694000;209.697000;0 +20260211 045400;209.702000;209.792000;209.697000;209.768000;0 +20260211 045500;209.772000;209.812000;209.771000;209.787000;0 +20260211 045600;209.783000;209.787000;209.745000;209.748000;0 +20260211 045700;209.749000;209.787000;209.740000;209.786000;0 +20260211 045800;209.787000;209.821000;209.776000;209.819000;0 +20260211 045900;209.820000;209.831000;209.802000;209.824000;0 +20260211 050000;209.825000;209.830000;209.753000;209.758000;0 +20260211 050100;209.757000;209.803000;209.752000;209.799000;0 +20260211 050200;209.799000;209.830000;209.778000;209.807000;0 +20260211 050300;209.809000;209.817000;209.780000;209.799000;0 +20260211 050400;209.795000;209.804000;209.779000;209.794000;0 +20260211 050500;209.795000;209.803000;209.774000;209.777000;0 +20260211 050600;209.776000;209.823000;209.776000;209.821000;0 +20260211 050700;209.823000;209.857000;209.810000;209.854000;0 +20260211 050800;209.855000;209.855000;209.816000;209.823000;0 +20260211 050900;209.822000;209.841000;209.818000;209.827000;0 +20260211 051000;209.832000;209.841000;209.812000;209.831000;0 +20260211 051100;209.831000;209.835000;209.808000;209.809000;0 +20260211 051200;209.807000;209.821000;209.792000;209.792000;0 +20260211 051300;209.797000;209.797000;209.746000;209.757000;0 +20260211 051400;209.749000;209.767000;209.749000;209.765000;0 +20260211 051500;209.764000;209.772000;209.748000;209.752000;0 +20260211 051600;209.758000;209.801000;209.758000;209.794000;0 +20260211 051700;209.794000;209.815000;209.787000;209.790000;0 +20260211 051800;209.783000;209.786000;209.762000;209.775000;0 +20260211 051900;209.771000;209.807000;209.765000;209.790000;0 +20260211 052000;209.790000;209.790000;209.749000;209.782000;0 +20260211 052100;209.779000;209.813000;209.779000;209.803000;0 +20260211 052200;209.805000;209.807000;209.790000;209.799000;0 +20260211 052300;209.799000;209.838000;209.799000;209.818000;0 +20260211 052400;209.819000;209.819000;209.748000;209.759000;0 +20260211 052500;209.759000;209.769000;209.745000;209.769000;0 +20260211 052600;209.770000;209.796000;209.767000;209.780000;0 +20260211 052700;209.779000;209.782000;209.753000;209.779000;0 +20260211 052800;209.782000;209.803000;209.782000;209.800000;0 +20260211 052900;209.799000;209.811000;209.773000;209.776000;0 +20260211 053000;209.779000;209.779000;209.723000;209.742000;0 +20260211 053100;209.743000;209.783000;209.739000;209.752000;0 +20260211 053200;209.754000;209.800000;209.745000;209.794000;0 +20260211 053300;209.795000;209.842000;209.794000;209.837000;0 +20260211 053400;209.840000;209.842000;209.825000;209.827000;0 +20260211 053500;209.826000;209.838000;209.795000;209.828000;0 +20260211 053600;209.826000;209.860000;209.818000;209.860000;0 +20260211 053700;209.859000;209.877000;209.854000;209.861000;0 +20260211 053800;209.861000;209.861000;209.835000;209.853000;0 +20260211 053900;209.853000;209.889000;209.845000;209.889000;0 +20260211 054000;209.891000;209.966000;209.889000;209.962000;0 +20260211 054100;209.962000;210.106000;209.962000;210.074000;0 +20260211 054200;210.074000;210.119000;210.066000;210.068000;0 +20260211 054300;210.066000;210.099000;210.031000;210.033000;0 +20260211 054400;210.031000;210.039000;210.001000;210.024000;0 +20260211 054500;210.026000;210.036000;210.005000;210.023000;0 +20260211 054600;210.025000;210.041000;210.016000;210.033000;0 +20260211 054700;210.032000;210.032000;210.010000;210.015000;0 +20260211 054800;210.011000;210.016000;210.001000;210.011000;0 +20260211 054900;210.012000;210.085000;210.008000;210.074000;0 +20260211 055000;210.075000;210.088000;210.053000;210.057000;0 +20260211 055100;210.056000;210.101000;210.052000;210.101000;0 +20260211 055200;210.100000;210.110000;210.087000;210.103000;0 +20260211 055300;210.098000;210.100000;210.078000;210.086000;0 +20260211 055400;210.087000;210.094000;210.054000;210.058000;0 +20260211 055500;210.059000;210.140000;210.059000;210.140000;0 +20260211 055600;210.140000;210.165000;210.117000;210.158000;0 +20260211 055700;210.156000;210.179000;210.108000;210.111000;0 +20260211 055800;210.112000;210.118000;210.086000;210.113000;0 +20260211 055900;210.111000;210.137000;210.111000;210.129000;0 +20260211 060000;210.130000;210.156000;210.105000;210.123000;0 +20260211 060100;210.121000;210.139000;210.102000;210.137000;0 +20260211 060200;210.134000;210.155000;210.125000;210.145000;0 +20260211 060300;210.149000;210.151000;210.124000;210.138000;0 +20260211 060400;210.139000;210.161000;210.129000;210.154000;0 +20260211 060500;210.150000;210.153000;210.098000;210.116000;0 +20260211 060600;210.116000;210.116000;210.081000;210.088000;0 +20260211 060700;210.089000;210.103000;210.088000;210.097000;0 +20260211 060800;210.099000;210.113000;210.093000;210.097000;0 +20260211 060900;210.094000;210.123000;210.089000;210.117000;0 +20260211 061000;210.124000;210.140000;210.108000;210.110000;0 +20260211 061100;210.112000;210.126000;210.105000;210.122000;0 +20260211 061200;210.120000;210.126000;210.104000;210.107000;0 +20260211 061300;210.109000;210.125000;210.100000;210.106000;0 +20260211 061400;210.104000;210.110000;210.076000;210.076000;0 +20260211 061500;210.073000;210.108000;210.070000;210.097000;0 +20260211 061600;210.099000;210.132000;210.095000;210.130000;0 +20260211 061700;210.129000;210.146000;210.118000;210.144000;0 +20260211 061800;210.143000;210.175000;210.133000;210.174000;0 +20260211 061900;210.174000;210.229000;210.174000;210.229000;0 +20260211 062000;210.229000;210.229000;210.153000;210.153000;0 +20260211 062100;210.154000;210.154000;210.135000;210.140000;0 +20260211 062200;210.140000;210.158000;210.139000;210.145000;0 +20260211 062300;210.143000;210.148000;210.113000;210.115000;0 +20260211 062400;210.115000;210.131000;210.110000;210.114000;0 +20260211 062500;210.113000;210.130000;210.108000;210.110000;0 +20260211 062600;210.114000;210.153000;210.109000;210.153000;0 +20260211 062700;210.151000;210.167000;210.145000;210.155000;0 +20260211 062800;210.156000;210.168000;210.151000;210.162000;0 +20260211 062900;210.161000;210.203000;210.161000;210.194000;0 +20260211 063000;210.195000;210.203000;210.176000;210.181000;0 +20260211 063100;210.180000;210.186000;210.141000;210.147000;0 +20260211 063200;210.147000;210.153000;210.131000;210.139000;0 +20260211 063300;210.138000;210.139000;210.119000;210.125000;0 +20260211 063400;210.127000;210.127000;210.089000;210.123000;0 +20260211 063500;210.122000;210.132000;210.105000;210.127000;0 +20260211 063600;210.127000;210.181000;210.127000;210.156000;0 +20260211 063700;210.154000;210.171000;210.143000;210.162000;0 +20260211 063800;210.163000;210.165000;210.150000;210.155000;0 +20260211 063900;210.153000;210.186000;210.144000;210.145000;0 +20260211 064000;210.137000;210.150000;210.099000;210.113000;0 +20260211 064100;210.115000;210.148000;210.109000;210.140000;0 +20260211 064200;210.141000;210.148000;210.125000;210.140000;0 +20260211 064300;210.139000;210.167000;210.136000;210.160000;0 +20260211 064400;210.163000;210.197000;210.147000;210.177000;0 +20260211 064500;210.178000;210.185000;210.119000;210.149000;0 +20260211 064600;210.151000;210.165000;210.138000;210.159000;0 +20260211 064700;210.157000;210.171000;210.145000;210.161000;0 +20260211 064800;210.158000;210.181000;210.157000;210.173000;0 +20260211 064900;210.180000;210.213000;210.172000;210.204000;0 +20260211 065000;210.205000;210.220000;210.185000;210.190000;0 +20260211 065100;210.192000;210.195000;210.154000;210.166000;0 +20260211 065200;210.172000;210.179000;210.149000;210.155000;0 +20260211 065300;210.155000;210.156000;210.135000;210.145000;0 +20260211 065400;210.147000;210.171000;210.144000;210.147000;0 +20260211 065500;210.144000;210.167000;210.130000;210.153000;0 +20260211 065600;210.159000;210.163000;210.136000;210.149000;0 +20260211 065700;210.150000;210.150000;210.139000;210.141000;0 +20260211 065800;210.143000;210.171000;210.143000;210.164000;0 +20260211 065900;210.164000;210.165000;210.136000;210.148000;0 +20260211 070000;210.151000;210.183000;210.118000;210.130000;0 +20260211 070100;210.130000;210.191000;210.115000;210.183000;0 +20260211 070200;210.181000;210.181000;210.153000;210.171000;0 +20260211 070300;210.170000;210.170000;210.152000;210.160000;0 +20260211 070400;210.164000;210.218000;210.161000;210.212000;0 +20260211 070500;210.213000;210.213000;210.173000;210.183000;0 +20260211 070600;210.183000;210.191000;210.154000;210.154000;0 +20260211 070700;210.154000;210.197000;210.154000;210.197000;0 +20260211 070800;210.198000;210.224000;210.189000;210.197000;0 +20260211 070900;210.197000;210.220000;210.188000;210.196000;0 +20260211 071000;210.195000;210.195000;210.164000;210.165000;0 +20260211 071100;210.167000;210.233000;210.157000;210.225000;0 +20260211 071200;210.225000;210.228000;210.161000;210.187000;0 +20260211 071300;210.188000;210.203000;210.177000;210.198000;0 +20260211 071400;210.199000;210.207000;210.149000;210.180000;0 +20260211 071500;210.180000;210.210000;210.164000;210.168000;0 +20260211 071600;210.163000;210.186000;210.153000;210.161000;0 +20260211 071700;210.161000;210.173000;210.148000;210.173000;0 +20260211 071800;210.175000;210.181000;210.112000;210.140000;0 +20260211 071900;210.138000;210.153000;210.129000;210.153000;0 +20260211 072000;210.151000;210.156000;210.123000;210.128000;0 +20260211 072100;210.129000;210.158000;210.118000;210.156000;0 +20260211 072200;210.154000;210.158000;210.120000;210.134000;0 +20260211 072300;210.136000;210.194000;210.136000;210.193000;0 +20260211 072400;210.194000;210.199000;210.164000;210.175000;0 +20260211 072500;210.173000;210.185000;210.151000;210.163000;0 +20260211 072600;210.166000;210.169000;210.113000;210.113000;0 +20260211 072700;210.112000;210.118000;210.084000;210.091000;0 +20260211 072800;210.088000;210.144000;210.071000;210.117000;0 +20260211 072900;210.118000;210.130000;210.072000;210.074000;0 +20260211 073000;210.076000;210.088000;210.061000;210.075000;0 +20260211 073100;210.075000;210.121000;210.075000;210.121000;0 +20260211 073200;210.120000;210.145000;210.118000;210.144000;0 +20260211 073300;210.141000;210.157000;210.134000;210.145000;0 +20260211 073400;210.146000;210.149000;210.128000;210.139000;0 +20260211 073500;210.139000;210.157000;210.137000;210.146000;0 +20260211 073600;210.143000;210.147000;210.124000;210.131000;0 +20260211 073700;210.133000;210.174000;210.133000;210.153000;0 +20260211 073800;210.151000;210.177000;210.142000;210.167000;0 +20260211 073900;210.167000;210.210000;210.167000;210.202000;0 +20260211 074000;210.195000;210.198000;210.149000;210.180000;0 +20260211 074100;210.183000;210.194000;210.156000;210.164000;0 +20260211 074200;210.162000;210.186000;210.157000;210.179000;0 +20260211 074300;210.180000;210.197000;210.169000;210.180000;0 +20260211 074400;210.182000;210.186000;210.165000;210.179000;0 +20260211 074500;210.181000;210.181000;210.124000;210.132000;0 +20260211 074600;210.128000;210.128000;210.092000;210.113000;0 +20260211 074700;210.113000;210.122000;210.098000;210.106000;0 +20260211 074800;210.106000;210.117000;210.089000;210.102000;0 +20260211 074900;210.102000;210.118000;210.095000;210.101000;0 +20260211 075000;210.102000;210.133000;210.097000;210.125000;0 +20260211 075100;210.127000;210.133000;210.103000;210.103000;0 +20260211 075200;210.108000;210.127000;210.084000;210.095000;0 +20260211 075300;210.097000;210.139000;210.089000;210.109000;0 +20260211 075400;210.108000;210.108000;210.080000;210.105000;0 +20260211 075500;210.107000;210.147000;210.105000;210.134000;0 +20260211 075600;210.131000;210.139000;210.119000;210.131000;0 +20260211 075700;210.132000;210.159000;210.117000;210.131000;0 +20260211 075800;210.131000;210.148000;210.056000;210.086000;0 +20260211 075900;210.087000;210.134000;210.087000;210.120000;0 +20260211 080000;210.121000;210.154000;210.112000;210.123000;0 +20260211 080100;210.121000;210.134000;210.108000;210.133000;0 +20260211 080200;210.130000;210.172000;210.124000;210.163000;0 +20260211 080300;210.162000;210.164000;210.142000;210.158000;0 +20260211 080400;210.157000;210.177000;210.145000;210.154000;0 +20260211 080500;210.155000;210.158000;210.112000;210.145000;0 +20260211 080600;210.142000;210.145000;210.116000;210.130000;0 +20260211 080700;210.135000;210.149000;210.122000;210.139000;0 +20260211 080800;210.139000;210.142000;210.131000;210.139000;0 +20260211 080900;210.143000;210.146000;210.109000;210.109000;0 +20260211 081000;210.109000;210.128000;210.100000;210.112000;0 +20260211 081100;210.113000;210.141000;210.109000;210.132000;0 +20260211 081200;210.130000;210.133000;210.117000;210.124000;0 +20260211 081300;210.123000;210.147000;210.123000;210.141000;0 +20260211 081400;210.143000;210.147000;210.133000;210.142000;0 +20260211 081500;210.142000;210.171000;210.132000;210.158000;0 +20260211 081600;210.156000;210.208000;210.144000;210.206000;0 +20260211 081700;210.200000;210.222000;210.197000;210.199000;0 +20260211 081800;210.196000;210.216000;210.174000;210.186000;0 +20260211 081900;210.186000;210.203000;210.157000;210.166000;0 +20260211 082000;210.172000;210.172000;210.147000;210.158000;0 +20260211 082100;210.160000;210.162000;210.103000;210.107000;0 +20260211 082200;210.105000;210.124000;210.099000;210.116000;0 +20260211 082300;210.118000;210.130000;210.092000;210.116000;0 +20260211 082400;210.115000;210.117000;210.088000;210.106000;0 +20260211 082500;210.105000;210.155000;210.105000;210.151000;0 +20260211 082600;210.152000;210.155000;210.129000;210.136000;0 +20260211 082700;210.138000;210.276000;210.123000;210.260000;0 +20260211 082800;210.259000;210.277000;210.113000;210.113000;0 +20260211 082900;210.117000;210.163000;210.034000;210.039000;0 +20260211 083000;210.046000;210.519000;210.037000;210.261000;0 +20260211 083100;210.265000;210.365000;210.164000;210.280000;0 +20260211 083200;210.283000;210.428000;210.279000;210.376000;0 +20260211 083300;210.376000;210.472000;210.360000;210.444000;0 +20260211 083400;210.445000;210.464000;210.388000;210.430000;0 +20260211 083500;210.428000;210.454000;210.357000;210.434000;0 +20260211 083600;210.435000;210.449000;210.378000;210.410000;0 +20260211 083700;210.414000;210.481000;210.373000;210.397000;0 +20260211 083800;210.398000;210.441000;210.375000;210.429000;0 +20260211 083900;210.430000;210.483000;208.785000;208.785000;0 +20260211 084000;208.786000;209.657000;208.642000;209.567000;0 +20260211 084100;209.589000;209.684000;209.303000;209.661000;0 +20260211 084200;209.662000;209.942000;209.644000;209.828000;0 +20260211 084300;209.827000;209.950000;209.753000;209.824000;0 +20260211 084400;209.826000;209.905000;209.294000;209.372000;0 +20260211 084500;209.399000;209.775000;209.383000;209.728000;0 +20260211 084600;209.729000;209.948000;209.723000;209.905000;0 +20260211 084700;209.905000;209.910000;209.806000;209.891000;0 +20260211 084800;209.893000;209.908000;209.620000;209.754000;0 +20260211 084900;209.755000;209.881000;209.752000;209.779000;0 +20260211 085000;209.776000;209.811000;209.635000;209.647000;0 +20260211 085100;209.648000;209.715000;209.611000;209.714000;0 +20260211 085200;209.715000;209.726000;209.622000;209.665000;0 +20260211 085300;209.661000;209.727000;209.654000;209.687000;0 +20260211 085400;209.685000;209.830000;209.679000;209.810000;0 +20260211 085500;209.816000;209.834000;209.720000;209.739000;0 +20260211 085600;209.735000;209.752000;209.672000;209.752000;0 +20260211 085700;209.750000;209.872000;209.750000;209.852000;0 +20260211 085800;209.852000;209.866000;209.792000;209.821000;0 +20260211 085900;209.821000;209.897000;209.819000;209.846000;0 +20260211 090000;209.847000;209.977000;209.841000;209.977000;0 +20260211 090100;209.983000;210.026000;209.915000;210.023000;0 +20260211 090200;210.024000;210.045000;209.920000;209.938000;0 +20260211 090300;209.935000;209.965000;209.881000;209.904000;0 +20260211 090400;209.901000;210.019000;209.882000;209.993000;0 +20260211 090500;209.998000;210.025000;209.968000;209.994000;0 +20260211 090600;209.996000;210.040000;209.985000;210.028000;0 +20260211 090700;210.032000;210.113000;210.021000;210.058000;0 +20260211 090800;210.059000;210.080000;210.008000;210.030000;0 +20260211 090900;210.032000;210.054000;209.991000;210.010000;0 +20260211 091000;210.012000;210.031000;209.863000;209.866000;0 +20260211 091100;209.868000;209.902000;209.828000;209.857000;0 +20260211 091200;209.856000;209.896000;209.783000;209.795000;0 +20260211 091300;209.803000;209.879000;209.777000;209.846000;0 +20260211 091400;209.855000;209.919000;209.832000;209.919000;0 +20260211 091500;209.917000;209.918000;209.851000;209.873000;0 +20260211 091600;209.874000;209.926000;209.868000;209.922000;0 +20260211 091700;209.924000;209.924000;209.867000;209.914000;0 +20260211 091800;209.915000;209.978000;209.909000;209.978000;0 +20260211 091900;209.976000;210.015000;209.924000;209.942000;0 +20260211 092000;209.944000;210.022000;209.938000;210.009000;0 +20260211 092100;210.010000;210.036000;209.991000;209.992000;0 +20260211 092200;209.988000;210.039000;209.988000;210.019000;0 +20260211 092300;210.015000;210.079000;209.997000;209.998000;0 +20260211 092400;210.000000;210.033000;209.952000;209.952000;0 +20260211 092500;209.955000;210.045000;209.955000;210.035000;0 +20260211 092600;210.037000;210.081000;210.016000;210.018000;0 +20260211 092700;210.015000;210.025000;209.953000;209.971000;0 +20260211 092800;209.972000;210.031000;209.971000;210.014000;0 +20260211 092900;210.017000;210.065000;210.015000;210.054000;0 +20260211 093000;210.054000;210.054000;209.980000;209.996000;0 +20260211 093100;210.002000;210.004000;209.936000;209.999000;0 +20260211 093200;209.999000;210.006000;209.927000;210.002000;0 +20260211 093300;210.006000;210.020000;209.889000;209.905000;0 +20260211 093400;209.904000;209.923000;209.869000;209.889000;0 +20260211 093500;209.884000;209.902000;209.856000;209.868000;0 +20260211 093600;209.872000;209.911000;209.868000;209.890000;0 +20260211 093700;209.889000;209.894000;209.810000;209.818000;0 +20260211 093800;209.822000;209.880000;209.822000;209.861000;0 +20260211 093900;209.859000;209.888000;209.805000;209.835000;0 +20260211 094000;209.835000;209.884000;209.816000;209.845000;0 +20260211 094100;209.847000;209.861000;209.783000;209.819000;0 +20260211 094200;209.818000;209.864000;209.809000;209.832000;0 +20260211 094300;209.832000;209.886000;209.828000;209.841000;0 +20260211 094400;209.842000;209.913000;209.838000;209.910000;0 +20260211 094500;209.903000;209.927000;209.871000;209.871000;0 +20260211 094600;209.869000;209.909000;209.745000;209.762000;0 +20260211 094700;209.760000;209.808000;209.693000;209.705000;0 +20260211 094800;209.710000;209.777000;209.690000;209.765000;0 +20260211 094900;209.768000;209.769000;209.686000;209.730000;0 +20260211 095000;209.738000;209.738000;209.683000;209.695000;0 +20260211 095100;209.695000;209.704000;209.609000;209.637000;0 +20260211 095200;209.642000;209.661000;209.574000;209.592000;0 +20260211 095300;209.595000;209.651000;209.582000;209.647000;0 +20260211 095400;209.648000;209.659000;209.518000;209.522000;0 +20260211 095500;209.520000;209.549000;209.465000;209.477000;0 +20260211 095600;209.477000;209.485000;209.406000;209.455000;0 +20260211 095700;209.456000;209.522000;209.376000;209.519000;0 +20260211 095800;209.519000;209.580000;209.510000;209.573000;0 +20260211 095900;209.576000;209.600000;209.509000;209.540000;0 +20260211 100000;209.540000;209.608000;209.489000;209.530000;0 +20260211 100100;209.531000;209.555000;209.464000;209.475000;0 +20260211 100200;209.473000;209.474000;209.383000;209.459000;0 +20260211 100300;209.461000;209.462000;209.381000;209.382000;0 +20260211 100400;209.385000;209.404000;209.324000;209.371000;0 +20260211 100500;209.369000;209.384000;209.324000;209.350000;0 +20260211 100600;209.350000;209.363000;209.295000;209.338000;0 +20260211 100700;209.334000;209.458000;209.333000;209.456000;0 +20260211 100800;209.456000;209.456000;209.385000;209.408000;0 +20260211 100900;209.408000;209.408000;209.349000;209.350000;0 +20260211 101000;209.348000;209.380000;209.321000;209.352000;0 +20260211 101100;209.353000;209.367000;209.294000;209.302000;0 +20260211 101200;209.300000;209.310000;209.261000;209.310000;0 +20260211 101300;209.307000;209.352000;209.284000;209.300000;0 +20260211 101400;209.298000;209.426000;209.291000;209.326000;0 +20260211 101500;209.329000;209.350000;209.304000;209.323000;0 +20260211 101600;209.326000;209.398000;209.306000;209.398000;0 +20260211 101700;209.395000;209.419000;209.386000;209.399000;0 +20260211 101800;209.398000;209.475000;209.378000;209.471000;0 +20260211 101900;209.471000;209.477000;209.422000;209.450000;0 +20260211 102000;209.450000;209.455000;209.375000;209.376000;0 +20260211 102100;209.374000;209.443000;209.339000;209.434000;0 +20260211 102200;209.438000;209.534000;209.438000;209.532000;0 +20260211 102300;209.532000;209.550000;209.454000;209.462000;0 +20260211 102400;209.464000;209.475000;209.408000;209.459000;0 +20260211 102500;209.459000;209.513000;209.431000;209.447000;0 +20260211 102600;209.444000;209.494000;209.411000;209.417000;0 +20260211 102700;209.418000;209.440000;209.390000;209.418000;0 +20260211 102800;209.423000;209.424000;209.341000;209.359000;0 +20260211 102900;209.353000;209.383000;209.295000;209.298000;0 +20260211 103000;209.293000;209.313000;209.257000;209.257000;0 +20260211 103100;209.262000;209.262000;209.204000;209.251000;0 +20260211 103200;209.253000;209.321000;209.241000;209.307000;0 +20260211 103300;209.307000;209.311000;209.259000;209.290000;0 +20260211 103400;209.288000;209.338000;209.272000;209.332000;0 +20260211 103500;209.333000;209.403000;209.291000;209.297000;0 +20260211 103600;209.294000;209.310000;209.211000;209.215000;0 +20260211 103700;209.214000;209.289000;209.187000;209.281000;0 +20260211 103800;209.282000;209.307000;209.268000;209.286000;0 +20260211 103900;209.283000;209.375000;209.281000;209.355000;0 +20260211 104000;209.355000;209.436000;209.351000;209.428000;0 +20260211 104100;209.431000;209.448000;209.422000;209.437000;0 +20260211 104200;209.438000;209.445000;209.378000;209.388000;0 +20260211 104300;209.385000;209.410000;209.319000;209.323000;0 +20260211 104400;209.319000;209.402000;209.301000;209.393000;0 +20260211 104500;209.394000;209.453000;209.389000;209.397000;0 +20260211 104600;209.397000;209.416000;209.388000;209.397000;0 +20260211 104700;209.396000;209.464000;209.392000;209.444000;0 +20260211 104800;209.446000;209.457000;209.401000;209.404000;0 +20260211 104900;209.406000;209.442000;209.370000;209.385000;0 +20260211 105000;209.390000;209.445000;209.370000;209.437000;0 +20260211 105100;209.435000;209.504000;209.435000;209.455000;0 +20260211 105200;209.457000;209.488000;209.421000;209.449000;0 +20260211 105300;209.446000;209.530000;209.414000;209.466000;0 +20260211 105400;209.462000;209.496000;209.443000;209.469000;0 +20260211 105500;209.477000;209.523000;209.421000;209.424000;0 +20260211 105600;209.427000;209.458000;209.406000;209.422000;0 +20260211 105700;209.420000;209.444000;209.351000;209.351000;0 +20260211 105800;209.354000;209.433000;209.354000;209.400000;0 +20260211 105900;209.405000;209.466000;209.393000;209.434000;0 +20260211 110000;209.434000;209.450000;209.422000;209.443000;0 +20260211 110100;209.446000;209.480000;209.432000;209.445000;0 +20260211 110200;209.443000;209.479000;209.391000;209.393000;0 +20260211 110300;209.392000;209.409000;209.321000;209.338000;0 +20260211 110400;209.338000;209.365000;209.325000;209.342000;0 +20260211 110500;209.344000;209.378000;209.256000;209.299000;0 +20260211 110600;209.308000;209.362000;209.293000;209.321000;0 +20260211 110700;209.321000;209.344000;209.300000;209.300000;0 +20260211 110800;209.299000;209.322000;209.258000;209.258000;0 +20260211 110900;209.258000;209.299000;209.202000;209.203000;0 +20260211 111000;209.203000;209.263000;209.193000;209.224000;0 +20260211 111100;209.223000;209.235000;209.186000;209.212000;0 +20260211 111200;209.216000;209.239000;209.191000;209.210000;0 +20260211 111300;209.210000;209.262000;209.210000;209.257000;0 +20260211 111400;209.260000;209.334000;209.250000;209.322000;0 +20260211 111500;209.322000;209.378000;209.309000;209.342000;0 +20260211 111600;209.339000;209.381000;209.329000;209.373000;0 +20260211 111700;209.375000;209.400000;209.344000;209.355000;0 +20260211 111800;209.357000;209.368000;209.331000;209.364000;0 +20260211 111900;209.363000;209.363000;209.288000;209.327000;0 +20260211 112000;209.325000;209.343000;209.315000;209.328000;0 +20260211 112100;209.339000;209.369000;209.329000;209.337000;0 +20260211 112200;209.329000;209.344000;209.315000;209.335000;0 +20260211 112300;209.337000;209.344000;209.299000;209.309000;0 +20260211 112400;209.310000;209.329000;209.299000;209.313000;0 +20260211 112500;209.313000;209.324000;209.266000;209.266000;0 +20260211 112600;209.266000;209.271000;209.241000;209.250000;0 +20260211 112700;209.251000;209.257000;209.231000;209.255000;0 +20260211 112800;209.257000;209.273000;209.199000;209.199000;0 +20260211 112900;209.204000;209.204000;209.167000;209.169000;0 +20260211 113000;209.168000;209.186000;209.152000;209.162000;0 +20260211 113100;209.168000;209.198000;209.159000;209.182000;0 +20260211 113200;209.185000;209.204000;209.139000;209.163000;0 +20260211 113300;209.164000;209.174000;209.149000;209.159000;0 +20260211 113400;209.157000;209.174000;209.144000;209.148000;0 +20260211 113500;209.148000;209.163000;209.072000;209.077000;0 +20260211 113600;209.077000;209.107000;209.064000;209.082000;0 +20260211 113700;209.083000;209.107000;209.066000;209.102000;0 +20260211 113800;209.104000;209.135000;209.087000;209.127000;0 +20260211 113900;209.124000;209.171000;209.124000;209.143000;0 +20260211 114000;209.145000;209.151000;209.112000;209.131000;0 +20260211 114100;209.132000;209.211000;209.125000;209.193000;0 +20260211 114200;209.195000;209.214000;209.188000;209.205000;0 +20260211 114300;209.204000;209.204000;209.148000;209.150000;0 +20260211 114400;209.146000;209.149000;209.109000;209.146000;0 +20260211 114500;209.144000;209.151000;209.104000;209.109000;0 +20260211 114600;209.111000;209.129000;209.084000;209.125000;0 +20260211 114700;209.125000;209.135000;209.111000;209.121000;0 +20260211 114800;209.118000;209.130000;209.100000;209.103000;0 +20260211 114900;209.098000;209.133000;209.098000;209.099000;0 +20260211 115000;209.100000;209.100000;209.061000;209.068000;0 +20260211 115100;209.068000;209.088000;208.955000;208.981000;0 +20260211 115200;208.983000;208.983000;208.927000;208.952000;0 +20260211 115300;208.948000;208.976000;208.928000;208.932000;0 +20260211 115400;208.921000;208.922000;208.814000;208.820000;0 +20260211 115500;208.818000;208.826000;208.789000;208.818000;0 +20260211 115600;208.817000;208.899000;208.779000;208.883000;0 +20260211 115700;208.885000;208.899000;208.826000;208.828000;0 +20260211 115800;208.829000;208.841000;208.786000;208.799000;0 +20260211 115900;208.800000;208.805000;208.777000;208.785000;0 +20260211 120000;208.780000;208.782000;208.704000;208.723000;0 +20260211 120100;208.727000;208.794000;208.727000;208.764000;0 +20260211 120200;208.764000;208.801000;208.734000;208.791000;0 +20260211 120300;208.790000;208.790000;208.731000;208.754000;0 +20260211 120400;208.758000;208.778000;208.741000;208.746000;0 +20260211 120500;208.746000;208.746000;208.677000;208.725000;0 +20260211 120600;208.725000;208.813000;208.717000;208.813000;0 +20260211 120700;208.813000;208.834000;208.792000;208.792000;0 +20260211 120800;208.793000;208.815000;208.783000;208.815000;0 +20260211 120900;208.815000;208.821000;208.786000;208.821000;0 +20260211 121000;208.821000;208.875000;208.807000;208.807000;0 +20260211 121100;208.806000;208.814000;208.738000;208.763000;0 +20260211 121200;208.767000;208.812000;208.737000;208.808000;0 +20260211 121300;208.808000;208.819000;208.771000;208.791000;0 +20260211 121400;208.792000;208.818000;208.752000;208.762000;0 +20260211 121500;208.762000;208.768000;208.641000;208.717000;0 +20260211 121600;208.717000;208.786000;208.687000;208.758000;0 +20260211 121700;208.761000;208.828000;208.761000;208.812000;0 +20260211 121800;208.814000;208.824000;208.756000;208.771000;0 +20260211 121900;208.770000;208.770000;208.736000;208.756000;0 +20260211 122000;208.758000;208.793000;208.734000;208.739000;0 +20260211 122100;208.736000;208.816000;208.736000;208.796000;0 +20260211 122200;208.799000;208.804000;208.759000;208.777000;0 +20260211 122300;208.775000;208.801000;208.771000;208.775000;0 +20260211 122400;208.776000;208.836000;208.772000;208.800000;0 +20260211 122500;208.801000;208.805000;208.724000;208.756000;0 +20260211 122600;208.752000;208.805000;208.744000;208.787000;0 +20260211 122700;208.786000;208.813000;208.778000;208.809000;0 +20260211 122800;208.812000;208.814000;208.782000;208.795000;0 +20260211 122900;208.796000;208.796000;208.668000;208.677000;0 +20260211 123000;208.677000;208.677000;208.579000;208.643000;0 +20260211 123100;208.642000;208.691000;208.544000;208.548000;0 +20260211 123200;208.544000;208.551000;208.444000;208.450000;0 +20260211 123300;208.445000;208.532000;208.441000;208.515000;0 +20260211 123400;208.508000;208.608000;208.508000;208.586000;0 +20260211 123500;208.585000;208.638000;208.583000;208.620000;0 +20260211 123600;208.618000;208.618000;208.545000;208.548000;0 +20260211 123700;208.549000;208.630000;208.549000;208.616000;0 +20260211 123800;208.616000;208.616000;208.568000;208.577000;0 +20260211 123900;208.572000;208.609000;208.559000;208.567000;0 +20260211 124000;208.563000;208.594000;208.551000;208.576000;0 +20260211 124100;208.574000;208.598000;208.569000;208.586000;0 +20260211 124200;208.585000;208.623000;208.572000;208.602000;0 +20260211 124300;208.606000;208.627000;208.549000;208.590000;0 +20260211 124400;208.588000;208.678000;208.585000;208.672000;0 +20260211 124500;208.675000;208.726000;208.658000;208.679000;0 +20260211 124600;208.679000;208.713000;208.636000;208.638000;0 +20260211 124700;208.636000;208.733000;208.634000;208.701000;0 +20260211 124800;208.700000;208.728000;208.688000;208.728000;0 +20260211 124900;208.726000;208.793000;208.719000;208.756000;0 +20260211 125000;208.753000;208.783000;208.753000;208.755000;0 +20260211 125100;208.758000;208.786000;208.748000;208.772000;0 +20260211 125200;208.770000;208.787000;208.760000;208.763000;0 +20260211 125300;208.762000;208.777000;208.732000;208.740000;0 +20260211 125400;208.738000;208.771000;208.732000;208.769000;0 +20260211 125500;208.770000;208.772000;208.737000;208.770000;0 +20260211 125600;208.769000;208.795000;208.768000;208.776000;0 +20260211 125700;208.774000;208.790000;208.730000;208.741000;0 +20260211 125800;208.741000;208.750000;208.732000;208.732000;0 +20260211 125900;208.732000;208.736000;208.718000;208.727000;0 +20260211 130000;208.726000;208.726000;208.705000;208.706000;0 +20260211 130100;208.706000;208.712000;208.666000;208.669000;0 +20260211 130200;208.668000;208.734000;208.668000;208.711000;0 +20260211 130300;208.713000;208.732000;208.684000;208.692000;0 +20260211 130400;208.690000;208.728000;208.678000;208.727000;0 +20260211 130500;208.725000;208.736000;208.688000;208.691000;0 +20260211 130600;208.692000;208.703000;208.683000;208.690000;0 +20260211 130700;208.692000;208.715000;208.686000;208.689000;0 +20260211 130800;208.690000;208.737000;208.685000;208.734000;0 +20260211 130900;208.732000;208.738000;208.711000;208.713000;0 +20260211 131000;208.711000;208.711000;208.647000;208.666000;0 +20260211 131100;208.673000;208.673000;208.633000;208.639000;0 +20260211 131200;208.637000;208.661000;208.635000;208.656000;0 +20260211 131300;208.658000;208.715000;208.658000;208.705000;0 +20260211 131400;208.704000;208.718000;208.689000;208.693000;0 +20260211 131500;208.695000;208.699000;208.676000;208.692000;0 +20260211 131600;208.689000;208.709000;208.662000;208.666000;0 +20260211 131700;208.664000;208.666000;208.612000;208.616000;0 +20260211 131800;208.616000;208.652000;208.616000;208.649000;0 +20260211 131900;208.649000;208.657000;208.623000;208.640000;0 +20260211 132000;208.638000;208.653000;208.614000;208.615000;0 +20260211 132100;208.618000;208.635000;208.603000;208.603000;0 +20260211 132200;208.603000;208.649000;208.597000;208.634000;0 +20260211 132300;208.632000;208.635000;208.616000;208.634000;0 +20260211 132400;208.631000;208.644000;208.604000;208.633000;0 +20260211 132500;208.632000;208.637000;208.607000;208.636000;0 +20260211 132600;208.638000;208.644000;208.614000;208.639000;0 +20260211 132700;208.640000;208.662000;208.631000;208.646000;0 +20260211 132800;208.646000;208.660000;208.612000;208.653000;0 +20260211 132900;208.649000;208.654000;208.634000;208.648000;0 +20260211 133000;208.647000;208.653000;208.591000;208.591000;0 +20260211 133100;208.590000;208.606000;208.554000;208.563000;0 +20260211 133200;208.562000;208.585000;208.555000;208.568000;0 +20260211 133300;208.572000;208.578000;208.543000;208.544000;0 +20260211 133400;208.545000;208.550000;208.520000;208.526000;0 +20260211 133500;208.525000;208.546000;208.513000;208.517000;0 +20260211 133600;208.516000;208.518000;208.483000;208.488000;0 +20260211 133700;208.489000;208.492000;208.435000;208.455000;0 +20260211 133800;208.453000;208.461000;208.428000;208.428000;0 +20260211 133900;208.428000;208.435000;208.415000;208.425000;0 +20260211 134000;208.425000;208.427000;208.371000;208.374000;0 +20260211 134100;208.374000;208.379000;208.357000;208.368000;0 +20260211 134200;208.368000;208.388000;208.365000;208.367000;0 +20260211 134300;208.370000;208.384000;208.349000;208.364000;0 +20260211 134400;208.366000;208.367000;208.334000;208.334000;0 +20260211 134500;208.337000;208.344000;208.307000;208.307000;0 +20260211 134600;208.306000;208.329000;208.298000;208.313000;0 +20260211 134700;208.314000;208.327000;208.295000;208.322000;0 +20260211 134800;208.321000;208.321000;208.311000;208.319000;0 +20260211 134900;208.316000;208.334000;208.306000;208.306000;0 +20260211 135000;208.310000;208.355000;208.300000;208.316000;0 +20260211 135100;208.313000;208.334000;208.311000;208.317000;0 +20260211 135200;208.320000;208.325000;208.295000;208.301000;0 +20260211 135300;208.296000;208.302000;208.282000;208.298000;0 +20260211 135400;208.301000;208.304000;208.202000;208.205000;0 +20260211 135500;208.206000;208.218000;208.177000;208.180000;0 +20260211 135600;208.180000;208.228000;208.175000;208.228000;0 +20260211 135700;208.226000;208.264000;208.225000;208.238000;0 +20260211 135800;208.235000;208.307000;208.226000;208.262000;0 +20260211 135900;208.261000;208.284000;208.240000;208.280000;0 +20260211 140000;208.276000;208.353000;208.268000;208.340000;0 +20260211 140100;208.340000;208.375000;208.306000;208.307000;0 +20260211 140200;208.308000;208.356000;208.307000;208.349000;0 +20260211 140300;208.348000;208.396000;208.344000;208.366000;0 +20260211 140400;208.370000;208.383000;208.325000;208.325000;0 +20260211 140500;208.337000;208.347000;208.308000;208.310000;0 +20260211 140600;208.310000;208.329000;208.310000;208.323000;0 +20260211 140700;208.323000;208.407000;208.323000;208.396000;0 +20260211 140800;208.397000;208.431000;208.396000;208.415000;0 +20260211 140900;208.415000;208.416000;208.357000;208.388000;0 +20260211 141000;208.395000;208.396000;208.355000;208.387000;0 +20260211 141100;208.388000;208.408000;208.362000;208.408000;0 +20260211 141200;208.409000;208.486000;208.409000;208.468000;0 +20260211 141300;208.468000;208.473000;208.435000;208.440000;0 +20260211 141400;208.438000;208.438000;208.388000;208.392000;0 +20260211 141500;208.389000;208.421000;208.389000;208.411000;0 +20260211 141600;208.407000;208.411000;208.368000;208.399000;0 +20260211 141700;208.397000;208.402000;208.365000;208.396000;0 +20260211 141800;208.399000;208.417000;208.386000;208.406000;0 +20260211 141900;208.405000;208.413000;208.373000;208.377000;0 +20260211 142000;208.380000;208.380000;208.344000;208.358000;0 +20260211 142100;208.359000;208.361000;208.324000;208.329000;0 +20260211 142200;208.327000;208.343000;208.299000;208.299000;0 +20260211 142300;208.301000;208.331000;208.298000;208.307000;0 +20260211 142400;208.304000;208.325000;208.304000;208.314000;0 +20260211 142500;208.319000;208.332000;208.292000;208.316000;0 +20260211 142600;208.315000;208.372000;208.309000;208.372000;0 +20260211 142700;208.372000;208.373000;208.340000;208.360000;0 +20260211 142800;208.359000;208.388000;208.353000;208.371000;0 +20260211 142900;208.370000;208.410000;208.362000;208.390000;0 +20260211 143000;208.390000;208.398000;208.376000;208.390000;0 +20260211 143100;208.390000;208.446000;208.390000;208.439000;0 +20260211 143200;208.443000;208.451000;208.378000;208.382000;0 +20260211 143300;208.380000;208.423000;208.380000;208.395000;0 +20260211 143400;208.396000;208.396000;208.331000;208.369000;0 +20260211 143500;208.366000;208.382000;208.337000;208.338000;0 +20260211 143600;208.335000;208.381000;208.331000;208.375000;0 +20260211 143700;208.378000;208.410000;208.378000;208.399000;0 +20260211 143800;208.401000;208.417000;208.400000;208.410000;0 +20260211 143900;208.412000;208.412000;208.380000;208.394000;0 +20260211 144000;208.398000;208.433000;208.393000;208.433000;0 +20260211 144100;208.434000;208.437000;208.419000;208.424000;0 +20260211 144200;208.421000;208.473000;208.420000;208.467000;0 +20260211 144300;208.467000;208.471000;208.423000;208.423000;0 +20260211 144400;208.430000;208.438000;208.410000;208.418000;0 +20260211 144500;208.417000;208.450000;208.410000;208.427000;0 +20260211 144600;208.424000;208.426000;208.398000;208.423000;0 +20260211 144700;208.424000;208.454000;208.418000;208.431000;0 +20260211 144800;208.429000;208.447000;208.425000;208.445000;0 +20260211 144900;208.443000;208.450000;208.435000;208.444000;0 +20260211 145000;208.446000;208.448000;208.433000;208.435000;0 +20260211 145100;208.431000;208.449000;208.422000;208.442000;0 +20260211 145200;208.440000;208.451000;208.424000;208.437000;0 +20260211 145300;208.436000;208.449000;208.434000;208.449000;0 +20260211 145400;208.448000;208.497000;208.442000;208.488000;0 +20260211 145500;208.488000;208.488000;208.452000;208.477000;0 +20260211 145600;208.479000;208.488000;208.457000;208.457000;0 +20260211 145700;208.459000;208.490000;208.429000;208.484000;0 +20260211 145800;208.479000;208.507000;208.479000;208.489000;0 +20260211 145900;208.491000;208.500000;208.475000;208.499000;0 +20260211 150000;208.498000;208.514000;208.489000;208.513000;0 +20260211 150100;208.511000;208.524000;208.508000;208.519000;0 +20260211 150200;208.518000;208.518000;208.500000;208.502000;0 +20260211 150300;208.503000;208.555000;208.503000;208.542000;0 +20260211 150400;208.540000;208.608000;208.540000;208.606000;0 +20260211 150500;208.608000;208.628000;208.565000;208.584000;0 +20260211 150600;208.586000;208.604000;208.568000;208.576000;0 +20260211 150700;208.578000;208.615000;208.572000;208.615000;0 +20260211 150800;208.616000;208.622000;208.590000;208.608000;0 +20260211 150900;208.611000;208.632000;208.608000;208.627000;0 +20260211 151000;208.626000;208.628000;208.619000;208.628000;0 +20260211 151100;208.627000;208.635000;208.618000;208.630000;0 +20260211 151200;208.629000;208.631000;208.602000;208.603000;0 +20260211 151300;208.602000;208.615000;208.590000;208.597000;0 +20260211 151400;208.596000;208.597000;208.573000;208.573000;0 +20260211 151500;208.575000;208.598000;208.567000;208.583000;0 +20260211 151600;208.585000;208.637000;208.585000;208.635000;0 +20260211 151700;208.637000;208.653000;208.630000;208.646000;0 +20260211 151800;208.646000;208.653000;208.631000;208.645000;0 +20260211 151900;208.643000;208.648000;208.639000;208.639000;0 +20260211 152000;208.647000;208.661000;208.644000;208.656000;0 +20260211 152100;208.657000;208.668000;208.654000;208.655000;0 +20260211 152200;208.655000;208.655000;208.627000;208.637000;0 +20260211 152300;208.638000;208.644000;208.629000;208.644000;0 +20260211 152400;208.641000;208.643000;208.632000;208.637000;0 +20260211 152500;208.641000;208.651000;208.639000;208.646000;0 +20260211 152600;208.645000;208.645000;208.609000;208.619000;0 +20260211 152700;208.619000;208.627000;208.606000;208.606000;0 +20260211 152800;208.608000;208.612000;208.587000;208.590000;0 +20260211 152900;208.592000;208.614000;208.592000;208.596000;0 +20260211 153000;208.594000;208.658000;208.592000;208.635000;0 +20260211 153100;208.637000;208.644000;208.627000;208.627000;0 +20260211 153200;208.631000;208.644000;208.614000;208.617000;0 +20260211 153300;208.616000;208.633000;208.609000;208.632000;0 +20260211 153400;208.641000;208.641000;208.631000;208.634000;0 +20260211 153500;208.633000;208.650000;208.632000;208.647000;0 +20260211 153600;208.648000;208.660000;208.628000;208.660000;0 +20260211 153700;208.655000;208.661000;208.650000;208.656000;0 +20260211 153800;208.656000;208.667000;208.629000;208.629000;0 +20260211 153900;208.629000;208.647000;208.626000;208.640000;0 +20260211 154000;208.639000;208.650000;208.635000;208.646000;0 +20260211 154100;208.642000;208.649000;208.637000;208.641000;0 +20260211 154200;208.643000;208.651000;208.640000;208.648000;0 +20260211 154300;208.648000;208.674000;208.631000;208.658000;0 +20260211 154400;208.659000;208.665000;208.652000;208.665000;0 +20260211 154500;208.667000;208.708000;208.667000;208.688000;0 +20260211 154600;208.688000;208.698000;208.678000;208.697000;0 +20260211 154700;208.695000;208.724000;208.695000;208.723000;0 +20260211 154800;208.721000;208.721000;208.697000;208.697000;0 +20260211 154900;208.697000;208.703000;208.675000;208.678000;0 +20260211 155000;208.678000;208.703000;208.677000;208.690000;0 +20260211 155100;208.697000;208.700000;208.684000;208.694000;0 +20260211 155200;208.702000;208.706000;208.694000;208.703000;0 +20260211 155300;208.710000;208.754000;208.707000;208.749000;0 +20260211 155400;208.744000;208.782000;208.724000;208.761000;0 +20260211 155500;208.758000;208.790000;208.745000;208.770000;0 +20260211 155600;208.770000;208.777000;208.741000;208.777000;0 +20260211 155700;208.776000;208.793000;208.759000;208.770000;0 +20260211 155800;208.771000;208.771000;208.710000;208.718000;0 +20260211 155900;208.720000;208.728000;208.692000;208.696000;0 +20260211 160000;208.695000;208.726000;208.695000;208.719000;0 +20260211 160100;208.719000;208.731000;208.709000;208.725000;0 +20260211 160200;208.726000;208.743000;208.699000;208.716000;0 +20260211 160300;208.713000;208.753000;208.706000;208.741000;0 +20260211 160400;208.744000;208.760000;208.744000;208.756000;0 +20260211 160500;208.753000;208.777000;208.738000;208.777000;0 +20260211 160600;208.775000;208.775000;208.763000;208.769000;0 +20260211 160700;208.769000;208.782000;208.769000;208.782000;0 +20260211 160800;208.783000;208.784000;208.763000;208.775000;0 +20260211 160900;208.779000;208.795000;208.765000;208.768000;0 +20260211 161000;208.772000;208.790000;208.768000;208.775000;0 +20260211 161100;208.770000;208.775000;208.764000;208.767000;0 +20260211 161200;208.769000;208.787000;208.766000;208.777000;0 +20260211 161300;208.778000;208.778000;208.759000;208.759000;0 +20260211 161400;208.766000;208.766000;208.754000;208.756000;0 +20260211 161500;208.756000;208.768000;208.746000;208.755000;0 +20260211 161600;208.754000;208.754000;208.744000;208.752000;0 +20260211 161700;208.755000;208.802000;208.753000;208.802000;0 +20260211 161800;208.804000;208.820000;208.804000;208.815000;0 +20260211 161900;208.817000;208.817000;208.814000;208.814000;0 +20260211 162000;208.819000;208.823000;208.775000;208.775000;0 +20260211 162100;208.775000;208.781000;208.771000;208.775000;0 +20260211 162200;208.774000;208.774000;208.760000;208.760000;0 +20260211 162300;208.754000;208.754000;208.731000;208.732000;0 +20260211 162400;208.735000;208.745000;208.732000;208.742000;0 +20260211 162500;208.746000;208.752000;208.746000;208.746000;0 +20260211 162600;208.751000;208.751000;208.740000;208.751000;0 +20260211 162700;208.745000;208.751000;208.745000;208.749000;0 +20260211 162800;208.744000;208.795000;208.744000;208.792000;0 +20260211 162900;208.791000;208.792000;208.762000;208.762000;0 +20260211 163000;208.769000;208.785000;208.762000;208.771000;0 +20260211 163100;208.773000;208.779000;208.760000;208.779000;0 +20260211 163200;208.785000;208.804000;208.785000;208.789000;0 +20260211 163300;208.790000;208.835000;208.790000;208.832000;0 +20260211 163400;208.831000;208.831000;208.815000;208.818000;0 +20260211 163500;208.817000;208.821000;208.798000;208.806000;0 +20260211 163600;208.808000;208.808000;208.803000;208.805000;0 +20260211 163700;208.806000;208.806000;208.777000;208.779000;0 +20260211 163800;208.779000;208.785000;208.765000;208.781000;0 +20260211 163900;208.783000;208.789000;208.775000;208.780000;0 +20260211 164000;208.782000;208.797000;208.779000;208.792000;0 +20260211 164100;208.793000;208.809000;208.790000;208.804000;0 +20260211 164200;208.801000;208.801000;208.787000;208.787000;0 +20260211 164300;208.797000;208.799000;208.783000;208.785000;0 +20260211 164400;208.787000;208.795000;208.768000;208.769000;0 +20260211 164500;208.773000;208.804000;208.756000;208.765000;0 +20260211 164600;208.770000;208.802000;208.770000;208.783000;0 +20260211 164700;208.781000;208.822000;208.781000;208.818000;0 +20260211 164800;208.820000;208.892000;208.818000;208.858000;0 +20260211 164900;208.860000;208.899000;208.858000;208.883000;0 +20260211 165000;208.885000;208.912000;208.882000;208.892000;0 +20260211 165100;208.889000;208.905000;208.887000;208.894000;0 +20260211 165200;208.897000;208.903000;208.884000;208.899000;0 +20260211 165300;208.897000;208.906000;208.875000;208.896000;0 +20260211 165400;208.894000;208.907000;208.887000;208.899000;0 +20260211 165500;208.902000;208.909000;208.889000;208.893000;0 +20260211 165600;208.891000;208.899000;208.882000;208.885000;0 +20260211 165700;208.888000;208.900000;208.826000;208.842000;0 +20260211 165800;208.840000;208.862000;208.840000;208.856000;0 +20260211 165900;208.834000;208.848000;208.812000;208.812000;0 +20260211 170500;208.569000;208.600000;208.453000;208.594000;0 +20260211 170600;208.596000;208.596000;208.596000;208.596000;0 +20260211 170700;208.664000;208.702000;208.664000;208.702000;0 +20260211 170800;208.730000;208.752000;208.730000;208.737000;0 +20260211 170900;208.708000;208.712000;208.652000;208.701000;0 +20260211 171000;208.697000;208.697000;208.629000;208.697000;0 +20260211 171100;208.694000;208.699000;208.694000;208.698000;0 +20260211 171200;208.697000;208.698000;208.619000;208.645000;0 +20260211 171300;208.644000;208.671000;208.625000;208.671000;0 +20260211 171400;208.672000;208.673000;208.671000;208.673000;0 +20260211 171500;208.673000;208.679000;208.672000;208.673000;0 +20260211 171600;208.673000;208.742000;208.663000;208.672000;0 +20260211 171700;208.673000;208.675000;208.655000;208.675000;0 +20260211 171800;208.675000;208.704000;208.649000;208.649000;0 +20260211 171900;208.659000;208.659000;208.646000;208.646000;0 +20260211 172000;208.647000;208.674000;208.647000;208.649000;0 +20260211 172100;208.651000;208.683000;208.648000;208.650000;0 +20260211 172200;208.649000;208.651000;208.635000;208.642000;0 +20260211 172300;208.637000;208.653000;208.589000;208.599000;0 +20260211 172400;208.616000;208.632000;208.590000;208.590000;0 +20260211 172500;208.594000;208.623000;208.594000;208.622000;0 +20260211 172600;208.622000;208.626000;208.594000;208.594000;0 +20260211 172700;208.609000;208.622000;208.593000;208.611000;0 +20260211 172800;208.609000;208.615000;208.588000;208.612000;0 +20260211 172900;208.613000;208.616000;208.604000;208.616000;0 +20260211 173000;208.615000;208.624000;208.592000;208.623000;0 +20260211 173100;208.623000;208.649000;208.623000;208.649000;0 +20260211 173200;208.649000;208.650000;208.649000;208.650000;0 +20260211 173300;208.634000;208.672000;208.624000;208.658000;0 +20260211 173400;208.662000;208.678000;208.649000;208.654000;0 +20260211 173500;208.654000;208.665000;208.634000;208.637000;0 +20260211 173600;208.638000;208.665000;208.629000;208.665000;0 +20260211 173700;208.665000;208.671000;208.626000;208.671000;0 +20260211 173800;208.641000;208.652000;208.631000;208.649000;0 +20260211 173900;208.647000;208.649000;208.583000;208.644000;0 +20260211 174000;208.648000;208.660000;208.644000;208.653000;0 +20260211 174100;208.654000;208.658000;208.652000;208.655000;0 +20260211 174200;208.654000;208.660000;208.629000;208.646000;0 +20260211 174300;208.647000;208.662000;208.641000;208.645000;0 +20260211 174400;208.644000;208.651000;208.641000;208.647000;0 +20260211 174500;208.648000;208.650000;208.639000;208.639000;0 +20260211 174600;208.639000;208.648000;208.639000;208.645000;0 +20260211 174700;208.646000;208.646000;208.601000;208.604000;0 +20260211 174800;208.604000;208.608000;208.602000;208.605000;0 +20260211 174900;208.605000;208.628000;208.603000;208.623000;0 +20260211 175000;208.623000;208.624000;208.613000;208.617000;0 +20260211 175100;208.621000;208.622000;208.611000;208.616000;0 +20260211 175200;208.615000;208.620000;208.613000;208.617000;0 +20260211 175300;208.618000;208.636000;208.616000;208.619000;0 +20260211 175400;208.625000;208.649000;208.613000;208.643000;0 +20260211 175500;208.644000;208.648000;208.610000;208.628000;0 +20260211 175600;208.630000;208.630000;208.600000;208.604000;0 +20260211 175700;208.605000;208.634000;208.600000;208.606000;0 +20260211 175800;208.605000;208.619000;208.594000;208.613000;0 +20260211 175900;208.613000;208.625000;208.611000;208.614000;0 +20260211 180000;208.615000;208.716000;208.568000;208.716000;0 +20260211 180100;208.717000;208.758000;208.717000;208.723000;0 +20260211 180200;208.717000;208.737000;208.694000;208.712000;0 +20260211 180300;208.713000;208.728000;208.689000;208.697000;0 +20260211 180400;208.699000;208.699000;208.683000;208.693000;0 +20260211 180500;208.681000;208.681000;208.668000;208.675000;0 +20260211 180600;208.672000;208.697000;208.652000;208.697000;0 +20260211 180700;208.696000;208.696000;208.620000;208.629000;0 +20260211 180800;208.638000;208.646000;208.638000;208.646000;0 +20260211 180900;208.656000;208.684000;208.656000;208.666000;0 +20260211 181000;208.682000;208.730000;208.680000;208.719000;0 +20260211 181100;208.720000;208.722000;208.696000;208.713000;0 +20260211 181200;208.713000;208.721000;208.706000;208.711000;0 +20260211 181300;208.708000;208.714000;208.705000;208.709000;0 +20260211 181400;208.710000;208.723000;208.710000;208.722000;0 +20260211 181500;208.721000;208.731000;208.716000;208.730000;0 +20260211 181600;208.728000;208.730000;208.689000;208.705000;0 +20260211 181700;208.707000;208.718000;208.705000;208.718000;0 +20260211 181800;208.717000;208.717000;208.677000;208.683000;0 +20260211 181900;208.682000;208.696000;208.671000;208.686000;0 +20260211 182000;208.684000;208.696000;208.674000;208.690000;0 +20260211 182100;208.688000;208.691000;208.671000;208.672000;0 +20260211 182200;208.666000;208.673000;208.658000;208.662000;0 +20260211 182300;208.661000;208.706000;208.657000;208.705000;0 +20260211 182400;208.698000;208.698000;208.691000;208.693000;0 +20260211 182500;208.691000;208.692000;208.675000;208.675000;0 +20260211 182600;208.670000;208.682000;208.670000;208.675000;0 +20260211 182700;208.674000;208.674000;208.632000;208.637000;0 +20260211 182800;208.638000;208.640000;208.620000;208.629000;0 +20260211 182900;208.628000;208.661000;208.628000;208.655000;0 +20260211 183000;208.662000;208.688000;208.651000;208.688000;0 +20260211 183100;208.688000;208.696000;208.645000;208.675000;0 +20260211 183200;208.675000;208.677000;208.659000;208.670000;0 +20260211 183300;208.670000;208.679000;208.646000;208.668000;0 +20260211 183400;208.668000;208.691000;208.656000;208.662000;0 +20260211 183500;208.666000;208.671000;208.657000;208.657000;0 +20260211 183600;208.656000;208.656000;208.636000;208.638000;0 +20260211 183700;208.640000;208.645000;208.615000;208.615000;0 +20260211 183800;208.617000;208.620000;208.603000;208.606000;0 +20260211 183900;208.606000;208.611000;208.594000;208.594000;0 +20260211 184000;208.595000;208.618000;208.594000;208.613000;0 +20260211 184100;208.614000;208.631000;208.601000;208.615000;0 +20260211 184200;208.614000;208.622000;208.610000;208.614000;0 +20260211 184300;208.615000;208.618000;208.610000;208.612000;0 +20260211 184400;208.611000;208.615000;208.591000;208.612000;0 +20260211 184500;208.623000;208.702000;208.616000;208.695000;0 +20260211 184600;208.696000;208.723000;208.668000;208.706000;0 +20260211 184700;208.707000;208.737000;208.698000;208.735000;0 +20260211 184800;208.738000;208.738000;208.704000;208.723000;0 +20260211 184900;208.723000;208.799000;208.718000;208.794000;0 +20260211 185000;208.794000;208.797000;208.784000;208.796000;0 +20260211 185100;208.794000;208.795000;208.769000;208.778000;0 +20260211 185200;208.780000;208.805000;208.780000;208.794000;0 +20260211 185300;208.789000;208.799000;208.774000;208.793000;0 +20260211 185400;208.793000;208.805000;208.792000;208.802000;0 +20260211 185500;208.802000;208.802000;208.789000;208.792000;0 +20260211 185600;208.791000;208.809000;208.787000;208.796000;0 +20260211 185700;208.799000;208.807000;208.787000;208.797000;0 +20260211 185800;208.800000;208.812000;208.796000;208.809000;0 +20260211 185900;208.809000;208.813000;208.786000;208.789000;0 +20260211 190000;208.789000;208.797000;208.743000;208.743000;0 +20260211 190100;208.741000;208.743000;208.658000;208.700000;0 +20260211 190200;208.708000;208.791000;208.708000;208.760000;0 +20260211 190300;208.770000;208.849000;208.755000;208.803000;0 +20260211 190400;208.806000;208.867000;208.779000;208.843000;0 +20260211 190500;208.841000;208.929000;208.841000;208.919000;0 +20260211 190600;208.921000;208.954000;208.911000;208.929000;0 +20260211 190700;208.925000;208.943000;208.913000;208.931000;0 +20260211 190800;208.929000;208.942000;208.913000;208.923000;0 +20260211 190900;208.921000;208.933000;208.901000;208.906000;0 +20260211 191000;208.906000;208.927000;208.890000;208.907000;0 +20260211 191100;208.909000;208.915000;208.878000;208.893000;0 +20260211 191200;208.892000;208.904000;208.870000;208.870000;0 +20260211 191300;208.870000;208.884000;208.839000;208.857000;0 +20260211 191400;208.858000;208.907000;208.847000;208.900000;0 +20260211 191500;208.899000;208.901000;208.834000;208.834000;0 +20260211 191600;208.834000;208.867000;208.831000;208.842000;0 +20260211 191700;208.846000;208.848000;208.762000;208.769000;0 +20260211 191800;208.772000;208.778000;208.705000;208.721000;0 +20260211 191900;208.722000;208.754000;208.628000;208.714000;0 +20260211 192000;208.714000;208.738000;208.626000;208.665000;0 +20260211 192100;208.673000;208.677000;208.637000;208.642000;0 +20260211 192200;208.643000;208.655000;208.610000;208.611000;0 +20260211 192300;208.615000;208.640000;208.577000;208.599000;0 +20260211 192400;208.603000;208.617000;208.587000;208.607000;0 +20260211 192500;208.608000;208.637000;208.594000;208.599000;0 +20260211 192600;208.598000;208.648000;208.598000;208.638000;0 +20260211 192700;208.638000;208.662000;208.620000;208.621000;0 +20260211 192800;208.620000;208.687000;208.620000;208.673000;0 +20260211 192900;208.671000;208.728000;208.669000;208.710000;0 +20260211 193000;208.707000;208.768000;208.689000;208.765000;0 +20260211 193100;208.769000;208.785000;208.751000;208.765000;0 +20260211 193200;208.761000;208.780000;208.757000;208.769000;0 +20260211 193300;208.769000;208.811000;208.769000;208.804000;0 +20260211 193400;208.801000;208.864000;208.796000;208.857000;0 +20260211 193500;208.857000;208.921000;208.854000;208.919000;0 +20260211 193600;208.919000;208.933000;208.910000;208.914000;0 +20260211 193700;208.913000;208.950000;208.912000;208.934000;0 +20260211 193800;208.935000;208.941000;208.916000;208.941000;0 +20260211 193900;208.942000;209.000000;208.941000;208.986000;0 +20260211 194000;208.988000;208.992000;208.920000;208.920000;0 +20260211 194100;208.922000;208.950000;208.922000;208.947000;0 +20260211 194200;208.946000;208.954000;208.915000;208.918000;0 +20260211 194300;208.918000;208.923000;208.901000;208.920000;0 +20260211 194400;208.916000;208.923000;208.895000;208.912000;0 +20260211 194500;208.910000;208.917000;208.876000;208.889000;0 +20260211 194600;208.887000;208.909000;208.881000;208.905000;0 +20260211 194700;208.905000;208.924000;208.898000;208.918000;0 +20260211 194800;208.918000;208.937000;208.901000;208.902000;0 +20260211 194900;208.905000;208.927000;208.902000;208.916000;0 +20260211 195000;208.915000;208.955000;208.887000;208.928000;0 +20260211 195100;208.927000;208.934000;208.793000;208.807000;0 +20260211 195200;208.807000;208.859000;208.771000;208.771000;0 +20260211 195300;208.774000;208.815000;208.747000;208.751000;0 +20260211 195400;208.754000;208.861000;208.736000;208.825000;0 +20260211 195500;208.825000;208.852000;208.777000;208.786000;0 +20260211 195600;208.785000;208.835000;208.751000;208.773000;0 +20260211 195700;208.773000;208.792000;208.749000;208.751000;0 +20260211 195800;208.750000;208.764000;208.699000;208.699000;0 +20260211 195900;208.707000;208.720000;208.682000;208.707000;0 +20260211 200000;208.708000;208.708000;208.576000;208.596000;0 +20260211 200100;208.603000;208.626000;208.560000;208.615000;0 +20260211 200200;208.614000;208.649000;208.559000;208.585000;0 +20260211 200300;208.583000;208.585000;208.539000;208.572000;0 +20260211 200400;208.577000;208.610000;208.545000;208.598000;0 +20260211 200500;208.596000;208.627000;208.581000;208.608000;0 +20260211 200600;208.605000;208.621000;208.570000;208.604000;0 +20260211 200700;208.606000;208.620000;208.581000;208.588000;0 +20260211 200800;208.584000;208.584000;208.486000;208.526000;0 +20260211 200900;208.526000;208.535000;208.465000;208.476000;0 +20260211 201000;208.474000;208.489000;208.459000;208.474000;0 +20260211 201100;208.482000;208.482000;208.435000;208.452000;0 +20260211 201200;208.451000;208.486000;208.445000;208.467000;0 +20260211 201300;208.465000;208.483000;208.442000;208.480000;0 +20260211 201400;208.470000;208.489000;208.423000;208.444000;0 +20260211 201500;208.447000;208.523000;208.434000;208.520000;0 +20260211 201600;208.521000;208.527000;208.467000;208.523000;0 +20260211 201700;208.522000;208.537000;208.504000;208.537000;0 +20260211 201800;208.526000;208.595000;208.522000;208.584000;0 +20260211 201900;208.584000;208.587000;208.543000;208.571000;0 +20260211 202000;208.568000;208.601000;208.563000;208.596000;0 +20260211 202100;208.594000;208.660000;208.586000;208.643000;0 +20260211 202200;208.642000;208.664000;208.623000;208.661000;0 +20260211 202300;208.658000;208.666000;208.618000;208.641000;0 +20260211 202400;208.639000;208.655000;208.606000;208.619000;0 +20260211 202500;208.623000;208.672000;208.617000;208.671000;0 +20260211 202600;208.675000;208.707000;208.650000;208.697000;0 +20260211 202700;208.698000;208.698000;208.668000;208.668000;0 +20260211 202800;208.667000;208.701000;208.648000;208.682000;0 +20260211 202900;208.682000;208.705000;208.674000;208.685000;0 +20260211 203000;208.684000;208.753000;208.679000;208.739000;0 +20260211 203100;208.740000;208.758000;208.737000;208.750000;0 +20260211 203200;208.751000;208.775000;208.733000;208.761000;0 +20260211 203300;208.761000;208.772000;208.748000;208.771000;0 +20260211 203400;208.768000;208.782000;208.766000;208.782000;0 +20260211 203500;208.780000;208.785000;208.729000;208.732000;0 +20260211 203600;208.730000;208.776000;208.730000;208.751000;0 +20260211 203700;208.754000;208.758000;208.694000;208.712000;0 +20260211 203800;208.715000;208.715000;208.625000;208.655000;0 +20260211 203900;208.653000;208.656000;208.532000;208.554000;0 +20260211 204000;208.555000;208.569000;208.525000;208.550000;0 +20260211 204100;208.552000;208.561000;208.478000;208.489000;0 +20260211 204200;208.487000;208.536000;208.432000;208.484000;0 +20260211 204300;208.480000;208.536000;208.469000;208.532000;0 +20260211 204400;208.533000;208.555000;208.524000;208.545000;0 +20260211 204500;208.544000;208.544000;208.496000;208.497000;0 +20260211 204600;208.498000;208.546000;208.495000;208.523000;0 +20260211 204700;208.525000;208.546000;208.512000;208.533000;0 +20260211 204800;208.533000;208.587000;208.509000;208.584000;0 +20260211 204900;208.584000;208.604000;208.551000;208.567000;0 +20260211 205000;208.565000;208.582000;208.524000;208.531000;0 +20260211 205100;208.530000;208.567000;208.530000;208.567000;0 +20260211 205200;208.567000;208.568000;208.455000;208.475000;0 +20260211 205300;208.478000;208.493000;208.456000;208.459000;0 +20260211 205400;208.459000;208.460000;208.341000;208.348000;0 +20260211 205500;208.348000;208.394000;208.347000;208.372000;0 +20260211 205600;208.370000;208.418000;208.350000;208.365000;0 +20260211 205700;208.363000;208.429000;208.362000;208.429000;0 +20260211 205800;208.428000;208.454000;208.387000;208.454000;0 +20260211 205900;208.454000;208.497000;208.450000;208.485000;0 +20260211 210000;208.485000;208.522000;208.485000;208.509000;0 +20260211 210100;208.509000;208.525000;208.503000;208.512000;0 +20260211 210200;208.511000;208.511000;208.424000;208.425000;0 +20260211 210300;208.425000;208.428000;208.351000;208.396000;0 +20260211 210400;208.395000;208.400000;208.273000;208.304000;0 +20260211 210500;208.303000;208.311000;208.248000;208.296000;0 +20260211 210600;208.297000;208.340000;208.262000;208.262000;0 +20260211 210700;208.263000;208.338000;208.263000;208.337000;0 +20260211 210800;208.335000;208.347000;208.308000;208.342000;0 +20260211 210900;208.343000;208.353000;208.289000;208.295000;0 +20260211 211000;208.295000;208.305000;208.276000;208.289000;0 +20260211 211100;208.287000;208.309000;208.225000;208.240000;0 +20260211 211200;208.240000;208.262000;208.221000;208.255000;0 +20260211 211300;208.256000;208.279000;208.222000;208.240000;0 +20260211 211400;208.240000;208.262000;208.226000;208.235000;0 +20260211 211500;208.236000;208.240000;208.196000;208.197000;0 +20260211 211600;208.193000;208.220000;208.190000;208.192000;0 +20260211 211700;208.194000;208.201000;208.167000;208.176000;0 +20260211 211800;208.177000;208.208000;208.163000;208.196000;0 +20260211 211900;208.194000;208.203000;208.174000;208.199000;0 +20260211 212000;208.199000;208.228000;208.195000;208.211000;0 +20260211 212100;208.212000;208.259000;208.211000;208.246000;0 +20260211 212200;208.247000;208.303000;208.234000;208.288000;0 +20260211 212300;208.298000;208.298000;208.242000;208.242000;0 +20260211 212400;208.242000;208.286000;208.234000;208.263000;0 +20260211 212500;208.248000;208.248000;208.212000;208.235000;0 +20260211 212600;208.224000;208.269000;208.224000;208.258000;0 +20260211 212700;208.259000;208.259000;208.231000;208.255000;0 +20260211 212800;208.256000;208.272000;208.249000;208.264000;0 +20260211 212900;208.266000;208.266000;208.228000;208.228000;0 +20260211 213000;208.232000;208.240000;208.204000;208.204000;0 +20260211 213100;208.208000;208.210000;208.135000;208.135000;0 +20260211 213200;208.136000;208.187000;208.119000;208.121000;0 +20260211 213300;208.121000;208.146000;208.092000;208.108000;0 +20260211 213400;208.108000;208.164000;208.108000;208.152000;0 +20260211 213500;208.153000;208.182000;208.147000;208.154000;0 +20260211 213600;208.154000;208.154000;208.119000;208.125000;0 +20260211 213700;208.124000;208.145000;208.118000;208.126000;0 +20260211 213800;208.125000;208.130000;208.086000;208.127000;0 +20260211 213900;208.123000;208.123000;208.092000;208.114000;0 +20260211 214000;208.113000;208.123000;208.108000;208.122000;0 +20260211 214100;208.124000;208.152000;208.119000;208.145000;0 +20260211 214200;208.149000;208.149000;208.136000;208.142000;0 +20260211 214300;208.143000;208.156000;208.141000;208.150000;0 +20260211 214400;208.149000;208.161000;208.119000;208.161000;0 +20260211 214500;208.160000;208.161000;208.149000;208.152000;0 +20260211 214600;208.153000;208.166000;208.143000;208.153000;0 +20260211 214700;208.153000;208.160000;208.148000;208.154000;0 +20260211 214800;208.163000;208.167000;208.140000;208.142000;0 +20260211 214900;208.136000;208.177000;208.135000;208.168000;0 +20260211 215000;208.169000;208.175000;208.152000;208.165000;0 +20260211 215100;208.166000;208.166000;208.144000;208.164000;0 +20260211 215200;208.161000;208.196000;208.157000;208.196000;0 +20260211 215300;208.187000;208.190000;208.097000;208.107000;0 +20260211 215400;208.107000;208.110000;208.069000;208.076000;0 +20260211 215500;208.076000;208.089000;208.035000;208.065000;0 +20260211 215600;208.064000;208.080000;208.044000;208.059000;0 +20260211 215700;208.060000;208.073000;208.031000;208.031000;0 +20260211 215800;208.030000;208.049000;208.005000;208.009000;0 +20260211 215900;208.005000;208.017000;207.953000;207.989000;0 +20260211 220000;207.991000;207.991000;207.873000;207.878000;0 +20260211 220100;207.882000;207.904000;207.831000;207.855000;0 +20260211 220200;207.845000;207.853000;207.825000;207.833000;0 +20260211 220300;207.829000;207.830000;207.760000;207.762000;0 +20260211 220400;207.762000;207.852000;207.752000;207.845000;0 +20260211 220500;207.862000;207.876000;207.797000;207.821000;0 +20260211 220600;207.821000;207.873000;207.790000;207.869000;0 +20260211 220700;207.869000;207.870000;207.818000;207.821000;0 +20260211 220800;207.810000;207.869000;207.787000;207.867000;0 +20260211 220900;207.867000;207.870000;207.820000;207.830000;0 +20260211 221000;207.834000;207.834000;207.772000;207.778000;0 +20260211 221100;207.775000;207.796000;207.737000;207.737000;0 +20260211 221200;207.743000;207.809000;207.720000;207.806000;0 +20260211 221300;207.805000;207.811000;207.772000;207.796000;0 +20260211 221400;207.798000;207.801000;207.755000;207.759000;0 +20260211 221500;207.757000;207.760000;207.724000;207.739000;0 +20260211 221600;207.739000;207.777000;207.708000;207.769000;0 +20260211 221700;207.770000;207.792000;207.739000;207.747000;0 +20260211 221800;207.748000;207.755000;207.726000;207.748000;0 +20260211 221900;207.748000;207.748000;207.691000;207.702000;0 +20260211 222000;207.702000;207.719000;207.681000;207.719000;0 +20260211 222100;207.720000;207.744000;207.719000;207.730000;0 +20260211 222200;207.730000;207.764000;207.722000;207.764000;0 +20260211 222300;207.765000;207.776000;207.735000;207.744000;0 +20260211 222400;207.744000;207.782000;207.737000;207.753000;0 +20260211 222500;207.752000;207.768000;207.735000;207.757000;0 +20260211 222600;207.757000;207.764000;207.724000;207.726000;0 +20260211 222700;207.727000;207.743000;207.710000;207.738000;0 +20260211 222800;207.743000;207.774000;207.739000;207.762000;0 +20260211 222900;207.762000;207.797000;207.759000;207.793000;0 +20260211 223000;207.794000;207.815000;207.754000;207.754000;0 +20260211 223100;207.754000;207.761000;207.725000;207.730000;0 +20260211 223200;207.731000;207.731000;207.693000;207.714000;0 +20260211 223300;207.711000;207.740000;207.711000;207.717000;0 +20260211 223400;207.719000;207.733000;207.704000;207.707000;0 +20260211 223500;207.705000;207.714000;207.662000;207.683000;0 +20260211 223600;207.683000;207.703000;207.683000;207.700000;0 +20260211 223700;207.697000;207.733000;207.695000;207.701000;0 +20260211 223800;207.700000;207.707000;207.652000;207.654000;0 +20260211 223900;207.656000;207.714000;207.630000;207.713000;0 +20260211 224000;207.711000;207.721000;207.674000;207.704000;0 +20260211 224100;207.700000;207.726000;207.682000;207.701000;0 +20260211 224200;207.702000;207.766000;207.698000;207.764000;0 +20260211 224300;207.764000;207.815000;207.763000;207.808000;0 +20260211 224400;207.810000;207.840000;207.810000;207.840000;0 +20260211 224500;207.837000;207.879000;207.836000;207.851000;0 +20260211 224600;207.851000;207.851000;207.815000;207.830000;0 +20260211 224700;207.837000;207.844000;207.812000;207.834000;0 +20260211 224800;207.836000;207.881000;207.836000;207.875000;0 +20260211 224900;207.877000;207.900000;207.863000;207.898000;0 +20260211 225000;207.897000;207.914000;207.877000;207.891000;0 +20260211 225100;207.891000;207.944000;207.888000;207.944000;0 +20260211 225200;207.941000;207.941000;207.907000;207.913000;0 +20260211 225300;207.911000;208.010000;207.905000;208.006000;0 +20260211 225400;208.007000;208.007000;207.977000;207.984000;0 +20260211 225500;207.987000;208.013000;207.975000;207.994000;0 +20260211 225600;207.993000;208.003000;207.976000;208.003000;0 +20260211 225700;208.002000;208.003000;207.961000;207.965000;0 +20260211 225800;207.965000;207.983000;207.950000;207.972000;0 +20260211 225900;207.969000;207.985000;207.962000;207.962000;0 +20260211 230000;207.960000;207.964000;207.899000;207.900000;0 +20260211 230100;207.902000;207.956000;207.901000;207.927000;0 +20260211 230200;207.926000;207.929000;207.892000;207.896000;0 +20260211 230300;207.894000;207.909000;207.875000;207.877000;0 +20260211 230400;207.878000;207.884000;207.858000;207.879000;0 +20260211 230500;207.882000;207.942000;207.879000;207.932000;0 +20260211 230600;207.934000;207.961000;207.909000;207.914000;0 +20260211 230700;207.915000;207.919000;207.800000;207.809000;0 +20260211 230800;207.811000;207.842000;207.803000;207.821000;0 +20260211 230900;207.821000;207.839000;207.817000;207.827000;0 +20260211 231000;207.829000;207.880000;207.827000;207.853000;0 +20260211 231100;207.853000;207.865000;207.784000;207.784000;0 +20260211 231200;207.782000;207.800000;207.782000;207.795000;0 +20260211 231300;207.792000;207.830000;207.785000;207.823000;0 +20260211 231400;207.817000;207.847000;207.815000;207.846000;0 +20260211 231500;207.851000;207.894000;207.838000;207.859000;0 +20260211 231600;207.857000;207.875000;207.844000;207.870000;0 +20260211 231700;207.871000;207.880000;207.819000;207.820000;0 +20260211 231800;207.822000;207.839000;207.807000;207.828000;0 +20260211 231900;207.825000;207.830000;207.797000;207.799000;0 +20260211 232000;207.797000;207.812000;207.786000;207.807000;0 +20260211 232100;207.806000;207.809000;207.797000;207.797000;0 +20260211 232200;207.799000;207.839000;207.797000;207.839000;0 +20260211 232300;207.848000;207.848000;207.802000;207.806000;0 +20260211 232400;207.806000;207.820000;207.776000;207.793000;0 +20260211 232500;207.787000;207.818000;207.785000;207.811000;0 +20260211 232600;207.812000;207.852000;207.810000;207.831000;0 +20260211 232700;207.831000;207.943000;207.830000;207.940000;0 +20260211 232800;207.940000;208.008000;207.932000;207.960000;0 +20260211 232900;207.958000;207.980000;207.930000;207.954000;0 +20260211 233000;207.947000;207.956000;207.910000;207.948000;0 +20260211 233100;207.946000;207.967000;207.918000;207.919000;0 +20260211 233200;207.918000;207.929000;207.871000;207.890000;0 +20260211 233300;207.890000;207.914000;207.867000;207.912000;0 +20260211 233400;207.913000;207.929000;207.907000;207.908000;0 +20260211 233500;207.905000;207.910000;207.884000;207.907000;0 +20260211 233600;207.905000;207.929000;207.905000;207.912000;0 +20260211 233700;207.909000;207.926000;207.909000;207.920000;0 +20260211 233800;207.924000;207.949000;207.923000;207.938000;0 +20260211 233900;207.936000;207.956000;207.926000;207.942000;0 +20260211 234000;207.942000;207.963000;207.931000;207.943000;0 +20260211 234100;207.944000;207.977000;207.944000;207.974000;0 +20260211 234200;207.973000;208.023000;207.968000;208.023000;0 +20260211 234300;208.035000;208.061000;208.024000;208.060000;0 +20260211 234400;208.060000;208.085000;208.042000;208.059000;0 +20260211 234500;208.060000;208.077000;208.042000;208.048000;0 +20260211 234600;208.047000;208.051000;208.020000;208.050000;0 +20260211 234700;208.050000;208.090000;208.050000;208.064000;0 +20260211 234800;208.066000;208.084000;208.014000;208.070000;0 +20260211 234900;208.070000;208.096000;208.050000;208.065000;0 +20260211 235000;208.066000;208.097000;208.058000;208.096000;0 +20260211 235100;208.097000;208.138000;208.083000;208.130000;0 +20260211 235200;208.129000;208.133000;208.093000;208.114000;0 +20260211 235300;208.114000;208.134000;208.104000;208.129000;0 +20260211 235400;208.130000;208.184000;208.125000;208.177000;0 +20260211 235500;208.178000;208.217000;208.174000;208.187000;0 +20260211 235600;208.187000;208.206000;208.164000;208.206000;0 +20260211 235700;208.203000;208.208000;208.166000;208.186000;0 +20260211 235800;208.186000;208.238000;208.180000;208.220000;0 +20260211 235900;208.223000;208.252000;208.222000;208.252000;0 +20260212 000000;208.252000;208.269000;208.224000;208.245000;0 +20260212 000100;208.253000;208.275000;208.244000;208.272000;0 +20260212 000200;208.271000;208.279000;208.246000;208.268000;0 +20260212 000300;208.268000;208.278000;208.253000;208.268000;0 +20260212 000400;208.269000;208.281000;208.230000;208.269000;0 +20260212 000500;208.267000;208.285000;208.249000;208.253000;0 +20260212 000600;208.253000;208.279000;208.247000;208.263000;0 +20260212 000700;208.260000;208.299000;208.256000;208.291000;0 +20260212 000800;208.291000;208.346000;208.291000;208.345000;0 +20260212 000900;208.345000;208.359000;208.308000;208.321000;0 +20260212 001000;208.329000;208.375000;208.320000;208.356000;0 +20260212 001100;208.354000;208.371000;208.326000;208.367000;0 +20260212 001200;208.369000;208.373000;208.341000;208.350000;0 +20260212 001300;208.354000;208.355000;208.278000;208.278000;0 +20260212 001400;208.279000;208.361000;208.278000;208.341000;0 +20260212 001500;208.347000;208.355000;208.340000;208.341000;0 +20260212 001600;208.340000;208.357000;208.328000;208.357000;0 +20260212 001700;208.351000;208.353000;208.304000;208.305000;0 +20260212 001800;208.307000;208.344000;208.307000;208.325000;0 +20260212 001900;208.326000;208.332000;208.302000;208.308000;0 +20260212 002000;208.309000;208.361000;208.307000;208.359000;0 +20260212 002100;208.360000;208.374000;208.347000;208.361000;0 +20260212 002200;208.362000;208.366000;208.341000;208.345000;0 +20260212 002300;208.346000;208.410000;208.338000;208.410000;0 +20260212 002400;208.412000;208.427000;208.376000;208.380000;0 +20260212 002500;208.381000;208.412000;208.372000;208.402000;0 +20260212 002600;208.400000;208.400000;208.365000;208.384000;0 +20260212 002700;208.383000;208.409000;208.374000;208.394000;0 +20260212 002800;208.395000;208.462000;208.395000;208.435000;0 +20260212 002900;208.434000;208.470000;208.426000;208.467000;0 +20260212 003000;208.467000;208.467000;208.430000;208.450000;0 +20260212 003100;208.450000;208.458000;208.420000;208.454000;0 +20260212 003200;208.455000;208.487000;208.438000;208.487000;0 +20260212 003300;208.487000;208.509000;208.470000;208.478000;0 +20260212 003400;208.477000;208.492000;208.464000;208.482000;0 +20260212 003500;208.480000;208.526000;208.471000;208.480000;0 +20260212 003600;208.480000;208.509000;208.454000;208.497000;0 +20260212 003700;208.495000;208.560000;208.486000;208.559000;0 +20260212 003800;208.560000;208.572000;208.524000;208.558000;0 +20260212 003900;208.560000;208.582000;208.543000;208.582000;0 +20260212 004000;208.585000;208.614000;208.570000;208.601000;0 +20260212 004100;208.601000;208.623000;208.588000;208.621000;0 +20260212 004200;208.621000;208.623000;208.586000;208.587000;0 +20260212 004300;208.587000;208.587000;208.556000;208.567000;0 +20260212 004400;208.567000;208.597000;208.564000;208.580000;0 +20260212 004500;208.580000;208.580000;208.527000;208.554000;0 +20260212 004600;208.554000;208.558000;208.528000;208.542000;0 +20260212 004700;208.542000;208.557000;208.521000;208.545000;0 +20260212 004800;208.536000;208.549000;208.486000;208.489000;0 +20260212 004900;208.492000;208.530000;208.492000;208.530000;0 +20260212 005000;208.529000;208.572000;208.527000;208.570000;0 +20260212 005100;208.574000;208.586000;208.557000;208.557000;0 +20260212 005200;208.555000;208.563000;208.537000;208.537000;0 +20260212 005300;208.534000;208.539000;208.460000;208.485000;0 +20260212 005400;208.486000;208.494000;208.476000;208.489000;0 +20260212 005500;208.492000;208.514000;208.479000;208.479000;0 +20260212 005600;208.478000;208.518000;208.475000;208.504000;0 +20260212 005700;208.500000;208.501000;208.467000;208.484000;0 +20260212 005800;208.485000;208.505000;208.467000;208.505000;0 +20260212 005900;208.501000;208.554000;208.500000;208.551000;0 +20260212 010000;208.552000;208.555000;208.516000;208.518000;0 +20260212 010100;208.521000;208.527000;208.429000;208.453000;0 +20260212 010200;208.451000;208.453000;208.409000;208.411000;0 +20260212 010300;208.412000;208.469000;208.408000;208.465000;0 +20260212 010400;208.463000;208.468000;208.447000;208.448000;0 +20260212 010500;208.457000;208.553000;208.449000;208.529000;0 +20260212 010600;208.525000;208.528000;208.444000;208.454000;0 +20260212 010700;208.453000;208.459000;208.411000;208.414000;0 +20260212 010800;208.416000;208.438000;208.414000;208.426000;0 +20260212 010900;208.428000;208.450000;208.408000;208.450000;0 +20260212 011000;208.449000;208.464000;208.442000;208.450000;0 +20260212 011100;208.451000;208.451000;208.418000;208.427000;0 +20260212 011200;208.427000;208.430000;208.375000;208.406000;0 +20260212 011300;208.404000;208.441000;208.378000;208.425000;0 +20260212 011400;208.424000;208.534000;208.424000;208.530000;0 +20260212 011500;208.529000;208.715000;208.503000;208.645000;0 +20260212 011600;208.644000;208.744000;208.555000;208.742000;0 +20260212 011700;208.740000;208.897000;208.734000;208.739000;0 +20260212 011800;208.738000;208.780000;208.708000;208.725000;0 +20260212 011900;208.726000;208.915000;208.651000;208.807000;0 +20260212 012000;208.808000;208.851000;208.718000;208.737000;0 +20260212 012100;208.735000;208.751000;208.686000;208.709000;0 +20260212 012200;208.710000;208.736000;208.666000;208.685000;0 +20260212 012300;208.695000;208.711000;208.678000;208.682000;0 +20260212 012400;208.678000;208.709000;208.659000;208.680000;0 +20260212 012500;208.682000;208.686000;208.647000;208.669000;0 +20260212 012600;208.666000;208.718000;208.643000;208.707000;0 +20260212 012700;208.708000;208.792000;208.697000;208.771000;0 +20260212 012800;208.771000;208.781000;208.743000;208.774000;0 +20260212 012900;208.773000;208.853000;208.745000;208.843000;0 +20260212 013000;208.847000;208.867000;208.785000;208.806000;0 +20260212 013100;208.808000;208.826000;208.736000;208.789000;0 +20260212 013200;208.788000;208.824000;208.770000;208.783000;0 +20260212 013300;208.778000;208.825000;208.770000;208.809000;0 +20260212 013400;208.806000;208.827000;208.770000;208.792000;0 +20260212 013500;208.788000;208.890000;208.770000;208.861000;0 +20260212 013600;208.855000;208.926000;208.835000;208.923000;0 +20260212 013700;208.924000;208.929000;208.870000;208.895000;0 +20260212 013800;208.895000;208.895000;208.698000;208.710000;0 +20260212 013900;208.708000;208.747000;208.694000;208.736000;0 +20260212 014000;208.733000;208.751000;208.696000;208.705000;0 +20260212 014100;208.704000;208.706000;208.389000;208.700000;0 +20260212 014200;208.701000;208.713000;208.623000;208.683000;0 +20260212 014300;208.683000;208.750000;208.644000;208.747000;0 +20260212 014400;208.744000;208.751000;208.685000;208.708000;0 +20260212 014500;208.711000;208.951000;208.701000;208.843000;0 +20260212 014600;208.843000;208.870000;208.791000;208.791000;0 +20260212 014700;208.792000;208.830000;208.781000;208.784000;0 +20260212 014800;208.779000;208.815000;208.777000;208.792000;0 +20260212 014900;208.794000;208.815000;208.761000;208.785000;0 +20260212 015000;208.782000;208.782000;208.709000;208.749000;0 +20260212 015100;208.749000;208.749000;208.685000;208.697000;0 +20260212 015200;208.695000;208.707000;208.653000;208.681000;0 +20260212 015300;208.678000;208.699000;208.670000;208.698000;0 +20260212 015400;208.688000;208.716000;208.677000;208.716000;0 +20260212 015500;208.709000;208.730000;208.668000;208.673000;0 +20260212 015600;208.671000;208.697000;208.664000;208.673000;0 +20260212 015700;208.675000;208.719000;208.664000;208.691000;0 +20260212 015800;208.695000;208.740000;208.695000;208.739000;0 +20260212 015900;208.735000;208.774000;208.720000;208.748000;0 +20260212 020000;208.749000;208.778000;208.684000;208.700000;0 +20260212 020100;208.692000;208.708000;208.663000;208.692000;0 +20260212 020200;208.688000;208.708000;208.629000;208.636000;0 +20260212 020300;208.632000;208.660000;208.623000;208.644000;0 +20260212 020400;208.644000;208.667000;208.598000;208.661000;0 +20260212 020500;208.655000;208.665000;208.593000;208.602000;0 +20260212 020600;208.604000;208.650000;208.604000;208.626000;0 +20260212 020700;208.627000;208.638000;208.562000;208.583000;0 +20260212 020800;208.588000;208.617000;208.562000;208.567000;0 +20260212 020900;208.569000;208.611000;208.552000;208.590000;0 +20260212 021000;208.591000;208.606000;208.572000;208.597000;0 +20260212 021100;208.597000;208.598000;208.526000;208.543000;0 +20260212 021200;208.542000;208.551000;208.510000;208.512000;0 +20260212 021300;208.508000;208.514000;208.472000;208.479000;0 +20260212 021400;208.484000;208.514000;208.470000;208.514000;0 +20260212 021500;208.516000;208.520000;208.501000;208.516000;0 +20260212 021600;208.514000;208.517000;208.471000;208.499000;0 +20260212 021700;208.500000;208.524000;208.485000;208.517000;0 +20260212 021800;208.518000;208.550000;208.496000;208.547000;0 +20260212 021900;208.548000;208.565000;208.510000;208.513000;0 +20260212 022000;208.512000;208.565000;208.512000;208.564000;0 +20260212 022100;208.568000;208.592000;208.556000;208.578000;0 +20260212 022200;208.581000;208.617000;208.572000;208.599000;0 +20260212 022300;208.601000;208.642000;208.561000;208.628000;0 +20260212 022400;208.623000;208.658000;208.621000;208.627000;0 +20260212 022500;208.629000;208.662000;208.609000;208.613000;0 +20260212 022600;208.616000;208.617000;208.554000;208.568000;0 +20260212 022700;208.568000;208.602000;208.536000;208.596000;0 +20260212 022800;208.598000;208.654000;208.589000;208.650000;0 +20260212 022900;208.649000;208.668000;208.585000;208.585000;0 +20260212 023000;208.583000;208.629000;208.564000;208.577000;0 +20260212 023100;208.573000;208.587000;208.521000;208.550000;0 +20260212 023200;208.552000;208.582000;208.538000;208.545000;0 +20260212 023300;208.544000;208.546000;208.467000;208.477000;0 +20260212 023400;208.480000;208.490000;208.451000;208.453000;0 +20260212 023500;208.455000;208.463000;208.380000;208.416000;0 +20260212 023600;208.416000;208.432000;208.409000;208.424000;0 +20260212 023700;208.426000;208.500000;208.404000;208.489000;0 +20260212 023800;208.498000;208.522000;208.476000;208.492000;0 +20260212 023900;208.492000;208.548000;208.492000;208.526000;0 +20260212 024000;208.528000;208.592000;208.528000;208.562000;0 +20260212 024100;208.563000;208.610000;208.562000;208.590000;0 +20260212 024200;208.588000;208.589000;208.551000;208.576000;0 +20260212 024300;208.577000;208.581000;208.558000;208.566000;0 +20260212 024400;208.567000;208.586000;208.552000;208.586000;0 +20260212 024500;208.588000;208.639000;208.584000;208.628000;0 +20260212 024600;208.627000;208.664000;208.620000;208.646000;0 +20260212 024700;208.647000;208.650000;208.599000;208.602000;0 +20260212 024800;208.597000;208.609000;208.568000;208.578000;0 +20260212 024900;208.577000;208.616000;208.545000;208.612000;0 +20260212 025000;208.615000;208.633000;208.586000;208.596000;0 +20260212 025100;208.597000;208.600000;208.549000;208.569000;0 +20260212 025200;208.570000;208.696000;208.569000;208.694000;0 +20260212 025300;208.696000;208.720000;208.672000;208.676000;0 +20260212 025400;208.675000;208.708000;208.674000;208.684000;0 +20260212 025500;208.682000;208.702000;208.673000;208.675000;0 +20260212 025600;208.671000;208.717000;208.657000;208.717000;0 +20260212 025700;208.712000;208.717000;208.655000;208.667000;0 +20260212 025800;208.669000;208.701000;208.667000;208.668000;0 +20260212 025900;208.671000;208.671000;208.613000;208.621000;0 +20260212 030000;208.620000;208.654000;208.598000;208.613000;0 +20260212 030100;208.610000;208.637000;208.558000;208.628000;0 +20260212 030200;208.630000;208.632000;208.578000;208.606000;0 +20260212 030300;208.604000;208.605000;208.550000;208.584000;0 +20260212 030400;208.585000;208.589000;208.540000;208.549000;0 +20260212 030500;208.549000;208.549000;208.461000;208.468000;0 +20260212 030600;208.467000;208.475000;208.390000;208.397000;0 +20260212 030700;208.390000;208.464000;208.385000;208.463000;0 +20260212 030800;208.458000;208.464000;208.424000;208.451000;0 +20260212 030900;208.449000;208.456000;208.419000;208.431000;0 +20260212 031000;208.428000;208.496000;208.411000;208.476000;0 +20260212 031100;208.475000;208.494000;208.455000;208.483000;0 +20260212 031200;208.484000;208.496000;208.437000;208.451000;0 +20260212 031300;208.449000;208.500000;208.447000;208.500000;0 +20260212 031400;208.505000;208.510000;208.456000;208.482000;0 +20260212 031500;208.482000;208.547000;208.457000;208.543000;0 +20260212 031600;208.543000;208.581000;208.523000;208.569000;0 +20260212 031700;208.570000;208.613000;208.570000;208.592000;0 +20260212 031800;208.585000;208.603000;208.533000;208.533000;0 +20260212 031900;208.534000;208.548000;208.517000;208.529000;0 +20260212 032000;208.528000;208.536000;208.491000;208.491000;0 +20260212 032100;208.494000;208.500000;208.471000;208.489000;0 +20260212 032200;208.489000;208.490000;208.442000;208.447000;0 +20260212 032300;208.446000;208.467000;208.433000;208.436000;0 +20260212 032400;208.436000;208.464000;208.431000;208.450000;0 +20260212 032500;208.451000;208.501000;208.437000;208.501000;0 +20260212 032600;208.492000;208.526000;208.477000;208.524000;0 +20260212 032700;208.526000;208.541000;208.507000;208.519000;0 +20260212 032800;208.518000;208.554000;208.508000;208.550000;0 +20260212 032900;208.551000;208.597000;208.537000;208.587000;0 +20260212 033000;208.588000;208.609000;208.572000;208.593000;0 +20260212 033100;208.592000;208.602000;208.534000;208.537000;0 +20260212 033200;208.534000;208.551000;208.514000;208.547000;0 +20260212 033300;208.546000;208.607000;208.539000;208.606000;0 +20260212 033400;208.607000;208.633000;208.590000;208.597000;0 +20260212 033500;208.598000;208.613000;208.580000;208.582000;0 +20260212 033600;208.580000;208.595000;208.556000;208.591000;0 +20260212 033700;208.591000;208.643000;208.588000;208.628000;0 +20260212 033800;208.639000;208.643000;208.616000;208.631000;0 +20260212 033900;208.624000;208.626000;208.564000;208.572000;0 +20260212 034000;208.573000;208.595000;208.552000;208.595000;0 +20260212 034100;208.592000;208.617000;208.589000;208.590000;0 +20260212 034200;208.589000;208.596000;208.549000;208.549000;0 +20260212 034300;208.549000;208.571000;208.533000;208.551000;0 +20260212 034400;208.551000;208.585000;208.528000;208.544000;0 +20260212 034500;208.546000;208.573000;208.531000;208.571000;0 +20260212 034600;208.569000;208.586000;208.551000;208.558000;0 +20260212 034700;208.556000;208.570000;208.542000;208.567000;0 +20260212 034800;208.567000;208.568000;208.521000;208.526000;0 +20260212 034900;208.526000;208.544000;208.435000;208.450000;0 +20260212 035000;208.445000;208.494000;208.407000;208.416000;0 +20260212 035100;208.417000;208.430000;208.390000;208.392000;0 +20260212 035200;208.391000;208.460000;208.389000;208.451000;0 +20260212 035300;208.452000;208.470000;208.441000;208.470000;0 +20260212 035400;208.470000;208.475000;208.419000;208.425000;0 +20260212 035500;208.428000;208.487000;208.428000;208.449000;0 +20260212 035600;208.451000;208.483000;208.451000;208.476000;0 +20260212 035700;208.475000;208.500000;208.452000;208.466000;0 +20260212 035800;208.467000;208.526000;208.460000;208.525000;0 +20260212 035900;208.525000;208.543000;208.508000;208.532000;0 +20260212 040000;208.532000;208.552000;208.496000;208.512000;0 +20260212 040100;208.510000;208.557000;208.508000;208.539000;0 +20260212 040200;208.539000;208.544000;208.482000;208.484000;0 +20260212 040300;208.484000;208.537000;208.481000;208.530000;0 +20260212 040400;208.536000;208.601000;208.534000;208.589000;0 +20260212 040500;208.589000;208.612000;208.526000;208.536000;0 +20260212 040600;208.534000;208.575000;208.533000;208.573000;0 +20260212 040700;208.564000;208.584000;208.542000;208.546000;0 +20260212 040800;208.545000;208.613000;208.540000;208.613000;0 +20260212 040900;208.615000;208.645000;208.593000;208.597000;0 +20260212 041000;208.598000;208.619000;208.568000;208.578000;0 +20260212 041100;208.579000;208.595000;208.536000;208.569000;0 +20260212 041200;208.567000;208.572000;208.539000;208.545000;0 +20260212 041300;208.545000;208.600000;208.542000;208.574000;0 +20260212 041400;208.574000;208.617000;208.567000;208.616000;0 +20260212 041500;208.616000;208.627000;208.585000;208.625000;0 +20260212 041600;208.624000;208.650000;208.609000;208.632000;0 +20260212 041700;208.633000;208.665000;208.633000;208.661000;0 +20260212 041800;208.662000;208.731000;208.659000;208.665000;0 +20260212 041900;208.665000;208.711000;208.665000;208.707000;0 +20260212 042000;208.707000;208.774000;208.705000;208.720000;0 +20260212 042100;208.717000;208.760000;208.708000;208.741000;0 +20260212 042200;208.742000;208.747000;208.692000;208.699000;0 +20260212 042300;208.700000;208.707000;208.684000;208.697000;0 +20260212 042400;208.695000;208.717000;208.680000;208.684000;0 +20260212 042500;208.686000;208.735000;208.679000;208.730000;0 +20260212 042600;208.731000;208.756000;208.711000;208.734000;0 +20260212 042700;208.738000;208.770000;208.715000;208.718000;0 +20260212 042800;208.715000;208.734000;208.675000;208.706000;0 +20260212 042900;208.705000;208.731000;208.696000;208.719000;0 +20260212 043000;208.719000;208.728000;208.694000;208.707000;0 +20260212 043100;208.716000;208.776000;208.716000;208.773000;0 +20260212 043200;208.776000;208.800000;208.757000;208.786000;0 +20260212 043300;208.784000;208.828000;208.748000;208.821000;0 +20260212 043400;208.820000;208.833000;208.804000;208.830000;0 +20260212 043500;208.829000;208.832000;208.811000;208.818000;0 +20260212 043600;208.818000;208.831000;208.789000;208.811000;0 +20260212 043700;208.807000;208.807000;208.754000;208.766000;0 +20260212 043800;208.769000;208.787000;208.755000;208.773000;0 +20260212 043900;208.771000;208.791000;208.750000;208.790000;0 +20260212 044000;208.794000;208.796000;208.757000;208.759000;0 +20260212 044100;208.757000;208.777000;208.746000;208.759000;0 +20260212 044200;208.756000;208.758000;208.720000;208.724000;0 +20260212 044300;208.723000;208.727000;208.704000;208.716000;0 +20260212 044400;208.712000;208.715000;208.654000;208.668000;0 +20260212 044500;208.670000;208.677000;208.645000;208.662000;0 +20260212 044600;208.664000;208.680000;208.653000;208.673000;0 +20260212 044700;208.674000;208.691000;208.661000;208.689000;0 +20260212 044800;208.689000;208.689000;208.625000;208.631000;0 +20260212 044900;208.628000;208.649000;208.623000;208.635000;0 +20260212 045000;208.634000;208.667000;208.634000;208.667000;0 +20260212 045100;208.665000;208.665000;208.635000;208.652000;0 +20260212 045200;208.651000;208.655000;208.634000;208.651000;0 +20260212 045300;208.653000;208.667000;208.646000;208.653000;0 +20260212 045400;208.652000;208.681000;208.651000;208.681000;0 +20260212 045500;208.677000;208.680000;208.669000;208.671000;0 +20260212 045600;208.671000;208.677000;208.643000;208.664000;0 +20260212 045700;208.663000;208.677000;208.661000;208.666000;0 +20260212 045800;208.666000;208.692000;208.647000;208.690000;0 +20260212 045900;208.688000;208.718000;208.669000;208.703000;0 +20260212 050000;208.701000;208.721000;208.698000;208.705000;0 +20260212 050100;208.704000;208.709000;208.685000;208.697000;0 +20260212 050200;208.692000;208.705000;208.686000;208.700000;0 +20260212 050300;208.710000;208.724000;208.695000;208.710000;0 +20260212 050400;208.710000;208.765000;208.694000;208.707000;0 +20260212 050500;208.704000;208.734000;208.675000;208.699000;0 +20260212 050600;208.697000;208.732000;208.671000;208.732000;0 +20260212 050700;208.731000;208.731000;208.694000;208.698000;0 +20260212 050800;208.700000;208.711000;208.655000;208.660000;0 +20260212 050900;208.660000;208.664000;208.641000;208.641000;0 +20260212 051000;208.645000;208.673000;208.621000;208.669000;0 +20260212 051100;208.665000;208.678000;208.652000;208.675000;0 +20260212 051200;208.675000;208.686000;208.622000;208.622000;0 +20260212 051300;208.625000;208.676000;208.619000;208.676000;0 +20260212 051400;208.678000;208.758000;208.675000;208.757000;0 +20260212 051500;208.760000;208.772000;208.736000;208.761000;0 +20260212 051600;208.759000;208.813000;208.758000;208.794000;0 +20260212 051700;208.795000;208.813000;208.776000;208.789000;0 +20260212 051800;208.790000;208.793000;208.768000;208.788000;0 +20260212 051900;208.789000;208.794000;208.773000;208.782000;0 +20260212 052000;208.783000;208.797000;208.735000;208.750000;0 +20260212 052100;208.744000;208.744000;208.687000;208.687000;0 +20260212 052200;208.684000;208.684000;208.616000;208.622000;0 +20260212 052300;208.627000;208.641000;208.620000;208.635000;0 +20260212 052400;208.627000;208.627000;208.594000;208.594000;0 +20260212 052500;208.591000;208.620000;208.588000;208.617000;0 +20260212 052600;208.618000;208.668000;208.611000;208.660000;0 +20260212 052700;208.661000;208.665000;208.638000;208.649000;0 +20260212 052800;208.646000;208.663000;208.640000;208.648000;0 +20260212 052900;208.649000;208.689000;208.647000;208.687000;0 +20260212 053000;208.691000;208.714000;208.665000;208.668000;0 +20260212 053100;208.669000;208.670000;208.619000;208.630000;0 +20260212 053200;208.627000;208.634000;208.606000;208.606000;0 +20260212 053300;208.606000;208.615000;208.590000;208.599000;0 +20260212 053400;208.600000;208.652000;208.598000;208.646000;0 +20260212 053500;208.643000;208.715000;208.633000;208.711000;0 +20260212 053600;208.709000;208.714000;208.676000;208.704000;0 +20260212 053700;208.704000;208.783000;208.704000;208.751000;0 +20260212 053800;208.748000;208.772000;208.741000;208.760000;0 +20260212 053900;208.761000;208.787000;208.739000;208.767000;0 +20260212 054000;208.765000;208.779000;208.734000;208.749000;0 +20260212 054100;208.746000;208.749000;208.730000;208.747000;0 +20260212 054200;208.748000;208.752000;208.728000;208.729000;0 +20260212 054300;208.729000;208.757000;208.681000;208.684000;0 +20260212 054400;208.686000;208.690000;208.665000;208.688000;0 +20260212 054500;208.689000;208.695000;208.682000;208.694000;0 +20260212 054600;208.694000;208.717000;208.694000;208.711000;0 +20260212 054700;208.711000;208.713000;208.680000;208.687000;0 +20260212 054800;208.693000;208.702000;208.672000;208.675000;0 +20260212 054900;208.674000;208.699000;208.664000;208.687000;0 +20260212 055000;208.689000;208.722000;208.685000;208.720000;0 +20260212 055100;208.717000;208.727000;208.709000;208.724000;0 +20260212 055200;208.726000;208.748000;208.726000;208.730000;0 +20260212 055300;208.730000;208.744000;208.713000;208.717000;0 +20260212 055400;208.716000;208.747000;208.710000;208.734000;0 +20260212 055500;208.733000;208.750000;208.724000;208.750000;0 +20260212 055600;208.752000;208.765000;208.742000;208.744000;0 +20260212 055700;208.745000;208.809000;208.745000;208.796000;0 +20260212 055800;208.795000;208.806000;208.783000;208.806000;0 +20260212 055900;208.809000;208.822000;208.788000;208.818000;0 +20260212 060000;208.818000;208.830000;208.791000;208.794000;0 +20260212 060100;208.796000;208.818000;208.792000;208.798000;0 +20260212 060200;208.802000;208.808000;208.771000;208.782000;0 +20260212 060300;208.785000;208.816000;208.785000;208.816000;0 +20260212 060400;208.815000;208.815000;208.787000;208.787000;0 +20260212 060500;208.787000;208.808000;208.785000;208.788000;0 +20260212 060600;208.789000;208.830000;208.788000;208.823000;0 +20260212 060700;208.823000;208.877000;208.823000;208.851000;0 +20260212 060800;208.853000;208.864000;208.849000;208.861000;0 +20260212 060900;208.868000;208.883000;208.848000;208.880000;0 +20260212 061000;208.882000;208.887000;208.869000;208.884000;0 +20260212 061100;208.880000;208.896000;208.875000;208.896000;0 +20260212 061200;208.900000;208.900000;208.873000;208.895000;0 +20260212 061300;208.895000;208.906000;208.889000;208.903000;0 +20260212 061400;208.899000;208.933000;208.899000;208.923000;0 +20260212 061500;208.925000;208.979000;208.915000;208.979000;0 +20260212 061600;208.978000;208.986000;208.950000;208.962000;0 +20260212 061700;208.968000;208.992000;208.959000;208.959000;0 +20260212 061800;208.956000;208.959000;208.939000;208.951000;0 +20260212 061900;208.953000;208.963000;208.931000;208.939000;0 +20260212 062000;208.934000;208.934000;208.891000;208.896000;0 +20260212 062100;208.900000;208.908000;208.887000;208.902000;0 +20260212 062200;208.900000;208.922000;208.893000;208.915000;0 +20260212 062300;208.915000;208.915000;208.886000;208.898000;0 +20260212 062400;208.896000;208.900000;208.859000;208.859000;0 +20260212 062500;208.861000;208.872000;208.840000;208.868000;0 +20260212 062600;208.874000;208.892000;208.869000;208.892000;0 +20260212 062700;208.890000;208.937000;208.890000;208.932000;0 +20260212 062800;208.927000;208.935000;208.905000;208.935000;0 +20260212 062900;208.934000;208.956000;208.932000;208.934000;0 +20260212 063000;208.929000;208.964000;208.925000;208.955000;0 +20260212 063100;208.959000;208.968000;208.944000;208.952000;0 +20260212 063200;208.953000;208.963000;208.943000;208.947000;0 +20260212 063300;208.951000;208.984000;208.949000;208.976000;0 +20260212 063400;208.975000;208.984000;208.957000;208.965000;0 +20260212 063500;208.965000;208.970000;208.950000;208.963000;0 +20260212 063600;208.961000;208.969000;208.958000;208.967000;0 +20260212 063700;208.968000;208.971000;208.940000;208.945000;0 +20260212 063800;208.942000;208.947000;208.936000;208.941000;0 +20260212 063900;208.940000;208.954000;208.914000;208.945000;0 +20260212 064000;208.948000;208.953000;208.937000;208.947000;0 +20260212 064100;208.945000;208.974000;208.916000;208.962000;0 +20260212 064200;208.962000;208.968000;208.923000;208.923000;0 +20260212 064300;208.921000;208.954000;208.921000;208.941000;0 +20260212 064400;208.940000;208.953000;208.928000;208.952000;0 +20260212 064500;208.953000;209.006000;208.953000;209.004000;0 +20260212 064600;209.003000;209.022000;209.003000;209.018000;0 +20260212 064700;209.019000;209.058000;209.017000;209.052000;0 +20260212 064800;209.049000;209.049000;209.024000;209.024000;0 +20260212 064900;209.025000;209.057000;209.024000;209.047000;0 +20260212 065000;209.052000;209.064000;209.043000;209.058000;0 +20260212 065100;209.057000;209.065000;209.026000;209.037000;0 +20260212 065200;209.037000;209.092000;209.037000;209.089000;0 +20260212 065300;209.088000;209.122000;209.079000;209.120000;0 +20260212 065400;209.122000;209.147000;209.111000;209.142000;0 +20260212 065500;209.137000;209.192000;209.137000;209.175000;0 +20260212 065600;209.175000;209.195000;209.164000;209.189000;0 +20260212 065700;209.188000;209.230000;209.179000;209.212000;0 +20260212 065800;209.212000;209.291000;209.210000;209.289000;0 +20260212 065900;209.288000;209.307000;209.240000;209.256000;0 +20260212 070000;209.253000;209.267000;209.241000;209.257000;0 +20260212 070100;209.256000;209.275000;209.247000;209.270000;0 +20260212 070200;209.267000;209.267000;209.211000;209.218000;0 +20260212 070300;209.219000;209.227000;209.209000;209.224000;0 +20260212 070400;209.224000;209.229000;209.214000;209.216000;0 +20260212 070500;209.218000;209.250000;209.195000;209.196000;0 +20260212 070600;209.193000;209.213000;209.191000;209.205000;0 +20260212 070700;209.203000;209.220000;209.196000;209.212000;0 +20260212 070800;209.213000;209.220000;209.203000;209.217000;0 +20260212 070900;209.218000;209.264000;209.218000;209.259000;0 +20260212 071000;209.257000;209.314000;209.257000;209.285000;0 +20260212 071100;209.286000;209.321000;209.282000;209.308000;0 +20260212 071200;209.306000;209.328000;209.289000;209.309000;0 +20260212 071300;209.311000;209.367000;209.309000;209.356000;0 +20260212 071400;209.355000;209.364000;209.339000;209.346000;0 +20260212 071500;209.345000;209.359000;209.317000;209.331000;0 +20260212 071600;209.334000;209.369000;209.326000;209.358000;0 +20260212 071700;209.362000;209.398000;209.362000;209.395000;0 +20260212 071800;209.392000;209.392000;209.349000;209.353000;0 +20260212 071900;209.362000;209.369000;209.345000;209.358000;0 +20260212 072000;209.358000;209.376000;209.347000;209.347000;0 +20260212 072100;209.346000;209.384000;209.343000;209.359000;0 +20260212 072200;209.359000;209.396000;209.351000;209.375000;0 +20260212 072300;209.377000;209.428000;209.372000;209.403000;0 +20260212 072400;209.406000;209.413000;209.391000;209.396000;0 +20260212 072500;209.398000;209.398000;209.382000;209.388000;0 +20260212 072600;209.389000;209.389000;209.375000;209.381000;0 +20260212 072700;209.386000;209.386000;209.330000;209.333000;0 +20260212 072800;209.336000;209.340000;209.299000;209.299000;0 +20260212 072900;209.288000;209.352000;209.288000;209.348000;0 +20260212 073000;209.348000;209.371000;209.341000;209.356000;0 +20260212 073100;209.362000;209.365000;209.333000;209.361000;0 +20260212 073200;209.360000;209.360000;209.279000;209.306000;0 +20260212 073300;209.305000;209.305000;209.270000;209.277000;0 +20260212 073400;209.278000;209.310000;209.275000;209.309000;0 +20260212 073500;209.310000;209.370000;209.310000;209.344000;0 +20260212 073600;209.352000;209.392000;209.349000;209.358000;0 +20260212 073700;209.360000;209.367000;209.343000;209.344000;0 +20260212 073800;209.349000;209.377000;209.326000;209.377000;0 +20260212 073900;209.373000;209.376000;209.343000;209.358000;0 +20260212 074000;209.358000;209.377000;209.354000;209.370000;0 +20260212 074100;209.370000;209.400000;209.354000;209.400000;0 +20260212 074200;209.400000;209.443000;209.354000;209.417000;0 +20260212 074300;209.417000;209.417000;209.364000;209.370000;0 +20260212 074400;209.372000;209.404000;209.354000;209.368000;0 +20260212 074500;209.367000;209.377000;209.333000;209.336000;0 +20260212 074600;209.340000;209.345000;209.313000;209.345000;0 +20260212 074700;209.346000;209.383000;209.343000;209.350000;0 +20260212 074800;209.349000;209.423000;209.340000;209.420000;0 +20260212 074900;209.422000;209.460000;209.409000;209.457000;0 +20260212 075000;209.454000;209.480000;209.418000;209.465000;0 +20260212 075100;209.465000;209.468000;209.389000;209.389000;0 +20260212 075200;209.389000;209.420000;209.370000;209.403000;0 +20260212 075300;209.404000;209.425000;209.391000;209.423000;0 +20260212 075400;209.424000;209.446000;209.407000;209.426000;0 +20260212 075500;209.424000;209.488000;209.416000;209.480000;0 +20260212 075600;209.480000;209.539000;209.477000;209.484000;0 +20260212 075700;209.484000;209.520000;209.478000;209.514000;0 +20260212 075800;209.513000;209.517000;209.457000;209.459000;0 +20260212 075900;209.461000;209.473000;209.419000;209.424000;0 +20260212 080000;209.431000;209.479000;209.431000;209.476000;0 +20260212 080100;209.483000;209.502000;209.451000;209.475000;0 +20260212 080200;209.474000;209.484000;209.432000;209.432000;0 +20260212 080300;209.432000;209.472000;209.405000;209.468000;0 +20260212 080400;209.468000;209.490000;209.455000;209.475000;0 +20260212 080500;209.471000;209.495000;209.458000;209.488000;0 +20260212 080600;209.496000;209.518000;209.469000;209.505000;0 +20260212 080700;209.507000;209.550000;209.505000;209.549000;0 +20260212 080800;209.550000;209.554000;209.514000;209.535000;0 +20260212 080900;209.533000;209.538000;209.514000;209.526000;0 +20260212 081000;209.529000;209.530000;209.497000;209.497000;0 +20260212 081100;209.495000;209.495000;209.424000;209.457000;0 +20260212 081200;209.459000;209.469000;209.435000;209.451000;0 +20260212 081300;209.454000;209.487000;209.452000;209.484000;0 +20260212 081400;209.483000;209.501000;209.451000;209.456000;0 +20260212 081500;209.458000;209.465000;209.435000;209.446000;0 +20260212 081600;209.446000;209.465000;209.391000;209.391000;0 +20260212 081700;209.394000;209.405000;209.375000;209.379000;0 +20260212 081800;209.380000;209.403000;209.375000;209.380000;0 +20260212 081900;209.381000;209.402000;209.381000;209.395000;0 +20260212 082000;209.394000;209.394000;209.316000;209.331000;0 +20260212 082100;209.332000;209.355000;209.327000;209.352000;0 +20260212 082200;209.353000;209.364000;209.334000;209.341000;0 +20260212 082300;209.338000;209.357000;209.324000;209.333000;0 +20260212 082400;209.333000;209.361000;209.327000;209.339000;0 +20260212 082500;209.349000;209.359000;209.309000;209.310000;0 +20260212 082600;209.311000;209.317000;209.276000;209.282000;0 +20260212 082700;209.284000;209.320000;209.284000;209.296000;0 +20260212 082800;209.296000;209.344000;209.278000;209.337000;0 +20260212 082900;209.337000;209.386000;209.310000;209.325000;0 +20260212 083000;209.320000;209.386000;209.303000;209.305000;0 +20260212 083100;209.304000;209.352000;209.256000;209.258000;0 +20260212 083200;209.256000;209.290000;209.245000;209.290000;0 +20260212 083300;209.288000;209.291000;209.208000;209.208000;0 +20260212 083400;209.207000;209.228000;209.186000;209.221000;0 +20260212 083500;209.217000;209.253000;209.211000;209.220000;0 +20260212 083600;209.219000;209.230000;209.182000;209.196000;0 +20260212 083700;209.192000;209.233000;209.192000;209.223000;0 +20260212 083800;209.222000;209.243000;209.189000;209.194000;0 +20260212 083900;209.193000;209.234000;209.186000;209.220000;0 +20260212 084000;209.222000;209.244000;209.207000;209.242000;0 +20260212 084100;209.242000;209.265000;209.231000;209.258000;0 +20260212 084200;209.258000;209.295000;209.252000;209.271000;0 +20260212 084300;209.272000;209.289000;209.248000;209.251000;0 +20260212 084400;209.258000;209.268000;209.201000;209.205000;0 +20260212 084500;209.206000;209.250000;209.203000;209.236000;0 +20260212 084600;209.233000;209.252000;209.205000;209.208000;0 +20260212 084700;209.207000;209.212000;209.145000;209.155000;0 +20260212 084800;209.154000;209.186000;209.150000;209.151000;0 +20260212 084900;209.152000;209.190000;209.151000;209.162000;0 +20260212 085000;209.158000;209.193000;209.152000;209.153000;0 +20260212 085100;209.156000;209.209000;209.153000;209.201000;0 +20260212 085200;209.203000;209.265000;209.193000;209.264000;0 +20260212 085300;209.267000;209.268000;209.244000;209.248000;0 +20260212 085400;209.248000;209.256000;209.211000;209.216000;0 +20260212 085500;209.214000;209.227000;209.202000;209.205000;0 +20260212 085600;209.204000;209.204000;209.186000;209.194000;0 +20260212 085700;209.197000;209.225000;209.152000;209.158000;0 +20260212 085800;209.162000;209.164000;209.136000;209.142000;0 +20260212 085900;209.143000;209.217000;209.139000;209.204000;0 +20260212 090000;209.205000;209.219000;209.168000;209.194000;0 +20260212 090100;209.200000;209.205000;209.144000;209.150000;0 +20260212 090200;209.148000;209.200000;209.144000;209.165000;0 +20260212 090300;209.165000;209.203000;209.164000;209.189000;0 +20260212 090400;209.189000;209.203000;209.174000;209.203000;0 +20260212 090500;209.201000;209.266000;209.196000;209.237000;0 +20260212 090600;209.237000;209.274000;209.228000;209.248000;0 +20260212 090700;209.252000;209.259000;209.203000;209.203000;0 +20260212 090800;209.205000;209.234000;209.175000;209.175000;0 +20260212 090900;209.175000;209.181000;209.119000;209.137000;0 +20260212 091000;209.138000;209.146000;209.083000;209.091000;0 +20260212 091100;209.091000;209.106000;209.066000;209.091000;0 +20260212 091200;209.092000;209.102000;209.054000;209.063000;0 +20260212 091300;209.064000;209.067000;208.960000;208.984000;0 +20260212 091400;208.985000;209.067000;208.941000;209.067000;0 +20260212 091500;209.071000;209.105000;208.990000;209.009000;0 +20260212 091600;209.011000;209.063000;209.011000;209.046000;0 +20260212 091700;209.046000;209.075000;208.979000;209.002000;0 +20260212 091800;209.004000;209.006000;208.983000;208.997000;0 +20260212 091900;208.996000;209.019000;208.965000;208.965000;0 +20260212 092000;208.967000;209.010000;208.937000;208.995000;0 +20260212 092100;208.996000;209.031000;208.991000;209.030000;0 +20260212 092200;209.031000;209.066000;209.017000;209.057000;0 +20260212 092300;209.055000;209.080000;209.052000;209.059000;0 +20260212 092400;209.060000;209.070000;209.009000;209.021000;0 +20260212 092500;209.024000;209.069000;209.024000;209.067000;0 +20260212 092600;209.065000;209.131000;209.065000;209.083000;0 +20260212 092700;209.082000;209.099000;209.068000;209.083000;0 +20260212 092800;209.082000;209.102000;209.057000;209.095000;0 +20260212 092900;209.095000;209.146000;209.092000;209.118000;0 +20260212 093000;209.124000;209.136000;209.096000;209.103000;0 +20260212 093100;209.098000;209.133000;209.048000;209.121000;0 +20260212 093200;209.122000;209.139000;209.085000;209.087000;0 +20260212 093300;209.090000;209.102000;209.061000;209.062000;0 +20260212 093400;209.061000;209.091000;209.040000;209.058000;0 +20260212 093500;209.062000;209.079000;209.027000;209.074000;0 +20260212 093600;209.074000;209.113000;208.993000;209.018000;0 +20260212 093700;209.010000;209.058000;209.010000;209.053000;0 +20260212 093800;209.052000;209.077000;209.049000;209.058000;0 +20260212 093900;209.057000;209.059000;209.004000;209.019000;0 +20260212 094000;209.023000;209.113000;209.023000;209.094000;0 +20260212 094100;209.092000;209.135000;209.088000;209.122000;0 +20260212 094200;209.120000;209.167000;209.095000;209.160000;0 +20260212 094300;209.158000;209.168000;209.124000;209.140000;0 +20260212 094400;209.140000;209.164000;209.100000;209.162000;0 +20260212 094500;209.165000;209.172000;209.138000;209.168000;0 +20260212 094600;209.168000;209.228000;209.140000;209.212000;0 +20260212 094700;209.212000;209.212000;209.164000;209.174000;0 +20260212 094800;209.174000;209.179000;209.125000;209.173000;0 +20260212 094900;209.170000;209.173000;209.114000;209.114000;0 +20260212 095000;209.116000;209.128000;209.074000;209.082000;0 +20260212 095100;209.090000;209.199000;209.074000;209.163000;0 +20260212 095200;209.161000;209.193000;209.125000;209.128000;0 +20260212 095300;209.131000;209.205000;209.130000;209.194000;0 +20260212 095400;209.196000;209.232000;209.185000;209.223000;0 +20260212 095500;209.222000;209.255000;209.178000;209.186000;0 +20260212 095600;209.187000;209.194000;209.123000;209.135000;0 +20260212 095700;209.132000;209.132000;209.078000;209.101000;0 +20260212 095800;209.101000;209.125000;209.056000;209.082000;0 +20260212 095900;209.083000;209.104000;209.070000;209.088000;0 +20260212 100000;209.088000;209.093000;208.992000;209.018000;0 +20260212 100100;209.021000;209.089000;209.001000;209.069000;0 +20260212 100200;209.065000;209.094000;209.060000;209.070000;0 +20260212 100300;209.073000;209.101000;209.069000;209.094000;0 +20260212 100400;209.094000;209.122000;209.028000;209.038000;0 +20260212 100500;209.038000;209.062000;209.005000;209.005000;0 +20260212 100600;209.003000;209.053000;208.997000;209.053000;0 +20260212 100700;209.056000;209.062000;208.994000;209.014000;0 +20260212 100800;209.014000;209.063000;209.008000;209.055000;0 +20260212 100900;209.055000;209.092000;209.039000;209.081000;0 +20260212 101000;209.083000;209.102000;209.038000;209.050000;0 +20260212 101100;209.050000;209.062000;208.996000;209.003000;0 +20260212 101200;209.001000;209.039000;208.985000;208.988000;0 +20260212 101300;208.986000;209.008000;208.967000;208.979000;0 +20260212 101400;208.980000;208.988000;208.935000;208.944000;0 +20260212 101500;208.943000;208.992000;208.922000;208.971000;0 +20260212 101600;208.970000;208.980000;208.946000;208.978000;0 +20260212 101700;208.983000;208.983000;208.946000;208.970000;0 +20260212 101800;208.970000;208.999000;208.918000;208.921000;0 +20260212 101900;208.921000;208.958000;208.909000;208.943000;0 +20260212 102000;208.944000;208.958000;208.918000;208.919000;0 +20260212 102100;208.918000;208.925000;208.880000;208.892000;0 +20260212 102200;208.892000;208.969000;208.882000;208.954000;0 +20260212 102300;208.957000;208.957000;208.908000;208.908000;0 +20260212 102400;208.909000;208.951000;208.908000;208.950000;0 +20260212 102500;208.953000;208.982000;208.935000;208.972000;0 +20260212 102600;208.972000;208.997000;208.966000;208.991000;0 +20260212 102700;208.987000;209.005000;208.959000;208.964000;0 +20260212 102800;208.965000;209.030000;208.964000;209.017000;0 +20260212 102900;209.016000;209.024000;209.000000;209.003000;0 +20260212 103000;209.001000;209.017000;208.982000;209.002000;0 +20260212 103100;209.009000;209.018000;208.995000;209.002000;0 +20260212 103200;209.015000;209.023000;208.941000;208.943000;0 +20260212 103300;208.943000;208.980000;208.915000;208.935000;0 +20260212 103400;208.936000;209.004000;208.935000;208.994000;0 +20260212 103500;208.986000;209.005000;208.909000;208.913000;0 +20260212 103600;208.911000;208.914000;208.812000;208.814000;0 +20260212 103700;208.812000;208.812000;208.715000;208.721000;0 +20260212 103800;208.724000;208.756000;208.673000;208.747000;0 +20260212 103900;208.744000;208.751000;208.648000;208.688000;0 +20260212 104000;208.692000;208.721000;208.598000;208.599000;0 +20260212 104100;208.596000;208.618000;208.557000;208.576000;0 +20260212 104200;208.578000;208.595000;208.551000;208.575000;0 +20260212 104300;208.576000;208.611000;208.544000;208.599000;0 +20260212 104400;208.596000;208.610000;208.585000;208.610000;0 +20260212 104500;208.614000;208.631000;208.549000;208.581000;0 +20260212 104600;208.584000;208.597000;208.563000;208.591000;0 +20260212 104700;208.588000;208.642000;208.563000;208.595000;0 +20260212 104800;208.598000;208.634000;208.562000;208.634000;0 +20260212 104900;208.637000;208.638000;208.559000;208.561000;0 +20260212 105000;208.563000;208.586000;208.505000;208.516000;0 +20260212 105100;208.517000;208.528000;208.484000;208.485000;0 +20260212 105200;208.485000;208.492000;208.438000;208.472000;0 +20260212 105300;208.471000;208.520000;208.462000;208.515000;0 +20260212 105400;208.515000;208.528000;208.438000;208.438000;0 +20260212 105500;208.434000;208.447000;208.374000;208.395000;0 +20260212 105600;208.390000;208.414000;208.339000;208.372000;0 +20260212 105700;208.372000;208.458000;208.372000;208.437000;0 +20260212 105800;208.436000;208.477000;208.435000;208.465000;0 +20260212 105900;208.464000;208.470000;208.416000;208.420000;0 +20260212 110000;208.418000;208.493000;208.415000;208.490000;0 +20260212 110100;208.490000;208.495000;208.441000;208.441000;0 +20260212 110200;208.443000;208.453000;208.375000;208.375000;0 +20260212 110300;208.383000;208.427000;208.374000;208.386000;0 +20260212 110400;208.390000;208.419000;208.367000;208.402000;0 +20260212 110500;208.401000;208.411000;208.299000;208.319000;0 +20260212 110600;208.315000;208.325000;208.236000;208.246000;0 +20260212 110700;208.247000;208.251000;208.217000;208.221000;0 +20260212 110800;208.220000;208.254000;208.211000;208.231000;0 +20260212 110900;208.223000;208.243000;208.168000;208.170000;0 +20260212 111000;208.170000;208.174000;208.113000;208.113000;0 +20260212 111100;208.118000;208.141000;208.064000;208.064000;0 +20260212 111200;208.066000;208.068000;207.956000;208.027000;0 +20260212 111300;208.028000;208.117000;208.028000;208.117000;0 +20260212 111400;208.112000;208.206000;208.112000;208.194000;0 +20260212 111500;208.195000;208.210000;208.083000;208.083000;0 +20260212 111600;208.086000;208.086000;207.998000;207.998000;0 +20260212 111700;207.998000;208.020000;207.931000;207.931000;0 +20260212 111800;207.930000;207.938000;207.888000;207.894000;0 +20260212 111900;207.897000;207.938000;207.872000;207.916000;0 +20260212 112000;207.915000;207.921000;207.865000;207.865000;0 +20260212 112100;207.866000;207.893000;207.819000;207.876000;0 +20260212 112200;207.881000;207.881000;207.814000;207.829000;0 +20260212 112300;207.826000;207.869000;207.790000;207.849000;0 +20260212 112400;207.849000;207.849000;207.740000;207.753000;0 +20260212 112500;207.752000;207.752000;207.680000;207.701000;0 +20260212 112600;207.702000;207.706000;207.606000;207.642000;0 +20260212 112700;207.642000;207.650000;207.563000;207.628000;0 +20260212 112800;207.628000;207.647000;207.558000;207.643000;0 +20260212 112900;207.643000;207.668000;207.629000;207.654000;0 +20260212 113000;207.650000;207.759000;207.636000;207.745000;0 +20260212 113100;207.743000;207.783000;207.714000;207.783000;0 +20260212 113200;207.783000;207.918000;207.780000;207.900000;0 +20260212 113300;207.900000;207.932000;207.857000;207.878000;0 +20260212 113400;207.877000;207.898000;207.741000;207.797000;0 +20260212 113500;207.800000;207.831000;207.769000;207.796000;0 +20260212 113600;207.801000;208.029000;207.783000;208.027000;0 +20260212 113700;208.030000;208.211000;208.016000;208.074000;0 +20260212 113800;208.075000;208.075000;207.944000;208.026000;0 +20260212 113900;208.029000;208.171000;207.995000;208.164000;0 +20260212 114000;208.162000;208.254000;208.106000;208.126000;0 +20260212 114100;208.128000;208.260000;208.099000;208.260000;0 +20260212 114200;208.258000;208.299000;208.218000;208.251000;0 +20260212 114300;208.250000;208.302000;208.235000;208.281000;0 +20260212 114400;208.280000;208.305000;208.173000;208.185000;0 +20260212 114500;208.186000;208.233000;208.153000;208.167000;0 +20260212 114600;208.167000;208.174000;208.043000;208.079000;0 +20260212 114700;208.078000;208.078000;207.984000;207.984000;0 +20260212 114800;207.985000;208.008000;207.949000;207.953000;0 +20260212 114900;207.956000;208.017000;207.929000;207.971000;0 +20260212 115000;207.972000;208.061000;207.972000;208.014000;0 +20260212 115100;208.014000;208.076000;207.994000;207.994000;0 +20260212 115200;207.998000;208.006000;207.945000;207.955000;0 +20260212 115300;207.952000;207.952000;207.892000;207.909000;0 +20260212 115400;207.910000;207.984000;207.910000;207.963000;0 +20260212 115500;207.963000;208.025000;207.961000;207.997000;0 +20260212 115600;207.993000;208.065000;207.974000;208.049000;0 +20260212 115700;208.053000;208.103000;208.029000;208.085000;0 +20260212 115800;208.086000;208.122000;208.072000;208.090000;0 +20260212 115900;208.088000;208.104000;208.060000;208.097000;0 +20260212 120000;208.096000;208.096000;207.959000;207.959000;0 +20260212 120100;207.961000;207.977000;207.921000;207.932000;0 +20260212 120200;207.934000;208.112000;207.934000;208.109000;0 +20260212 120300;208.108000;208.132000;208.066000;208.092000;0 +20260212 120400;208.093000;208.134000;208.087000;208.130000;0 +20260212 120500;208.128000;208.142000;208.087000;208.096000;0 +20260212 120600;208.091000;208.204000;208.087000;208.200000;0 +20260212 120700;208.200000;208.218000;208.164000;208.212000;0 +20260212 120800;208.209000;208.211000;208.103000;208.119000;0 +20260212 120900;208.118000;208.166000;208.101000;208.160000;0 +20260212 121000;208.160000;208.162000;208.099000;208.125000;0 +20260212 121100;208.128000;208.142000;208.072000;208.075000;0 +20260212 121200;208.073000;208.090000;208.052000;208.082000;0 +20260212 121300;208.079000;208.138000;208.074000;208.127000;0 +20260212 121400;208.128000;208.155000;208.068000;208.069000;0 +20260212 121500;208.071000;208.091000;208.039000;208.040000;0 +20260212 121600;208.039000;208.054000;207.992000;208.006000;0 +20260212 121700;208.005000;208.013000;207.936000;207.941000;0 +20260212 121800;207.942000;207.948000;207.909000;207.948000;0 +20260212 121900;207.952000;207.970000;207.868000;207.879000;0 +20260212 122000;207.884000;207.927000;207.865000;207.918000;0 +20260212 122100;207.916000;207.972000;207.901000;207.943000;0 +20260212 122200;207.940000;207.994000;207.911000;207.986000;0 +20260212 122300;207.995000;208.067000;207.986000;208.062000;0 +20260212 122400;208.062000;208.092000;208.030000;208.082000;0 +20260212 122500;208.082000;208.104000;207.968000;207.970000;0 +20260212 122600;207.968000;208.014000;207.950000;207.977000;0 +20260212 122700;207.977000;207.994000;207.955000;207.994000;0 +20260212 122800;207.990000;208.041000;207.987000;208.039000;0 +20260212 122900;208.037000;208.037000;207.981000;207.989000;0 +20260212 123000;207.987000;208.021000;207.969000;207.986000;0 +20260212 123100;207.985000;208.016000;207.970000;208.005000;0 +20260212 123200;208.011000;208.011000;207.958000;207.958000;0 +20260212 123300;207.960000;208.021000;207.955000;208.020000;0 +20260212 123400;208.020000;208.051000;208.010000;208.040000;0 +20260212 123500;208.040000;208.183000;208.040000;208.178000;0 +20260212 123600;208.180000;208.197000;208.150000;208.174000;0 +20260212 123700;208.175000;208.207000;208.161000;208.199000;0 +20260212 123800;208.196000;208.218000;208.167000;208.177000;0 +20260212 123900;208.176000;208.192000;208.114000;208.137000;0 +20260212 124000;208.139000;208.193000;208.120000;208.189000;0 +20260212 124100;208.190000;208.197000;208.152000;208.154000;0 +20260212 124200;208.151000;208.183000;208.144000;208.157000;0 +20260212 124300;208.155000;208.202000;208.154000;208.189000;0 +20260212 124400;208.194000;208.211000;208.163000;208.208000;0 +20260212 124500;208.209000;208.227000;208.170000;208.193000;0 +20260212 124600;208.198000;208.238000;208.182000;208.231000;0 +20260212 124700;208.230000;208.236000;208.203000;208.231000;0 +20260212 124800;208.232000;208.245000;208.197000;208.227000;0 +20260212 124900;208.227000;208.267000;208.223000;208.223000;0 +20260212 125000;208.221000;208.266000;208.215000;208.230000;0 +20260212 125100;208.232000;208.244000;208.210000;208.215000;0 +20260212 125200;208.214000;208.245000;208.210000;208.217000;0 +20260212 125300;208.214000;208.220000;208.171000;208.195000;0 +20260212 125400;208.196000;208.212000;208.181000;208.190000;0 +20260212 125500;208.193000;208.200000;208.182000;208.184000;0 +20260212 125600;208.186000;208.202000;208.171000;208.192000;0 +20260212 125700;208.191000;208.226000;208.185000;208.192000;0 +20260212 125800;208.191000;208.205000;208.178000;208.183000;0 +20260212 125900;208.184000;208.189000;208.165000;208.169000;0 +20260212 130000;208.168000;208.182000;208.136000;208.158000;0 +20260212 130100;208.155000;208.159000;208.135000;208.156000;0 +20260212 130200;208.155000;208.200000;208.144000;208.173000;0 +20260212 130300;208.174000;208.174000;208.074000;208.077000;0 +20260212 130400;208.072000;208.121000;208.072000;208.103000;0 +20260212 130500;208.104000;208.128000;208.054000;208.066000;0 +20260212 130600;208.065000;208.065000;208.023000;208.052000;0 +20260212 130700;208.050000;208.090000;208.029000;208.059000;0 +20260212 130800;208.055000;208.103000;208.036000;208.079000;0 +20260212 130900;208.081000;208.088000;208.050000;208.052000;0 +20260212 131000;208.055000;208.056000;208.003000;208.011000;0 +20260212 131100;208.008000;208.013000;207.988000;207.998000;0 +20260212 131200;207.999000;208.010000;207.972000;207.973000;0 +20260212 131300;207.971000;207.979000;207.943000;207.947000;0 +20260212 131400;207.949000;207.969000;207.938000;207.946000;0 +20260212 131500;207.952000;207.960000;207.924000;207.932000;0 +20260212 131600;207.933000;207.950000;207.928000;207.934000;0 +20260212 131700;207.932000;207.943000;207.908000;207.915000;0 +20260212 131800;207.916000;207.934000;207.907000;207.923000;0 +20260212 131900;207.922000;207.946000;207.922000;207.938000;0 +20260212 132000;207.937000;207.983000;207.937000;207.969000;0 +20260212 132100;207.972000;207.982000;207.945000;207.969000;0 +20260212 132200;207.967000;208.011000;207.950000;208.011000;0 +20260212 132300;208.012000;208.021000;208.000000;208.015000;0 +20260212 132400;208.019000;208.086000;208.019000;208.051000;0 +20260212 132500;208.047000;208.111000;208.042000;208.111000;0 +20260212 132600;208.111000;208.142000;208.092000;208.116000;0 +20260212 132700;208.116000;208.118000;208.061000;208.062000;0 +20260212 132800;208.063000;208.079000;207.998000;208.008000;0 +20260212 132900;208.009000;208.049000;208.008000;208.048000;0 +20260212 133000;208.051000;208.051000;208.018000;208.030000;0 +20260212 133100;208.029000;208.051000;208.019000;208.041000;0 +20260212 133200;208.038000;208.045000;208.016000;208.019000;0 +20260212 133300;208.020000;208.044000;208.017000;208.043000;0 +20260212 133400;208.043000;208.056000;208.016000;208.017000;0 +20260212 133500;208.019000;208.031000;208.002000;208.024000;0 +20260212 133600;208.026000;208.032000;207.996000;208.009000;0 +20260212 133700;208.009000;208.043000;208.005000;208.043000;0 +20260212 133800;208.044000;208.067000;208.044000;208.061000;0 +20260212 133900;208.062000;208.091000;208.046000;208.089000;0 +20260212 134000;208.088000;208.093000;208.079000;208.093000;0 +20260212 134100;208.095000;208.126000;208.094000;208.116000;0 +20260212 134200;208.111000;208.140000;208.109000;208.131000;0 +20260212 134300;208.129000;208.134000;208.108000;208.108000;0 +20260212 134400;208.104000;208.113000;208.089000;208.098000;0 +20260212 134500;208.096000;208.119000;208.089000;208.119000;0 +20260212 134600;208.117000;208.222000;208.113000;208.185000;0 +20260212 134700;208.180000;208.185000;208.152000;208.160000;0 +20260212 134800;208.161000;208.190000;208.160000;208.175000;0 +20260212 134900;208.173000;208.235000;208.173000;208.235000;0 +20260212 135000;208.234000;208.247000;208.224000;208.241000;0 +20260212 135100;208.243000;208.273000;208.205000;208.271000;0 +20260212 135200;208.268000;208.268000;208.226000;208.244000;0 +20260212 135300;208.243000;208.270000;208.240000;208.267000;0 +20260212 135400;208.270000;208.297000;208.234000;208.251000;0 +20260212 135500;208.251000;208.269000;208.229000;208.255000;0 +20260212 135600;208.252000;208.263000;208.219000;208.236000;0 +20260212 135700;208.236000;208.261000;208.225000;208.236000;0 +20260212 135800;208.236000;208.254000;208.186000;208.210000;0 +20260212 135900;208.209000;208.232000;208.192000;208.230000;0 +20260212 140000;208.227000;208.253000;208.219000;208.238000;0 +20260212 140100;208.235000;208.242000;208.201000;208.209000;0 +20260212 140200;208.209000;208.216000;208.199000;208.205000;0 +20260212 140300;208.204000;208.205000;208.192000;208.205000;0 +20260212 140400;208.206000;208.206000;208.173000;208.185000;0 +20260212 140500;208.185000;208.237000;208.185000;208.222000;0 +20260212 140600;208.224000;208.250000;208.218000;208.245000;0 +20260212 140700;208.246000;208.260000;208.229000;208.259000;0 +20260212 140800;208.261000;208.299000;208.257000;208.297000;0 +20260212 140900;208.301000;208.316000;208.298000;208.312000;0 +20260212 141000;208.315000;208.328000;208.309000;208.327000;0 +20260212 141100;208.327000;208.327000;208.262000;208.264000;0 +20260212 141200;208.265000;208.275000;208.249000;208.258000;0 +20260212 141300;208.259000;208.276000;208.251000;208.266000;0 +20260212 141400;208.267000;208.280000;208.248000;208.262000;0 +20260212 141500;208.258000;208.279000;208.254000;208.275000;0 +20260212 141600;208.277000;208.283000;208.261000;208.283000;0 +20260212 141700;208.283000;208.320000;208.272000;208.311000;0 +20260212 141800;208.313000;208.321000;208.293000;208.318000;0 +20260212 141900;208.319000;208.326000;208.310000;208.324000;0 +20260212 142000;208.324000;208.325000;208.300000;208.315000;0 +20260212 142100;208.315000;208.324000;208.298000;208.322000;0 +20260212 142200;208.319000;208.319000;208.290000;208.301000;0 +20260212 142300;208.298000;208.324000;208.298000;208.324000;0 +20260212 142400;208.323000;208.335000;208.279000;208.293000;0 +20260212 142500;208.293000;208.308000;208.285000;208.289000;0 +20260212 142600;208.288000;208.298000;208.272000;208.283000;0 +20260212 142700;208.281000;208.284000;208.260000;208.264000;0 +20260212 142800;208.264000;208.279000;208.258000;208.269000;0 +20260212 142900;208.267000;208.277000;208.254000;208.275000;0 +20260212 143000;208.268000;208.304000;208.268000;208.302000;0 +20260212 143100;208.300000;208.314000;208.300000;208.310000;0 +20260212 143200;208.312000;208.312000;208.295000;208.296000;0 +20260212 143300;208.298000;208.325000;208.264000;208.315000;0 +20260212 143400;208.315000;208.331000;208.307000;208.324000;0 +20260212 143500;208.323000;208.343000;208.322000;208.343000;0 +20260212 143600;208.338000;208.350000;208.324000;208.347000;0 +20260212 143700;208.350000;208.357000;208.329000;208.338000;0 +20260212 143800;208.338000;208.355000;208.324000;208.331000;0 +20260212 143900;208.339000;208.369000;208.336000;208.369000;0 +20260212 144000;208.370000;208.371000;208.341000;208.350000;0 +20260212 144100;208.351000;208.361000;208.342000;208.356000;0 +20260212 144200;208.357000;208.359000;208.329000;208.342000;0 +20260212 144300;208.343000;208.352000;208.332000;208.350000;0 +20260212 144400;208.348000;208.382000;208.343000;208.380000;0 +20260212 144500;208.379000;208.390000;208.370000;208.370000;0 +20260212 144600;208.370000;208.372000;208.351000;208.366000;0 +20260212 144700;208.366000;208.369000;208.349000;208.352000;0 +20260212 144800;208.354000;208.363000;208.343000;208.357000;0 +20260212 144900;208.351000;208.351000;208.331000;208.331000;0 +20260212 145000;208.334000;208.350000;208.334000;208.334000;0 +20260212 145100;208.334000;208.342000;208.314000;208.336000;0 +20260212 145200;208.332000;208.348000;208.330000;208.333000;0 +20260212 145300;208.336000;208.345000;208.331000;208.335000;0 +20260212 145400;208.341000;208.349000;208.335000;208.336000;0 +20260212 145500;208.338000;208.352000;208.324000;208.349000;0 +20260212 145600;208.349000;208.353000;208.337000;208.350000;0 +20260212 145700;208.353000;208.353000;208.324000;208.336000;0 +20260212 145800;208.337000;208.337000;208.305000;208.316000;0 +20260212 145900;208.315000;208.315000;208.293000;208.305000;0 +20260212 150000;208.308000;208.324000;208.285000;208.310000;0 +20260212 150100;208.311000;208.311000;208.298000;208.306000;0 +20260212 150200;208.303000;208.316000;208.299000;208.304000;0 +20260212 150300;208.304000;208.305000;208.287000;208.289000;0 +20260212 150400;208.290000;208.314000;208.272000;208.311000;0 +20260212 150500;208.312000;208.334000;208.309000;208.310000;0 +20260212 150600;208.309000;208.317000;208.305000;208.317000;0 +20260212 150700;208.315000;208.320000;208.288000;208.290000;0 +20260212 150800;208.291000;208.321000;208.291000;208.309000;0 +20260212 150900;208.307000;208.309000;208.297000;208.307000;0 +20260212 151000;208.308000;208.318000;208.296000;208.297000;0 +20260212 151100;208.298000;208.303000;208.285000;208.296000;0 +20260212 151200;208.295000;208.303000;208.292000;208.292000;0 +20260212 151300;208.293000;208.315000;208.291000;208.305000;0 +20260212 151400;208.305000;208.316000;208.303000;208.316000;0 +20260212 151500;208.317000;208.320000;208.294000;208.294000;0 +20260212 151600;208.291000;208.303000;208.282000;208.282000;0 +20260212 151700;208.283000;208.285000;208.243000;208.264000;0 +20260212 151800;208.259000;208.277000;208.243000;208.257000;0 +20260212 151900;208.258000;208.274000;208.256000;208.264000;0 +20260212 152000;208.263000;208.276000;208.257000;208.261000;0 +20260212 152100;208.261000;208.266000;208.244000;208.264000;0 +20260212 152200;208.265000;208.275000;208.253000;208.253000;0 +20260212 152300;208.255000;208.264000;208.255000;208.259000;0 +20260212 152400;208.262000;208.272000;208.259000;208.268000;0 +20260212 152500;208.269000;208.275000;208.250000;208.258000;0 +20260212 152600;208.258000;208.275000;208.249000;208.262000;0 +20260212 152700;208.264000;208.264000;208.256000;208.256000;0 +20260212 152800;208.256000;208.256000;208.235000;208.239000;0 +20260212 152900;208.241000;208.241000;208.219000;208.229000;0 +20260212 153000;208.226000;208.231000;208.215000;208.218000;0 +20260212 153100;208.220000;208.227000;208.204000;208.208000;0 +20260212 153200;208.208000;208.208000;208.179000;208.190000;0 +20260212 153300;208.188000;208.207000;208.185000;208.203000;0 +20260212 153400;208.204000;208.215000;208.194000;208.210000;0 +20260212 153500;208.212000;208.214000;208.201000;208.208000;0 +20260212 153600;208.202000;208.238000;208.202000;208.237000;0 +20260212 153700;208.239000;208.239000;208.221000;208.229000;0 +20260212 153800;208.229000;208.237000;208.214000;208.214000;0 +20260212 153900;208.215000;208.219000;208.193000;208.202000;0 +20260212 154000;208.198000;208.227000;208.197000;208.224000;0 +20260212 154100;208.222000;208.230000;208.213000;208.216000;0 +20260212 154200;208.214000;208.214000;208.188000;208.197000;0 +20260212 154300;208.198000;208.199000;208.181000;208.181000;0 +20260212 154400;208.181000;208.182000;208.155000;208.157000;0 +20260212 154500;208.158000;208.164000;208.121000;208.121000;0 +20260212 154600;208.119000;208.121000;208.091000;208.091000;0 +20260212 154700;208.090000;208.091000;208.061000;208.070000;0 +20260212 154800;208.072000;208.089000;208.066000;208.070000;0 +20260212 154900;208.065000;208.073000;208.039000;208.052000;0 +20260212 155000;208.045000;208.045000;208.010000;208.019000;0 +20260212 155100;208.014000;208.025000;207.989000;207.997000;0 +20260212 155200;207.999000;208.020000;207.998000;208.016000;0 +20260212 155300;208.017000;208.032000;208.011000;208.032000;0 +20260212 155400;208.034000;208.087000;208.033000;208.074000;0 +20260212 155500;208.075000;208.086000;208.059000;208.071000;0 +20260212 155600;208.069000;208.070000;208.017000;208.036000;0 +20260212 155700;208.039000;208.058000;208.030000;208.044000;0 +20260212 155800;208.045000;208.047000;207.988000;207.989000;0 +20260212 155900;207.993000;208.003000;207.972000;207.972000;0 +20260212 160000;207.971000;208.021000;207.971000;208.012000;0 +20260212 160100;208.012000;208.025000;208.002000;208.007000;0 +20260212 160200;208.006000;208.014000;207.991000;208.005000;0 +20260212 160300;208.007000;208.033000;208.001000;208.003000;0 +20260212 160400;207.999000;208.017000;207.975000;208.016000;0 +20260212 160500;208.011000;208.013000;208.003000;208.009000;0 +20260212 160600;208.005000;208.008000;207.989000;208.001000;0 +20260212 160700;207.999000;208.024000;207.999000;208.008000;0 +20260212 160800;208.004000;208.016000;208.004000;208.012000;0 +20260212 160900;208.009000;208.062000;208.009000;208.019000;0 +20260212 161000;208.024000;208.050000;208.023000;208.034000;0 +20260212 161100;208.037000;208.052000;208.036000;208.039000;0 +20260212 161200;208.039000;208.048000;208.028000;208.043000;0 +20260212 161300;208.040000;208.061000;208.040000;208.054000;0 +20260212 161400;208.051000;208.063000;208.049000;208.057000;0 +20260212 161500;208.062000;208.063000;208.047000;208.047000;0 +20260212 161600;208.047000;208.054000;208.046000;208.049000;0 +20260212 161700;208.048000;208.055000;208.021000;208.051000;0 +20260212 161800;208.050000;208.054000;208.025000;208.027000;0 +20260212 161900;208.027000;208.049000;208.015000;208.039000;0 +20260212 162000;208.039000;208.054000;208.029000;208.054000;0 +20260212 162100;208.054000;208.060000;208.048000;208.051000;0 +20260212 162200;208.048000;208.051000;208.044000;208.049000;0 +20260212 162300;208.052000;208.062000;208.044000;208.060000;0 +20260212 162400;208.059000;208.061000;208.058000;208.061000;0 +20260212 162500;208.060000;208.062000;208.058000;208.058000;0 +20260212 162600;208.059000;208.059000;208.012000;208.016000;0 +20260212 162700;208.014000;208.023000;208.014000;208.020000;0 +20260212 162800;208.021000;208.023000;208.021000;208.023000;0 +20260212 162900;208.024000;208.025000;208.005000;208.021000;0 +20260212 163000;208.025000;208.042000;208.024000;208.040000;0 +20260212 163100;208.040000;208.052000;208.040000;208.051000;0 +20260212 163200;208.049000;208.055000;208.037000;208.052000;0 +20260212 163300;208.047000;208.047000;208.010000;208.037000;0 +20260212 163400;208.037000;208.049000;208.035000;208.036000;0 +20260212 163500;208.034000;208.042000;208.034000;208.041000;0 +20260212 163600;208.042000;208.045000;208.039000;208.045000;0 +20260212 163700;208.046000;208.046000;208.034000;208.040000;0 +20260212 163800;208.043000;208.043000;208.027000;208.028000;0 +20260212 163900;208.031000;208.035000;208.013000;208.019000;0 +20260212 164000;208.019000;208.026000;208.016000;208.024000;0 +20260212 164100;208.021000;208.047000;208.021000;208.041000;0 +20260212 164200;208.042000;208.047000;208.035000;208.040000;0 +20260212 164300;208.042000;208.045000;208.035000;208.041000;0 +20260212 164400;208.042000;208.050000;208.041000;208.042000;0 +20260212 164500;208.049000;208.068000;208.048000;208.068000;0 +20260212 164600;208.068000;208.089000;208.068000;208.089000;0 +20260212 164700;208.093000;208.136000;208.093000;208.129000;0 +20260212 164800;208.131000;208.137000;208.107000;208.112000;0 +20260212 164900;208.111000;208.119000;208.105000;208.111000;0 +20260212 165000;208.114000;208.130000;208.108000;208.123000;0 +20260212 165100;208.123000;208.133000;208.106000;208.108000;0 +20260212 165200;208.112000;208.120000;208.105000;208.109000;0 +20260212 165300;208.109000;208.110000;208.076000;208.084000;0 +20260212 165400;208.084000;208.093000;208.084000;208.085000;0 +20260212 165500;208.083000;208.084000;208.066000;208.073000;0 +20260212 165600;208.070000;208.074000;208.045000;208.048000;0 +20260212 165700;208.048000;208.048000;208.021000;208.033000;0 +20260212 165800;208.028000;208.053000;208.028000;208.047000;0 +20260212 165900;208.046000;208.046000;207.994000;207.994000;0 +20260212 170400;207.828000;207.829000;207.828000;207.829000;0 +20260212 170500;207.829000;207.831000;207.829000;207.831000;0 +20260212 170600;207.957000;207.977000;207.840000;207.977000;0 +20260212 170700;207.978000;208.004000;207.978000;208.002000;0 +20260212 170800;208.001000;208.001000;207.847000;207.882000;0 +20260212 170900;207.881000;207.930000;207.881000;207.924000;0 +20260212 171000;207.936000;207.936000;207.779000;207.798000;0 +20260212 171100;207.798000;207.804000;207.759000;207.759000;0 +20260212 171200;207.760000;207.810000;207.759000;207.761000;0 +20260212 171300;207.762000;207.789000;207.761000;207.788000;0 +20260212 171400;207.789000;207.865000;207.785000;207.865000;0 +20260212 171500;207.864000;207.869000;207.861000;207.869000;0 +20260212 171600;207.870000;207.874000;207.868000;207.874000;0 +20260212 171700;207.873000;208.003000;207.872000;208.003000;0 +20260212 171800;207.998000;208.036000;207.994000;208.036000;0 +20260212 171900;208.026000;208.049000;208.001000;208.025000;0 +20260212 172000;208.037000;208.120000;208.020000;208.023000;0 +20260212 172100;208.060000;208.060000;207.992000;208.011000;0 +20260212 172200;208.010000;208.016000;207.966000;208.011000;0 +20260212 172300;208.016000;208.027000;207.988000;208.014000;0 +20260212 172400;208.015000;208.073000;208.015000;208.073000;0 +20260212 172500;208.071000;208.071000;208.042000;208.068000;0 +20260212 172600;208.070000;208.099000;208.057000;208.095000;0 +20260212 172700;208.066000;208.094000;208.058000;208.081000;0 +20260212 172800;208.080000;208.090000;208.050000;208.051000;0 +20260212 172900;208.050000;208.064000;208.036000;208.052000;0 +20260212 173000;208.057000;208.079000;208.041000;208.054000;0 +20260212 173100;208.051000;208.085000;208.046000;208.080000;0 +20260212 173200;208.083000;208.083000;208.064000;208.064000;0 +20260212 173300;208.064000;208.069000;208.051000;208.055000;0 +20260212 173400;208.054000;208.054000;207.926000;208.019000;0 +20260212 173500;208.019000;208.026000;207.991000;207.991000;0 +20260212 173600;207.996000;208.021000;207.994000;208.019000;0 +20260212 173700;208.018000;208.050000;208.014000;208.028000;0 +20260212 173800;208.031000;208.048000;208.028000;208.043000;0 +20260212 173900;208.047000;208.052000;208.043000;208.049000;0 +20260212 174000;208.050000;208.082000;208.007000;208.042000;0 +20260212 174100;208.042000;208.094000;208.019000;208.067000;0 +20260212 174200;208.066000;208.090000;208.052000;208.064000;0 +20260212 174300;208.063000;208.085000;208.046000;208.049000;0 +20260212 174400;208.048000;208.049000;208.038000;208.039000;0 +20260212 174500;208.038000;208.040000;208.038000;208.039000;0 +20260212 174600;208.044000;208.084000;208.031000;208.068000;0 +20260212 174700;208.068000;208.080000;208.066000;208.070000;0 +20260212 174800;208.070000;208.070000;207.949000;207.990000;0 +20260212 174900;207.994000;208.002000;207.930000;207.932000;0 +20260212 175000;207.932000;207.989000;207.929000;207.989000;0 +20260212 175100;207.987000;207.991000;207.953000;207.986000;0 +20260212 175200;207.986000;207.991000;207.952000;207.969000;0 +20260212 175300;207.978000;208.009000;207.950000;208.001000;0 +20260212 175400;208.001000;208.022000;208.001000;208.015000;0 +20260212 175500;208.014000;208.014000;207.938000;207.964000;0 +20260212 175600;207.964000;207.976000;207.941000;207.954000;0 +20260212 175700;207.940000;207.984000;207.939000;207.969000;0 +20260212 175800;207.969000;207.970000;207.895000;207.896000;0 +20260212 175900;207.895000;207.898000;207.886000;207.889000;0 +20260212 180000;207.889000;208.012000;207.889000;207.960000;0 +20260212 180100;207.964000;207.990000;207.964000;207.989000;0 +20260212 180200;207.985000;207.985000;207.983000;207.985000;0 +20260212 180300;207.984000;208.041000;207.984000;208.032000;0 +20260212 180400;208.039000;208.041000;208.021000;208.023000;0 +20260212 180500;208.032000;208.034000;208.013000;208.017000;0 +20260212 180600;208.017000;208.094000;208.017000;208.083000;0 +20260212 180700;208.083000;208.088000;208.066000;208.088000;0 +20260212 180800;208.092000;208.100000;208.080000;208.100000;0 +20260212 180900;208.099000;208.128000;208.097000;208.107000;0 +20260212 181000;208.113000;208.121000;208.106000;208.112000;0 +20260212 181100;208.115000;208.135000;208.113000;208.134000;0 +20260212 181200;208.148000;208.168000;208.148000;208.167000;0 +20260212 181300;208.166000;208.167000;208.139000;208.139000;0 +20260212 181400;208.144000;208.154000;208.128000;208.129000;0 +20260212 181500;208.130000;208.146000;208.121000;208.142000;0 +20260212 181600;208.140000;208.143000;208.125000;208.138000;0 +20260212 181700;208.139000;208.144000;208.139000;208.140000;0 +20260212 181800;208.138000;208.151000;208.132000;208.140000;0 +20260212 181900;208.139000;208.164000;208.123000;208.123000;0 +20260212 182000;208.121000;208.139000;208.121000;208.130000;0 +20260212 182100;208.129000;208.135000;208.120000;208.129000;0 +20260212 182200;208.128000;208.129000;208.109000;208.127000;0 +20260212 182300;208.128000;208.134000;208.126000;208.129000;0 +20260212 182400;208.127000;208.130000;208.120000;208.123000;0 +20260212 182500;208.138000;208.139000;208.126000;208.131000;0 +20260212 182600;208.135000;208.162000;208.130000;208.156000;0 +20260212 182700;208.157000;208.162000;208.146000;208.152000;0 +20260212 182800;208.152000;208.169000;208.141000;208.146000;0 +20260212 182900;208.149000;208.159000;208.137000;208.146000;0 +20260212 183000;208.146000;208.150000;208.105000;208.115000;0 +20260212 183100;208.116000;208.131000;208.110000;208.124000;0 +20260212 183200;208.119000;208.135000;208.113000;208.134000;0 +20260212 183300;208.132000;208.133000;208.063000;208.073000;0 +20260212 183400;208.074000;208.104000;208.038000;208.040000;0 +20260212 183500;208.039000;208.070000;208.036000;208.068000;0 +20260212 183600;208.069000;208.075000;208.055000;208.071000;0 +20260212 183700;208.071000;208.079000;208.058000;208.069000;0 +20260212 183800;208.071000;208.081000;208.015000;208.017000;0 +20260212 183900;208.019000;208.026000;207.995000;208.023000;0 +20260212 184000;208.025000;208.026000;208.003000;208.006000;0 +20260212 184100;208.005000;208.019000;207.994000;208.002000;0 +20260212 184200;208.004000;208.004000;207.985000;207.995000;0 +20260212 184300;207.992000;208.005000;207.980000;207.980000;0 +20260212 184400;207.977000;207.986000;207.976000;207.986000;0 +20260212 184500;207.983000;207.985000;207.918000;207.921000;0 +20260212 184600;207.920000;207.959000;207.917000;207.938000;0 +20260212 184700;207.937000;207.961000;207.925000;207.959000;0 +20260212 184800;207.960000;207.967000;207.939000;207.958000;0 +20260212 184900;207.961000;207.965000;207.936000;207.940000;0 +20260212 185000;207.941000;207.984000;207.941000;207.978000;0 +20260212 185100;207.984000;208.015000;207.977000;208.012000;0 +20260212 185200;208.011000;208.047000;208.010000;208.042000;0 +20260212 185300;208.041000;208.111000;208.041000;208.104000;0 +20260212 185400;208.108000;208.154000;208.108000;208.147000;0 +20260212 185500;208.149000;208.171000;208.133000;208.164000;0 +20260212 185600;208.168000;208.174000;208.147000;208.155000;0 +20260212 185700;208.158000;208.162000;208.124000;208.148000;0 +20260212 185800;208.147000;208.150000;208.057000;208.062000;0 +20260212 185900;208.061000;208.093000;208.048000;208.069000;0 +20260212 190000;208.062000;208.136000;208.022000;208.130000;0 +20260212 190100;208.125000;208.200000;208.124000;208.191000;0 +20260212 190200;208.189000;208.236000;208.178000;208.196000;0 +20260212 190300;208.191000;208.209000;208.117000;208.128000;0 +20260212 190400;208.131000;208.157000;208.114000;208.150000;0 +20260212 190500;208.151000;208.241000;208.147000;208.237000;0 +20260212 190600;208.236000;208.279000;208.197000;208.277000;0 +20260212 190700;208.277000;208.277000;208.215000;208.257000;0 +20260212 190800;208.258000;208.261000;208.209000;208.230000;0 +20260212 190900;208.231000;208.271000;208.211000;208.215000;0 +20260212 191000;208.211000;208.256000;208.207000;208.208000;0 +20260212 191100;208.213000;208.279000;208.205000;208.275000;0 +20260212 191200;208.274000;208.274000;208.206000;208.249000;0 +20260212 191300;208.250000;208.258000;208.226000;208.234000;0 +20260212 191400;208.242000;208.244000;208.200000;208.221000;0 +20260212 191500;208.221000;208.255000;208.177000;208.249000;0 +20260212 191600;208.249000;208.280000;208.249000;208.262000;0 +20260212 191700;208.258000;208.280000;208.247000;208.276000;0 +20260212 191800;208.279000;208.282000;208.247000;208.257000;0 +20260212 191900;208.250000;208.271000;208.246000;208.264000;0 +20260212 192000;208.262000;208.288000;208.253000;208.288000;0 +20260212 192100;208.296000;208.306000;208.263000;208.278000;0 +20260212 192200;208.277000;208.281000;208.232000;208.251000;0 +20260212 192300;208.244000;208.265000;208.229000;208.264000;0 +20260212 192400;208.273000;208.282000;208.260000;208.261000;0 +20260212 192500;208.263000;208.263000;208.226000;208.242000;0 +20260212 192600;208.243000;208.272000;208.231000;208.233000;0 +20260212 192700;208.226000;208.250000;208.218000;208.229000;0 +20260212 192800;208.231000;208.253000;208.220000;208.237000;0 +20260212 192900;208.234000;208.268000;208.228000;208.264000;0 +20260212 193000;208.269000;208.271000;208.230000;208.265000;0 +20260212 193100;208.266000;208.271000;208.232000;208.232000;0 +20260212 193200;208.234000;208.234000;208.173000;208.192000;0 +20260212 193300;208.189000;208.216000;208.168000;208.208000;0 +20260212 193400;208.207000;208.217000;208.169000;208.173000;0 +20260212 193500;208.171000;208.183000;208.163000;208.163000;0 +20260212 193600;208.173000;208.176000;208.086000;208.106000;0 +20260212 193700;208.107000;208.153000;208.104000;208.149000;0 +20260212 193800;208.146000;208.197000;208.144000;208.180000;0 +20260212 193900;208.181000;208.213000;208.174000;208.174000;0 +20260212 194000;208.176000;208.205000;208.169000;208.205000;0 +20260212 194100;208.205000;208.210000;208.155000;208.164000;0 +20260212 194200;208.165000;208.166000;208.132000;208.154000;0 +20260212 194300;208.159000;208.159000;208.106000;208.111000;0 +20260212 194400;208.111000;208.141000;208.097000;208.119000;0 +20260212 194500;208.117000;208.120000;208.074000;208.081000;0 +20260212 194600;208.079000;208.092000;208.052000;208.072000;0 +20260212 194700;208.073000;208.095000;208.061000;208.089000;0 +20260212 194800;208.090000;208.092000;208.029000;208.082000;0 +20260212 194900;208.083000;208.153000;208.078000;208.132000;0 +20260212 195000;208.133000;208.177000;208.127000;208.130000;0 +20260212 195100;208.133000;208.175000;208.085000;208.100000;0 +20260212 195200;208.099000;208.114000;207.992000;208.001000;0 +20260212 195300;207.999000;208.069000;207.994000;208.036000;0 +20260212 195400;208.033000;208.175000;208.010000;208.165000;0 +20260212 195500;208.165000;208.170000;208.098000;208.128000;0 +20260212 195600;208.125000;208.152000;208.115000;208.128000;0 +20260212 195700;208.124000;208.144000;208.078000;208.116000;0 +20260212 195800;208.119000;208.122000;208.077000;208.112000;0 +20260212 195900;208.107000;208.117000;208.075000;208.086000;0 +20260212 200000;208.081000;208.225000;208.078000;208.142000;0 +20260212 200100;208.142000;208.152000;208.085000;208.125000;0 +20260212 200200;208.129000;208.233000;208.123000;208.232000;0 +20260212 200300;208.233000;208.325000;208.232000;208.307000;0 +20260212 200400;208.304000;208.375000;208.283000;208.363000;0 +20260212 200500;208.363000;208.466000;208.349000;208.440000;0 +20260212 200600;208.435000;208.486000;208.428000;208.484000;0 +20260212 200700;208.480000;208.560000;208.457000;208.531000;0 +20260212 200800;208.529000;208.581000;208.515000;208.534000;0 +20260212 200900;208.535000;208.561000;208.513000;208.553000;0 +20260212 201000;208.555000;208.559000;208.500000;208.519000;0 +20260212 201100;208.519000;208.603000;208.519000;208.600000;0 +20260212 201200;208.598000;208.645000;208.595000;208.645000;0 +20260212 201300;208.644000;208.665000;208.598000;208.663000;0 +20260212 201400;208.661000;208.692000;208.612000;208.612000;0 +20260212 201500;208.612000;208.617000;208.550000;208.561000;0 +20260212 201600;208.557000;208.559000;208.520000;208.531000;0 +20260212 201700;208.531000;208.574000;208.531000;208.541000;0 +20260212 201800;208.541000;208.544000;208.506000;208.537000;0 +20260212 201900;208.536000;208.572000;208.521000;208.572000;0 +20260212 202000;208.570000;208.583000;208.550000;208.581000;0 +20260212 202100;208.580000;208.598000;208.547000;208.549000;0 +20260212 202200;208.565000;208.597000;208.555000;208.589000;0 +20260212 202300;208.592000;208.642000;208.591000;208.612000;0 +20260212 202400;208.607000;208.638000;208.603000;208.625000;0 +20260212 202500;208.625000;208.660000;208.625000;208.647000;0 +20260212 202600;208.644000;208.682000;208.641000;208.673000;0 +20260212 202700;208.673000;208.706000;208.670000;208.683000;0 +20260212 202800;208.680000;208.747000;208.674000;208.745000;0 +20260212 202900;208.743000;208.750000;208.717000;208.746000;0 +20260212 203000;208.745000;208.765000;208.725000;208.753000;0 +20260212 203100;208.754000;208.770000;208.717000;208.726000;0 +20260212 203200;208.732000;208.762000;208.729000;208.736000;0 +20260212 203300;208.735000;208.746000;208.719000;208.725000;0 +20260212 203400;208.725000;208.728000;208.705000;208.720000;0 +20260212 203500;208.728000;208.757000;208.727000;208.740000;0 +20260212 203600;208.739000;208.739000;208.694000;208.703000;0 +20260212 203700;208.702000;208.717000;208.691000;208.709000;0 +20260212 203800;208.711000;208.724000;208.691000;208.704000;0 +20260212 203900;208.704000;208.708000;208.648000;208.656000;0 +20260212 204000;208.660000;208.690000;208.657000;208.690000;0 +20260212 204100;208.689000;208.689000;208.648000;208.660000;0 +20260212 204200;208.662000;208.697000;208.659000;208.696000;0 +20260212 204300;208.696000;208.729000;208.696000;208.712000;0 +20260212 204400;208.711000;208.757000;208.711000;208.755000;0 +20260212 204500;208.749000;208.764000;208.697000;208.699000;0 +20260212 204600;208.696000;208.709000;208.667000;208.683000;0 +20260212 204700;208.682000;208.695000;208.675000;208.678000;0 +20260212 204800;208.671000;208.671000;208.635000;208.659000;0 +20260212 204900;208.659000;208.684000;208.651000;208.680000;0 +20260212 205000;208.681000;208.692000;208.674000;208.690000;0 +20260212 205100;208.688000;208.737000;208.686000;208.737000;0 +20260212 205200;208.735000;208.747000;208.729000;208.733000;0 +20260212 205300;208.738000;208.741000;208.706000;208.710000;0 +20260212 205400;208.711000;208.745000;208.701000;208.745000;0 +20260212 205500;208.745000;208.763000;208.716000;208.757000;0 +20260212 205600;208.756000;208.777000;208.715000;208.722000;0 +20260212 205700;208.722000;208.725000;208.700000;208.713000;0 +20260212 205800;208.713000;208.737000;208.697000;208.707000;0 +20260212 205900;208.707000;208.712000;208.670000;208.693000;0 +20260212 210000;208.688000;208.722000;208.688000;208.722000;0 +20260212 210100;208.722000;208.754000;208.719000;208.741000;0 +20260212 210200;208.742000;208.752000;208.690000;208.691000;0 +20260212 210300;208.686000;208.687000;208.620000;208.626000;0 +20260212 210400;208.626000;208.653000;208.621000;208.627000;0 +20260212 210500;208.631000;208.660000;208.627000;208.648000;0 +20260212 210600;208.646000;208.661000;208.638000;208.641000;0 +20260212 210700;208.641000;208.672000;208.641000;208.666000;0 +20260212 210800;208.664000;208.676000;208.647000;208.648000;0 +20260212 210900;208.647000;208.657000;208.638000;208.641000;0 +20260212 211000;208.639000;208.645000;208.623000;208.644000;0 +20260212 211100;208.644000;208.644000;208.631000;208.635000;0 +20260212 211200;208.633000;208.636000;208.620000;208.620000;0 +20260212 211300;208.617000;208.650000;208.617000;208.646000;0 +20260212 211400;208.645000;208.648000;208.630000;208.638000;0 +20260212 211500;208.636000;208.641000;208.568000;208.595000;0 +20260212 211600;208.596000;208.596000;208.547000;208.574000;0 +20260212 211700;208.574000;208.616000;208.570000;208.615000;0 +20260212 211800;208.612000;208.658000;208.612000;208.658000;0 +20260212 211900;208.657000;208.660000;208.643000;208.648000;0 +20260212 212000;208.654000;208.655000;208.618000;208.636000;0 +20260212 212100;208.635000;208.638000;208.616000;208.618000;0 +20260212 212200;208.616000;208.616000;208.592000;208.595000;0 +20260212 212300;208.596000;208.598000;208.563000;208.574000;0 +20260212 212400;208.573000;208.575000;208.541000;208.563000;0 +20260212 212500;208.559000;208.570000;208.544000;208.545000;0 +20260212 212600;208.548000;208.555000;208.535000;208.535000;0 +20260212 212700;208.538000;208.552000;208.537000;208.537000;0 +20260212 212800;208.542000;208.560000;208.476000;208.502000;0 +20260212 212900;208.492000;208.503000;208.467000;208.469000;0 +20260212 213000;208.467000;208.483000;208.460000;208.478000;0 +20260212 213100;208.474000;208.491000;208.473000;208.479000;0 +20260212 213200;208.477000;208.499000;208.471000;208.499000;0 +20260212 213300;208.500000;208.513000;208.474000;208.512000;0 +20260212 213400;208.511000;208.532000;208.510000;208.520000;0 +20260212 213500;208.519000;208.528000;208.514000;208.526000;0 +20260212 213600;208.528000;208.531000;208.526000;208.528000;0 +20260212 213700;208.532000;208.537000;208.494000;208.494000;0 +20260212 213800;208.493000;208.513000;208.492000;208.505000;0 +20260212 213900;208.508000;208.516000;208.508000;208.513000;0 +20260212 214000;208.514000;208.516000;208.503000;208.511000;0 +20260212 214100;208.512000;208.517000;208.489000;208.506000;0 +20260212 214200;208.507000;208.534000;208.481000;208.503000;0 +20260212 214300;208.507000;208.512000;208.475000;208.510000;0 +20260212 214400;208.508000;208.510000;208.484000;208.484000;0 +20260212 214500;208.484000;208.499000;208.479000;208.491000;0 +20260212 214600;208.495000;208.528000;208.495000;208.524000;0 +20260212 214700;208.523000;208.574000;208.516000;208.574000;0 +20260212 214800;208.573000;208.587000;208.543000;208.577000;0 +20260212 214900;208.579000;208.586000;208.575000;208.585000;0 +20260212 215000;208.582000;208.582000;208.549000;208.549000;0 +20260212 215100;208.548000;208.573000;208.521000;208.567000;0 +20260212 215200;208.567000;208.575000;208.564000;208.570000;0 +20260212 215300;208.567000;208.600000;208.557000;208.588000;0 +20260212 215400;208.590000;208.628000;208.581000;208.618000;0 +20260212 215500;208.619000;208.633000;208.615000;208.616000;0 +20260212 215600;208.616000;208.624000;208.595000;208.595000;0 +20260212 215700;208.594000;208.615000;208.594000;208.604000;0 +20260212 215800;208.604000;208.604000;208.584000;208.586000;0 +20260212 215900;208.588000;208.609000;208.587000;208.593000;0 +20260212 220000;208.592000;208.607000;208.591000;208.597000;0 +20260212 220100;208.595000;208.599000;208.559000;208.560000;0 +20260212 220200;208.561000;208.574000;208.543000;208.574000;0 +20260212 220300;208.567000;208.572000;208.536000;208.539000;0 +20260212 220400;208.538000;208.549000;208.532000;208.532000;0 +20260212 220500;208.532000;208.545000;208.527000;208.538000;0 +20260212 220600;208.537000;208.556000;208.537000;208.548000;0 +20260212 220700;208.549000;208.568000;208.545000;208.545000;0 +20260212 220800;208.546000;208.548000;208.535000;208.535000;0 +20260212 220900;208.535000;208.548000;208.535000;208.543000;0 +20260212 221000;208.544000;208.544000;208.526000;208.537000;0 +20260212 221100;208.535000;208.535000;208.516000;208.517000;0 +20260212 221200;208.519000;208.522000;208.488000;208.490000;0 +20260212 221300;208.491000;208.499000;208.483000;208.487000;0 +20260212 221400;208.486000;208.494000;208.484000;208.487000;0 +20260212 221500;208.488000;208.492000;208.471000;208.479000;0 +20260212 221600;208.478000;208.480000;208.460000;208.460000;0 +20260212 221700;208.459000;208.466000;208.452000;208.455000;0 +20260212 221800;208.452000;208.465000;208.436000;208.437000;0 +20260212 221900;208.437000;208.453000;208.434000;208.445000;0 +20260212 222000;208.446000;208.459000;208.440000;208.441000;0 +20260212 222100;208.439000;208.446000;208.368000;208.368000;0 +20260212 222200;208.364000;208.407000;208.299000;208.362000;0 +20260212 222300;208.361000;208.367000;208.342000;208.364000;0 +20260212 222400;208.364000;208.388000;208.332000;208.382000;0 +20260212 222500;208.382000;208.393000;208.352000;208.370000;0 +20260212 222600;208.367000;208.386000;208.351000;208.378000;0 +20260212 222700;208.376000;208.382000;208.357000;208.359000;0 +20260212 222800;208.358000;208.359000;208.313000;208.326000;0 +20260212 222900;208.326000;208.327000;208.311000;208.316000;0 +20260212 223000;208.315000;208.315000;208.231000;208.259000;0 +20260212 223100;208.261000;208.298000;208.249000;208.256000;0 +20260212 223200;208.255000;208.300000;208.253000;208.282000;0 +20260212 223300;208.281000;208.287000;208.240000;208.276000;0 +20260212 223400;208.278000;208.281000;208.228000;208.252000;0 +20260212 223500;208.255000;208.262000;208.214000;208.233000;0 +20260212 223600;208.228000;208.250000;208.207000;208.208000;0 +20260212 223700;208.206000;208.206000;208.160000;208.164000;0 +20260212 223800;208.162000;208.192000;208.161000;208.183000;0 +20260212 223900;208.189000;208.222000;208.189000;208.218000;0 +20260212 224000;208.219000;208.265000;208.216000;208.251000;0 +20260212 224100;208.251000;208.252000;208.209000;208.217000;0 +20260212 224200;208.220000;208.239000;208.219000;208.236000;0 +20260212 224300;208.235000;208.253000;208.216000;208.228000;0 +20260212 224400;208.229000;208.265000;208.223000;208.245000;0 +20260212 224500;208.245000;208.257000;208.232000;208.254000;0 +20260212 224600;208.254000;208.255000;208.225000;208.238000;0 +20260212 224700;208.238000;208.245000;208.226000;208.243000;0 +20260212 224800;208.246000;208.268000;208.243000;208.258000;0 +20260212 224900;208.257000;208.273000;208.257000;208.273000;0 +20260212 225000;208.271000;208.280000;208.264000;208.272000;0 +20260212 225100;208.273000;208.293000;208.270000;208.274000;0 +20260212 225200;208.275000;208.275000;208.253000;208.254000;0 +20260212 225300;208.256000;208.267000;208.242000;208.246000;0 +20260212 225400;208.244000;208.245000;208.199000;208.199000;0 +20260212 225500;208.197000;208.208000;208.183000;208.185000;0 +20260212 225600;208.186000;208.188000;208.168000;208.186000;0 +20260212 225700;208.190000;208.190000;208.160000;208.163000;0 +20260212 225800;208.166000;208.212000;208.164000;208.198000;0 +20260212 225900;208.197000;208.243000;208.196000;208.240000;0 +20260212 230000;208.238000;208.239000;208.164000;208.166000;0 +20260212 230100;208.167000;208.218000;208.164000;208.218000;0 +20260212 230200;208.219000;208.230000;208.172000;208.175000;0 +20260212 230300;208.174000;208.192000;208.171000;208.186000;0 +20260212 230400;208.192000;208.195000;208.160000;208.163000;0 +20260212 230500;208.159000;208.168000;208.154000;208.159000;0 +20260212 230600;208.158000;208.170000;208.147000;208.168000;0 +20260212 230700;208.161000;208.171000;208.146000;208.158000;0 +20260212 230800;208.157000;208.166000;208.149000;208.157000;0 +20260212 230900;208.155000;208.162000;208.137000;208.144000;0 +20260212 231000;208.142000;208.150000;208.108000;208.111000;0 +20260212 231100;208.112000;208.134000;208.112000;208.131000;0 +20260212 231200;208.130000;208.178000;208.128000;208.173000;0 +20260212 231300;208.174000;208.177000;208.160000;208.171000;0 +20260212 231400;208.172000;208.183000;208.159000;208.182000;0 +20260212 231500;208.182000;208.201000;208.169000;208.200000;0 +20260212 231600;208.201000;208.248000;208.194000;208.246000;0 +20260212 231700;208.248000;208.271000;208.241000;208.264000;0 +20260212 231800;208.261000;208.261000;208.233000;208.258000;0 +20260212 231900;208.256000;208.267000;208.244000;208.266000;0 +20260212 232000;208.269000;208.274000;208.230000;208.232000;0 +20260212 232100;208.236000;208.239000;208.223000;208.228000;0 +20260212 232200;208.231000;208.231000;208.189000;208.207000;0 +20260212 232300;208.213000;208.222000;208.170000;208.210000;0 +20260212 232400;208.208000;208.227000;208.198000;208.221000;0 +20260212 232500;208.220000;208.259000;208.220000;208.258000;0 +20260212 232600;208.256000;208.258000;208.242000;208.245000;0 +20260212 232700;208.243000;208.257000;208.236000;208.239000;0 +20260212 232800;208.240000;208.240000;208.216000;208.228000;0 +20260212 232900;208.224000;208.242000;208.223000;208.235000;0 +20260212 233000;208.234000;208.307000;208.227000;208.296000;0 +20260212 233100;208.293000;208.305000;208.270000;208.271000;0 +20260212 233200;208.270000;208.317000;208.252000;208.313000;0 +20260212 233300;208.310000;208.313000;208.287000;208.303000;0 +20260212 233400;208.305000;208.308000;208.286000;208.291000;0 +20260212 233500;208.294000;208.323000;208.286000;208.313000;0 +20260212 233600;208.313000;208.370000;208.313000;208.370000;0 +20260212 233700;208.372000;208.407000;208.370000;208.381000;0 +20260212 233800;208.377000;208.382000;208.339000;208.339000;0 +20260212 233900;208.337000;208.373000;208.337000;208.373000;0 +20260212 234000;208.371000;208.399000;208.371000;208.385000;0 +20260212 234100;208.384000;208.463000;208.376000;208.461000;0 +20260212 234200;208.460000;208.460000;208.420000;208.447000;0 +20260212 234300;208.447000;208.459000;208.434000;208.436000;0 +20260212 234400;208.437000;208.458000;208.429000;208.446000;0 +20260212 234500;208.456000;208.472000;208.442000;208.472000;0 +20260212 234600;208.472000;208.505000;208.450000;208.498000;0 +20260212 234700;208.496000;208.499000;208.470000;208.470000;0 +20260212 234800;208.468000;208.501000;208.462000;208.485000;0 +20260212 234900;208.484000;208.500000;208.483000;208.499000;0 +20260212 235000;208.497000;208.514000;208.496000;208.506000;0 +20260212 235100;208.508000;208.540000;208.500000;208.500000;0 +20260212 235200;208.500000;208.522000;208.494000;208.507000;0 +20260212 235300;208.506000;208.512000;208.499000;208.502000;0 +20260212 235400;208.503000;208.512000;208.503000;208.511000;0 +20260212 235500;208.510000;208.561000;208.508000;208.557000;0 +20260212 235600;208.560000;208.572000;208.551000;208.568000;0 +20260212 235700;208.567000;208.571000;208.545000;208.570000;0 +20260212 235800;208.565000;208.583000;208.565000;208.579000;0 +20260212 235900;208.572000;208.604000;208.569000;208.599000;0 +20260213 000000;208.602000;208.614000;208.579000;208.579000;0 +20260213 000100;208.584000;208.622000;208.581000;208.601000;0 +20260213 000200;208.601000;208.628000;208.579000;208.579000;0 +20260213 000300;208.575000;208.605000;208.567000;208.605000;0 +20260213 000400;208.607000;208.614000;208.591000;208.596000;0 +20260213 000500;208.589000;208.631000;208.583000;208.620000;0 +20260213 000600;208.618000;208.647000;208.616000;208.647000;0 +20260213 000700;208.646000;208.647000;208.619000;208.626000;0 +20260213 000800;208.626000;208.626000;208.561000;208.567000;0 +20260213 000900;208.563000;208.580000;208.552000;208.555000;0 +20260213 001000;208.551000;208.551000;208.512000;208.524000;0 +20260213 001100;208.516000;208.524000;208.490000;208.490000;0 +20260213 001200;208.491000;208.493000;208.482000;208.488000;0 +20260213 001300;208.486000;208.490000;208.481000;208.481000;0 +20260213 001400;208.480000;208.500000;208.477000;208.486000;0 +20260213 001500;208.480000;208.492000;208.435000;208.442000;0 +20260213 001600;208.443000;208.450000;208.429000;208.437000;0 +20260213 001700;208.436000;208.445000;208.415000;208.420000;0 +20260213 001800;208.420000;208.436000;208.410000;208.416000;0 +20260213 001900;208.415000;208.419000;208.397000;208.405000;0 +20260213 002000;208.405000;208.410000;208.399000;208.399000;0 +20260213 002100;208.399000;208.420000;208.397000;208.418000;0 +20260213 002200;208.417000;208.436000;208.417000;208.423000;0 +20260213 002300;208.421000;208.428000;208.406000;208.408000;0 +20260213 002400;208.411000;208.414000;208.391000;208.392000;0 +20260213 002500;208.392000;208.407000;208.390000;208.407000;0 +20260213 002600;208.409000;208.409000;208.368000;208.369000;0 +20260213 002700;208.369000;208.411000;208.356000;208.400000;0 +20260213 002800;208.399000;208.410000;208.385000;208.403000;0 +20260213 002900;208.403000;208.404000;208.353000;208.354000;0 +20260213 003000;208.352000;208.391000;208.342000;208.384000;0 +20260213 003100;208.387000;208.394000;208.364000;208.371000;0 +20260213 003200;208.367000;208.373000;208.342000;208.370000;0 +20260213 003300;208.368000;208.439000;208.365000;208.438000;0 +20260213 003400;208.437000;208.444000;208.395000;208.440000;0 +20260213 003500;208.435000;208.463000;208.428000;208.463000;0 +20260213 003600;208.461000;208.471000;208.449000;208.463000;0 +20260213 003700;208.463000;208.463000;208.423000;208.425000;0 +20260213 003800;208.426000;208.444000;208.421000;208.429000;0 +20260213 003900;208.431000;208.436000;208.416000;208.417000;0 +20260213 004000;208.416000;208.443000;208.414000;208.440000;0 +20260213 004100;208.442000;208.472000;208.439000;208.459000;0 +20260213 004200;208.460000;208.474000;208.459000;208.465000;0 +20260213 004300;208.466000;208.487000;208.455000;208.465000;0 +20260213 004400;208.466000;208.483000;208.455000;208.455000;0 +20260213 004500;208.462000;208.503000;208.462000;208.494000;0 +20260213 004600;208.493000;208.514000;208.485000;208.504000;0 +20260213 004700;208.501000;208.542000;208.500000;208.542000;0 +20260213 004800;208.543000;208.556000;208.526000;208.546000;0 +20260213 004900;208.561000;208.624000;208.556000;208.613000;0 +20260213 005000;208.614000;208.641000;208.563000;208.574000;0 +20260213 005100;208.573000;208.574000;208.543000;208.544000;0 +20260213 005200;208.543000;208.550000;208.508000;208.529000;0 +20260213 005300;208.531000;208.543000;208.511000;208.525000;0 +20260213 005400;208.523000;208.529000;208.499000;208.517000;0 +20260213 005500;208.516000;208.562000;208.516000;208.559000;0 +20260213 005600;208.564000;208.583000;208.546000;208.576000;0 +20260213 005700;208.578000;208.596000;208.552000;208.552000;0 +20260213 005800;208.554000;208.575000;208.512000;208.520000;0 +20260213 005900;208.518000;208.531000;208.509000;208.531000;0 +20260213 010000;208.533000;208.575000;208.528000;208.546000;0 +20260213 010100;208.546000;208.575000;208.527000;208.575000;0 +20260213 010200;208.576000;208.638000;208.573000;208.622000;0 +20260213 010300;208.623000;208.632000;208.558000;208.582000;0 +20260213 010400;208.583000;208.621000;208.563000;208.615000;0 +20260213 010500;208.610000;208.648000;208.590000;208.594000;0 +20260213 010600;208.594000;208.618000;208.584000;208.587000;0 +20260213 010700;208.589000;208.603000;208.553000;208.559000;0 +20260213 010800;208.558000;208.565000;208.495000;208.496000;0 +20260213 010900;208.495000;208.513000;208.485000;208.487000;0 +20260213 011000;208.485000;208.501000;208.479000;208.483000;0 +20260213 011100;208.484000;208.487000;208.443000;208.447000;0 +20260213 011200;208.446000;208.460000;208.411000;208.413000;0 +20260213 011300;208.412000;208.433000;208.400000;208.401000;0 +20260213 011400;208.401000;208.414000;208.392000;208.410000;0 +20260213 011500;208.408000;208.441000;208.397000;208.415000;0 +20260213 011600;208.416000;208.427000;208.407000;208.427000;0 +20260213 011700;208.425000;208.434000;208.406000;208.412000;0 +20260213 011800;208.411000;208.418000;208.357000;208.357000;0 +20260213 011900;208.359000;208.359000;208.312000;208.312000;0 +20260213 012000;208.310000;208.341000;208.308000;208.314000;0 +20260213 012100;208.315000;208.330000;208.311000;208.316000;0 +20260213 012200;208.317000;208.352000;208.316000;208.325000;0 +20260213 012300;208.322000;208.349000;208.315000;208.347000;0 +20260213 012400;208.345000;208.411000;208.341000;208.385000;0 +20260213 012500;208.384000;208.412000;208.369000;208.389000;0 +20260213 012600;208.389000;208.403000;208.353000;208.381000;0 +20260213 012700;208.379000;208.394000;208.365000;208.375000;0 +20260213 012800;208.376000;208.386000;208.370000;208.377000;0 +20260213 012900;208.374000;208.374000;208.307000;208.334000;0 +20260213 013000;208.329000;208.367000;208.329000;208.351000;0 +20260213 013100;208.350000;208.362000;208.335000;208.353000;0 +20260213 013200;208.352000;208.423000;208.352000;208.391000;0 +20260213 013300;208.392000;208.427000;208.387000;208.417000;0 +20260213 013400;208.419000;208.435000;208.394000;208.403000;0 +20260213 013500;208.404000;208.420000;208.382000;208.415000;0 +20260213 013600;208.417000;208.419000;208.385000;208.391000;0 +20260213 013700;208.390000;208.408000;208.327000;208.327000;0 +20260213 013800;208.328000;208.374000;208.324000;208.374000;0 +20260213 013900;208.378000;208.392000;208.362000;208.383000;0 +20260213 014000;208.380000;208.386000;208.372000;208.384000;0 +20260213 014100;208.384000;208.409000;208.372000;208.372000;0 +20260213 014200;208.373000;208.393000;208.371000;208.386000;0 +20260213 014300;208.387000;208.418000;208.370000;208.414000;0 +20260213 014400;208.415000;208.454000;208.413000;208.448000;0 +20260213 014500;208.455000;208.455000;208.406000;208.417000;0 +20260213 014600;208.416000;208.465000;208.416000;208.464000;0 +20260213 014700;208.470000;208.478000;208.454000;208.472000;0 +20260213 014800;208.467000;208.487000;208.465000;208.465000;0 +20260213 014900;208.456000;208.493000;208.447000;208.493000;0 +20260213 015000;208.499000;208.512000;208.476000;208.506000;0 +20260213 015100;208.509000;208.510000;208.483000;208.485000;0 +20260213 015200;208.483000;208.529000;208.483000;208.524000;0 +20260213 015300;208.522000;208.557000;208.500000;208.525000;0 +20260213 015400;208.526000;208.628000;208.526000;208.617000;0 +20260213 015500;208.616000;208.622000;208.591000;208.610000;0 +20260213 015600;208.610000;208.614000;208.589000;208.598000;0 +20260213 015700;208.601000;208.649000;208.598000;208.639000;0 +20260213 015800;208.639000;208.646000;208.617000;208.617000;0 +20260213 015900;208.617000;208.652000;208.609000;208.646000;0 +20260213 020000;208.642000;208.687000;208.628000;208.656000;0 +20260213 020100;208.654000;208.673000;208.635000;208.664000;0 +20260213 020200;208.659000;208.697000;208.642000;208.669000;0 +20260213 020300;208.675000;208.695000;208.665000;208.668000;0 +20260213 020400;208.668000;208.677000;208.651000;208.651000;0 +20260213 020500;208.648000;208.648000;208.591000;208.605000;0 +20260213 020600;208.611000;208.628000;208.571000;208.590000;0 +20260213 020700;208.588000;208.635000;208.573000;208.632000;0 +20260213 020800;208.633000;208.697000;208.632000;208.667000;0 +20260213 020900;208.666000;208.720000;208.653000;208.716000;0 +20260213 021000;208.721000;208.768000;208.702000;208.739000;0 +20260213 021100;208.733000;208.734000;208.691000;208.694000;0 +20260213 021200;208.697000;208.706000;208.652000;208.659000;0 +20260213 021300;208.658000;208.701000;208.654000;208.692000;0 +20260213 021400;208.690000;208.726000;208.690000;208.721000;0 +20260213 021500;208.721000;208.772000;208.691000;208.701000;0 +20260213 021600;208.703000;208.745000;208.662000;208.681000;0 +20260213 021700;208.682000;208.712000;208.674000;208.698000;0 +20260213 021800;208.697000;208.698000;208.661000;208.663000;0 +20260213 021900;208.661000;208.679000;208.643000;208.652000;0 +20260213 022000;208.643000;208.653000;208.625000;208.633000;0 +20260213 022100;208.635000;208.641000;208.597000;208.624000;0 +20260213 022200;208.625000;208.638000;208.614000;208.616000;0 +20260213 022300;208.621000;208.645000;208.608000;208.642000;0 +20260213 022400;208.640000;208.669000;208.620000;208.667000;0 +20260213 022500;208.673000;208.695000;208.647000;208.680000;0 +20260213 022600;208.680000;208.685000;208.647000;208.663000;0 +20260213 022700;208.661000;208.712000;208.657000;208.684000;0 +20260213 022800;208.683000;208.684000;208.658000;208.674000;0 +20260213 022900;208.674000;208.686000;208.665000;208.685000;0 +20260213 023000;208.686000;208.700000;208.680000;208.698000;0 +20260213 023100;208.697000;208.704000;208.666000;208.676000;0 +20260213 023200;208.672000;208.702000;208.666000;208.692000;0 +20260213 023300;208.693000;208.693000;208.666000;208.685000;0 +20260213 023400;208.687000;208.697000;208.685000;208.696000;0 +20260213 023500;208.693000;208.718000;208.679000;208.701000;0 +20260213 023600;208.699000;208.743000;208.694000;208.720000;0 +20260213 023700;208.718000;208.748000;208.714000;208.728000;0 +20260213 023800;208.725000;208.759000;208.699000;208.703000;0 +20260213 023900;208.704000;208.738000;208.689000;208.717000;0 +20260213 024000;208.714000;208.743000;208.702000;208.713000;0 +20260213 024100;208.711000;208.748000;208.706000;208.747000;0 +20260213 024200;208.749000;208.811000;208.745000;208.794000;0 +20260213 024300;208.794000;208.890000;208.794000;208.874000;0 +20260213 024400;208.867000;208.966000;208.861000;208.927000;0 +20260213 024500;208.927000;208.927000;208.862000;208.871000;0 +20260213 024600;208.869000;208.869000;208.790000;208.790000;0 +20260213 024700;208.793000;208.835000;208.793000;208.822000;0 +20260213 024800;208.823000;208.854000;208.807000;208.835000;0 +20260213 024900;208.839000;208.840000;208.811000;208.811000;0 +20260213 025000;208.810000;208.810000;208.792000;208.802000;0 +20260213 025100;208.803000;208.805000;208.792000;208.793000;0 +20260213 025200;208.794000;208.818000;208.790000;208.802000;0 +20260213 025300;208.803000;208.840000;208.787000;208.836000;0 +20260213 025400;208.837000;208.879000;208.833000;208.879000;0 +20260213 025500;208.878000;208.897000;208.870000;208.894000;0 +20260213 025600;208.895000;208.915000;208.854000;208.868000;0 +20260213 025700;208.867000;208.867000;208.747000;208.777000;0 +20260213 025800;208.776000;208.842000;208.775000;208.834000;0 +20260213 025900;208.834000;208.862000;208.820000;208.839000;0 +20260213 030000;208.834000;208.864000;208.804000;208.862000;0 +20260213 030100;208.859000;208.949000;208.831000;208.943000;0 +20260213 030200;208.942000;208.942000;208.884000;208.912000;0 +20260213 030300;208.915000;209.094000;208.912000;209.089000;0 +20260213 030400;209.089000;209.151000;209.057000;209.129000;0 +20260213 030500;209.128000;209.155000;209.101000;209.136000;0 +20260213 030600;209.138000;209.156000;209.067000;209.085000;0 +20260213 030700;209.082000;209.113000;209.067000;209.070000;0 +20260213 030800;209.072000;209.076000;209.011000;209.033000;0 +20260213 030900;209.034000;209.037000;208.978000;209.028000;0 +20260213 031000;209.027000;209.034000;208.989000;209.001000;0 +20260213 031100;209.002000;209.002000;208.969000;208.969000;0 +20260213 031200;208.969000;209.013000;208.946000;209.003000;0 +20260213 031300;209.002000;209.002000;208.973000;208.989000;0 +20260213 031400;208.987000;208.987000;208.865000;208.865000;0 +20260213 031500;208.870000;208.903000;208.853000;208.866000;0 +20260213 031600;208.867000;208.905000;208.842000;208.849000;0 +20260213 031700;208.850000;208.891000;208.837000;208.869000;0 +20260213 031800;208.868000;208.907000;208.868000;208.874000;0 +20260213 031900;208.878000;208.927000;208.850000;208.923000;0 +20260213 032000;208.921000;208.997000;208.915000;208.962000;0 +20260213 032100;208.961000;209.004000;208.949000;208.997000;0 +20260213 032200;208.998000;209.004000;208.968000;208.981000;0 +20260213 032300;208.982000;209.031000;208.968000;209.031000;0 +20260213 032400;209.031000;209.033000;208.982000;208.986000;0 +20260213 032500;208.983000;209.029000;208.983000;209.003000;0 +20260213 032600;209.010000;209.020000;208.967000;208.972000;0 +20260213 032700;208.970000;209.012000;208.970000;208.993000;0 +20260213 032800;208.994000;209.031000;208.990000;209.029000;0 +20260213 032900;209.031000;209.042000;209.006000;209.024000;0 +20260213 033000;209.032000;209.045000;208.962000;208.994000;0 +20260213 033100;208.992000;209.053000;208.991000;209.052000;0 +20260213 033200;209.048000;209.066000;209.036000;209.061000;0 +20260213 033300;209.060000;209.125000;209.055000;209.078000;0 +20260213 033400;209.079000;209.113000;209.025000;209.025000;0 +20260213 033500;209.026000;209.064000;209.019000;209.063000;0 +20260213 033600;209.069000;209.105000;209.051000;209.052000;0 +20260213 033700;209.053000;209.089000;209.049000;209.072000;0 +20260213 033800;209.073000;209.115000;209.073000;209.108000;0 +20260213 033900;209.099000;209.099000;209.053000;209.054000;0 +20260213 034000;209.053000;209.068000;209.050000;209.057000;0 +20260213 034100;209.056000;209.094000;209.053000;209.090000;0 +20260213 034200;209.094000;209.123000;209.060000;209.085000;0 +20260213 034300;209.085000;209.116000;209.082000;209.088000;0 +20260213 034400;209.091000;209.179000;209.091000;209.178000;0 +20260213 034500;209.178000;209.278000;209.178000;209.236000;0 +20260213 034600;209.236000;209.319000;209.234000;209.314000;0 +20260213 034700;209.314000;209.315000;209.258000;209.267000;0 +20260213 034800;209.267000;209.299000;209.257000;209.287000;0 +20260213 034900;209.287000;209.306000;209.276000;209.282000;0 +20260213 035000;209.284000;209.307000;209.269000;209.269000;0 +20260213 035100;209.273000;209.316000;209.259000;209.312000;0 +20260213 035200;209.313000;209.329000;209.280000;209.293000;0 +20260213 035300;209.287000;209.306000;209.273000;209.288000;0 +20260213 035400;209.290000;209.306000;209.284000;209.305000;0 +20260213 035500;209.305000;209.318000;209.280000;209.297000;0 +20260213 035600;209.298000;209.309000;209.284000;209.284000;0 +20260213 035700;209.292000;209.299000;209.227000;209.264000;0 +20260213 035800;209.266000;209.266000;209.218000;209.226000;0 +20260213 035900;209.224000;209.235000;209.191000;209.221000;0 +20260213 040000;209.217000;209.243000;209.186000;209.228000;0 +20260213 040100;209.233000;209.267000;209.223000;209.223000;0 +20260213 040200;209.219000;209.232000;209.166000;209.166000;0 +20260213 040300;209.167000;209.187000;209.162000;209.169000;0 +20260213 040400;209.168000;209.180000;209.148000;209.176000;0 +20260213 040500;209.178000;209.221000;209.178000;209.206000;0 +20260213 040600;209.207000;209.213000;209.172000;209.182000;0 +20260213 040700;209.182000;209.210000;209.157000;209.160000;0 +20260213 040800;209.159000;209.204000;209.142000;209.197000;0 +20260213 040900;209.199000;209.223000;209.198000;209.218000;0 +20260213 041000;209.216000;209.245000;209.197000;209.205000;0 +20260213 041100;209.205000;209.296000;209.200000;209.295000;0 +20260213 041200;209.295000;209.295000;209.252000;209.282000;0 +20260213 041300;209.282000;209.282000;209.244000;209.258000;0 +20260213 041400;209.258000;209.258000;209.186000;209.186000;0 +20260213 041500;209.180000;209.209000;209.180000;209.203000;0 +20260213 041600;209.199000;209.235000;209.192000;209.206000;0 +20260213 041700;209.203000;209.213000;209.174000;209.174000;0 +20260213 041800;209.174000;209.184000;209.165000;209.184000;0 +20260213 041900;209.182000;209.201000;209.159000;209.166000;0 +20260213 042000;209.163000;209.230000;209.156000;209.228000;0 +20260213 042100;209.229000;209.281000;209.225000;209.257000;0 +20260213 042200;209.255000;209.284000;209.245000;209.284000;0 +20260213 042300;209.283000;209.292000;209.272000;209.279000;0 +20260213 042400;209.280000;209.296000;209.268000;209.287000;0 +20260213 042500;209.288000;209.306000;209.274000;209.293000;0 +20260213 042600;209.291000;209.295000;209.271000;209.287000;0 +20260213 042700;209.286000;209.318000;209.277000;209.312000;0 +20260213 042800;209.313000;209.317000;209.279000;209.284000;0 +20260213 042900;209.282000;209.297000;209.270000;209.281000;0 +20260213 043000;209.278000;209.294000;209.251000;209.265000;0 +20260213 043100;209.262000;209.275000;209.249000;209.252000;0 +20260213 043200;209.252000;209.258000;209.214000;209.238000;0 +20260213 043300;209.237000;209.237000;209.189000;209.197000;0 +20260213 043400;209.194000;209.197000;209.135000;209.136000;0 +20260213 043500;209.138000;209.141000;209.104000;209.106000;0 +20260213 043600;209.110000;209.180000;209.110000;209.177000;0 +20260213 043700;209.180000;209.201000;209.180000;209.184000;0 +20260213 043800;209.180000;209.193000;209.134000;209.139000;0 +20260213 043900;209.141000;209.147000;209.106000;209.126000;0 +20260213 044000;209.115000;209.170000;209.113000;209.169000;0 +20260213 044100;209.170000;209.216000;209.155000;209.171000;0 +20260213 044200;209.172000;209.190000;209.144000;209.153000;0 +20260213 044300;209.153000;209.205000;209.143000;209.162000;0 +20260213 044400;209.162000;209.162000;209.134000;209.137000;0 +20260213 044500;209.138000;209.150000;209.122000;209.139000;0 +20260213 044600;209.138000;209.141000;209.094000;209.098000;0 +20260213 044700;209.101000;209.119000;209.098000;209.107000;0 +20260213 044800;209.108000;209.147000;209.108000;209.132000;0 +20260213 044900;209.134000;209.181000;209.132000;209.178000;0 +20260213 045000;209.182000;209.184000;209.151000;209.166000;0 +20260213 045100;209.167000;209.170000;209.136000;209.141000;0 +20260213 045200;209.142000;209.144000;209.128000;209.134000;0 +20260213 045300;209.134000;209.182000;209.134000;209.180000;0 +20260213 045400;209.179000;209.196000;209.115000;209.119000;0 +20260213 045500;209.121000;209.122000;209.093000;209.102000;0 +20260213 045600;209.109000;209.137000;209.107000;209.136000;0 +20260213 045700;209.136000;209.151000;209.110000;209.113000;0 +20260213 045800;209.115000;209.120000;209.095000;209.102000;0 +20260213 045900;209.106000;209.135000;209.098000;209.116000;0 +20260213 050000;209.116000;209.116000;209.074000;209.098000;0 +20260213 050100;209.099000;209.129000;209.094000;209.112000;0 +20260213 050200;209.112000;209.141000;209.075000;209.141000;0 +20260213 050300;209.144000;209.163000;209.136000;209.154000;0 +20260213 050400;209.154000;209.203000;209.154000;209.188000;0 +20260213 050500;209.188000;209.209000;209.181000;209.188000;0 +20260213 050600;209.189000;209.189000;209.143000;209.162000;0 +20260213 050700;209.160000;209.161000;209.138000;209.153000;0 +20260213 050800;209.152000;209.170000;209.142000;209.143000;0 +20260213 050900;209.141000;209.163000;209.117000;209.122000;0 +20260213 051000;209.130000;209.141000;209.126000;209.138000;0 +20260213 051100;209.136000;209.138000;209.107000;209.123000;0 +20260213 051200;209.119000;209.131000;209.089000;209.131000;0 +20260213 051300;209.131000;209.147000;209.114000;209.129000;0 +20260213 051400;209.129000;209.143000;209.120000;209.133000;0 +20260213 051500;209.142000;209.160000;209.138000;209.154000;0 +20260213 051600;209.152000;209.157000;209.124000;209.127000;0 +20260213 051700;209.128000;209.128000;209.093000;209.108000;0 +20260213 051800;209.109000;209.148000;209.103000;209.141000;0 +20260213 051900;209.140000;209.192000;209.140000;209.190000;0 +20260213 052000;209.189000;209.222000;209.181000;209.220000;0 +20260213 052100;209.221000;209.232000;209.209000;209.218000;0 +20260213 052200;209.218000;209.224000;209.198000;209.198000;0 +20260213 052300;209.200000;209.201000;209.161000;209.162000;0 +20260213 052400;209.160000;209.161000;209.120000;209.146000;0 +20260213 052500;209.144000;209.184000;209.144000;209.180000;0 +20260213 052600;209.171000;209.171000;209.145000;209.145000;0 +20260213 052700;209.143000;209.174000;209.143000;209.173000;0 +20260213 052800;209.170000;209.171000;209.141000;209.144000;0 +20260213 052900;209.139000;209.143000;209.109000;209.109000;0 +20260213 053000;209.105000;209.131000;209.104000;209.116000;0 +20260213 053100;209.117000;209.121000;209.101000;209.111000;0 +20260213 053200;209.110000;209.111000;209.097000;209.109000;0 +20260213 053300;209.110000;209.111000;209.082000;209.093000;0 +20260213 053400;209.094000;209.122000;209.093000;209.100000;0 +20260213 053500;209.101000;209.107000;209.081000;209.089000;0 +20260213 053600;209.091000;209.095000;209.083000;209.086000;0 +20260213 053700;209.086000;209.139000;209.086000;209.135000;0 +20260213 053800;209.135000;209.142000;209.119000;209.136000;0 +20260213 053900;209.133000;209.185000;209.133000;209.160000;0 +20260213 054000;209.157000;209.166000;209.145000;209.156000;0 +20260213 054100;209.160000;209.189000;209.153000;209.156000;0 +20260213 054200;209.156000;209.168000;209.122000;209.127000;0 +20260213 054300;209.126000;209.147000;209.117000;209.132000;0 +20260213 054400;209.132000;209.132000;209.099000;209.099000;0 +20260213 054500;209.101000;209.108000;209.071000;209.084000;0 +20260213 054600;209.081000;209.092000;209.074000;209.074000;0 +20260213 054700;209.073000;209.098000;209.065000;209.073000;0 +20260213 054800;209.072000;209.072000;209.015000;209.036000;0 +20260213 054900;209.039000;209.055000;209.017000;209.026000;0 +20260213 055000;209.022000;209.031000;209.005000;209.025000;0 +20260213 055100;209.027000;209.027000;208.958000;208.989000;0 +20260213 055200;208.988000;209.010000;208.983000;208.996000;0 +20260213 055300;208.995000;208.996000;208.966000;208.972000;0 +20260213 055400;208.973000;208.996000;208.965000;208.987000;0 +20260213 055500;208.988000;209.021000;208.984000;209.021000;0 +20260213 055600;209.017000;209.017000;208.952000;208.953000;0 +20260213 055700;208.954000;208.986000;208.952000;208.970000;0 +20260213 055800;208.970000;208.996000;208.956000;208.991000;0 +20260213 055900;208.987000;208.997000;208.955000;208.955000;0 +20260213 060000;208.960000;208.960000;208.895000;208.904000;0 +20260213 060100;208.904000;208.927000;208.885000;208.902000;0 +20260213 060200;208.902000;208.908000;208.857000;208.857000;0 +20260213 060300;208.857000;208.871000;208.851000;208.858000;0 +20260213 060400;208.855000;208.875000;208.827000;208.861000;0 +20260213 060500;208.859000;208.859000;208.820000;208.830000;0 +20260213 060600;208.827000;208.841000;208.820000;208.839000;0 +20260213 060700;208.840000;208.865000;208.838000;208.863000;0 +20260213 060800;208.862000;208.874000;208.818000;208.832000;0 +20260213 060900;208.831000;208.849000;208.829000;208.830000;0 +20260213 061000;208.830000;208.830000;208.807000;208.811000;0 +20260213 061100;208.812000;208.827000;208.792000;208.797000;0 +20260213 061200;208.799000;208.800000;208.759000;208.769000;0 +20260213 061300;208.771000;208.786000;208.768000;208.786000;0 +20260213 061400;208.786000;208.793000;208.764000;208.767000;0 +20260213 061500;208.767000;208.787000;208.729000;208.742000;0 +20260213 061600;208.743000;208.775000;208.743000;208.768000;0 +20260213 061700;208.768000;208.798000;208.765000;208.789000;0 +20260213 061800;208.788000;208.798000;208.767000;208.778000;0 +20260213 061900;208.779000;208.799000;208.775000;208.784000;0 +20260213 062000;208.784000;208.787000;208.765000;208.787000;0 +20260213 062100;208.790000;208.791000;208.769000;208.780000;0 +20260213 062200;208.778000;208.814000;208.768000;208.814000;0 +20260213 062300;208.813000;208.827000;208.806000;208.817000;0 +20260213 062400;208.816000;208.837000;208.809000;208.825000;0 +20260213 062500;208.826000;208.826000;208.775000;208.787000;0 +20260213 062600;208.788000;208.817000;208.785000;208.816000;0 +20260213 062700;208.817000;208.833000;208.816000;208.829000;0 +20260213 062800;208.826000;208.837000;208.823000;208.828000;0 +20260213 062900;208.828000;208.829000;208.792000;208.794000;0 +20260213 063000;208.796000;208.803000;208.759000;208.768000;0 +20260213 063100;208.767000;208.793000;208.737000;208.758000;0 +20260213 063200;208.760000;208.773000;208.747000;208.765000;0 +20260213 063300;208.768000;208.782000;208.762000;208.771000;0 +20260213 063400;208.772000;208.802000;208.772000;208.801000;0 +20260213 063500;208.802000;208.811000;208.798000;208.809000;0 +20260213 063600;208.809000;208.821000;208.760000;208.760000;0 +20260213 063700;208.760000;208.760000;208.725000;208.735000;0 +20260213 063800;208.734000;208.734000;208.669000;208.670000;0 +20260213 063900;208.669000;208.690000;208.656000;208.683000;0 +20260213 064000;208.680000;208.686000;208.658000;208.684000;0 +20260213 064100;208.683000;208.683000;208.618000;208.629000;0 +20260213 064200;208.630000;208.651000;208.618000;208.620000;0 +20260213 064300;208.619000;208.626000;208.596000;208.601000;0 +20260213 064400;208.599000;208.604000;208.529000;208.538000;0 +20260213 064500;208.535000;208.543000;208.499000;208.507000;0 +20260213 064600;208.506000;208.557000;208.506000;208.557000;0 +20260213 064700;208.555000;208.594000;208.551000;208.577000;0 +20260213 064800;208.576000;208.576000;208.544000;208.553000;0 +20260213 064900;208.554000;208.566000;208.536000;208.539000;0 +20260213 065000;208.537000;208.541000;208.486000;208.523000;0 +20260213 065100;208.518000;208.539000;208.518000;208.533000;0 +20260213 065200;208.532000;208.560000;208.515000;208.545000;0 +20260213 065300;208.545000;208.560000;208.527000;208.542000;0 +20260213 065400;208.542000;208.558000;208.519000;208.558000;0 +20260213 065500;208.565000;208.600000;208.563000;208.591000;0 +20260213 065600;208.585000;208.585000;208.544000;208.570000;0 +20260213 065700;208.570000;208.612000;208.554000;208.589000;0 +20260213 065800;208.586000;208.597000;208.567000;208.574000;0 +20260213 065900;208.574000;208.615000;208.557000;208.611000;0 +20260213 070000;208.609000;208.652000;208.576000;208.650000;0 +20260213 070100;208.648000;208.648000;208.606000;208.606000;0 +20260213 070200;208.608000;208.652000;208.593000;208.613000;0 +20260213 070300;208.613000;208.647000;208.610000;208.628000;0 +20260213 070400;208.626000;208.626000;208.592000;208.605000;0 +20260213 070500;208.607000;208.610000;208.550000;208.565000;0 +20260213 070600;208.568000;208.590000;208.544000;208.549000;0 +20260213 070700;208.547000;208.567000;208.544000;208.546000;0 +20260213 070800;208.545000;208.558000;208.530000;208.535000;0 +20260213 070900;208.533000;208.544000;208.517000;208.524000;0 +20260213 071000;208.523000;208.524000;208.492000;208.508000;0 +20260213 071100;208.510000;208.520000;208.502000;208.518000;0 +20260213 071200;208.520000;208.557000;208.518000;208.555000;0 +20260213 071300;208.558000;208.598000;208.553000;208.594000;0 +20260213 071400;208.595000;208.612000;208.579000;208.579000;0 +20260213 071500;208.583000;208.603000;208.573000;208.595000;0 +20260213 071600;208.591000;208.632000;208.590000;208.616000;0 +20260213 071700;208.616000;208.680000;208.616000;208.673000;0 +20260213 071800;208.676000;208.676000;208.646000;208.664000;0 +20260213 071900;208.664000;208.675000;208.650000;208.650000;0 +20260213 072000;208.650000;208.653000;208.633000;208.644000;0 +20260213 072100;208.640000;208.650000;208.628000;208.642000;0 +20260213 072200;208.642000;208.662000;208.625000;208.641000;0 +20260213 072300;208.638000;208.668000;208.626000;208.653000;0 +20260213 072400;208.658000;208.666000;208.629000;208.632000;0 +20260213 072500;208.632000;208.651000;208.628000;208.639000;0 +20260213 072600;208.639000;208.640000;208.617000;208.629000;0 +20260213 072700;208.632000;208.658000;208.628000;208.634000;0 +20260213 072800;208.634000;208.641000;208.596000;208.599000;0 +20260213 072900;208.600000;208.607000;208.591000;208.593000;0 +20260213 073000;208.592000;208.608000;208.566000;208.569000;0 +20260213 073100;208.572000;208.580000;208.553000;208.577000;0 +20260213 073200;208.577000;208.581000;208.525000;208.540000;0 +20260213 073300;208.538000;208.567000;208.538000;208.558000;0 +20260213 073400;208.555000;208.572000;208.545000;208.571000;0 +20260213 073500;208.571000;208.630000;208.570000;208.622000;0 +20260213 073600;208.624000;208.637000;208.602000;208.613000;0 +20260213 073700;208.614000;208.638000;208.606000;208.625000;0 +20260213 073800;208.625000;208.642000;208.590000;208.599000;0 +20260213 073900;208.599000;208.599000;208.553000;208.573000;0 +20260213 074000;208.575000;208.585000;208.556000;208.575000;0 +20260213 074100;208.574000;208.580000;208.558000;208.579000;0 +20260213 074200;208.583000;208.587000;208.569000;208.571000;0 +20260213 074300;208.572000;208.576000;208.558000;208.562000;0 +20260213 074400;208.563000;208.574000;208.558000;208.566000;0 +20260213 074500;208.566000;208.566000;208.543000;208.548000;0 +20260213 074600;208.548000;208.548000;208.526000;208.529000;0 +20260213 074700;208.526000;208.546000;208.516000;208.527000;0 +20260213 074800;208.526000;208.538000;208.510000;208.520000;0 +20260213 074900;208.522000;208.560000;208.518000;208.560000;0 +20260213 075000;208.561000;208.599000;208.559000;208.586000;0 +20260213 075100;208.588000;208.598000;208.566000;208.577000;0 +20260213 075200;208.576000;208.605000;208.569000;208.580000;0 +20260213 075300;208.581000;208.583000;208.528000;208.533000;0 +20260213 075400;208.532000;208.579000;208.532000;208.575000;0 +20260213 075500;208.574000;208.627000;208.574000;208.604000;0 +20260213 075600;208.602000;208.607000;208.575000;208.588000;0 +20260213 075700;208.587000;208.597000;208.553000;208.563000;0 +20260213 075800;208.563000;208.567000;208.502000;208.517000;0 +20260213 075900;208.516000;208.535000;208.506000;208.521000;0 +20260213 080000;208.523000;208.551000;208.494000;208.529000;0 +20260213 080100;208.530000;208.568000;208.530000;208.562000;0 +20260213 080200;208.564000;208.584000;208.555000;208.570000;0 +20260213 080300;208.572000;208.591000;208.567000;208.582000;0 +20260213 080400;208.580000;208.584000;208.567000;208.581000;0 +20260213 080500;208.579000;208.583000;208.515000;208.536000;0 +20260213 080600;208.543000;208.598000;208.535000;208.588000;0 +20260213 080700;208.586000;208.597000;208.562000;208.590000;0 +20260213 080800;208.588000;208.588000;208.557000;208.580000;0 +20260213 080900;208.589000;208.618000;208.589000;208.604000;0 +20260213 081000;208.605000;208.621000;208.569000;208.579000;0 +20260213 081100;208.577000;208.615000;208.577000;208.599000;0 +20260213 081200;208.600000;208.602000;208.573000;208.575000;0 +20260213 081300;208.569000;208.594000;208.562000;208.565000;0 +20260213 081400;208.565000;208.575000;208.554000;208.564000;0 +20260213 081500;208.563000;208.565000;208.536000;208.546000;0 +20260213 081600;208.543000;208.554000;208.532000;208.543000;0 +20260213 081700;208.546000;208.579000;208.545000;208.557000;0 +20260213 081800;208.555000;208.562000;208.545000;208.556000;0 +20260213 081900;208.554000;208.567000;208.549000;208.562000;0 +20260213 082000;208.558000;208.561000;208.536000;208.545000;0 +20260213 082100;208.547000;208.613000;208.547000;208.595000;0 +20260213 082200;208.597000;208.628000;208.590000;208.620000;0 +20260213 082300;208.613000;208.634000;208.606000;208.632000;0 +20260213 082400;208.631000;208.648000;208.615000;208.622000;0 +20260213 082500;208.619000;208.654000;208.608000;208.652000;0 +20260213 082600;208.657000;208.677000;208.653000;208.677000;0 +20260213 082700;208.674000;208.719000;208.672000;208.717000;0 +20260213 082800;208.715000;208.716000;208.688000;208.704000;0 +20260213 082900;208.701000;208.723000;208.642000;208.642000;0 +20260213 083000;208.642000;208.734000;208.539000;208.576000;0 +20260213 083100;208.571000;208.610000;208.514000;208.546000;0 +20260213 083200;208.548000;208.548000;208.454000;208.481000;0 +20260213 083300;208.475000;208.643000;208.468000;208.584000;0 +20260213 083400;208.582000;208.582000;208.500000;208.567000;0 +20260213 083500;208.565000;208.571000;208.472000;208.515000;0 +20260213 083600;208.513000;208.517000;208.470000;208.486000;0 +20260213 083700;208.487000;208.550000;208.482000;208.538000;0 +20260213 083800;208.537000;208.553000;208.479000;208.483000;0 +20260213 083900;208.484000;208.531000;208.458000;208.521000;0 +20260213 084000;208.519000;208.537000;208.465000;208.495000;0 +20260213 084100;208.496000;208.576000;208.487000;208.562000;0 +20260213 084200;208.575000;208.628000;208.570000;208.618000;0 +20260213 084300;208.618000;208.666000;208.604000;208.653000;0 +20260213 084400;208.652000;208.693000;208.638000;208.686000;0 +20260213 084500;208.682000;208.683000;208.606000;208.624000;0 +20260213 084600;208.625000;208.657000;208.549000;208.558000;0 +20260213 084700;208.557000;208.585000;208.542000;208.544000;0 +20260213 084800;208.545000;208.613000;208.543000;208.603000;0 +20260213 084900;208.604000;208.707000;208.593000;208.707000;0 +20260213 085000;208.709000;208.716000;208.602000;208.602000;0 +20260213 085100;208.606000;208.651000;208.599000;208.634000;0 +20260213 085200;208.630000;208.644000;208.616000;208.628000;0 +20260213 085300;208.628000;208.633000;208.577000;208.596000;0 +20260213 085400;208.598000;208.622000;208.584000;208.611000;0 +20260213 085500;208.614000;208.665000;208.606000;208.659000;0 +20260213 085600;208.657000;208.670000;208.612000;208.629000;0 +20260213 085700;208.632000;208.655000;208.608000;208.651000;0 +20260213 085800;208.654000;208.684000;208.595000;208.647000;0 +20260213 085900;208.644000;208.690000;208.644000;208.673000;0 +20260213 090000;208.673000;208.735000;208.671000;208.715000;0 +20260213 090100;208.710000;208.759000;208.695000;208.759000;0 +20260213 090200;208.760000;208.783000;208.745000;208.757000;0 +20260213 090300;208.758000;208.762000;208.724000;208.733000;0 +20260213 090400;208.731000;208.731000;208.634000;208.664000;0 +20260213 090500;208.670000;208.673000;208.636000;208.670000;0 +20260213 090600;208.673000;208.687000;208.643000;208.680000;0 +20260213 090700;208.682000;208.699000;208.648000;208.667000;0 +20260213 090800;208.667000;208.680000;208.638000;208.648000;0 +20260213 090900;208.654000;208.655000;208.615000;208.615000;0 +20260213 091000;208.618000;208.620000;208.551000;208.571000;0 +20260213 091100;208.568000;208.582000;208.543000;208.549000;0 +20260213 091200;208.552000;208.573000;208.530000;208.560000;0 +20260213 091300;208.558000;208.610000;208.551000;208.603000;0 +20260213 091400;208.604000;208.624000;208.595000;208.614000;0 +20260213 091500;208.616000;208.657000;208.610000;208.628000;0 +20260213 091600;208.624000;208.658000;208.616000;208.648000;0 +20260213 091700;208.652000;208.670000;208.642000;208.646000;0 +20260213 091800;208.645000;208.650000;208.618000;208.634000;0 +20260213 091900;208.635000;208.646000;208.549000;208.565000;0 +20260213 092000;208.562000;208.563000;208.524000;208.529000;0 +20260213 092100;208.529000;208.549000;208.514000;208.522000;0 +20260213 092200;208.523000;208.564000;208.497000;208.550000;0 +20260213 092300;208.548000;208.551000;208.501000;208.543000;0 +20260213 092400;208.541000;208.541000;208.500000;208.520000;0 +20260213 092500;208.517000;208.527000;208.478000;208.503000;0 +20260213 092600;208.503000;208.512000;208.423000;208.424000;0 +20260213 092700;208.427000;208.448000;208.415000;208.436000;0 +20260213 092800;208.439000;208.441000;208.371000;208.430000;0 +20260213 092900;208.432000;208.459000;208.412000;208.455000;0 +20260213 093000;208.455000;208.456000;208.397000;208.427000;0 +20260213 093100;208.427000;208.547000;208.409000;208.535000;0 +20260213 093200;208.534000;208.566000;208.490000;208.565000;0 +20260213 093300;208.565000;208.599000;208.538000;208.552000;0 +20260213 093400;208.555000;208.586000;208.515000;208.515000;0 +20260213 093500;208.515000;208.584000;208.505000;208.580000;0 +20260213 093600;208.578000;208.585000;208.522000;208.534000;0 +20260213 093700;208.534000;208.570000;208.443000;208.447000;0 +20260213 093800;208.451000;208.496000;208.411000;208.463000;0 +20260213 093900;208.463000;208.480000;208.342000;208.347000;0 +20260213 094000;208.343000;208.343000;208.219000;208.219000;0 +20260213 094100;208.218000;208.244000;208.118000;208.118000;0 +20260213 094200;208.120000;208.122000;208.042000;208.117000;0 +20260213 094300;208.114000;208.314000;208.109000;208.311000;0 +20260213 094400;208.306000;208.442000;208.249000;208.441000;0 +20260213 094500;208.444000;208.537000;208.439000;208.534000;0 +20260213 094600;208.532000;208.627000;208.532000;208.614000;0 +20260213 094700;208.615000;208.663000;208.577000;208.644000;0 +20260213 094800;208.642000;208.687000;208.602000;208.616000;0 +20260213 094900;208.614000;208.639000;208.544000;208.548000;0 +20260213 095000;208.549000;208.551000;208.377000;208.416000;0 +20260213 095100;208.414000;208.477000;208.386000;208.432000;0 +20260213 095200;208.442000;208.458000;208.345000;208.448000;0 +20260213 095300;208.457000;208.542000;208.444000;208.487000;0 +20260213 095400;208.492000;208.555000;208.487000;208.497000;0 +20260213 095500;208.499000;208.594000;208.495000;208.572000;0 +20260213 095600;208.574000;208.602000;208.442000;208.447000;0 +20260213 095700;208.446000;208.524000;208.434000;208.445000;0 +20260213 095800;208.448000;208.517000;208.443000;208.492000;0 +20260213 095900;208.491000;208.542000;208.484000;208.537000;0 +20260213 100000;208.539000;208.621000;208.509000;208.552000;0 +20260213 100100;208.555000;208.603000;208.517000;208.597000;0 +20260213 100200;208.590000;208.621000;208.567000;208.585000;0 +20260213 100300;208.584000;208.597000;208.429000;208.452000;0 +20260213 100400;208.449000;208.537000;208.442000;208.497000;0 +20260213 100500;208.499000;208.500000;208.370000;208.414000;0 +20260213 100600;208.413000;208.506000;208.402000;208.506000;0 +20260213 100700;208.509000;208.509000;208.435000;208.480000;0 +20260213 100800;208.491000;208.672000;208.488000;208.672000;0 +20260213 100900;208.673000;208.733000;208.604000;208.732000;0 +20260213 101000;208.732000;208.868000;208.717000;208.864000;0 +20260213 101100;208.863000;208.971000;208.860000;208.959000;0 +20260213 101200;208.954000;208.965000;208.916000;208.933000;0 +20260213 101300;208.935000;208.961000;208.930000;208.939000;0 +20260213 101400;208.938000;208.940000;208.814000;208.814000;0 +20260213 101500;208.815000;208.816000;208.729000;208.765000;0 +20260213 101600;208.763000;208.777000;208.681000;208.697000;0 +20260213 101700;208.694000;208.714000;208.656000;208.676000;0 +20260213 101800;208.672000;208.704000;208.649000;208.703000;0 +20260213 101900;208.700000;208.711000;208.649000;208.657000;0 +20260213 102000;208.660000;208.712000;208.632000;208.675000;0 +20260213 102100;208.666000;208.672000;208.573000;208.602000;0 +20260213 102200;208.603000;208.632000;208.533000;208.538000;0 +20260213 102300;208.540000;208.598000;208.523000;208.525000;0 +20260213 102400;208.527000;208.544000;208.488000;208.529000;0 +20260213 102500;208.532000;208.587000;208.523000;208.573000;0 +20260213 102600;208.557000;208.573000;208.520000;208.556000;0 +20260213 102700;208.555000;208.596000;208.508000;208.592000;0 +20260213 102800;208.591000;208.694000;208.566000;208.694000;0 +20260213 102900;208.695000;208.697000;208.629000;208.644000;0 +20260213 103000;208.644000;208.708000;208.612000;208.689000;0 +20260213 103100;208.686000;208.705000;208.618000;208.621000;0 +20260213 103200;208.625000;208.661000;208.610000;208.658000;0 +20260213 103300;208.658000;208.711000;208.658000;208.660000;0 +20260213 103400;208.660000;208.660000;208.604000;208.609000;0 +20260213 103500;208.607000;208.670000;208.598000;208.667000;0 +20260213 103600;208.662000;208.699000;208.658000;208.673000;0 +20260213 103700;208.675000;208.722000;208.634000;208.652000;0 +20260213 103800;208.650000;208.652000;208.588000;208.614000;0 +20260213 103900;208.614000;208.631000;208.598000;208.618000;0 +20260213 104000;208.617000;208.617000;208.519000;208.544000;0 +20260213 104100;208.544000;208.569000;208.514000;208.532000;0 +20260213 104200;208.529000;208.553000;208.473000;208.488000;0 +20260213 104300;208.487000;208.528000;208.444000;208.445000;0 +20260213 104400;208.444000;208.454000;208.389000;208.409000;0 +20260213 104500;208.411000;208.434000;208.357000;208.410000;0 +20260213 104600;208.404000;208.414000;208.327000;208.338000;0 +20260213 104700;208.341000;208.356000;208.302000;208.331000;0 +20260213 104800;208.330000;208.330000;208.272000;208.275000;0 +20260213 104900;208.274000;208.313000;208.262000;208.304000;0 +20260213 105000;208.307000;208.339000;208.289000;208.317000;0 +20260213 105100;208.319000;208.363000;208.294000;208.352000;0 +20260213 105200;208.349000;208.359000;208.315000;208.331000;0 +20260213 105300;208.342000;208.529000;208.342000;208.517000;0 +20260213 105400;208.520000;208.625000;208.446000;208.447000;0 +20260213 105500;208.449000;208.544000;208.365000;208.408000;0 +20260213 105600;208.416000;208.459000;208.312000;208.329000;0 +20260213 105700;208.331000;208.415000;208.306000;208.362000;0 +20260213 105800;208.362000;208.430000;208.355000;208.402000;0 +20260213 105900;208.404000;208.458000;208.388000;208.451000;0 +20260213 110000;208.453000;208.484000;208.425000;208.448000;0 +20260213 110100;208.449000;208.526000;208.433000;208.514000;0 +20260213 110200;208.516000;208.551000;208.455000;208.459000;0 +20260213 110300;208.457000;208.465000;208.408000;208.445000;0 +20260213 110400;208.447000;208.467000;208.430000;208.453000;0 +20260213 110500;208.453000;208.474000;208.446000;208.472000;0 +20260213 110600;208.470000;208.484000;208.446000;208.455000;0 +20260213 110700;208.454000;208.474000;208.384000;208.399000;0 +20260213 110800;208.402000;208.463000;208.401000;208.462000;0 +20260213 110900;208.463000;208.509000;208.457000;208.509000;0 +20260213 111000;208.510000;208.519000;208.453000;208.458000;0 +20260213 111100;208.458000;208.480000;208.443000;208.445000;0 +20260213 111200;208.446000;208.464000;208.398000;208.426000;0 +20260213 111300;208.427000;208.449000;208.412000;208.425000;0 +20260213 111400;208.423000;208.439000;208.394000;208.424000;0 +20260213 111500;208.424000;208.441000;208.404000;208.414000;0 +20260213 111600;208.415000;208.428000;208.402000;208.406000;0 +20260213 111700;208.408000;208.533000;208.397000;208.514000;0 +20260213 111800;208.509000;208.509000;208.451000;208.463000;0 +20260213 111900;208.464000;208.480000;208.450000;208.458000;0 +20260213 112000;208.458000;208.468000;208.347000;208.347000;0 +20260213 112100;208.352000;208.358000;208.333000;208.351000;0 +20260213 112200;208.348000;208.369000;208.332000;208.332000;0 +20260213 112300;208.330000;208.334000;208.256000;208.273000;0 +20260213 112400;208.278000;208.364000;208.270000;208.346000;0 +20260213 112500;208.345000;208.348000;208.313000;208.330000;0 +20260213 112600;208.328000;208.349000;208.285000;208.316000;0 +20260213 112700;208.316000;208.370000;208.278000;208.360000;0 +20260213 112800;208.359000;208.424000;208.352000;208.404000;0 +20260213 112900;208.404000;208.404000;208.340000;208.346000;0 +20260213 113000;208.343000;208.343000;208.276000;208.296000;0 +20260213 113100;208.294000;208.332000;208.256000;208.331000;0 +20260213 113200;208.332000;208.364000;208.314000;208.341000;0 +20260213 113300;208.339000;208.352000;208.308000;208.347000;0 +20260213 113400;208.349000;208.396000;208.335000;208.365000;0 +20260213 113500;208.362000;208.426000;208.354000;208.413000;0 +20260213 113600;208.417000;208.451000;208.417000;208.419000;0 +20260213 113700;208.425000;208.469000;208.412000;208.444000;0 +20260213 113800;208.443000;208.478000;208.436000;208.470000;0 +20260213 113900;208.472000;208.539000;208.472000;208.525000;0 +20260213 114000;208.528000;208.529000;208.467000;208.497000;0 +20260213 114100;208.498000;208.527000;208.476000;208.513000;0 +20260213 114200;208.513000;208.513000;208.459000;208.470000;0 +20260213 114300;208.468000;208.468000;208.398000;208.423000;0 +20260213 114400;208.425000;208.434000;208.404000;208.404000;0 +20260213 114500;208.405000;208.442000;208.405000;208.426000;0 +20260213 114600;208.425000;208.431000;208.413000;208.427000;0 +20260213 114700;208.431000;208.468000;208.427000;208.451000;0 +20260213 114800;208.451000;208.451000;208.369000;208.380000;0 +20260213 114900;208.378000;208.386000;208.348000;208.378000;0 +20260213 115000;208.378000;208.406000;208.368000;208.399000;0 +20260213 115100;208.401000;208.401000;208.354000;208.383000;0 +20260213 115200;208.375000;208.375000;208.342000;208.355000;0 +20260213 115300;208.357000;208.402000;208.323000;208.383000;0 +20260213 115400;208.383000;208.392000;208.352000;208.381000;0 +20260213 115500;208.382000;208.409000;208.370000;208.394000;0 +20260213 115600;208.395000;208.443000;208.395000;208.429000;0 +20260213 115700;208.431000;208.438000;208.394000;208.398000;0 +20260213 115800;208.394000;208.421000;208.375000;208.419000;0 +20260213 115900;208.418000;208.448000;208.405000;208.432000;0 +20260213 120000;208.430000;208.432000;208.377000;208.391000;0 +20260213 120100;208.389000;208.412000;208.383000;208.410000;0 +20260213 120200;208.406000;208.406000;208.369000;208.394000;0 +20260213 120300;208.392000;208.399000;208.373000;208.395000;0 +20260213 120400;208.393000;208.396000;208.371000;208.385000;0 +20260213 120500;208.386000;208.427000;208.384000;208.427000;0 +20260213 120600;208.427000;208.457000;208.424000;208.455000;0 +20260213 120700;208.453000;208.471000;208.443000;208.450000;0 +20260213 120800;208.450000;208.456000;208.404000;208.417000;0 +20260213 120900;208.423000;208.436000;208.410000;208.428000;0 +20260213 121000;208.427000;208.430000;208.402000;208.415000;0 +20260213 121100;208.413000;208.426000;208.404000;208.405000;0 +20260213 121200;208.404000;208.440000;208.404000;208.413000;0 +20260213 121300;208.413000;208.453000;208.403000;208.406000;0 +20260213 121400;208.406000;208.435000;208.345000;208.431000;0 +20260213 121500;208.429000;208.429000;208.328000;208.400000;0 +20260213 121600;208.403000;208.403000;208.338000;208.351000;0 +20260213 121700;208.350000;208.352000;208.281000;208.321000;0 +20260213 121800;208.322000;208.322000;208.252000;208.252000;0 +20260213 121900;208.257000;208.283000;208.253000;208.265000;0 +20260213 122000;208.264000;208.328000;208.264000;208.319000;0 +20260213 122100;208.318000;208.423000;208.312000;208.400000;0 +20260213 122200;208.398000;208.425000;208.393000;208.425000;0 +20260213 122300;208.428000;208.445000;208.417000;208.427000;0 +20260213 122400;208.426000;208.434000;208.409000;208.410000;0 +20260213 122500;208.411000;208.423000;208.395000;208.400000;0 +20260213 122600;208.403000;208.409000;208.367000;208.380000;0 +20260213 122700;208.379000;208.405000;208.353000;208.372000;0 +20260213 122800;208.370000;208.383000;208.361000;208.376000;0 +20260213 122900;208.380000;208.382000;208.341000;208.344000;0 +20260213 123000;208.345000;208.364000;208.335000;208.360000;0 +20260213 123100;208.365000;208.436000;208.365000;208.433000;0 +20260213 123200;208.431000;208.451000;208.428000;208.441000;0 +20260213 123300;208.438000;208.439000;208.410000;208.431000;0 +20260213 123400;208.432000;208.465000;208.422000;208.454000;0 +20260213 123500;208.454000;208.471000;208.449000;208.465000;0 +20260213 123600;208.464000;208.499000;208.447000;208.461000;0 +20260213 123700;208.460000;208.492000;208.455000;208.480000;0 +20260213 123800;208.479000;208.479000;208.456000;208.464000;0 +20260213 123900;208.464000;208.484000;208.460000;208.482000;0 +20260213 124000;208.485000;208.517000;208.467000;208.517000;0 +20260213 124100;208.516000;208.526000;208.506000;208.526000;0 +20260213 124200;208.528000;208.581000;208.528000;208.575000;0 +20260213 124300;208.579000;208.622000;208.578000;208.610000;0 +20260213 124400;208.608000;208.634000;208.578000;208.587000;0 +20260213 124500;208.583000;208.597000;208.545000;208.571000;0 +20260213 124600;208.573000;208.608000;208.572000;208.580000;0 +20260213 124700;208.580000;208.582000;208.523000;208.525000;0 +20260213 124800;208.528000;208.593000;208.519000;208.583000;0 +20260213 124900;208.584000;208.616000;208.581000;208.605000;0 +20260213 125000;208.607000;208.613000;208.596000;208.602000;0 +20260213 125100;208.605000;208.611000;208.575000;208.611000;0 +20260213 125200;208.615000;208.658000;208.605000;208.617000;0 +20260213 125300;208.614000;208.614000;208.533000;208.539000;0 +20260213 125400;208.541000;208.554000;208.528000;208.546000;0 +20260213 125500;208.546000;208.564000;208.535000;208.560000;0 +20260213 125600;208.555000;208.610000;208.534000;208.606000;0 +20260213 125700;208.607000;208.609000;208.569000;208.582000;0 +20260213 125800;208.584000;208.595000;208.566000;208.570000;0 +20260213 125900;208.571000;208.576000;208.544000;208.546000;0 +20260213 130000;208.551000;208.584000;208.544000;208.559000;0 +20260213 130100;208.556000;208.564000;208.506000;208.509000;0 +20260213 130200;208.507000;208.534000;208.507000;208.520000;0 +20260213 130300;208.518000;208.549000;208.502000;208.548000;0 +20260213 130400;208.549000;208.549000;208.533000;208.537000;0 +20260213 130500;208.542000;208.551000;208.521000;208.537000;0 +20260213 130600;208.536000;208.543000;208.527000;208.528000;0 +20260213 130700;208.525000;208.579000;208.525000;208.579000;0 +20260213 130800;208.578000;208.586000;208.559000;208.565000;0 +20260213 130900;208.563000;208.572000;208.552000;208.555000;0 +20260213 131000;208.556000;208.607000;208.535000;208.600000;0 +20260213 131100;208.602000;208.605000;208.582000;208.598000;0 +20260213 131200;208.598000;208.598000;208.571000;208.573000;0 +20260213 131300;208.571000;208.586000;208.555000;208.558000;0 +20260213 131400;208.557000;208.576000;208.557000;208.575000;0 +20260213 131500;208.573000;208.585000;208.558000;208.583000;0 +20260213 131600;208.584000;208.617000;208.578000;208.599000;0 +20260213 131700;208.596000;208.612000;208.596000;208.612000;0 +20260213 131800;208.609000;208.617000;208.594000;208.606000;0 +20260213 131900;208.606000;208.607000;208.572000;208.580000;0 +20260213 132000;208.581000;208.625000;208.578000;208.624000;0 +20260213 132100;208.623000;208.623000;208.601000;208.610000;0 +20260213 132200;208.613000;208.621000;208.596000;208.607000;0 +20260213 132300;208.609000;208.628000;208.609000;208.621000;0 +20260213 132400;208.620000;208.621000;208.600000;208.613000;0 +20260213 132500;208.609000;208.633000;208.592000;208.597000;0 +20260213 132600;208.600000;208.604000;208.573000;208.584000;0 +20260213 132700;208.590000;208.607000;208.579000;208.594000;0 +20260213 132800;208.594000;208.626000;208.591000;208.626000;0 +20260213 132900;208.627000;208.631000;208.561000;208.582000;0 +20260213 133000;208.586000;208.593000;208.565000;208.589000;0 +20260213 133100;208.590000;208.602000;208.589000;208.601000;0 +20260213 133200;208.600000;208.606000;208.585000;208.596000;0 +20260213 133300;208.598000;208.605000;208.592000;208.601000;0 +20260213 133400;208.602000;208.606000;208.579000;208.583000;0 +20260213 133500;208.584000;208.616000;208.575000;208.614000;0 +20260213 133600;208.614000;208.633000;208.613000;208.627000;0 +20260213 133700;208.627000;208.627000;208.598000;208.604000;0 +20260213 133800;208.602000;208.620000;208.599000;208.620000;0 +20260213 133900;208.622000;208.625000;208.606000;208.617000;0 +20260213 134000;208.619000;208.630000;208.618000;208.624000;0 +20260213 134100;208.622000;208.635000;208.622000;208.632000;0 +20260213 134200;208.632000;208.632000;208.606000;208.627000;0 +20260213 134300;208.628000;208.633000;208.607000;208.616000;0 +20260213 134400;208.627000;208.627000;208.613000;208.619000;0 +20260213 134500;208.621000;208.647000;208.621000;208.646000;0 +20260213 134600;208.645000;208.670000;208.637000;208.659000;0 +20260213 134700;208.660000;208.661000;208.642000;208.646000;0 +20260213 134800;208.644000;208.644000;208.629000;208.639000;0 +20260213 134900;208.642000;208.648000;208.628000;208.635000;0 +20260213 135000;208.638000;208.643000;208.611000;208.611000;0 +20260213 135100;208.613000;208.629000;208.602000;208.628000;0 +20260213 135200;208.633000;208.640000;208.608000;208.612000;0 +20260213 135300;208.608000;208.652000;208.608000;208.651000;0 +20260213 135400;208.649000;208.675000;208.649000;208.656000;0 +20260213 135500;208.653000;208.666000;208.642000;208.664000;0 +20260213 135600;208.666000;208.688000;208.633000;208.679000;0 +20260213 135700;208.681000;208.681000;208.624000;208.624000;0 +20260213 135800;208.626000;208.644000;208.624000;208.628000;0 +20260213 135900;208.630000;208.650000;208.623000;208.645000;0 +20260213 140000;208.647000;208.662000;208.642000;208.656000;0 +20260213 140100;208.658000;208.677000;208.650000;208.668000;0 +20260213 140200;208.668000;208.698000;208.638000;208.647000;0 +20260213 140300;208.646000;208.670000;208.617000;208.658000;0 +20260213 140400;208.658000;208.659000;208.627000;208.627000;0 +20260213 140500;208.629000;208.659000;208.629000;208.650000;0 +20260213 140600;208.648000;208.654000;208.641000;208.647000;0 +20260213 140700;208.650000;208.659000;208.625000;208.628000;0 +20260213 140800;208.630000;208.631000;208.609000;208.614000;0 +20260213 140900;208.614000;208.630000;208.608000;208.630000;0 +20260213 141000;208.629000;208.629000;208.599000;208.602000;0 +20260213 141100;208.605000;208.606000;208.581000;208.587000;0 +20260213 141200;208.590000;208.604000;208.588000;208.602000;0 +20260213 141300;208.603000;208.605000;208.571000;208.577000;0 +20260213 141400;208.579000;208.593000;208.577000;208.590000;0 +20260213 141500;208.591000;208.600000;208.587000;208.589000;0 +20260213 141600;208.589000;208.597000;208.585000;208.592000;0 +20260213 141700;208.591000;208.591000;208.574000;208.576000;0 +20260213 141800;208.583000;208.596000;208.581000;208.587000;0 +20260213 141900;208.583000;208.589000;208.582000;208.584000;0 +20260213 142000;208.583000;208.589000;208.563000;208.572000;0 +20260213 142100;208.572000;208.593000;208.572000;208.593000;0 +20260213 142200;208.595000;208.595000;208.577000;208.590000;0 +20260213 142300;208.592000;208.596000;208.583000;208.584000;0 +20260213 142400;208.586000;208.592000;208.568000;208.579000;0 +20260213 142500;208.576000;208.585000;208.576000;208.585000;0 +20260213 142600;208.582000;208.582000;208.554000;208.557000;0 +20260213 142700;208.555000;208.571000;208.538000;208.549000;0 +20260213 142800;208.552000;208.562000;208.552000;208.556000;0 +20260213 142900;208.555000;208.555000;208.522000;208.527000;0 +20260213 143000;208.528000;208.555000;208.527000;208.536000;0 +20260213 143100;208.537000;208.540000;208.507000;208.508000;0 +20260213 143200;208.511000;208.513000;208.497000;208.504000;0 +20260213 143300;208.502000;208.527000;208.499000;208.525000;0 +20260213 143400;208.524000;208.524000;208.499000;208.501000;0 +20260213 143500;208.503000;208.507000;208.489000;208.493000;0 +20260213 143600;208.493000;208.501000;208.472000;208.486000;0 +20260213 143700;208.488000;208.490000;208.473000;208.479000;0 +20260213 143800;208.478000;208.478000;208.454000;208.458000;0 +20260213 143900;208.459000;208.470000;208.442000;208.470000;0 +20260213 144000;208.474000;208.474000;208.458000;208.458000;0 +20260213 144100;208.458000;208.462000;208.401000;208.405000;0 +20260213 144200;208.407000;208.435000;208.398000;208.435000;0 +20260213 144300;208.438000;208.441000;208.411000;208.416000;0 +20260213 144400;208.419000;208.431000;208.410000;208.417000;0 +20260213 144500;208.415000;208.465000;208.412000;208.454000;0 +20260213 144600;208.456000;208.456000;208.440000;208.444000;0 +20260213 144700;208.442000;208.446000;208.430000;208.430000;0 +20260213 144800;208.432000;208.440000;208.427000;208.428000;0 +20260213 144900;208.427000;208.461000;208.427000;208.461000;0 +20260213 145000;208.461000;208.483000;208.451000;208.477000;0 +20260213 145100;208.478000;208.479000;208.451000;208.451000;0 +20260213 145200;208.448000;208.469000;208.440000;208.463000;0 +20260213 145300;208.462000;208.464000;208.449000;208.457000;0 +20260213 145400;208.457000;208.462000;208.447000;208.449000;0 +20260213 145500;208.450000;208.466000;208.433000;208.439000;0 +20260213 145600;208.439000;208.463000;208.438000;208.458000;0 +20260213 145700;208.459000;208.459000;208.442000;208.442000;0 +20260213 145800;208.443000;208.448000;208.406000;208.413000;0 +20260213 145900;208.413000;208.436000;208.404000;208.436000;0 +20260213 150000;208.445000;208.501000;208.445000;208.485000;0 +20260213 150100;208.488000;208.491000;208.464000;208.490000;0 +20260213 150200;208.490000;208.493000;208.472000;208.475000;0 +20260213 150300;208.474000;208.507000;208.474000;208.495000;0 +20260213 150400;208.496000;208.517000;208.492000;208.504000;0 +20260213 150500;208.505000;208.521000;208.502000;208.518000;0 +20260213 150600;208.519000;208.530000;208.517000;208.524000;0 +20260213 150700;208.524000;208.524000;208.521000;208.522000;0 +20260213 150800;208.520000;208.524000;208.497000;208.506000;0 +20260213 150900;208.505000;208.513000;208.504000;208.508000;0 +20260213 151000;208.510000;208.514000;208.501000;208.507000;0 +20260213 151100;208.520000;208.520000;208.493000;208.506000;0 +20260213 151200;208.506000;208.511000;208.495000;208.495000;0 +20260213 151300;208.492000;208.496000;208.476000;208.485000;0 +20260213 151400;208.478000;208.481000;208.455000;208.455000;0 +20260213 151500;208.454000;208.495000;208.454000;208.471000;0 +20260213 151600;208.472000;208.483000;208.468000;208.477000;0 +20260213 151700;208.483000;208.492000;208.476000;208.478000;0 +20260213 151800;208.483000;208.504000;208.477000;208.486000;0 +20260213 151900;208.486000;208.513000;208.483000;208.513000;0 +20260213 152000;208.517000;208.518000;208.505000;208.506000;0 +20260213 152100;208.507000;208.513000;208.492000;208.504000;0 +20260213 152200;208.506000;208.508000;208.479000;208.481000;0 +20260213 152300;208.481000;208.486000;208.475000;208.481000;0 +20260213 152400;208.479000;208.484000;208.460000;208.461000;0 +20260213 152500;208.461000;208.473000;208.445000;208.447000;0 +20260213 152600;208.443000;208.459000;208.442000;208.450000;0 +20260213 152700;208.460000;208.464000;208.429000;208.434000;0 +20260213 152800;208.432000;208.432000;208.366000;208.368000;0 +20260213 152900;208.369000;208.373000;208.342000;208.357000;0 +20260213 153000;208.359000;208.381000;208.333000;208.352000;0 +20260213 153100;208.353000;208.410000;208.348000;208.387000;0 +20260213 153200;208.386000;208.400000;208.379000;208.390000;0 +20260213 153300;208.386000;208.400000;208.382000;208.382000;0 +20260213 153400;208.382000;208.396000;208.381000;208.383000;0 +20260213 153500;208.384000;208.397000;208.372000;208.393000;0 +20260213 153600;208.392000;208.413000;208.389000;208.393000;0 +20260213 153700;208.392000;208.393000;208.363000;208.365000;0 +20260213 153800;208.365000;208.382000;208.344000;208.382000;0 +20260213 153900;208.382000;208.382000;208.351000;208.359000;0 +20260213 154000;208.357000;208.397000;208.356000;208.397000;0 +20260213 154100;208.393000;208.395000;208.375000;208.386000;0 +20260213 154200;208.386000;208.397000;208.371000;208.377000;0 +20260213 154300;208.379000;208.402000;208.375000;208.401000;0 +20260213 154400;208.401000;208.430000;208.395000;208.430000;0 +20260213 154500;208.428000;208.448000;208.426000;208.429000;0 +20260213 154600;208.426000;208.484000;208.425000;208.475000;0 +20260213 154700;208.475000;208.476000;208.451000;208.464000;0 +20260213 154800;208.472000;208.474000;208.462000;208.473000;0 +20260213 154900;208.473000;208.517000;208.471000;208.494000;0 +20260213 155000;208.491000;208.496000;208.463000;208.489000;0 +20260213 155100;208.491000;208.506000;208.484000;208.504000;0 +20260213 155200;208.501000;208.504000;208.484000;208.498000;0 +20260213 155300;208.500000;208.501000;208.474000;208.491000;0 +20260213 155400;208.498000;208.504000;208.486000;208.492000;0 +20260213 155500;208.496000;208.499000;208.467000;208.482000;0 +20260213 155600;208.480000;208.501000;208.467000;208.501000;0 +20260213 155700;208.503000;208.505000;208.447000;208.447000;0 +20260213 155800;208.446000;208.476000;208.444000;208.473000;0 +20260213 155900;208.472000;208.621000;208.470000;208.614000;0 +20260213 160000;208.613000;208.619000;208.491000;208.496000;0 +20260213 160100;208.496000;208.537000;208.479000;208.486000;0 +20260213 160200;208.486000;208.503000;208.463000;208.463000;0 +20260213 160300;208.464000;208.488000;208.456000;208.479000;0 +20260213 160400;208.479000;208.486000;208.442000;208.452000;0 +20260213 160500;208.451000;208.468000;208.448000;208.468000;0 +20260213 160600;208.467000;208.467000;208.450000;208.461000;0 +20260213 160700;208.462000;208.464000;208.448000;208.449000;0 +20260213 160800;208.448000;208.478000;208.448000;208.466000;0 +20260213 160900;208.463000;208.463000;208.433000;208.442000;0 +20260213 161000;208.446000;208.466000;208.446000;208.451000;0 +20260213 161100;208.452000;208.462000;208.444000;208.462000;0 +20260213 161200;208.462000;208.482000;208.462000;208.481000;0 +20260213 161300;208.479000;208.499000;208.475000;208.481000;0 +20260213 161400;208.486000;208.493000;208.482000;208.490000;0 +20260213 161500;208.490000;208.490000;208.465000;208.467000;0 +20260213 161600;208.465000;208.465000;208.444000;208.450000;0 +20260213 161700;208.447000;208.453000;208.445000;208.446000;0 +20260213 161800;208.447000;208.447000;208.435000;208.438000;0 +20260213 161900;208.438000;208.438000;208.423000;208.429000;0 +20260213 162000;208.428000;208.428000;208.406000;208.407000;0 +20260213 162100;208.402000;208.407000;208.394000;208.402000;0 +20260213 162200;208.403000;208.415000;208.398000;208.410000;0 +20260213 162300;208.407000;208.420000;208.407000;208.417000;0 +20260213 162400;208.416000;208.416000;208.385000;208.386000;0 +20260213 162500;208.382000;208.392000;208.380000;208.382000;0 +20260213 162600;208.383000;208.383000;208.368000;208.373000;0 +20260213 162700;208.371000;208.389000;208.365000;208.366000;0 +20260213 162800;208.366000;208.375000;208.364000;208.374000;0 +20260213 162900;208.375000;208.411000;208.367000;208.411000;0 +20260213 163000;208.412000;208.420000;208.405000;208.407000;0 +20260213 163100;208.408000;208.415000;208.407000;208.409000;0 +20260213 163200;208.413000;208.451000;208.409000;208.446000;0 +20260213 163300;208.444000;208.466000;208.444000;208.459000;0 +20260213 163400;208.459000;208.461000;208.451000;208.455000;0 +20260213 163500;208.454000;208.455000;208.445000;208.448000;0 +20260213 163600;208.450000;208.452000;208.440000;208.452000;0 +20260213 163700;208.443000;208.456000;208.439000;208.442000;0 +20260213 163800;208.442000;208.442000;208.419000;208.419000;0 +20260213 163900;208.417000;208.442000;208.416000;208.441000;0 +20260213 164000;208.442000;208.442000;208.430000;208.431000;0 +20260213 164100;208.432000;208.441000;208.424000;208.424000;0 +20260213 164200;208.421000;208.432000;208.420000;208.426000;0 +20260213 164300;208.426000;208.428000;208.419000;208.424000;0 +20260213 164400;208.434000;208.435000;208.421000;208.421000;0 +20260213 164500;208.422000;208.436000;208.417000;208.417000;0 +20260213 164600;208.418000;208.451000;208.418000;208.443000;0 +20260213 164700;208.441000;208.450000;208.435000;208.449000;0 +20260213 164800;208.452000;208.490000;208.451000;208.484000;0 +20260213 164900;208.478000;208.510000;208.474000;208.499000;0 +20260213 165000;208.503000;208.519000;208.490000;208.506000;0 +20260213 165100;208.506000;208.529000;208.498000;208.509000;0 +20260213 165200;208.514000;208.528000;208.502000;208.506000;0 +20260213 165300;208.513000;208.516000;208.486000;208.494000;0 +20260213 165400;208.493000;208.503000;208.468000;208.478000;0 +20260213 165500;208.488000;208.488000;208.431000;208.433000;0 +20260213 165600;208.438000;208.493000;208.415000;208.489000;0 +20260213 165700;208.484000;208.500000;208.422000;208.425000;0 +20260213 165800;208.443000;208.505000;208.415000;208.440000;0 +20260213 165900;208.432000;208.482000;208.432000;208.478000;0 +20260215 171100;208.151000;208.158000;208.147000;208.158000;0 +20260215 171200;208.159000;208.183000;208.141000;208.164000;0 +20260215 171300;208.170000;208.172000;208.169000;208.169000;0 +20260215 171400;208.168000;208.168000;208.161000;208.164000;0 +20260215 171500;208.164000;208.164000;208.163000;208.163000;0 +20260215 171600;208.162000;208.166000;208.161000;208.165000;0 +20260215 171700;208.165000;208.166000;208.157000;208.160000;0 +20260215 171800;208.159000;208.172000;208.153000;208.172000;0 +20260215 171900;208.172000;208.178000;208.172000;208.177000;0 +20260215 172000;208.177000;208.178000;208.173000;208.173000;0 +20260215 172100;208.173000;208.173000;208.158000;208.162000;0 +20260215 172200;208.162000;208.162000;208.157000;208.159000;0 +20260215 172300;208.157000;208.162000;208.154000;208.158000;0 +20260215 172400;208.157000;208.171000;208.157000;208.171000;0 +20260215 172500;208.171000;208.237000;208.158000;208.171000;0 +20260215 172600;208.162000;208.236000;208.157000;208.165000;0 +20260215 172700;208.165000;208.236000;208.160000;208.236000;0 +20260215 172800;208.237000;208.245000;208.167000;208.169000;0 +20260215 172900;208.197000;208.199000;208.182000;208.182000;0 +20260215 173000;208.178000;208.240000;208.178000;208.231000;0 +20260215 173100;208.239000;208.287000;208.219000;208.230000;0 +20260215 173200;208.227000;208.236000;208.202000;208.225000;0 +20260215 173300;208.221000;208.237000;208.198000;208.211000;0 +20260215 173400;208.212000;208.232000;208.212000;208.213000;0 +20260215 173500;208.213000;208.243000;208.212000;208.233000;0 +20260215 173600;208.234000;208.287000;208.205000;208.211000;0 +20260215 173700;208.212000;208.234000;208.204000;208.233000;0 +20260215 173800;208.233000;208.257000;208.228000;208.235000;0 +20260215 173900;208.238000;208.242000;208.232000;208.242000;0 +20260215 174000;208.242000;208.245000;208.232000;208.240000;0 +20260215 174100;208.240000;208.253000;208.220000;208.226000;0 +20260215 174200;208.225000;208.231000;208.216000;208.219000;0 +20260215 174300;208.219000;208.235000;208.219000;208.223000;0 +20260215 174400;208.222000;208.227000;208.216000;208.222000;0 +20260215 174500;208.223000;208.270000;208.222000;208.265000;0 +20260215 174600;208.269000;208.280000;208.253000;208.278000;0 +20260215 174700;208.278000;208.282000;208.242000;208.253000;0 +20260215 174800;208.257000;208.273000;208.245000;208.272000;0 +20260215 174900;208.273000;208.273000;208.252000;208.262000;0 +20260215 175000;208.262000;208.266000;208.262000;208.264000;0 +20260215 175100;208.264000;208.269000;208.239000;208.266000;0 +20260215 175200;208.267000;208.279000;208.240000;208.279000;0 +20260215 175300;208.279000;208.280000;208.239000;208.246000;0 +20260215 175400;208.241000;208.267000;208.241000;208.266000;0 +20260215 175500;208.266000;208.266000;208.247000;208.252000;0 +20260215 175600;208.253000;208.253000;208.207000;208.219000;0 +20260215 175700;208.219000;208.261000;208.217000;208.261000;0 +20260215 175800;208.259000;208.263000;208.251000;208.256000;0 +20260215 175900;208.255000;208.258000;208.249000;208.249000;0 +20260215 180000;208.246000;208.339000;208.244000;208.321000;0 +20260215 180100;208.315000;208.353000;208.303000;208.342000;0 +20260215 180200;208.342000;208.348000;208.312000;208.325000;0 +20260215 180300;208.325000;208.359000;208.308000;208.328000;0 +20260215 180400;208.324000;208.396000;208.323000;208.360000;0 +20260215 180500;208.361000;208.402000;208.358000;208.399000;0 +20260215 180600;208.401000;208.401000;208.381000;208.388000;0 +20260215 180700;208.377000;208.393000;208.363000;208.382000;0 +20260215 180800;208.385000;208.455000;208.376000;208.436000;0 +20260215 180900;208.437000;208.440000;208.437000;208.440000;0 +20260215 181000;208.440000;208.465000;208.430000;208.465000;0 +20260215 181100;208.466000;208.500000;208.465000;208.491000;0 +20260215 181200;208.492000;208.498000;208.465000;208.476000;0 +20260215 181300;208.472000;208.492000;208.472000;208.479000;0 +20260215 181400;208.483000;208.487000;208.470000;208.477000;0 +20260215 181500;208.486000;208.514000;208.478000;208.502000;0 +20260215 181600;208.505000;208.518000;208.495000;208.518000;0 +20260215 181700;208.515000;208.550000;208.512000;208.539000;0 +20260215 181800;208.537000;208.542000;208.508000;208.511000;0 +20260215 181900;208.512000;208.531000;208.512000;208.525000;0 +20260215 182000;208.527000;208.528000;208.510000;208.524000;0 +20260215 182100;208.522000;208.526000;208.496000;208.504000;0 +20260215 182200;208.509000;208.512000;208.496000;208.503000;0 +20260215 182300;208.506000;208.530000;208.505000;208.530000;0 +20260215 182400;208.542000;208.549000;208.490000;208.490000;0 +20260215 182500;208.490000;208.496000;208.477000;208.487000;0 +20260215 182600;208.497000;208.498000;208.485000;208.487000;0 +20260215 182700;208.491000;208.517000;208.485000;208.510000;0 +20260215 182800;208.507000;208.521000;208.497000;208.517000;0 +20260215 182900;208.518000;208.526000;208.501000;208.519000;0 +20260215 183000;208.517000;208.532000;208.498000;208.518000;0 +20260215 183100;208.514000;208.517000;208.505000;208.508000;0 +20260215 183200;208.513000;208.532000;208.506000;208.507000;0 +20260215 183300;208.506000;208.511000;208.504000;208.511000;0 +20260215 183400;208.518000;208.544000;208.518000;208.534000;0 +20260215 183500;208.535000;208.544000;208.522000;208.526000;0 +20260215 183600;208.527000;208.552000;208.520000;208.539000;0 +20260215 183700;208.537000;208.537000;208.511000;208.513000;0 +20260215 183800;208.511000;208.519000;208.494000;208.515000;0 +20260215 183900;208.516000;208.526000;208.509000;208.525000;0 +20260215 184000;208.528000;208.543000;208.523000;208.537000;0 +20260215 184100;208.530000;208.546000;208.509000;208.544000;0 +20260215 184200;208.546000;208.561000;208.546000;208.551000;0 +20260215 184300;208.550000;208.550000;208.538000;208.547000;0 +20260215 184400;208.548000;208.578000;208.547000;208.578000;0 +20260215 184500;208.576000;208.578000;208.544000;208.544000;0 +20260215 184600;208.541000;208.559000;208.539000;208.545000;0 +20260215 184700;208.536000;208.538000;208.512000;208.531000;0 +20260215 184800;208.532000;208.539000;208.522000;208.522000;0 +20260215 184900;208.514000;208.522000;208.502000;208.504000;0 +20260215 185000;208.504000;208.542000;208.432000;208.480000;0 +20260215 185100;208.478000;208.505000;208.471000;208.490000;0 +20260215 185200;208.490000;208.490000;208.466000;208.466000;0 +20260215 185300;208.457000;208.467000;208.419000;208.420000;0 +20260215 185400;208.427000;208.499000;208.423000;208.490000;0 +20260215 185500;208.491000;208.520000;208.491000;208.512000;0 +20260215 185600;208.512000;208.512000;208.484000;208.487000;0 +20260215 185700;208.488000;208.531000;208.488000;208.516000;0 +20260215 185800;208.510000;208.517000;208.497000;208.512000;0 +20260215 185900;208.511000;208.525000;208.509000;208.523000;0 +20260215 190000;208.522000;208.545000;208.495000;208.545000;0 +20260215 190100;208.547000;208.578000;208.521000;208.523000;0 +20260215 190200;208.522000;208.529000;208.496000;208.522000;0 +20260215 190300;208.519000;208.523000;208.490000;208.516000;0 +20260215 190400;208.518000;208.561000;208.516000;208.546000;0 +20260215 190500;208.546000;208.605000;208.537000;208.591000;0 +20260215 190600;208.582000;208.630000;208.576000;208.630000;0 +20260215 190700;208.629000;208.657000;208.626000;208.634000;0 +20260215 190800;208.637000;208.706000;208.633000;208.694000;0 +20260215 190900;208.694000;208.715000;208.674000;208.710000;0 +20260215 191000;208.709000;208.709000;208.682000;208.704000;0 +20260215 191100;208.705000;208.765000;208.688000;208.757000;0 +20260215 191200;208.758000;208.809000;208.745000;208.783000;0 +20260215 191300;208.781000;208.823000;208.781000;208.798000;0 +20260215 191400;208.798000;208.841000;208.798000;208.840000;0 +20260215 191500;208.839000;208.854000;208.822000;208.822000;0 +20260215 191600;208.824000;208.826000;208.744000;208.745000;0 +20260215 191700;208.746000;208.783000;208.724000;208.756000;0 +20260215 191800;208.759000;208.803000;208.741000;208.749000;0 +20260215 191900;208.749000;208.762000;208.738000;208.738000;0 +20260215 192000;208.744000;208.744000;208.708000;208.741000;0 +20260215 192100;208.743000;208.758000;208.731000;208.748000;0 +20260215 192200;208.746000;208.752000;208.724000;208.734000;0 +20260215 192300;208.735000;208.758000;208.713000;208.718000;0 +20260215 192400;208.720000;208.743000;208.711000;208.742000;0 +20260215 192500;208.750000;208.803000;208.748000;208.790000;0 +20260215 192600;208.787000;208.787000;208.721000;208.761000;0 +20260215 192700;208.763000;208.793000;208.755000;208.790000;0 +20260215 192800;208.792000;208.811000;208.775000;208.806000;0 +20260215 192900;208.804000;208.849000;208.804000;208.846000;0 +20260215 193000;208.846000;208.850000;208.807000;208.812000;0 +20260215 193100;208.811000;208.812000;208.802000;208.802000;0 +20260215 193200;208.804000;208.835000;208.804000;208.826000;0 +20260215 193300;208.828000;208.829000;208.772000;208.798000;0 +20260215 193400;208.799000;208.826000;208.799000;208.809000;0 +20260215 193500;208.807000;208.832000;208.802000;208.832000;0 +20260215 193600;208.832000;208.853000;208.827000;208.841000;0 +20260215 193700;208.841000;208.841000;208.826000;208.830000;0 +20260215 193800;208.834000;208.836000;208.795000;208.800000;0 +20260215 193900;208.801000;208.809000;208.785000;208.805000;0 +20260215 194000;208.807000;208.810000;208.785000;208.796000;0 +20260215 194100;208.795000;208.798000;208.779000;208.783000;0 +20260215 194200;208.781000;208.782000;208.754000;208.779000;0 +20260215 194300;208.778000;208.820000;208.778000;208.819000;0 +20260215 194400;208.817000;208.818000;208.758000;208.763000;0 +20260215 194500;208.766000;208.771000;208.755000;208.769000;0 +20260215 194600;208.769000;208.806000;208.767000;208.784000;0 +20260215 194700;208.775000;208.814000;208.775000;208.804000;0 +20260215 194800;208.806000;208.819000;208.790000;208.806000;0 +20260215 194900;208.808000;208.832000;208.803000;208.822000;0 +20260215 195000;208.823000;208.834000;208.800000;208.809000;0 +20260215 195100;208.807000;208.827000;208.767000;208.822000;0 +20260215 195200;208.820000;208.860000;208.817000;208.841000;0 +20260215 195300;208.842000;208.852000;208.814000;208.828000;0 +20260215 195400;208.830000;208.863000;208.801000;208.824000;0 +20260215 195500;208.830000;208.830000;208.778000;208.804000;0 +20260215 195600;208.814000;208.868000;208.809000;208.850000;0 +20260215 195700;208.852000;208.869000;208.822000;208.826000;0 +20260215 195800;208.829000;208.839000;208.791000;208.815000;0 +20260215 195900;208.817000;208.838000;208.800000;208.837000;0 +20260215 200000;208.838000;208.864000;208.825000;208.837000;0 +20260215 200100;208.837000;208.894000;208.837000;208.848000;0 +20260215 200200;208.851000;208.868000;208.834000;208.866000;0 +20260215 200300;208.874000;208.885000;208.847000;208.863000;0 +20260215 200400;208.858000;208.884000;208.857000;208.862000;0 +20260215 200500;208.861000;208.878000;208.851000;208.868000;0 +20260215 200600;208.869000;208.869000;208.825000;208.835000;0 +20260215 200700;208.836000;208.868000;208.823000;208.866000;0 +20260215 200800;208.876000;208.888000;208.852000;208.857000;0 +20260215 200900;208.856000;208.856000;208.835000;208.849000;0 +20260215 201000;208.854000;208.881000;208.825000;208.825000;0 +20260215 201100;208.822000;208.846000;208.817000;208.827000;0 +20260215 201200;208.825000;208.827000;208.796000;208.801000;0 +20260215 201300;208.801000;208.815000;208.763000;208.774000;0 +20260215 201400;208.774000;208.775000;208.741000;208.745000;0 +20260215 201500;208.743000;208.781000;208.735000;208.781000;0 +20260215 201600;208.775000;208.781000;208.748000;208.768000;0 +20260215 201700;208.767000;208.771000;208.744000;208.762000;0 +20260215 201800;208.763000;208.765000;208.724000;208.732000;0 +20260215 201900;208.733000;208.743000;208.708000;208.733000;0 +20260215 202000;208.727000;208.748000;208.717000;208.742000;0 +20260215 202100;208.743000;208.757000;208.740000;208.752000;0 +20260215 202200;208.746000;208.757000;208.728000;208.729000;0 +20260215 202300;208.725000;208.754000;208.712000;208.750000;0 +20260215 202400;208.746000;208.760000;208.736000;208.747000;0 +20260215 202500;208.746000;208.746000;208.732000;208.743000;0 +20260215 202600;208.743000;208.743000;208.708000;208.738000;0 +20260215 202700;208.736000;208.763000;208.732000;208.762000;0 +20260215 202800;208.760000;208.768000;208.757000;208.763000;0 +20260215 202900;208.766000;208.766000;208.721000;208.721000;0 +20260215 203000;208.717000;208.730000;208.692000;208.719000;0 +20260215 203100;208.719000;208.746000;208.707000;208.745000;0 +20260215 203200;208.741000;208.750000;208.713000;208.745000;0 +20260215 203300;208.743000;208.754000;208.737000;208.740000;0 +20260215 203400;208.738000;208.741000;208.716000;208.728000;0 +20260215 203500;208.729000;208.751000;208.723000;208.746000;0 +20260215 203600;208.745000;208.745000;208.725000;208.735000;0 +20260215 203700;208.735000;208.736000;208.703000;208.712000;0 +20260215 203800;208.713000;208.716000;208.693000;208.714000;0 +20260215 203900;208.717000;208.721000;208.698000;208.700000;0 +20260215 204000;208.700000;208.716000;208.693000;208.696000;0 +20260215 204100;208.697000;208.717000;208.686000;208.704000;0 +20260215 204200;208.703000;208.703000;208.682000;208.691000;0 +20260215 204300;208.692000;208.712000;208.691000;208.702000;0 +20260215 204400;208.700000;208.718000;208.693000;208.718000;0 +20260215 204500;208.722000;208.734000;208.711000;208.725000;0 +20260215 204600;208.720000;208.726000;208.708000;208.714000;0 +20260215 204700;208.709000;208.729000;208.709000;208.722000;0 +20260215 204800;208.721000;208.728000;208.718000;208.722000;0 +20260215 204900;208.731000;208.743000;208.721000;208.732000;0 +20260215 205000;208.735000;208.743000;208.722000;208.722000;0 +20260215 205100;208.722000;208.755000;208.719000;208.754000;0 +20260215 205200;208.753000;208.769000;208.746000;208.766000;0 +20260215 205300;208.770000;208.791000;208.759000;208.766000;0 +20260215 205400;208.766000;208.766000;208.746000;208.753000;0 +20260215 205500;208.753000;208.761000;208.749000;208.749000;0 +20260215 205600;208.749000;208.782000;208.747000;208.778000;0 +20260215 205700;208.778000;208.794000;208.760000;208.787000;0 +20260215 205800;208.789000;208.789000;208.761000;208.762000;0 +20260215 205900;208.764000;208.785000;208.754000;208.768000;0 +20260215 210000;208.763000;208.772000;208.742000;208.744000;0 +20260215 210100;208.745000;208.790000;208.741000;208.785000;0 +20260215 210200;208.786000;208.794000;208.776000;208.776000;0 +20260215 210300;208.777000;208.818000;208.777000;208.815000;0 +20260215 210400;208.816000;208.823000;208.809000;208.817000;0 +20260215 210500;208.819000;208.822000;208.778000;208.787000;0 +20260215 210600;208.789000;208.799000;208.784000;208.787000;0 +20260215 210700;208.788000;208.812000;208.782000;208.792000;0 +20260215 210800;208.795000;208.798000;208.772000;208.773000;0 +20260215 210900;208.773000;208.773000;208.748000;208.766000;0 +20260215 211000;208.762000;208.776000;208.757000;208.770000;0 +20260215 211100;208.769000;208.807000;208.761000;208.791000;0 +20260215 211200;208.788000;208.807000;208.783000;208.790000;0 +20260215 211300;208.791000;208.810000;208.789000;208.802000;0 +20260215 211400;208.800000;208.821000;208.797000;208.815000;0 +20260215 211500;208.817000;208.824000;208.789000;208.805000;0 +20260215 211600;208.803000;208.837000;208.803000;208.822000;0 +20260215 211700;208.822000;208.829000;208.794000;208.829000;0 +20260215 211800;208.830000;208.836000;208.817000;208.819000;0 +20260215 211900;208.817000;208.830000;208.810000;208.813000;0 +20260215 212000;208.815000;208.820000;208.777000;208.791000;0 +20260215 212100;208.788000;208.806000;208.781000;208.798000;0 +20260215 212200;208.799000;208.800000;208.777000;208.790000;0 +20260215 212300;208.788000;208.821000;208.785000;208.812000;0 +20260215 212400;208.812000;208.812000;208.774000;208.782000;0 +20260215 212500;208.781000;208.791000;208.757000;208.780000;0 +20260215 212600;208.777000;208.796000;208.770000;208.795000;0 +20260215 212700;208.798000;208.813000;208.798000;208.811000;0 +20260215 212800;208.808000;208.809000;208.795000;208.804000;0 +20260215 212900;208.803000;208.830000;208.799000;208.828000;0 +20260215 213000;208.831000;208.848000;208.822000;208.822000;0 +20260215 213100;208.820000;208.831000;208.816000;208.829000;0 +20260215 213200;208.828000;208.852000;208.828000;208.845000;0 +20260215 213300;208.846000;208.847000;208.831000;208.835000;0 +20260215 213400;208.843000;208.862000;208.834000;208.855000;0 +20260215 213500;208.856000;208.864000;208.853000;208.858000;0 +20260215 213600;208.857000;208.860000;208.843000;208.858000;0 +20260215 213700;208.858000;208.859000;208.831000;208.853000;0 +20260215 213800;208.853000;208.854000;208.830000;208.834000;0 +20260215 213900;208.831000;208.834000;208.816000;208.824000;0 +20260215 214000;208.823000;208.826000;208.806000;208.822000;0 +20260215 214100;208.820000;208.849000;208.820000;208.846000;0 +20260215 214200;208.845000;208.856000;208.838000;208.843000;0 +20260215 214300;208.843000;208.843000;208.804000;208.810000;0 +20260215 214400;208.812000;208.819000;208.803000;208.811000;0 +20260215 214500;208.810000;208.812000;208.782000;208.794000;0 +20260215 214600;208.793000;208.802000;208.782000;208.784000;0 +20260215 214700;208.785000;208.828000;208.782000;208.810000;0 +20260215 214800;208.809000;208.818000;208.800000;208.818000;0 +20260215 214900;208.816000;208.828000;208.789000;208.823000;0 +20260215 215000;208.820000;208.820000;208.778000;208.780000;0 +20260215 215100;208.781000;208.797000;208.777000;208.791000;0 +20260215 215200;208.792000;208.802000;208.777000;208.777000;0 +20260215 215300;208.777000;208.777000;208.727000;208.749000;0 +20260215 215400;208.746000;208.748000;208.728000;208.729000;0 +20260215 215500;208.727000;208.727000;208.710000;208.711000;0 +20260215 215600;208.710000;208.731000;208.709000;208.720000;0 +20260215 215700;208.730000;208.739000;208.722000;208.729000;0 +20260215 215800;208.738000;208.738000;208.709000;208.709000;0 +20260215 215900;208.711000;208.736000;208.710000;208.733000;0 +20260215 220000;208.731000;208.753000;208.728000;208.753000;0 +20260215 220100;208.751000;208.764000;208.733000;208.746000;0 +20260215 220200;208.742000;208.744000;208.704000;208.704000;0 +20260215 220300;208.704000;208.722000;208.704000;208.712000;0 +20260215 220400;208.709000;208.725000;208.709000;208.724000;0 +20260215 220500;208.725000;208.731000;208.719000;208.727000;0 +20260215 220600;208.724000;208.732000;208.718000;208.727000;0 +20260215 220700;208.728000;208.741000;208.728000;208.737000;0 +20260215 220800;208.738000;208.784000;208.738000;208.774000;0 +20260215 220900;208.777000;208.777000;208.762000;208.765000;0 +20260215 221000;208.765000;208.788000;208.765000;208.776000;0 +20260215 221100;208.776000;208.798000;208.776000;208.786000;0 +20260215 221200;208.785000;208.792000;208.782000;208.786000;0 +20260215 221300;208.784000;208.799000;208.784000;208.796000;0 +20260215 221400;208.795000;208.804000;208.786000;208.794000;0 +20260215 221500;208.790000;208.799000;208.788000;208.794000;0 +20260215 221600;208.794000;208.813000;208.794000;208.813000;0 +20260215 221700;208.815000;208.820000;208.806000;208.812000;0 +20260215 221800;208.816000;208.817000;208.788000;208.804000;0 +20260215 221900;208.800000;208.800000;208.787000;208.799000;0 +20260215 222000;208.801000;208.802000;208.775000;208.780000;0 +20260215 222100;208.778000;208.778000;208.768000;208.771000;0 +20260215 222200;208.771000;208.794000;208.753000;208.764000;0 +20260215 222300;208.765000;208.779000;208.754000;208.774000;0 +20260215 222400;208.774000;208.788000;208.771000;208.787000;0 +20260215 222500;208.790000;208.804000;208.784000;208.792000;0 +20260215 222600;208.790000;208.801000;208.785000;208.788000;0 +20260215 222700;208.787000;208.790000;208.771000;208.773000;0 +20260215 222800;208.773000;208.785000;208.773000;208.778000;0 +20260215 222900;208.783000;208.787000;208.777000;208.786000;0 +20260215 223000;208.787000;208.789000;208.742000;208.754000;0 +20260215 223100;208.755000;208.777000;208.754000;208.776000;0 +20260215 223200;208.774000;208.775000;208.761000;208.767000;0 +20260215 223300;208.767000;208.778000;208.767000;208.769000;0 +20260215 223400;208.769000;208.781000;208.768000;208.781000;0 +20260215 223500;208.783000;208.795000;208.773000;208.775000;0 +20260215 223600;208.778000;208.786000;208.772000;208.775000;0 +20260215 223700;208.774000;208.779000;208.764000;208.768000;0 +20260215 223800;208.769000;208.769000;208.758000;208.760000;0 +20260215 223900;208.759000;208.763000;208.743000;208.754000;0 +20260215 224000;208.751000;208.758000;208.732000;208.758000;0 +20260215 224100;208.758000;208.769000;208.740000;208.765000;0 +20260215 224200;208.767000;208.781000;208.765000;208.779000;0 +20260215 224300;208.778000;208.787000;208.778000;208.787000;0 +20260215 224400;208.789000;208.789000;208.781000;208.785000;0 +20260215 224500;208.787000;208.787000;208.766000;208.767000;0 +20260215 224600;208.766000;208.826000;208.764000;208.800000;0 +20260215 224700;208.800000;208.815000;208.783000;208.789000;0 +20260215 224800;208.789000;208.821000;208.789000;208.809000;0 +20260215 224900;208.811000;208.828000;208.791000;208.797000;0 +20260215 225000;208.799000;208.809000;208.798000;208.803000;0 +20260215 225100;208.799000;208.810000;208.785000;208.789000;0 +20260215 225200;208.789000;208.807000;208.789000;208.795000;0 +20260215 225300;208.792000;208.811000;208.791000;208.798000;0 +20260215 225400;208.800000;208.806000;208.787000;208.798000;0 +20260215 225500;208.790000;208.791000;208.781000;208.790000;0 +20260215 225600;208.788000;208.799000;208.778000;208.788000;0 +20260215 225700;208.788000;208.806000;208.784000;208.800000;0 +20260215 225800;208.802000;208.806000;208.785000;208.792000;0 +20260215 225900;208.792000;208.807000;208.787000;208.802000;0 +20260215 230000;208.807000;208.808000;208.797000;208.808000;0 +20260215 230100;208.807000;208.835000;208.807000;208.814000;0 +20260215 230200;208.811000;208.827000;208.804000;208.826000;0 +20260215 230300;208.828000;208.836000;208.827000;208.836000;0 +20260215 230400;208.834000;208.834000;208.812000;208.812000;0 +20260215 230500;208.811000;208.811000;208.796000;208.802000;0 +20260215 230600;208.794000;208.794000;208.744000;208.760000;0 +20260215 230700;208.764000;208.777000;208.757000;208.770000;0 +20260215 230800;208.769000;208.770000;208.745000;208.755000;0 +20260215 230900;208.752000;208.755000;208.731000;208.737000;0 +20260215 231000;208.738000;208.760000;208.737000;208.759000;0 +20260215 231100;208.761000;208.765000;208.745000;208.750000;0 +20260215 231200;208.750000;208.750000;208.709000;208.715000;0 +20260215 231300;208.714000;208.740000;208.714000;208.740000;0 +20260215 231400;208.739000;208.783000;208.735000;208.774000;0 +20260215 231500;208.776000;208.779000;208.774000;208.777000;0 +20260215 231600;208.777000;208.790000;208.777000;208.787000;0 +20260215 231700;208.791000;208.791000;208.776000;208.784000;0 +20260215 231800;208.782000;208.784000;208.766000;208.776000;0 +20260215 231900;208.777000;208.824000;208.769000;208.819000;0 +20260215 232000;208.814000;208.829000;208.800000;208.805000;0 +20260215 232100;208.804000;208.811000;208.788000;208.801000;0 +20260215 232200;208.802000;208.802000;208.790000;208.791000;0 +20260215 232300;208.788000;208.803000;208.785000;208.791000;0 +20260215 232400;208.793000;208.797000;208.782000;208.786000;0 +20260215 232500;208.788000;208.802000;208.782000;208.790000;0 +20260215 232600;208.793000;208.802000;208.789000;208.799000;0 +20260215 232700;208.798000;208.807000;208.785000;208.786000;0 +20260215 232800;208.786000;208.813000;208.786000;208.803000;0 +20260215 232900;208.803000;208.819000;208.800000;208.811000;0 +20260215 233000;208.807000;208.829000;208.806000;208.818000;0 +20260215 233100;208.813000;208.822000;208.805000;208.818000;0 +20260215 233200;208.817000;208.845000;208.817000;208.837000;0 +20260215 233300;208.837000;208.844000;208.825000;208.825000;0 +20260215 233400;208.821000;208.836000;208.810000;208.828000;0 +20260215 233500;208.828000;208.833000;208.814000;208.829000;0 +20260215 233600;208.831000;208.841000;208.819000;208.833000;0 +20260215 233700;208.832000;208.848000;208.825000;208.834000;0 +20260215 233800;208.837000;208.862000;208.832000;208.832000;0 +20260215 233900;208.834000;208.866000;208.829000;208.857000;0 +20260215 234000;208.858000;208.883000;208.849000;208.860000;0 +20260215 234100;208.859000;208.874000;208.857000;208.864000;0 +20260215 234200;208.864000;208.872000;208.848000;208.848000;0 +20260215 234300;208.844000;208.855000;208.844000;208.854000;0 +20260215 234400;208.854000;208.882000;208.854000;208.876000;0 +20260215 234500;208.877000;208.892000;208.870000;208.879000;0 +20260215 234600;208.880000;208.910000;208.880000;208.907000;0 +20260215 234700;208.914000;208.918000;208.908000;208.918000;0 +20260215 234800;208.918000;208.932000;208.916000;208.926000;0 +20260215 234900;208.923000;208.925000;208.910000;208.912000;0 +20260215 235000;208.912000;208.924000;208.892000;208.917000;0 +20260215 235100;208.918000;208.934000;208.918000;208.932000;0 +20260215 235200;208.933000;208.937000;208.920000;208.935000;0 +20260215 235300;208.937000;208.963000;208.937000;208.961000;0 +20260215 235400;208.959000;208.988000;208.957000;208.959000;0 +20260215 235500;208.960000;208.984000;208.958000;208.972000;0 +20260215 235600;208.977000;208.982000;208.970000;208.974000;0 +20260215 235700;208.976000;208.999000;208.976000;208.990000;0 +20260215 235800;208.992000;209.005000;208.991000;208.994000;0 +20260215 235900;208.997000;209.004000;208.977000;208.996000;0 +20260216 000000;208.996000;209.000000;208.993000;208.995000;0 +20260216 000100;208.999000;209.001000;208.987000;208.988000;0 +20260216 000200;208.989000;208.989000;208.948000;208.949000;0 +20260216 000300;208.952000;208.975000;208.952000;208.970000;0 +20260216 000400;208.971000;208.981000;208.964000;208.967000;0 +20260216 000500;208.966000;208.984000;208.965000;208.984000;0 +20260216 000600;208.986000;208.986000;208.975000;208.978000;0 +20260216 000700;208.979000;208.984000;208.977000;208.983000;0 +20260216 000800;208.984000;208.994000;208.983000;208.994000;0 +20260216 000900;208.992000;208.992000;208.981000;208.983000;0 +20260216 001000;208.981000;208.982000;208.956000;208.962000;0 +20260216 001100;208.964000;208.964000;208.925000;208.927000;0 +20260216 001200;208.928000;208.928000;208.878000;208.884000;0 +20260216 001300;208.886000;208.902000;208.882000;208.895000;0 +20260216 001400;208.894000;208.925000;208.889000;208.921000;0 +20260216 001500;208.919000;208.932000;208.916000;208.916000;0 +20260216 001600;208.918000;208.922000;208.917000;208.921000;0 +20260216 001700;208.922000;208.925000;208.908000;208.910000;0 +20260216 001800;208.910000;208.916000;208.908000;208.911000;0 +20260216 001900;208.911000;208.911000;208.898000;208.901000;0 +20260216 002000;208.901000;208.905000;208.901000;208.904000;0 +20260216 002100;208.904000;208.910000;208.899000;208.909000;0 +20260216 002200;208.913000;208.922000;208.908000;208.917000;0 +20260216 002300;208.926000;208.946000;208.924000;208.934000;0 +20260216 002400;208.935000;208.935000;208.908000;208.913000;0 +20260216 002500;208.913000;208.936000;208.909000;208.931000;0 +20260216 002600;208.929000;208.938000;208.925000;208.934000;0 +20260216 002700;208.934000;208.934000;208.918000;208.924000;0 +20260216 002800;208.924000;208.930000;208.920000;208.921000;0 +20260216 002900;208.924000;208.925000;208.914000;208.917000;0 +20260216 003000;208.917000;208.952000;208.906000;208.933000;0 +20260216 003100;208.938000;208.948000;208.933000;208.947000;0 +20260216 003200;208.951000;208.967000;208.951000;208.954000;0 +20260216 003300;208.953000;208.956000;208.934000;208.953000;0 +20260216 003400;208.954000;208.957000;208.928000;208.942000;0 +20260216 003500;208.943000;208.956000;208.934000;208.953000;0 +20260216 003600;208.944000;208.949000;208.922000;208.937000;0 +20260216 003700;208.933000;208.939000;208.929000;208.934000;0 +20260216 003800;208.930000;208.954000;208.930000;208.942000;0 +20260216 003900;208.939000;208.956000;208.937000;208.937000;0 +20260216 004000;208.935000;208.945000;208.934000;208.941000;0 +20260216 004100;208.942000;208.944000;208.922000;208.925000;0 +20260216 004200;208.926000;208.930000;208.921000;208.922000;0 +20260216 004300;208.923000;208.931000;208.920000;208.921000;0 +20260216 004400;208.920000;208.932000;208.905000;208.917000;0 +20260216 004500;208.920000;208.924000;208.917000;208.919000;0 +20260216 004600;208.920000;208.927000;208.916000;208.916000;0 +20260216 004700;208.916000;208.926000;208.905000;208.907000;0 +20260216 004800;208.908000;208.919000;208.905000;208.916000;0 +20260216 004900;208.917000;208.917000;208.913000;208.915000;0 +20260216 005000;208.916000;208.918000;208.913000;208.918000;0 +20260216 005100;208.919000;208.940000;208.916000;208.940000;0 +20260216 005200;208.939000;208.941000;208.929000;208.935000;0 +20260216 005300;208.931000;208.931000;208.921000;208.929000;0 +20260216 005400;208.930000;208.939000;208.917000;208.918000;0 +20260216 005500;208.917000;208.923000;208.907000;208.911000;0 +20260216 005600;208.910000;208.912000;208.883000;208.911000;0 +20260216 005700;208.911000;208.919000;208.902000;208.917000;0 +20260216 005800;208.914000;208.926000;208.901000;208.926000;0 +20260216 005900;208.920000;208.945000;208.920000;208.943000;0 +20260216 010000;208.944000;208.952000;208.931000;208.945000;0 +20260216 010100;208.947000;208.950000;208.946000;208.950000;0 +20260216 010200;208.949000;208.950000;208.933000;208.938000;0 +20260216 010300;208.945000;208.958000;208.943000;208.951000;0 +20260216 010400;208.950000;208.961000;208.950000;208.958000;0 +20260216 010500;208.963000;208.979000;208.962000;208.963000;0 +20260216 010600;208.964000;208.965000;208.948000;208.958000;0 +20260216 010700;208.958000;208.969000;208.958000;208.964000;0 +20260216 010800;208.957000;208.976000;208.953000;208.976000;0 +20260216 010900;208.973000;208.979000;208.962000;208.979000;0 +20260216 011000;208.980000;208.986000;208.966000;208.966000;0 +20260216 011100;208.971000;208.977000;208.965000;208.970000;0 +20260216 011200;208.969000;208.982000;208.969000;208.980000;0 +20260216 011300;208.988000;209.001000;208.982000;208.999000;0 +20260216 011400;209.000000;209.009000;208.997000;208.999000;0 +20260216 011500;209.000000;209.001000;208.985000;208.992000;0 +20260216 011600;208.993000;208.994000;208.980000;208.991000;0 +20260216 011700;208.988000;208.991000;208.979000;208.980000;0 +20260216 011800;208.978000;208.979000;208.972000;208.979000;0 +20260216 011900;208.981000;208.981000;208.939000;208.939000;0 +20260216 012000;208.936000;208.944000;208.936000;208.937000;0 +20260216 012100;208.936000;208.937000;208.913000;208.923000;0 +20260216 012200;208.924000;208.952000;208.905000;208.911000;0 +20260216 012300;208.912000;208.928000;208.912000;208.914000;0 +20260216 012400;208.916000;208.928000;208.910000;208.921000;0 +20260216 012500;208.919000;208.919000;208.894000;208.904000;0 +20260216 012600;208.898000;208.908000;208.889000;208.895000;0 +20260216 012700;208.897000;208.910000;208.886000;208.906000;0 +20260216 012800;208.909000;208.921000;208.903000;208.918000;0 +20260216 012900;208.924000;208.928000;208.920000;208.926000;0 +20260216 013000;208.919000;208.951000;208.913000;208.951000;0 +20260216 013100;208.949000;208.958000;208.944000;208.957000;0 +20260216 013200;208.958000;208.958000;208.916000;208.917000;0 +20260216 013300;208.921000;208.922000;208.905000;208.905000;0 +20260216 013400;208.900000;208.904000;208.880000;208.900000;0 +20260216 013500;208.901000;208.915000;208.899000;208.907000;0 +20260216 013600;208.902000;208.912000;208.901000;208.907000;0 +20260216 013700;208.908000;208.908000;208.879000;208.880000;0 +20260216 013800;208.882000;208.890000;208.877000;208.887000;0 +20260216 013900;208.889000;208.918000;208.884000;208.896000;0 +20260216 014000;208.898000;208.919000;208.897000;208.918000;0 +20260216 014100;208.919000;208.942000;208.919000;208.940000;0 +20260216 014200;208.944000;208.944000;208.932000;208.936000;0 +20260216 014300;208.936000;208.943000;208.933000;208.941000;0 +20260216 014400;208.931000;208.931000;208.897000;208.918000;0 +20260216 014500;208.918000;208.942000;208.916000;208.934000;0 +20260216 014600;208.932000;208.978000;208.932000;208.973000;0 +20260216 014700;208.974000;208.978000;208.964000;208.966000;0 +20260216 014800;208.966000;208.966000;208.940000;208.945000;0 +20260216 014900;208.946000;208.958000;208.941000;208.944000;0 +20260216 015000;208.943000;208.952000;208.936000;208.952000;0 +20260216 015100;208.951000;208.961000;208.948000;208.959000;0 +20260216 015200;208.959000;208.970000;208.951000;208.968000;0 +20260216 015300;208.966000;208.982000;208.948000;208.948000;0 +20260216 015400;208.949000;208.949000;208.929000;208.932000;0 +20260216 015500;208.932000;208.936000;208.932000;208.933000;0 +20260216 015600;208.932000;208.932000;208.914000;208.922000;0 +20260216 015700;208.923000;208.934000;208.920000;208.932000;0 +20260216 015800;208.933000;208.945000;208.932000;208.942000;0 +20260216 015900;208.942000;208.949000;208.918000;208.918000;0 +20260216 020000;208.917000;208.933000;208.894000;208.923000;0 +20260216 020100;208.923000;208.929000;208.909000;208.926000;0 +20260216 020200;208.930000;208.943000;208.927000;208.942000;0 +20260216 020300;208.945000;208.969000;208.942000;208.964000;0 +20260216 020400;208.964000;208.983000;208.962000;208.969000;0 +20260216 020500;208.969000;208.992000;208.969000;208.992000;0 +20260216 020600;208.990000;209.001000;208.962000;208.965000;0 +20260216 020700;208.970000;208.983000;208.963000;208.982000;0 +20260216 020800;208.986000;208.998000;208.984000;208.998000;0 +20260216 020900;208.997000;209.000000;208.983000;209.000000;0 +20260216 021000;209.000000;209.023000;208.994000;209.020000;0 +20260216 021100;209.023000;209.066000;209.014000;209.059000;0 +20260216 021200;209.066000;209.087000;209.054000;209.061000;0 +20260216 021300;209.063000;209.078000;209.062000;209.074000;0 +20260216 021400;209.072000;209.091000;209.062000;209.091000;0 +20260216 021500;209.095000;209.117000;209.089000;209.112000;0 +20260216 021600;209.110000;209.118000;209.097000;209.111000;0 +20260216 021700;209.112000;209.136000;209.091000;209.129000;0 +20260216 021800;209.130000;209.133000;209.108000;209.127000;0 +20260216 021900;209.127000;209.170000;209.125000;209.169000;0 +20260216 022000;209.171000;209.194000;209.164000;209.178000;0 +20260216 022100;209.175000;209.176000;209.142000;209.146000;0 +20260216 022200;209.148000;209.148000;209.114000;209.126000;0 +20260216 022300;209.126000;209.134000;209.118000;209.133000;0 +20260216 022400;209.133000;209.142000;209.125000;209.128000;0 +20260216 022500;209.126000;209.146000;209.110000;209.146000;0 +20260216 022600;209.148000;209.148000;209.127000;209.138000;0 +20260216 022700;209.136000;209.148000;209.128000;209.130000;0 +20260216 022800;209.125000;209.128000;209.118000;209.124000;0 +20260216 022900;209.128000;209.147000;209.126000;209.137000;0 +20260216 023000;209.136000;209.159000;209.133000;209.153000;0 +20260216 023100;209.149000;209.154000;209.128000;209.139000;0 +20260216 023200;209.139000;209.140000;209.126000;209.126000;0 +20260216 023300;209.117000;209.132000;209.093000;209.127000;0 +20260216 023400;209.123000;209.127000;209.102000;209.123000;0 +20260216 023500;209.126000;209.170000;209.124000;209.158000;0 +20260216 023600;209.158000;209.158000;209.135000;209.148000;0 +20260216 023700;209.150000;209.160000;209.143000;209.145000;0 +20260216 023800;209.144000;209.146000;209.121000;209.138000;0 +20260216 023900;209.137000;209.148000;209.106000;209.111000;0 +20260216 024000;209.109000;209.133000;209.109000;209.132000;0 +20260216 024100;209.131000;209.154000;209.126000;209.146000;0 +20260216 024200;209.144000;209.144000;209.138000;209.141000;0 +20260216 024300;209.141000;209.184000;209.136000;209.183000;0 +20260216 024400;209.184000;209.295000;209.184000;209.250000;0 +20260216 024500;209.247000;209.259000;209.229000;209.243000;0 +20260216 024600;209.244000;209.252000;209.214000;209.231000;0 +20260216 024700;209.233000;209.241000;209.217000;209.230000;0 +20260216 024800;209.228000;209.242000;209.228000;209.240000;0 +20260216 024900;209.241000;209.253000;209.216000;209.241000;0 +20260216 025000;209.243000;209.243000;209.200000;209.202000;0 +20260216 025100;209.202000;209.228000;209.202000;209.222000;0 +20260216 025200;209.221000;209.241000;209.217000;209.225000;0 +20260216 025300;209.220000;209.221000;209.173000;209.192000;0 +20260216 025400;209.193000;209.194000;209.168000;209.174000;0 +20260216 025500;209.174000;209.200000;209.171000;209.190000;0 +20260216 025600;209.190000;209.209000;209.185000;209.206000;0 +20260216 025700;209.203000;209.215000;209.182000;209.203000;0 +20260216 025800;209.207000;209.214000;209.186000;209.212000;0 +20260216 025900;209.210000;209.221000;209.200000;209.217000;0 +20260216 030000;209.217000;209.266000;209.212000;209.241000;0 +20260216 030100;209.242000;209.266000;209.234000;209.251000;0 +20260216 030200;209.248000;209.270000;209.238000;209.250000;0 +20260216 030300;209.246000;209.247000;209.210000;209.244000;0 +20260216 030400;209.243000;209.310000;209.242000;209.310000;0 +20260216 030500;209.310000;209.350000;209.282000;209.297000;0 +20260216 030600;209.297000;209.309000;209.248000;209.262000;0 +20260216 030700;209.264000;209.306000;209.259000;209.290000;0 +20260216 030800;209.288000;209.290000;209.264000;209.268000;0 +20260216 030900;209.266000;209.280000;209.222000;209.224000;0 +20260216 031000;209.230000;209.235000;209.179000;209.182000;0 +20260216 031100;209.181000;209.181000;209.132000;209.173000;0 +20260216 031200;209.170000;209.226000;209.162000;209.225000;0 +20260216 031300;209.225000;209.231000;209.191000;209.192000;0 +20260216 031400;209.189000;209.210000;209.179000;209.209000;0 +20260216 031500;209.211000;209.231000;209.197000;209.223000;0 +20260216 031600;209.220000;209.275000;209.217000;209.275000;0 +20260216 031700;209.274000;209.336000;209.268000;209.332000;0 +20260216 031800;209.334000;209.371000;209.320000;209.357000;0 +20260216 031900;209.356000;209.388000;209.338000;209.357000;0 +20260216 032000;209.359000;209.381000;209.357000;209.381000;0 +20260216 032100;209.376000;209.430000;209.373000;209.420000;0 +20260216 032200;209.416000;209.450000;209.413000;209.429000;0 +20260216 032300;209.428000;209.438000;209.388000;209.388000;0 +20260216 032400;209.389000;209.393000;209.309000;209.317000;0 +20260216 032500;209.317000;209.338000;209.300000;209.308000;0 +20260216 032600;209.309000;209.320000;209.251000;209.276000;0 +20260216 032700;209.274000;209.306000;209.269000;209.305000;0 +20260216 032800;209.304000;209.323000;209.301000;209.308000;0 +20260216 032900;209.307000;209.310000;209.269000;209.275000;0 +20260216 033000;209.278000;209.304000;209.252000;209.301000;0 +20260216 033100;209.299000;209.302000;209.288000;209.292000;0 +20260216 033200;209.289000;209.304000;209.275000;209.303000;0 +20260216 033300;209.302000;209.311000;209.270000;209.273000;0 +20260216 033400;209.279000;209.317000;209.279000;209.316000;0 +20260216 033500;209.311000;209.314000;209.295000;209.307000;0 +20260216 033600;209.306000;209.309000;209.280000;209.288000;0 +20260216 033700;209.290000;209.315000;209.290000;209.311000;0 +20260216 033800;209.309000;209.327000;209.306000;209.308000;0 +20260216 033900;209.309000;209.329000;209.291000;209.319000;0 +20260216 034000;209.319000;209.341000;209.315000;209.341000;0 +20260216 034100;209.343000;209.365000;209.320000;209.323000;0 +20260216 034200;209.325000;209.331000;209.298000;209.303000;0 +20260216 034300;209.302000;209.332000;209.302000;209.331000;0 +20260216 034400;209.331000;209.367000;209.331000;209.348000;0 +20260216 034500;209.348000;209.367000;209.332000;209.366000;0 +20260216 034600;209.366000;209.372000;209.343000;209.358000;0 +20260216 034700;209.363000;209.374000;209.349000;209.355000;0 +20260216 034800;209.357000;209.371000;209.357000;209.363000;0 +20260216 034900;209.364000;209.374000;209.354000;209.359000;0 +20260216 035000;209.361000;209.375000;209.359000;209.363000;0 +20260216 035100;209.367000;209.375000;209.351000;209.369000;0 +20260216 035200;209.368000;209.390000;209.353000;209.390000;0 +20260216 035300;209.388000;209.401000;209.386000;209.393000;0 +20260216 035400;209.391000;209.402000;209.383000;209.391000;0 +20260216 035500;209.395000;209.407000;209.384000;209.396000;0 +20260216 035600;209.393000;209.403000;209.380000;209.382000;0 +20260216 035700;209.380000;209.383000;209.346000;209.352000;0 +20260216 035800;209.354000;209.358000;209.312000;209.313000;0 +20260216 035900;209.314000;209.350000;209.314000;209.337000;0 +20260216 040000;209.334000;209.334000;209.296000;209.296000;0 +20260216 040100;209.297000;209.354000;209.296000;209.354000;0 +20260216 040200;209.355000;209.374000;209.354000;209.371000;0 +20260216 040300;209.370000;209.378000;209.353000;209.370000;0 +20260216 040400;209.371000;209.399000;209.371000;209.385000;0 +20260216 040500;209.380000;209.393000;209.375000;209.386000;0 +20260216 040600;209.386000;209.403000;209.379000;209.399000;0 +20260216 040700;209.400000;209.442000;209.400000;209.441000;0 +20260216 040800;209.437000;209.454000;209.421000;209.431000;0 +20260216 040900;209.432000;209.436000;209.397000;209.412000;0 +20260216 041000;209.414000;209.434000;209.407000;209.434000;0 +20260216 041100;209.432000;209.441000;209.425000;209.441000;0 +20260216 041200;209.441000;209.450000;209.441000;209.449000;0 +20260216 041300;209.450000;209.450000;209.426000;209.431000;0 +20260216 041400;209.432000;209.454000;209.431000;209.440000;0 +20260216 041500;209.437000;209.456000;209.425000;209.451000;0 +20260216 041600;209.442000;209.453000;209.437000;209.451000;0 +20260216 041700;209.448000;209.458000;209.434000;209.446000;0 +20260216 041800;209.449000;209.478000;209.442000;209.465000;0 +20260216 041900;209.464000;209.465000;209.454000;209.460000;0 +20260216 042000;209.461000;209.461000;209.439000;209.439000;0 +20260216 042100;209.440000;209.456000;209.424000;209.424000;0 +20260216 042200;209.430000;209.440000;209.419000;209.437000;0 +20260216 042300;209.429000;209.462000;209.420000;209.446000;0 +20260216 042400;209.448000;209.467000;209.448000;209.465000;0 +20260216 042500;209.467000;209.479000;209.461000;209.469000;0 +20260216 042600;209.472000;209.484000;209.471000;209.472000;0 +20260216 042700;209.470000;209.494000;209.470000;209.492000;0 +20260216 042800;209.493000;209.493000;209.480000;209.487000;0 +20260216 042900;209.486000;209.486000;209.476000;209.480000;0 +20260216 043000;209.479000;209.543000;209.464000;209.539000;0 +20260216 043100;209.538000;209.544000;209.511000;209.536000;0 +20260216 043200;209.539000;209.565000;209.539000;209.560000;0 +20260216 043300;209.557000;209.563000;209.547000;209.557000;0 +20260216 043400;209.560000;209.589000;209.556000;209.580000;0 +20260216 043500;209.580000;209.610000;209.579000;209.601000;0 +20260216 043600;209.598000;209.598000;209.572000;209.576000;0 +20260216 043700;209.577000;209.581000;209.535000;209.535000;0 +20260216 043800;209.535000;209.553000;209.515000;209.549000;0 +20260216 043900;209.551000;209.571000;209.531000;209.569000;0 +20260216 044000;209.567000;209.579000;209.555000;209.560000;0 +20260216 044100;209.558000;209.565000;209.552000;209.561000;0 +20260216 044200;209.562000;209.562000;209.532000;209.535000;0 +20260216 044300;209.535000;209.574000;209.534000;209.574000;0 +20260216 044400;209.575000;209.575000;209.536000;209.543000;0 +20260216 044500;209.540000;209.542000;209.505000;209.512000;0 +20260216 044600;209.513000;209.526000;209.507000;209.521000;0 +20260216 044700;209.524000;209.595000;209.520000;209.577000;0 +20260216 044800;209.582000;209.618000;209.577000;209.597000;0 +20260216 044900;209.598000;209.622000;209.598000;209.620000;0 +20260216 045000;209.618000;209.626000;209.597000;209.607000;0 +20260216 045100;209.608000;209.638000;209.596000;209.601000;0 +20260216 045200;209.602000;209.622000;209.594000;209.600000;0 +20260216 045300;209.598000;209.615000;209.577000;209.582000;0 +20260216 045400;209.584000;209.595000;209.535000;209.539000;0 +20260216 045500;209.537000;209.556000;209.522000;209.556000;0 +20260216 045600;209.559000;209.580000;209.551000;209.552000;0 +20260216 045700;209.559000;209.569000;209.558000;209.560000;0 +20260216 045800;209.558000;209.561000;209.527000;209.545000;0 +20260216 045900;209.546000;209.553000;209.535000;209.538000;0 +20260216 050000;209.537000;209.562000;209.534000;209.558000;0 +20260216 050100;209.556000;209.560000;209.518000;209.529000;0 +20260216 050200;209.527000;209.537000;209.498000;209.526000;0 +20260216 050300;209.521000;209.555000;209.520000;209.525000;0 +20260216 050400;209.522000;209.534000;209.512000;209.523000;0 +20260216 050500;209.519000;209.539000;209.514000;209.539000;0 +20260216 050600;209.538000;209.551000;209.519000;209.532000;0 +20260216 050700;209.531000;209.561000;209.526000;209.561000;0 +20260216 050800;209.564000;209.565000;209.523000;209.525000;0 +20260216 050900;209.525000;209.553000;209.521000;209.536000;0 +20260216 051000;209.536000;209.577000;209.536000;209.570000;0 +20260216 051100;209.567000;209.572000;209.542000;209.561000;0 +20260216 051200;209.560000;209.571000;209.546000;209.546000;0 +20260216 051300;209.544000;209.565000;209.539000;209.563000;0 +20260216 051400;209.569000;209.598000;209.564000;209.598000;0 +20260216 051500;209.597000;209.622000;209.580000;209.581000;0 +20260216 051600;209.579000;209.592000;209.570000;209.579000;0 +20260216 051700;209.581000;209.591000;209.540000;209.540000;0 +20260216 051800;209.542000;209.581000;209.541000;209.581000;0 +20260216 051900;209.581000;209.610000;209.573000;209.605000;0 +20260216 052000;209.605000;209.626000;209.605000;209.620000;0 +20260216 052100;209.616000;209.616000;209.598000;209.610000;0 +20260216 052200;209.611000;209.629000;209.611000;209.625000;0 +20260216 052300;209.625000;209.625000;209.602000;209.613000;0 +20260216 052400;209.612000;209.620000;209.592000;209.600000;0 +20260216 052500;209.598000;209.598000;209.586000;209.591000;0 +20260216 052600;209.591000;209.598000;209.578000;209.578000;0 +20260216 052700;209.579000;209.592000;209.564000;209.569000;0 +20260216 052800;209.567000;209.575000;209.566000;209.571000;0 +20260216 052900;209.578000;209.609000;209.578000;209.606000;0 +20260216 053000;209.605000;209.605000;209.558000;209.568000;0 +20260216 053100;209.569000;209.585000;209.553000;209.554000;0 +20260216 053200;209.552000;209.617000;209.552000;209.612000;0 +20260216 053300;209.611000;209.645000;209.596000;209.600000;0 +20260216 053400;209.601000;209.627000;209.588000;209.618000;0 +20260216 053500;209.617000;209.633000;209.613000;209.631000;0 +20260216 053600;209.621000;209.627000;209.611000;209.627000;0 +20260216 053700;209.626000;209.635000;209.612000;209.616000;0 +20260216 053800;209.614000;209.623000;209.593000;209.614000;0 +20260216 053900;209.612000;209.615000;209.599000;209.599000;0 +20260216 054000;209.595000;209.615000;209.587000;209.610000;0 +20260216 054100;209.612000;209.637000;209.612000;209.637000;0 +20260216 054200;209.639000;209.645000;209.630000;209.640000;0 +20260216 054300;209.642000;209.653000;209.639000;209.653000;0 +20260216 054400;209.656000;209.678000;209.652000;209.674000;0 +20260216 054500;209.674000;209.677000;209.613000;209.615000;0 +20260216 054600;209.613000;209.654000;209.598000;209.643000;0 +20260216 054700;209.644000;209.647000;209.637000;209.637000;0 +20260216 054800;209.634000;209.643000;209.623000;209.628000;0 +20260216 054900;209.627000;209.640000;209.605000;209.609000;0 +20260216 055000;209.606000;209.612000;209.598000;209.599000;0 +20260216 055100;209.600000;209.607000;209.593000;209.601000;0 +20260216 055200;209.601000;209.603000;209.579000;209.595000;0 +20260216 055300;209.596000;209.596000;209.567000;209.580000;0 +20260216 055400;209.587000;209.609000;209.587000;209.596000;0 +20260216 055500;209.598000;209.621000;209.589000;209.614000;0 +20260216 055600;209.614000;209.614000;209.585000;209.587000;0 +20260216 055700;209.591000;209.591000;209.582000;209.582000;0 +20260216 055800;209.581000;209.586000;209.569000;209.578000;0 +20260216 055900;209.575000;209.591000;209.560000;209.569000;0 +20260216 060000;209.568000;209.599000;209.561000;209.572000;0 +20260216 060100;209.571000;209.588000;209.561000;209.564000;0 +20260216 060200;209.567000;209.582000;209.567000;209.576000;0 +20260216 060300;209.577000;209.578000;209.535000;209.538000;0 +20260216 060400;209.538000;209.538000;209.521000;209.521000;0 +20260216 060500;209.521000;209.521000;209.489000;209.504000;0 +20260216 060600;209.503000;209.513000;209.495000;209.495000;0 +20260216 060700;209.504000;209.518000;209.502000;209.510000;0 +20260216 060800;209.510000;209.514000;209.495000;209.498000;0 +20260216 060900;209.499000;209.504000;209.485000;209.491000;0 +20260216 061000;209.489000;209.489000;209.463000;209.468000;0 +20260216 061100;209.469000;209.490000;209.448000;209.474000;0 +20260216 061200;209.475000;209.502000;209.465000;209.497000;0 +20260216 061300;209.496000;209.507000;209.492000;209.500000;0 +20260216 061400;209.500000;209.500000;209.488000;209.498000;0 +20260216 061500;209.499000;209.502000;209.477000;209.477000;0 +20260216 061600;209.468000;209.473000;209.457000;209.467000;0 +20260216 061700;209.464000;209.478000;209.460000;209.478000;0 +20260216 061800;209.483000;209.497000;209.477000;209.477000;0 +20260216 061900;209.480000;209.496000;209.480000;209.493000;0 +20260216 062000;209.493000;209.499000;209.474000;209.479000;0 +20260216 062100;209.472000;209.473000;209.453000;209.470000;0 +20260216 062200;209.471000;209.473000;209.458000;209.463000;0 +20260216 062300;209.462000;209.488000;209.461000;209.465000;0 +20260216 062400;209.459000;209.469000;209.447000;209.454000;0 +20260216 062500;209.454000;209.468000;209.443000;209.463000;0 +20260216 062600;209.464000;209.472000;209.461000;209.465000;0 +20260216 062700;209.467000;209.468000;209.443000;209.444000;0 +20260216 062800;209.443000;209.446000;209.426000;209.426000;0 +20260216 062900;209.428000;209.438000;209.418000;209.429000;0 +20260216 063000;209.430000;209.450000;209.428000;209.436000;0 +20260216 063100;209.431000;209.445000;209.426000;209.442000;0 +20260216 063200;209.443000;209.452000;209.432000;209.433000;0 +20260216 063300;209.435000;209.437000;209.407000;209.407000;0 +20260216 063400;209.411000;209.426000;209.409000;209.412000;0 +20260216 063500;209.412000;209.426000;209.401000;209.407000;0 +20260216 063600;209.407000;209.412000;209.359000;209.359000;0 +20260216 063700;209.360000;209.362000;209.341000;209.353000;0 +20260216 063800;209.350000;209.374000;209.350000;209.371000;0 +20260216 063900;209.372000;209.399000;209.372000;209.393000;0 +20260216 064000;209.393000;209.415000;209.390000;209.415000;0 +20260216 064100;209.408000;209.413000;209.405000;209.411000;0 +20260216 064200;209.410000;209.411000;209.380000;209.386000;0 +20260216 064300;209.386000;209.387000;209.376000;209.380000;0 +20260216 064400;209.384000;209.384000;209.353000;209.367000;0 +20260216 064500;209.363000;209.366000;209.355000;209.355000;0 +20260216 064600;209.356000;209.363000;209.341000;209.356000;0 +20260216 064700;209.353000;209.355000;209.338000;209.350000;0 +20260216 064800;209.350000;209.351000;209.338000;209.339000;0 +20260216 064900;209.338000;209.355000;209.338000;209.353000;0 +20260216 065000;209.352000;209.353000;209.330000;209.339000;0 +20260216 065100;209.342000;209.347000;209.332000;209.342000;0 +20260216 065200;209.340000;209.352000;209.330000;209.351000;0 +20260216 065300;209.348000;209.356000;209.312000;209.312000;0 +20260216 065400;209.312000;209.328000;209.312000;209.315000;0 +20260216 065500;209.314000;209.322000;209.299000;209.321000;0 +20260216 065600;209.317000;209.319000;209.307000;209.311000;0 +20260216 065700;209.312000;209.314000;209.290000;209.292000;0 +20260216 065800;209.293000;209.293000;209.244000;209.268000;0 +20260216 065900;209.267000;209.269000;209.252000;209.259000;0 +20260216 070000;209.257000;209.281000;209.244000;209.267000;0 +20260216 070100;209.269000;209.303000;209.269000;209.303000;0 +20260216 070200;209.301000;209.306000;209.279000;209.294000;0 +20260216 070300;209.293000;209.313000;209.288000;209.300000;0 +20260216 070400;209.299000;209.324000;209.299000;209.324000;0 +20260216 070500;209.326000;209.326000;209.311000;209.315000;0 +20260216 070600;209.314000;209.314000;209.305000;209.313000;0 +20260216 070700;209.311000;209.315000;209.288000;209.302000;0 +20260216 070800;209.302000;209.311000;209.296000;209.306000;0 +20260216 070900;209.307000;209.330000;209.307000;209.324000;0 +20260216 071000;209.322000;209.322000;209.296000;209.303000;0 +20260216 071100;209.303000;209.319000;209.301000;209.319000;0 +20260216 071200;209.316000;209.319000;209.314000;209.315000;0 +20260216 071300;209.314000;209.316000;209.278000;209.293000;0 +20260216 071400;209.291000;209.297000;209.283000;209.283000;0 +20260216 071500;209.283000;209.291000;209.264000;209.264000;0 +20260216 071600;209.268000;209.273000;209.241000;209.243000;0 +20260216 071700;209.238000;209.251000;209.237000;209.239000;0 +20260216 071800;209.240000;209.250000;209.235000;209.235000;0 +20260216 071900;209.236000;209.261000;209.236000;209.248000;0 +20260216 072000;209.248000;209.248000;209.232000;209.238000;0 +20260216 072100;209.237000;209.242000;209.230000;209.233000;0 +20260216 072200;209.234000;209.236000;209.228000;209.235000;0 +20260216 072300;209.236000;209.255000;209.221000;209.254000;0 +20260216 072400;209.254000;209.259000;209.238000;209.240000;0 +20260216 072500;209.243000;209.269000;209.243000;209.259000;0 +20260216 072600;209.260000;209.270000;209.260000;209.262000;0 +20260216 072700;209.261000;209.267000;209.253000;209.253000;0 +20260216 072800;209.252000;209.265000;209.244000;209.246000;0 +20260216 072900;209.248000;209.262000;209.238000;209.261000;0 +20260216 073000;209.263000;209.264000;209.225000;209.237000;0 +20260216 073100;209.240000;209.244000;209.233000;209.238000;0 +20260216 073200;209.238000;209.244000;209.226000;209.242000;0 +20260216 073300;209.241000;209.245000;209.238000;209.242000;0 +20260216 073400;209.246000;209.269000;209.240000;209.268000;0 +20260216 073500;209.269000;209.296000;209.262000;209.292000;0 +20260216 073600;209.290000;209.319000;209.290000;209.317000;0 +20260216 073700;209.316000;209.317000;209.290000;209.292000;0 +20260216 073800;209.291000;209.315000;209.291000;209.307000;0 +20260216 073900;209.308000;209.338000;209.307000;209.335000;0 +20260216 074000;209.340000;209.340000;209.308000;209.309000;0 +20260216 074100;209.310000;209.314000;209.294000;209.294000;0 +20260216 074200;209.296000;209.296000;209.263000;209.263000;0 +20260216 074300;209.264000;209.278000;209.236000;209.243000;0 +20260216 074400;209.245000;209.249000;209.232000;209.233000;0 +20260216 074500;209.235000;209.267000;209.233000;209.266000;0 +20260216 074600;209.268000;209.272000;209.246000;209.246000;0 +20260216 074700;209.242000;209.247000;209.211000;209.211000;0 +20260216 074800;209.211000;209.211000;209.185000;209.187000;0 +20260216 074900;209.188000;209.207000;209.187000;209.195000;0 +20260216 075000;209.194000;209.222000;209.194000;209.212000;0 +20260216 075100;209.211000;209.223000;209.211000;209.215000;0 +20260216 075200;209.213000;209.243000;209.209000;209.242000;0 +20260216 075300;209.241000;209.249000;209.229000;209.246000;0 +20260216 075400;209.246000;209.268000;209.245000;209.251000;0 +20260216 075500;209.263000;209.264000;209.228000;209.231000;0 +20260216 075600;209.227000;209.234000;209.209000;209.211000;0 +20260216 075700;209.208000;209.238000;209.207000;209.210000;0 +20260216 075800;209.214000;209.228000;209.208000;209.217000;0 +20260216 075900;209.221000;209.242000;209.210000;209.238000;0 +20260216 080000;209.235000;209.250000;209.216000;209.228000;0 +20260216 080100;209.230000;209.230000;209.198000;209.216000;0 +20260216 080200;209.217000;209.234000;209.194000;209.233000;0 +20260216 080300;209.230000;209.238000;209.203000;209.205000;0 +20260216 080400;209.204000;209.220000;209.201000;209.216000;0 +20260216 080500;209.215000;209.218000;209.200000;209.211000;0 +20260216 080600;209.213000;209.248000;209.210000;209.248000;0 +20260216 080700;209.247000;209.247000;209.183000;209.191000;0 +20260216 080800;209.190000;209.192000;209.173000;209.186000;0 +20260216 080900;209.184000;209.185000;209.173000;209.180000;0 +20260216 081000;209.179000;209.183000;209.138000;209.138000;0 +20260216 081100;209.143000;209.158000;209.135000;209.157000;0 +20260216 081200;209.159000;209.172000;209.153000;209.158000;0 +20260216 081300;209.159000;209.181000;209.143000;209.181000;0 +20260216 081400;209.178000;209.178000;209.112000;209.124000;0 +20260216 081500;209.128000;209.128000;209.087000;209.112000;0 +20260216 081600;209.115000;209.137000;209.115000;209.137000;0 +20260216 081700;209.136000;209.175000;209.131000;209.174000;0 +20260216 081800;209.175000;209.177000;209.136000;209.154000;0 +20260216 081900;209.153000;209.159000;209.142000;209.148000;0 +20260216 082000;209.151000;209.159000;209.140000;209.153000;0 +20260216 082100;209.151000;209.159000;209.144000;209.156000;0 +20260216 082200;209.153000;209.157000;209.138000;209.147000;0 +20260216 082300;209.141000;209.148000;209.115000;209.115000;0 +20260216 082400;209.113000;209.128000;209.110000;209.120000;0 +20260216 082500;209.116000;209.142000;209.112000;209.142000;0 +20260216 082600;209.140000;209.140000;209.117000;209.117000;0 +20260216 082700;209.117000;209.117000;209.102000;209.110000;0 +20260216 082800;209.112000;209.112000;209.094000;209.106000;0 +20260216 082900;209.108000;209.120000;209.094000;209.104000;0 +20260216 083000;209.105000;209.113000;209.097000;209.100000;0 +20260216 083100;209.098000;209.102000;209.071000;209.071000;0 +20260216 083200;209.068000;209.068000;209.046000;209.046000;0 +20260216 083300;209.045000;209.045000;208.989000;208.991000;0 +20260216 083400;208.990000;209.006000;208.969000;208.985000;0 +20260216 083500;208.987000;209.009000;208.984000;208.986000;0 +20260216 083600;208.991000;208.991000;208.972000;208.981000;0 +20260216 083700;208.983000;208.983000;208.964000;208.981000;0 +20260216 083800;208.983000;209.012000;208.963000;209.005000;0 +20260216 083900;209.005000;209.044000;208.996000;209.043000;0 +20260216 084000;209.040000;209.045000;209.027000;209.044000;0 +20260216 084100;209.043000;209.053000;209.026000;209.026000;0 +20260216 084200;209.027000;209.040000;209.026000;209.030000;0 +20260216 084300;209.030000;209.050000;209.020000;209.031000;0 +20260216 084400;209.033000;209.050000;209.033000;209.044000;0 +20260216 084500;209.046000;209.087000;209.043000;209.087000;0 +20260216 084600;209.088000;209.113000;209.085000;209.095000;0 +20260216 084700;209.093000;209.094000;209.071000;209.071000;0 +20260216 084800;209.067000;209.072000;209.059000;209.062000;0 +20260216 084900;209.062000;209.079000;209.054000;209.074000;0 +20260216 085000;209.075000;209.093000;209.072000;209.073000;0 +20260216 085100;209.072000;209.094000;209.069000;209.091000;0 +20260216 085200;209.087000;209.087000;209.067000;209.068000;0 +20260216 085300;209.065000;209.066000;209.042000;209.048000;0 +20260216 085400;209.047000;209.053000;209.037000;209.050000;0 +20260216 085500;209.048000;209.074000;209.046000;209.070000;0 +20260216 085600;209.069000;209.087000;209.061000;209.087000;0 +20260216 085700;209.085000;209.090000;209.071000;209.071000;0 +20260216 085800;209.076000;209.081000;209.049000;209.049000;0 +20260216 085900;209.051000;209.056000;209.040000;209.040000;0 +20260216 090000;209.039000;209.042000;209.011000;209.018000;0 +20260216 090100;209.018000;209.037000;209.011000;209.037000;0 +20260216 090200;209.036000;209.040000;209.009000;209.010000;0 +20260216 090300;209.008000;209.015000;209.003000;209.012000;0 +20260216 090400;209.016000;209.016000;208.996000;209.000000;0 +20260216 090500;209.001000;209.079000;209.000000;209.060000;0 +20260216 090600;209.056000;209.060000;209.040000;209.051000;0 +20260216 090700;209.051000;209.075000;209.044000;209.070000;0 +20260216 090800;209.072000;209.076000;209.054000;209.055000;0 +20260216 090900;209.055000;209.057000;209.044000;209.049000;0 +20260216 091000;209.050000;209.050000;209.037000;209.039000;0 +20260216 091100;209.038000;209.042000;209.028000;209.034000;0 +20260216 091200;209.036000;209.039000;209.016000;209.018000;0 +20260216 091300;209.013000;209.014000;208.994000;209.010000;0 +20260216 091400;209.010000;209.023000;209.002000;209.010000;0 +20260216 091500;209.012000;209.031000;208.997000;209.027000;0 +20260216 091600;209.026000;209.043000;209.026000;209.027000;0 +20260216 091700;209.029000;209.029000;209.011000;209.016000;0 +20260216 091800;209.016000;209.038000;209.009000;209.027000;0 +20260216 091900;209.029000;209.029000;209.009000;209.011000;0 +20260216 092000;209.011000;209.011000;208.983000;208.984000;0 +20260216 092100;208.984000;209.011000;208.984000;208.993000;0 +20260216 092200;208.992000;209.015000;208.992000;209.004000;0 +20260216 092300;209.002000;209.028000;209.001000;209.025000;0 +20260216 092400;209.026000;209.038000;209.012000;209.027000;0 +20260216 092500;209.028000;209.044000;209.021000;209.044000;0 +20260216 092600;209.046000;209.046000;209.018000;209.026000;0 +20260216 092700;209.024000;209.037000;209.014000;209.032000;0 +20260216 092800;209.032000;209.040000;209.021000;209.027000;0 +20260216 092900;209.023000;209.042000;209.014000;209.014000;0 +20260216 093000;209.017000;209.049000;209.011000;209.049000;0 +20260216 093100;209.048000;209.051000;209.032000;209.034000;0 +20260216 093200;209.031000;209.046000;209.019000;209.023000;0 +20260216 093300;209.023000;209.039000;209.015000;209.028000;0 +20260216 093400;209.024000;209.030000;209.007000;209.027000;0 +20260216 093500;209.024000;209.024000;209.007000;209.012000;0 +20260216 093600;209.011000;209.016000;208.995000;209.013000;0 +20260216 093700;209.011000;209.021000;208.988000;209.019000;0 +20260216 093800;209.018000;209.030000;209.015000;209.016000;0 +20260216 093900;209.019000;209.021000;208.993000;208.993000;0 +20260216 094000;208.990000;209.012000;208.981000;209.009000;0 +20260216 094100;209.010000;209.011000;209.003000;209.010000;0 +20260216 094200;209.010000;209.010000;208.991000;209.008000;0 +20260216 094300;209.007000;209.013000;208.972000;208.987000;0 +20260216 094400;208.987000;209.017000;208.987000;208.997000;0 +20260216 094500;208.996000;208.999000;208.987000;208.994000;0 +20260216 094600;208.991000;208.992000;208.972000;208.980000;0 +20260216 094700;208.981000;208.981000;208.966000;208.978000;0 +20260216 094800;208.974000;209.018000;208.968000;209.011000;0 +20260216 094900;209.012000;209.022000;209.010000;209.017000;0 +20260216 095000;209.019000;209.026000;209.003000;209.016000;0 +20260216 095100;209.018000;209.021000;209.005000;209.010000;0 +20260216 095200;209.016000;209.024000;209.012000;209.019000;0 +20260216 095300;209.029000;209.039000;209.022000;209.038000;0 +20260216 095400;209.042000;209.052000;209.023000;209.024000;0 +20260216 095500;209.027000;209.098000;209.023000;209.097000;0 +20260216 095600;209.096000;209.099000;209.069000;209.098000;0 +20260216 095700;209.097000;209.118000;209.091000;209.115000;0 +20260216 095800;209.116000;209.133000;209.112000;209.117000;0 +20260216 095900;209.117000;209.117000;209.102000;209.111000;0 +20260216 100000;209.112000;209.162000;209.112000;209.153000;0 +20260216 100100;209.151000;209.157000;209.125000;209.130000;0 +20260216 100200;209.131000;209.148000;209.120000;209.148000;0 +20260216 100300;209.147000;209.147000;209.124000;209.129000;0 +20260216 100400;209.130000;209.156000;209.130000;209.150000;0 +20260216 100500;209.146000;209.158000;209.130000;209.155000;0 +20260216 100600;209.158000;209.167000;209.132000;209.149000;0 +20260216 100700;209.150000;209.161000;209.140000;209.161000;0 +20260216 100800;209.159000;209.164000;209.146000;209.160000;0 +20260216 100900;209.157000;209.182000;209.151000;209.178000;0 +20260216 101000;209.177000;209.180000;209.166000;209.169000;0 +20260216 101100;209.168000;209.169000;209.143000;209.145000;0 +20260216 101200;209.146000;209.154000;209.132000;209.135000;0 +20260216 101300;209.135000;209.137000;209.096000;209.104000;0 +20260216 101400;209.104000;209.105000;209.094000;209.096000;0 +20260216 101500;209.098000;209.124000;209.090000;209.118000;0 +20260216 101600;209.120000;209.131000;209.103000;209.131000;0 +20260216 101700;209.129000;209.137000;209.104000;209.107000;0 +20260216 101800;209.108000;209.124000;209.094000;209.106000;0 +20260216 101900;209.106000;209.109000;209.104000;209.106000;0 +20260216 102000;209.102000;209.117000;209.102000;209.114000;0 +20260216 102100;209.116000;209.119000;209.103000;209.109000;0 +20260216 102200;209.107000;209.109000;209.084000;209.093000;0 +20260216 102300;209.095000;209.128000;209.095000;209.128000;0 +20260216 102400;209.121000;209.128000;209.116000;209.123000;0 +20260216 102500;209.122000;209.127000;209.110000;209.111000;0 +20260216 102600;209.105000;209.106000;209.089000;209.094000;0 +20260216 102700;209.093000;209.098000;209.075000;209.079000;0 +20260216 102800;209.081000;209.086000;209.069000;209.073000;0 +20260216 102900;209.075000;209.078000;209.032000;209.039000;0 +20260216 103000;209.040000;209.068000;209.033000;209.060000;0 +20260216 103100;209.064000;209.085000;209.058000;209.065000;0 +20260216 103200;209.065000;209.077000;209.052000;209.065000;0 +20260216 103300;209.061000;209.061000;209.013000;209.017000;0 +20260216 103400;209.010000;209.038000;209.009000;209.038000;0 +20260216 103500;209.041000;209.081000;209.040000;209.067000;0 +20260216 103600;209.064000;209.084000;209.064000;209.084000;0 +20260216 103700;209.082000;209.109000;209.076000;209.076000;0 +20260216 103800;209.077000;209.077000;209.051000;209.060000;0 +20260216 103900;209.062000;209.066000;209.054000;209.057000;0 +20260216 104000;209.055000;209.075000;209.048000;209.062000;0 +20260216 104100;209.065000;209.105000;209.065000;209.105000;0 +20260216 104200;209.106000;209.108000;209.096000;209.108000;0 +20260216 104300;209.113000;209.132000;209.105000;209.121000;0 +20260216 104400;209.122000;209.122000;209.108000;209.109000;0 +20260216 104500;209.108000;209.119000;209.090000;209.095000;0 +20260216 104600;209.101000;209.122000;209.101000;209.108000;0 +20260216 104700;209.109000;209.118000;209.104000;209.111000;0 +20260216 104800;209.110000;209.134000;209.109000;209.131000;0 +20260216 104900;209.130000;209.140000;209.120000;209.127000;0 +20260216 105000;209.129000;209.133000;209.110000;209.123000;0 +20260216 105100;209.123000;209.139000;209.121000;209.133000;0 +20260216 105200;209.131000;209.151000;209.128000;209.149000;0 +20260216 105300;209.148000;209.155000;209.140000;209.154000;0 +20260216 105400;209.148000;209.198000;209.144000;209.179000;0 +20260216 105500;209.177000;209.188000;209.164000;209.176000;0 +20260216 105600;209.178000;209.182000;209.136000;209.137000;0 +20260216 105700;209.146000;209.183000;209.137000;209.173000;0 +20260216 105800;209.174000;209.190000;209.161000;209.183000;0 +20260216 105900;209.183000;209.214000;209.183000;209.209000;0 +20260216 110000;209.212000;209.214000;209.197000;209.200000;0 +20260216 110100;209.200000;209.200000;209.167000;209.176000;0 +20260216 110200;209.177000;209.217000;209.167000;209.180000;0 +20260216 110300;209.178000;209.183000;209.151000;209.171000;0 +20260216 110400;209.174000;209.200000;209.174000;209.185000;0 +20260216 110500;209.181000;209.198000;209.181000;209.193000;0 +20260216 110600;209.193000;209.218000;209.184000;209.216000;0 +20260216 110700;209.218000;209.255000;209.211000;209.230000;0 +20260216 110800;209.230000;209.232000;209.192000;209.193000;0 +20260216 110900;209.194000;209.194000;209.175000;209.190000;0 +20260216 111000;209.191000;209.206000;209.186000;209.194000;0 +20260216 111100;209.200000;209.207000;209.171000;209.171000;0 +20260216 111200;209.173000;209.175000;209.130000;209.134000;0 +20260216 111300;209.135000;209.143000;209.129000;209.136000;0 +20260216 111400;209.144000;209.144000;209.110000;209.128000;0 +20260216 111500;209.121000;209.142000;209.121000;209.135000;0 +20260216 111600;209.144000;209.160000;209.136000;209.159000;0 +20260216 111700;209.158000;209.160000;209.130000;209.135000;0 +20260216 111800;209.137000;209.159000;209.131000;209.146000;0 +20260216 111900;209.147000;209.149000;209.126000;209.129000;0 +20260216 112000;209.131000;209.145000;209.128000;209.135000;0 +20260216 112100;209.132000;209.136000;209.121000;209.121000;0 +20260216 112200;209.122000;209.122000;209.115000;209.116000;0 +20260216 112300;209.117000;209.125000;209.116000;209.124000;0 +20260216 112400;209.125000;209.135000;209.124000;209.126000;0 +20260216 112500;209.131000;209.131000;209.112000;209.119000;0 +20260216 112600;209.117000;209.136000;209.108000;209.132000;0 +20260216 112700;209.134000;209.175000;209.129000;209.170000;0 +20260216 112800;209.170000;209.190000;209.169000;209.185000;0 +20260216 112900;209.188000;209.205000;209.185000;209.205000;0 +20260216 113000;209.203000;209.207000;209.186000;209.192000;0 +20260216 113100;209.193000;209.209000;209.192000;209.193000;0 +20260216 113200;209.195000;209.203000;209.195000;209.198000;0 +20260216 113300;209.199000;209.200000;209.173000;209.173000;0 +20260216 113400;209.172000;209.195000;209.169000;209.190000;0 +20260216 113500;209.191000;209.194000;209.185000;209.194000;0 +20260216 113600;209.194000;209.199000;209.190000;209.191000;0 +20260216 113700;209.193000;209.196000;209.190000;209.196000;0 +20260216 113800;209.195000;209.208000;209.195000;209.206000;0 +20260216 113900;209.204000;209.222000;209.203000;209.221000;0 +20260216 114000;209.221000;209.228000;209.218000;209.224000;0 +20260216 114100;209.225000;209.236000;209.214000;209.234000;0 +20260216 114200;209.236000;209.240000;209.221000;209.221000;0 +20260216 114300;209.222000;209.227000;209.206000;209.213000;0 +20260216 114400;209.214000;209.224000;209.214000;209.215000;0 +20260216 114500;209.218000;209.225000;209.205000;209.207000;0 +20260216 114600;209.203000;209.209000;209.198000;209.209000;0 +20260216 114700;209.211000;209.222000;209.196000;209.213000;0 +20260216 114800;209.212000;209.216000;209.197000;209.210000;0 +20260216 114900;209.210000;209.224000;209.206000;209.211000;0 +20260216 115000;209.209000;209.255000;209.209000;209.250000;0 +20260216 115100;209.244000;209.269000;209.240000;209.264000;0 +20260216 115200;209.263000;209.263000;209.227000;209.230000;0 +20260216 115300;209.229000;209.239000;209.206000;209.219000;0 +20260216 115400;209.220000;209.236000;209.204000;209.231000;0 +20260216 115500;209.225000;209.226000;209.209000;209.209000;0 +20260216 115600;209.211000;209.220000;209.202000;209.205000;0 +20260216 115700;209.204000;209.213000;209.193000;209.200000;0 +20260216 115800;209.201000;209.201000;209.170000;209.172000;0 +20260216 115900;209.161000;209.187000;209.161000;209.183000;0 +20260216 120000;209.187000;209.187000;209.170000;209.175000;0 +20260216 120100;209.173000;209.185000;209.153000;209.184000;0 +20260216 120200;209.183000;209.192000;209.177000;209.187000;0 +20260216 120300;209.189000;209.189000;209.172000;209.181000;0 +20260216 120400;209.180000;209.187000;209.176000;209.187000;0 +20260216 120500;209.187000;209.215000;209.184000;209.212000;0 +20260216 120600;209.214000;209.239000;209.213000;209.237000;0 +20260216 120700;209.236000;209.261000;209.235000;209.261000;0 +20260216 120800;209.262000;209.263000;209.247000;209.256000;0 +20260216 120900;209.259000;209.266000;209.259000;209.259000;0 +20260216 121000;209.257000;209.257000;209.248000;209.252000;0 +20260216 121100;209.251000;209.256000;209.246000;209.251000;0 +20260216 121200;209.251000;209.259000;209.246000;209.246000;0 +20260216 121300;209.254000;209.260000;209.246000;209.259000;0 +20260216 121400;209.257000;209.257000;209.248000;209.252000;0 +20260216 121500;209.256000;209.263000;209.244000;209.260000;0 +20260216 121600;209.257000;209.261000;209.241000;209.249000;0 +20260216 121700;209.247000;209.252000;209.236000;209.238000;0 +20260216 121800;209.236000;209.240000;209.216000;209.216000;0 +20260216 121900;209.214000;209.231000;209.214000;209.224000;0 +20260216 122000;209.225000;209.247000;209.223000;209.244000;0 +20260216 122100;209.254000;209.254000;209.231000;209.231000;0 +20260216 122200;209.228000;209.230000;209.208000;209.208000;0 +20260216 122300;209.206000;209.210000;209.203000;209.206000;0 +20260216 122400;209.201000;209.216000;209.201000;209.214000;0 +20260216 122500;209.212000;209.212000;209.201000;209.210000;0 +20260216 122600;209.214000;209.222000;209.213000;209.213000;0 +20260216 122700;209.217000;209.220000;209.211000;209.220000;0 +20260216 122800;209.219000;209.219000;209.197000;209.210000;0 +20260216 122900;209.207000;209.223000;209.205000;209.219000;0 +20260216 123000;209.220000;209.240000;209.218000;209.228000;0 +20260216 123100;209.229000;209.233000;209.226000;209.230000;0 +20260216 123200;209.230000;209.238000;209.230000;209.236000;0 +20260216 123300;209.234000;209.237000;209.224000;209.226000;0 +20260216 123400;209.226000;209.227000;209.209000;209.211000;0 +20260216 123500;209.211000;209.222000;209.211000;209.211000;0 +20260216 123600;209.213000;209.220000;209.213000;209.217000;0 +20260216 123700;209.214000;209.220000;209.212000;209.216000;0 +20260216 123800;209.212000;209.227000;209.211000;209.218000;0 +20260216 123900;209.214000;209.216000;209.212000;209.214000;0 +20260216 124000;209.214000;209.217000;209.202000;209.202000;0 +20260216 124100;209.200000;209.202000;209.200000;209.202000;0 +20260216 124200;209.198000;209.201000;209.187000;209.188000;0 +20260216 124300;209.203000;209.207000;209.199000;209.206000;0 +20260216 124400;209.208000;209.208000;209.200000;209.207000;0 +20260216 124500;209.209000;209.209000;209.207000;209.207000;0 +20260216 124600;209.203000;209.208000;209.197000;209.200000;0 +20260216 124700;209.199000;209.209000;209.194000;209.209000;0 +20260216 124800;209.207000;209.207000;209.192000;209.193000;0 +20260216 124900;209.192000;209.197000;209.188000;209.193000;0 +20260216 125000;209.197000;209.199000;209.190000;209.195000;0 +20260216 125100;209.197000;209.197000;209.176000;209.183000;0 +20260216 125200;209.184000;209.184000;209.150000;209.153000;0 +20260216 125300;209.152000;209.152000;209.135000;209.143000;0 +20260216 125400;209.143000;209.147000;209.137000;209.143000;0 +20260216 125500;209.144000;209.155000;209.144000;209.148000;0 +20260216 125600;209.149000;209.151000;209.146000;209.149000;0 +20260216 125700;209.145000;209.148000;209.141000;209.146000;0 +20260216 125800;209.145000;209.153000;209.141000;209.141000;0 +20260216 125900;209.144000;209.147000;209.133000;209.133000;0 +20260216 130000;209.135000;209.138000;209.127000;209.131000;0 +20260216 130100;209.132000;209.152000;209.130000;209.132000;0 +20260216 130200;209.134000;209.138000;209.134000;209.136000;0 +20260216 130300;209.136000;209.143000;209.133000;209.135000;0 +20260216 130400;209.137000;209.139000;209.131000;209.132000;0 +20260216 130500;209.134000;209.135000;209.131000;209.133000;0 +20260216 130600;209.133000;209.152000;209.133000;209.151000;0 +20260216 130700;209.149000;209.152000;209.146000;209.149000;0 +20260216 130800;209.151000;209.154000;209.147000;209.149000;0 +20260216 130900;209.150000;209.159000;209.148000;209.159000;0 +20260216 131000;209.160000;209.164000;209.160000;209.164000;0 +20260216 131100;209.165000;209.165000;209.161000;209.163000;0 +20260216 131200;209.162000;209.162000;209.154000;209.158000;0 +20260216 131300;209.156000;209.160000;209.156000;209.159000;0 +20260216 131400;209.157000;209.157000;209.144000;209.145000;0 +20260216 131500;209.145000;209.146000;209.145000;209.145000;0 +20260216 131600;209.148000;209.163000;209.145000;209.159000;0 +20260216 131700;209.160000;209.169000;209.159000;209.165000;0 +20260216 131800;209.166000;209.169000;209.161000;209.169000;0 +20260216 131900;209.170000;209.182000;209.170000;209.182000;0 +20260216 132000;209.182000;209.205000;209.182000;209.197000;0 +20260216 132100;209.197000;209.214000;209.195000;209.209000;0 +20260216 132200;209.212000;209.231000;209.212000;209.226000;0 +20260216 132300;209.229000;209.229000;209.225000;209.225000;0 +20260216 132400;209.224000;209.235000;209.224000;209.235000;0 +20260216 132500;209.227000;209.228000;209.221000;209.222000;0 +20260216 132600;209.224000;209.231000;209.224000;209.230000;0 +20260216 132700;209.231000;209.233000;209.231000;209.231000;0 +20260216 132800;209.233000;209.233000;209.229000;209.229000;0 +20260216 132900;209.231000;209.231000;209.229000;209.231000;0 +20260216 133000;209.229000;209.229000;209.224000;209.224000;0 +20260216 133100;209.226000;209.230000;209.226000;209.230000;0 +20260216 133200;209.229000;209.240000;209.227000;209.236000;0 +20260216 133300;209.233000;209.235000;209.231000;209.233000;0 +20260216 133400;209.234000;209.235000;209.232000;209.233000;0 +20260216 133500;209.234000;209.238000;209.234000;209.238000;0 +20260216 133600;209.237000;209.237000;209.229000;209.230000;0 +20260216 133700;209.229000;209.241000;209.229000;209.241000;0 +20260216 133800;209.239000;209.242000;209.231000;209.231000;0 +20260216 133900;209.231000;209.231000;209.211000;209.211000;0 +20260216 134000;209.214000;209.215000;209.208000;209.209000;0 +20260216 134100;209.208000;209.212000;209.208000;209.210000;0 +20260216 134200;209.212000;209.224000;209.210000;209.224000;0 +20260216 134300;209.221000;209.222000;209.214000;209.214000;0 +20260216 134400;209.216000;209.226000;209.214000;209.221000;0 +20260216 134500;209.217000;209.217000;209.212000;209.214000;0 +20260216 134600;209.216000;209.216000;209.215000;209.215000;0 +20260216 134700;209.210000;209.215000;209.200000;209.200000;0 +20260216 134800;209.199000;209.199000;209.199000;209.199000;0 +20260216 134900;209.200000;209.203000;209.200000;209.203000;0 +20260216 135000;209.204000;209.209000;209.203000;209.204000;0 +20260216 135100;209.207000;209.208000;209.207000;209.208000;0 +20260216 135200;209.205000;209.212000;209.205000;209.208000;0 +20260216 135300;209.209000;209.222000;209.208000;209.218000;0 +20260216 135400;209.217000;209.222000;209.215000;209.215000;0 +20260216 135500;209.224000;209.231000;209.224000;209.228000;0 +20260216 135600;209.229000;209.234000;209.225000;209.231000;0 +20260216 135700;209.233000;209.233000;209.228000;209.231000;0 +20260216 135800;209.230000;209.231000;209.221000;209.222000;0 +20260216 135900;209.221000;209.225000;209.206000;209.207000;0 +20260216 140000;209.210000;209.210000;209.199000;209.199000;0 +20260216 140100;209.199000;209.207000;209.198000;209.201000;0 +20260216 140200;209.202000;209.204000;209.190000;209.197000;0 +20260216 140300;209.198000;209.207000;209.189000;209.207000;0 +20260216 140400;209.209000;209.216000;209.209000;209.212000;0 +20260216 140500;209.212000;209.228000;209.212000;209.226000;0 +20260216 140600;209.225000;209.242000;209.225000;209.241000;0 +20260216 140700;209.243000;209.244000;209.241000;209.242000;0 +20260216 140800;209.245000;209.256000;209.242000;209.247000;0 +20260216 140900;209.242000;209.248000;209.238000;209.246000;0 +20260216 141000;209.247000;209.248000;209.228000;209.228000;0 +20260216 141100;209.230000;209.231000;209.223000;209.227000;0 +20260216 141200;209.228000;209.239000;209.228000;209.235000;0 +20260216 141300;209.237000;209.237000;209.225000;209.227000;0 +20260216 141400;209.226000;209.226000;209.217000;209.223000;0 +20260216 141500;209.222000;209.225000;209.218000;209.218000;0 +20260216 141600;209.219000;209.222000;209.212000;209.215000;0 +20260216 141700;209.215000;209.216000;209.212000;209.215000;0 +20260216 141800;209.219000;209.228000;209.219000;209.222000;0 +20260216 141900;209.224000;209.236000;209.224000;209.230000;0 +20260216 142000;209.228000;209.229000;209.228000;209.228000;0 +20260216 142100;209.232000;209.233000;209.229000;209.231000;0 +20260216 142200;209.229000;209.237000;209.229000;209.235000;0 +20260216 142300;209.234000;209.243000;209.234000;209.243000;0 +20260216 142400;209.241000;209.243000;209.240000;209.243000;0 +20260216 142500;209.242000;209.245000;209.238000;209.242000;0 +20260216 142600;209.241000;209.248000;209.241000;209.243000;0 +20260216 142700;209.242000;209.248000;209.242000;209.246000;0 +20260216 142800;209.246000;209.246000;209.244000;209.245000;0 +20260216 142900;209.246000;209.250000;209.246000;209.250000;0 +20260216 143000;209.249000;209.249000;209.249000;209.249000;0 +20260216 143100;209.246000;209.247000;209.237000;209.245000;0 +20260216 143200;209.244000;209.245000;209.243000;209.243000;0 +20260216 143300;209.243000;209.256000;209.243000;209.256000;0 +20260216 143400;209.254000;209.260000;209.252000;209.255000;0 +20260216 143500;209.257000;209.259000;209.246000;209.246000;0 +20260216 143600;209.249000;209.249000;209.239000;209.245000;0 +20260216 143700;209.243000;209.244000;209.236000;209.244000;0 +20260216 143800;209.243000;209.243000;209.233000;209.233000;0 +20260216 143900;209.234000;209.234000;209.232000;209.232000;0 +20260216 144000;209.232000;209.236000;209.232000;209.232000;0 +20260216 144100;209.231000;209.231000;209.231000;209.231000;0 +20260216 144200;209.236000;209.236000;209.224000;209.224000;0 +20260216 144300;209.226000;209.226000;209.224000;209.225000;0 +20260216 144400;209.224000;209.225000;209.224000;209.225000;0 +20260216 144500;209.224000;209.224000;209.224000;209.224000;0 +20260216 144600;209.226000;209.226000;209.225000;209.226000;0 +20260216 144700;209.224000;209.226000;209.224000;209.224000;0 +20260216 144800;209.221000;209.227000;209.221000;209.224000;0 +20260216 144900;209.221000;209.227000;209.221000;209.227000;0 +20260216 145000;209.227000;209.227000;209.222000;209.225000;0 +20260216 145100;209.224000;209.226000;209.224000;209.225000;0 +20260216 145200;209.225000;209.227000;209.225000;209.227000;0 +20260216 145300;209.227000;209.228000;209.221000;209.222000;0 +20260216 145400;209.217000;209.223000;209.217000;209.223000;0 +20260216 145500;209.220000;209.238000;209.215000;209.235000;0 +20260216 145600;209.229000;209.231000;209.228000;209.229000;0 +20260216 145700;209.225000;209.232000;209.224000;209.227000;0 +20260216 145800;209.227000;209.227000;209.225000;209.225000;0 +20260216 145900;209.225000;209.228000;209.225000;209.228000;0 +20260216 150000;209.225000;209.228000;209.223000;209.226000;0 +20260216 150100;209.226000;209.226000;209.213000;209.216000;0 +20260216 150200;209.216000;209.219000;209.212000;209.219000;0 +20260216 150300;209.219000;209.220000;209.215000;209.217000;0 +20260216 150400;209.215000;209.217000;209.212000;209.215000;0 +20260216 150500;209.213000;209.216000;209.203000;209.207000;0 +20260216 150600;209.208000;209.208000;209.208000;209.208000;0 +20260216 150700;209.207000;209.208000;209.198000;209.199000;0 +20260216 150800;209.198000;209.199000;209.195000;209.195000;0 +20260216 150900;209.192000;209.193000;209.192000;209.193000;0 +20260216 151000;209.192000;209.201000;209.192000;209.196000;0 +20260216 151100;209.194000;209.196000;209.182000;209.194000;0 +20260216 151200;209.190000;209.194000;209.190000;209.194000;0 +20260216 151300;209.189000;209.189000;209.187000;209.189000;0 +20260216 151400;209.191000;209.197000;209.191000;209.193000;0 +20260216 151500;209.192000;209.194000;209.191000;209.191000;0 +20260216 151600;209.191000;209.191000;209.191000;209.191000;0 +20260216 151700;209.192000;209.192000;209.192000;209.192000;0 +20260216 151800;209.195000;209.200000;209.194000;209.196000;0 +20260216 151900;209.196000;209.196000;209.192000;209.192000;0 +20260216 152000;209.190000;209.193000;209.186000;209.186000;0 +20260216 152100;209.186000;209.194000;209.184000;209.191000;0 +20260216 152200;209.191000;209.204000;209.191000;209.203000;0 +20260216 152300;209.204000;209.204000;209.191000;209.191000;0 +20260216 152400;209.187000;209.187000;209.187000;209.187000;0 +20260216 152500;209.186000;209.196000;209.186000;209.191000;0 +20260216 152600;209.194000;209.194000;209.191000;209.191000;0 +20260216 152700;209.187000;209.196000;209.187000;209.193000;0 +20260216 152800;209.196000;209.204000;209.196000;209.199000;0 +20260216 152900;209.200000;209.206000;209.200000;209.206000;0 +20260216 153000;209.201000;209.203000;209.179000;209.182000;0 +20260216 153100;209.181000;209.201000;209.177000;209.193000;0 +20260216 153200;209.191000;209.194000;209.183000;209.194000;0 +20260216 153300;209.194000;209.199000;209.194000;209.198000;0 +20260216 153400;209.198000;209.198000;209.198000;209.198000;0 +20260216 153500;209.198000;209.198000;209.197000;209.197000;0 +20260216 153600;209.199000;209.206000;209.199000;209.203000;0 +20260216 153700;209.204000;209.204000;209.204000;209.204000;0 +20260216 153800;209.204000;209.204000;209.203000;209.204000;0 +20260216 153900;209.202000;209.204000;209.199000;209.199000;0 +20260216 154000;209.198000;209.202000;209.192000;209.194000;0 +20260216 154100;209.191000;209.197000;209.190000;209.191000;0 +20260216 154200;209.192000;209.198000;209.190000;209.190000;0 +20260216 154300;209.190000;209.194000;209.189000;209.194000;0 +20260216 154400;209.191000;209.198000;209.191000;209.198000;0 +20260216 154500;209.194000;209.194000;209.189000;209.192000;0 +20260216 154600;209.202000;209.205000;209.201000;209.205000;0 +20260216 154700;209.210000;209.212000;209.210000;209.212000;0 +20260216 154800;209.214000;209.214000;209.206000;209.206000;0 +20260216 154900;209.206000;209.206000;209.206000;209.206000;0 +20260216 155000;209.207000;209.207000;209.195000;209.195000;0 +20260216 155100;209.195000;209.200000;209.195000;209.196000;0 +20260216 155200;209.196000;209.199000;209.196000;209.199000;0 +20260216 155300;209.199000;209.199000;209.198000;209.198000;0 +20260216 155400;209.198000;209.199000;209.195000;209.195000;0 +20260216 155500;209.195000;209.195000;209.191000;209.191000;0 +20260216 155600;209.192000;209.192000;209.192000;209.192000;0 +20260216 155700;209.192000;209.194000;209.178000;209.180000;0 +20260216 155800;209.178000;209.178000;209.168000;209.169000;0 +20260216 155900;209.168000;209.224000;209.168000;209.224000;0 +20260216 160000;209.223000;209.230000;209.222000;209.227000;0 +20260216 160100;209.224000;209.233000;209.224000;209.233000;0 +20260216 160200;209.234000;209.234000;209.224000;209.224000;0 +20260216 160300;209.221000;209.222000;209.217000;209.217000;0 +20260216 160400;209.220000;209.220000;209.214000;209.214000;0 +20260216 160500;209.211000;209.211000;209.211000;209.211000;0 +20260216 160600;209.210000;209.220000;209.210000;209.220000;0 +20260216 160700;209.216000;209.220000;209.212000;209.220000;0 +20260216 160800;209.219000;209.219000;209.217000;209.219000;0 +20260216 160900;209.216000;209.216000;209.208000;209.208000;0 +20260216 161000;209.219000;209.230000;209.212000;209.229000;0 +20260216 161100;209.225000;209.225000;209.225000;209.225000;0 +20260216 161200;209.228000;209.228000;209.224000;209.228000;0 +20260216 161300;209.227000;209.231000;209.223000;209.227000;0 +20260216 161400;209.228000;209.228000;209.223000;209.227000;0 +20260216 161500;209.226000;209.226000;209.211000;209.211000;0 +20260216 161600;209.206000;209.210000;209.206000;209.210000;0 +20260216 161700;209.211000;209.219000;209.211000;209.216000;0 +20260216 161800;209.217000;209.217000;209.217000;209.217000;0 +20260216 161900;209.220000;209.223000;209.218000;209.222000;0 +20260216 162000;209.223000;209.225000;209.221000;209.221000;0 +20260216 162100;209.224000;209.228000;209.222000;209.228000;0 +20260216 162200;209.227000;209.228000;209.223000;209.224000;0 +20260216 162300;209.224000;209.224000;209.221000;209.221000;0 +20260216 162400;209.221000;209.221000;209.221000;209.221000;0 +20260216 162500;209.223000;209.223000;209.220000;209.220000;0 +20260216 162600;209.229000;209.230000;209.224000;209.227000;0 +20260216 162700;209.227000;209.227000;209.225000;209.225000;0 +20260216 162800;209.225000;209.225000;209.223000;209.223000;0 +20260216 162900;209.223000;209.223000;209.216000;209.216000;0 +20260216 163000;209.214000;209.219000;209.214000;209.219000;0 +20260216 163100;209.219000;209.219000;209.195000;209.206000;0 +20260216 163200;209.202000;209.211000;209.202000;209.207000;0 +20260216 163300;209.208000;209.208000;209.201000;209.203000;0 +20260216 163400;209.202000;209.205000;209.202000;209.205000;0 +20260216 163500;209.204000;209.204000;209.200000;209.204000;0 +20260216 163600;209.206000;209.206000;209.203000;209.203000;0 +20260216 163700;209.203000;209.203000;209.203000;209.203000;0 +20260216 163800;209.204000;209.204000;209.194000;209.197000;0 +20260216 163900;209.189000;209.196000;209.171000;209.177000;0 +20260216 164000;209.180000;209.180000;209.162000;209.162000;0 +20260216 164100;209.160000;209.163000;209.153000;209.154000;0 +20260216 164200;209.153000;209.153000;209.147000;209.148000;0 +20260216 164300;209.147000;209.165000;209.147000;209.165000;0 +20260216 164400;209.163000;209.163000;209.159000;209.159000;0 +20260216 164500;209.160000;209.205000;209.160000;209.205000;0 +20260216 164600;209.204000;209.207000;209.197000;209.203000;0 +20260216 164700;209.205000;209.214000;209.205000;209.214000;0 +20260216 164800;209.215000;209.222000;209.215000;209.219000;0 +20260216 164900;209.219000;209.224000;209.212000;209.212000;0 +20260216 165000;209.209000;209.211000;209.205000;209.205000;0 +20260216 165100;209.208000;209.212000;209.204000;209.212000;0 +20260216 165200;209.208000;209.208000;209.202000;209.202000;0 +20260216 165300;209.204000;209.204000;209.195000;209.196000;0 +20260216 165400;209.207000;209.210000;209.186000;209.201000;0 +20260216 165500;209.200000;209.208000;209.186000;209.186000;0 +20260216 165600;209.185000;209.187000;209.185000;209.187000;0 +20260216 165700;209.189000;209.192000;209.186000;209.191000;0 +20260216 165800;209.190000;209.209000;209.186000;209.209000;0 +20260216 165900;209.205000;209.214000;209.158000;209.158000;0 +20260216 170500;209.058000;209.058000;209.058000;209.058000;0 +20260216 170600;209.058000;209.059000;209.058000;209.059000;0 +20260216 170700;209.058000;209.059000;209.058000;209.059000;0 +20260216 170800;209.058000;209.059000;209.058000;209.059000;0 +20260216 170900;209.058000;209.058000;209.058000;209.058000;0 +20260216 171000;209.058000;209.058000;209.058000;209.058000;0 +20260216 171100;209.058000;209.059000;209.058000;209.058000;0 +20260216 171200;209.058000;209.121000;209.058000;209.121000;0 +20260216 171300;209.120000;209.120000;209.120000;209.120000;0 +20260216 171400;209.093000;209.093000;209.093000;209.093000;0 +20260216 171500;209.100000;209.134000;209.100000;209.134000;0 +20260216 171600;209.116000;209.127000;209.116000;209.122000;0 +20260216 171700;209.126000;209.127000;209.126000;209.126000;0 +20260216 171800;209.108000;209.128000;209.107000;209.128000;0 +20260216 171900;209.131000;209.132000;209.106000;209.123000;0 +20260216 172000;209.131000;209.154000;209.110000;209.134000;0 +20260216 172100;209.135000;209.135000;209.125000;209.125000;0 +20260216 172200;209.122000;209.138000;209.109000;209.134000;0 +20260216 172300;209.134000;209.134000;209.124000;209.130000;0 +20260216 172400;209.134000;209.134000;209.116000;209.116000;0 +20260216 172500;209.135000;209.135000;209.123000;209.124000;0 +20260216 172600;209.115000;209.133000;209.115000;209.131000;0 +20260216 172700;209.126000;209.131000;209.126000;209.131000;0 +20260216 172800;209.130000;209.131000;209.128000;209.130000;0 +20260216 172900;209.124000;209.124000;209.121000;209.121000;0 +20260216 173000;209.122000;209.203000;209.122000;209.161000;0 +20260216 173100;209.161000;209.162000;209.157000;209.161000;0 +20260216 173200;209.149000;209.151000;209.139000;209.149000;0 +20260216 173300;209.151000;209.152000;209.144000;209.147000;0 +20260216 173400;209.143000;209.149000;209.143000;209.149000;0 +20260216 173500;209.150000;209.163000;209.138000;209.158000;0 +20260216 173600;209.141000;209.161000;209.136000;209.156000;0 +20260216 173700;209.158000;209.168000;209.158000;209.165000;0 +20260216 173800;209.164000;209.164000;209.157000;209.163000;0 +20260216 173900;209.164000;209.170000;209.164000;209.164000;0 +20260216 174000;209.167000;209.195000;209.156000;209.194000;0 +20260216 174100;209.194000;209.200000;209.187000;209.197000;0 +20260216 174200;209.198000;209.206000;209.192000;209.193000;0 +20260216 174300;209.196000;209.199000;209.180000;209.180000;0 +20260216 174400;209.182000;209.199000;209.180000;209.180000;0 +20260216 174500;209.180000;209.202000;209.174000;209.189000;0 +20260216 174600;209.188000;209.200000;209.188000;209.192000;0 +20260216 174700;209.194000;209.203000;209.192000;209.202000;0 +20260216 174800;209.202000;209.214000;209.188000;209.200000;0 +20260216 174900;209.199000;209.207000;209.181000;209.181000;0 +20260216 175000;209.181000;209.184000;209.181000;209.183000;0 +20260216 175100;209.183000;209.185000;209.164000;209.182000;0 +20260216 175200;209.176000;209.186000;209.176000;209.186000;0 +20260216 175300;209.187000;209.188000;209.184000;209.186000;0 +20260216 175400;209.186000;209.188000;209.186000;209.186000;0 +20260216 175500;209.187000;209.187000;209.176000;209.176000;0 +20260216 175600;209.177000;209.195000;209.176000;209.194000;0 +20260216 175700;209.194000;209.195000;209.183000;209.185000;0 +20260216 175800;209.185000;209.187000;209.184000;209.185000;0 +20260216 175900;209.186000;209.211000;209.171000;209.191000;0 +20260216 180000;209.189000;209.198000;209.136000;209.139000;0 +20260216 180100;209.138000;209.169000;209.137000;209.169000;0 +20260216 180200;209.168000;209.171000;209.148000;209.171000;0 +20260216 180300;209.176000;209.185000;209.167000;209.179000;0 +20260216 180400;209.181000;209.183000;209.168000;209.172000;0 +20260216 180500;209.174000;209.187000;209.170000;209.179000;0 +20260216 180600;209.179000;209.240000;209.174000;209.226000;0 +20260216 180700;209.229000;209.229000;209.214000;209.222000;0 +20260216 180800;209.239000;209.260000;209.238000;209.253000;0 +20260216 180900;209.278000;209.339000;209.275000;209.326000;0 +20260216 181000;209.330000;209.338000;209.322000;209.336000;0 +20260216 181100;209.334000;209.341000;209.308000;209.310000;0 +20260216 181200;209.311000;209.348000;209.305000;209.326000;0 +20260216 181300;209.323000;209.351000;209.322000;209.334000;0 +20260216 181400;209.334000;209.346000;209.323000;209.346000;0 +20260216 181500;209.346000;209.346000;209.335000;209.336000;0 +20260216 181600;209.327000;209.332000;209.319000;209.324000;0 +20260216 181700;209.323000;209.325000;209.302000;209.305000;0 +20260216 181800;209.310000;209.325000;209.292000;209.305000;0 +20260216 181900;209.306000;209.310000;209.295000;209.309000;0 +20260216 182000;209.311000;209.312000;209.300000;209.306000;0 +20260216 182100;209.306000;209.308000;209.293000;209.298000;0 +20260216 182200;209.299000;209.311000;209.299000;209.310000;0 +20260216 182300;209.312000;209.314000;209.298000;209.301000;0 +20260216 182400;209.302000;209.322000;209.295000;209.322000;0 +20260216 182500;209.324000;209.327000;209.318000;209.323000;0 +20260216 182600;209.322000;209.344000;209.317000;209.321000;0 +20260216 182700;209.319000;209.333000;209.316000;209.326000;0 +20260216 182800;209.327000;209.332000;209.326000;209.328000;0 +20260216 182900;209.329000;209.332000;209.323000;209.330000;0 +20260216 183000;209.329000;209.333000;209.268000;209.284000;0 +20260216 183100;209.285000;209.292000;209.277000;209.284000;0 +20260216 183200;209.287000;209.302000;209.276000;209.290000;0 +20260216 183300;209.289000;209.318000;209.289000;209.313000;0 +20260216 183400;209.313000;209.315000;209.302000;209.308000;0 +20260216 183500;209.310000;209.344000;209.310000;209.344000;0 +20260216 183600;209.343000;209.356000;209.343000;209.353000;0 +20260216 183700;209.352000;209.359000;209.346000;209.348000;0 +20260216 183800;209.347000;209.347000;209.326000;209.338000;0 +20260216 183900;209.331000;209.341000;209.329000;209.332000;0 +20260216 184000;209.335000;209.341000;209.330000;209.330000;0 +20260216 184100;209.330000;209.336000;209.327000;209.332000;0 +20260216 184200;209.334000;209.338000;209.324000;209.332000;0 +20260216 184300;209.326000;209.329000;209.317000;209.328000;0 +20260216 184400;209.327000;209.329000;209.313000;209.315000;0 +20260216 184500;209.316000;209.322000;209.314000;209.318000;0 +20260216 184600;209.319000;209.340000;209.315000;209.337000;0 +20260216 184700;209.337000;209.351000;209.337000;209.349000;0 +20260216 184800;209.349000;209.357000;209.348000;209.357000;0 +20260216 184900;209.357000;209.376000;209.357000;209.365000;0 +20260216 185000;209.364000;209.389000;209.358000;209.375000;0 +20260216 185100;209.376000;209.489000;209.376000;209.449000;0 +20260216 185200;209.450000;209.451000;209.402000;209.411000;0 +20260216 185300;209.416000;209.416000;209.351000;209.386000;0 +20260216 185400;209.389000;209.393000;209.378000;209.384000;0 +20260216 185500;209.384000;209.384000;209.362000;209.365000;0 +20260216 185600;209.363000;209.366000;209.333000;209.333000;0 +20260216 185700;209.331000;209.338000;209.313000;209.326000;0 +20260216 185800;209.328000;209.328000;209.233000;209.259000;0 +20260216 185900;209.260000;209.266000;209.230000;209.247000;0 +20260216 190000;209.245000;209.293000;209.223000;209.245000;0 +20260216 190100;209.246000;209.251000;209.202000;209.208000;0 +20260216 190200;209.206000;209.222000;209.143000;209.172000;0 +20260216 190300;209.174000;209.177000;209.118000;209.151000;0 +20260216 190400;209.153000;209.171000;209.094000;209.095000;0 +20260216 190500;209.094000;209.096000;209.061000;209.067000;0 +20260216 190600;209.068000;209.069000;208.931000;208.948000;0 +20260216 190700;208.951000;208.997000;208.946000;208.972000;0 +20260216 190800;208.975000;209.066000;208.975000;209.047000;0 +20260216 190900;209.048000;209.081000;209.040000;209.042000;0 +20260216 191000;209.040000;209.063000;209.033000;209.046000;0 +20260216 191100;209.040000;209.108000;209.040000;209.106000;0 +20260216 191200;209.104000;209.134000;209.070000;209.119000;0 +20260216 191300;209.120000;209.133000;209.106000;209.124000;0 +20260216 191400;209.126000;209.143000;209.071000;209.071000;0 +20260216 191500;209.070000;209.103000;209.039000;209.078000;0 +20260216 191600;209.080000;209.102000;209.031000;209.034000;0 +20260216 191700;209.031000;209.039000;208.956000;208.968000;0 +20260216 191800;208.968000;208.986000;208.911000;208.928000;0 +20260216 191900;208.925000;208.937000;208.907000;208.917000;0 +20260216 192000;208.920000;208.928000;208.883000;208.884000;0 +20260216 192100;208.881000;208.898000;208.840000;208.844000;0 +20260216 192200;208.845000;208.892000;208.815000;208.889000;0 +20260216 192300;208.889000;208.901000;208.833000;208.867000;0 +20260216 192400;208.872000;208.882000;208.824000;208.826000;0 +20260216 192500;208.829000;208.886000;208.829000;208.865000;0 +20260216 192600;208.864000;208.885000;208.827000;208.842000;0 +20260216 192700;208.849000;208.882000;208.837000;208.837000;0 +20260216 192800;208.839000;208.876000;208.839000;208.868000;0 +20260216 192900;208.867000;208.900000;208.863000;208.879000;0 +20260216 193000;208.876000;208.913000;208.850000;208.857000;0 +20260216 193100;208.863000;208.875000;208.857000;208.857000;0 +20260216 193200;208.859000;208.879000;208.851000;208.865000;0 +20260216 193300;208.862000;208.906000;208.862000;208.886000;0 +20260216 193400;208.888000;208.889000;208.851000;208.859000;0 +20260216 193500;208.857000;208.892000;208.857000;208.878000;0 +20260216 193600;208.882000;208.911000;208.878000;208.879000;0 +20260216 193700;208.877000;208.877000;208.805000;208.824000;0 +20260216 193800;208.824000;208.852000;208.801000;208.828000;0 +20260216 193900;208.824000;208.824000;208.793000;208.805000;0 +20260216 194000;208.807000;208.829000;208.758000;208.774000;0 +20260216 194100;208.775000;208.778000;208.707000;208.707000;0 +20260216 194200;208.705000;208.726000;208.688000;208.726000;0 +20260216 194300;208.725000;208.761000;208.706000;208.755000;0 +20260216 194400;208.757000;208.771000;208.719000;208.761000;0 +20260216 194500;208.762000;208.765000;208.722000;208.725000;0 +20260216 194600;208.724000;208.743000;208.692000;208.702000;0 +20260216 194700;208.702000;208.776000;208.702000;208.755000;0 +20260216 194800;208.755000;208.790000;208.753000;208.764000;0 +20260216 194900;208.760000;208.792000;208.731000;208.747000;0 +20260216 195000;208.748000;208.810000;208.747000;208.809000;0 +20260216 195100;208.809000;208.828000;208.759000;208.762000;0 +20260216 195200;208.762000;208.805000;208.753000;208.780000;0 +20260216 195300;208.785000;208.800000;208.710000;208.711000;0 +20260216 195400;208.709000;208.801000;208.699000;208.792000;0 +20260216 195500;208.790000;208.792000;208.747000;208.753000;0 +20260216 195600;208.752000;208.753000;208.712000;208.736000;0 +20260216 195700;208.738000;208.738000;208.623000;208.646000;0 +20260216 195800;208.645000;208.681000;208.621000;208.642000;0 +20260216 195900;208.642000;208.650000;208.622000;208.624000;0 +20260216 200000;208.622000;208.766000;208.622000;208.766000;0 +20260216 200100;208.766000;208.766000;208.720000;208.746000;0 +20260216 200200;208.745000;208.766000;208.715000;208.735000;0 +20260216 200300;208.736000;208.739000;208.641000;208.708000;0 +20260216 200400;208.706000;208.743000;208.693000;208.739000;0 +20260216 200500;208.740000;208.787000;208.737000;208.762000;0 +20260216 200600;208.762000;208.764000;208.726000;208.760000;0 +20260216 200700;208.761000;208.783000;208.755000;208.772000;0 +20260216 200800;208.771000;208.795000;208.743000;208.743000;0 +20260216 200900;208.744000;208.753000;208.698000;208.752000;0 +20260216 201000;208.754000;208.787000;208.752000;208.773000;0 +20260216 201100;208.773000;208.809000;208.765000;208.802000;0 +20260216 201200;208.798000;208.799000;208.728000;208.740000;0 +20260216 201300;208.744000;208.788000;208.728000;208.788000;0 +20260216 201400;208.787000;208.839000;208.767000;208.822000;0 +20260216 201500;208.823000;208.859000;208.819000;208.849000;0 +20260216 201600;208.848000;208.870000;208.831000;208.835000;0 +20260216 201700;208.836000;208.863000;208.832000;208.861000;0 +20260216 201800;208.863000;208.864000;208.845000;208.854000;0 +20260216 201900;208.852000;208.858000;208.839000;208.857000;0 +20260216 202000;208.860000;208.876000;208.840000;208.854000;0 +20260216 202100;208.853000;208.889000;208.838000;208.887000;0 +20260216 202200;208.886000;208.901000;208.880000;208.897000;0 +20260216 202300;208.895000;208.897000;208.855000;208.873000;0 +20260216 202400;208.872000;208.881000;208.836000;208.847000;0 +20260216 202500;208.846000;208.850000;208.818000;208.841000;0 +20260216 202600;208.845000;208.863000;208.830000;208.857000;0 +20260216 202700;208.853000;208.853000;208.810000;208.849000;0 +20260216 202800;208.842000;208.857000;208.820000;208.824000;0 +20260216 202900;208.826000;208.831000;208.755000;208.763000;0 +20260216 203000;208.759000;208.781000;208.749000;208.769000;0 +20260216 203100;208.767000;208.799000;208.763000;208.782000;0 +20260216 203200;208.779000;208.804000;208.766000;208.789000;0 +20260216 203300;208.791000;208.800000;208.750000;208.756000;0 +20260216 203400;208.757000;208.776000;208.752000;208.758000;0 +20260216 203500;208.758000;208.800000;208.743000;208.800000;0 +20260216 203600;208.798000;208.802000;208.775000;208.780000;0 +20260216 203700;208.782000;208.850000;208.778000;208.849000;0 +20260216 203800;208.849000;208.880000;208.846000;208.875000;0 +20260216 203900;208.874000;208.881000;208.853000;208.875000;0 +20260216 204000;208.874000;208.895000;208.868000;208.868000;0 +20260216 204100;208.859000;208.870000;208.853000;208.864000;0 +20260216 204200;208.865000;208.874000;208.855000;208.862000;0 +20260216 204300;208.864000;208.864000;208.807000;208.809000;0 +20260216 204400;208.810000;208.861000;208.810000;208.851000;0 +20260216 204500;208.853000;208.883000;208.849000;208.858000;0 +20260216 204600;208.856000;208.856000;208.825000;208.842000;0 +20260216 204700;208.845000;208.859000;208.838000;208.844000;0 +20260216 204800;208.844000;208.858000;208.827000;208.829000;0 +20260216 204900;208.829000;208.835000;208.827000;208.830000;0 +20260216 205000;208.828000;208.831000;208.806000;208.806000;0 +20260216 205100;208.804000;208.804000;208.725000;208.751000;0 +20260216 205200;208.758000;208.761000;208.702000;208.710000;0 +20260216 205300;208.709000;208.716000;208.671000;208.681000;0 +20260216 205400;208.676000;208.713000;208.676000;208.695000;0 +20260216 205500;208.693000;208.693000;208.588000;208.588000;0 +20260216 205600;208.592000;208.613000;208.558000;208.568000;0 +20260216 205700;208.570000;208.588000;208.501000;208.522000;0 +20260216 205800;208.524000;208.556000;208.508000;208.545000;0 +20260216 205900;208.543000;208.557000;208.526000;208.531000;0 +20260216 210000;208.526000;208.557000;208.513000;208.527000;0 +20260216 210100;208.526000;208.544000;208.508000;208.525000;0 +20260216 210200;208.522000;208.539000;208.479000;208.483000;0 +20260216 210300;208.482000;208.490000;208.452000;208.471000;0 +20260216 210400;208.469000;208.469000;208.408000;208.408000;0 +20260216 210500;208.414000;208.458000;208.410000;208.438000;0 +20260216 210600;208.451000;208.475000;208.436000;208.457000;0 +20260216 210700;208.458000;208.471000;208.433000;208.450000;0 +20260216 210800;208.448000;208.504000;208.442000;208.496000;0 +20260216 210900;208.500000;208.562000;208.493000;208.556000;0 +20260216 211000;208.557000;208.587000;208.537000;208.557000;0 +20260216 211100;208.561000;208.574000;208.558000;208.567000;0 +20260216 211200;208.565000;208.571000;208.542000;208.542000;0 +20260216 211300;208.542000;208.565000;208.533000;208.554000;0 +20260216 211400;208.561000;208.570000;208.541000;208.545000;0 +20260216 211500;208.542000;208.542000;208.517000;208.535000;0 +20260216 211600;208.536000;208.539000;208.514000;208.526000;0 +20260216 211700;208.528000;208.552000;208.518000;208.550000;0 +20260216 211800;208.556000;208.600000;208.549000;208.599000;0 +20260216 211900;208.597000;208.605000;208.589000;208.601000;0 +20260216 212000;208.602000;208.604000;208.578000;208.589000;0 +20260216 212100;208.586000;208.598000;208.581000;208.595000;0 +20260216 212200;208.597000;208.637000;208.597000;208.624000;0 +20260216 212300;208.632000;208.645000;208.613000;208.632000;0 +20260216 212400;208.632000;208.669000;208.622000;208.668000;0 +20260216 212500;208.665000;208.668000;208.621000;208.625000;0 +20260216 212600;208.625000;208.629000;208.594000;208.610000;0 +20260216 212700;208.610000;208.622000;208.599000;208.617000;0 +20260216 212800;208.618000;208.640000;208.618000;208.624000;0 +20260216 212900;208.622000;208.624000;208.598000;208.614000;0 +20260216 213000;208.616000;208.620000;208.606000;208.619000;0 +20260216 213100;208.618000;208.664000;208.616000;208.657000;0 +20260216 213200;208.660000;208.668000;208.640000;208.655000;0 +20260216 213300;208.654000;208.663000;208.645000;208.649000;0 +20260216 213400;208.647000;208.657000;208.626000;208.626000;0 +20260216 213500;208.626000;208.631000;208.576000;208.579000;0 +20260216 213600;208.579000;208.617000;208.574000;208.577000;0 +20260216 213700;208.576000;208.588000;208.548000;208.555000;0 +20260216 213800;208.555000;208.562000;208.531000;208.538000;0 +20260216 213900;208.539000;208.550000;208.521000;208.546000;0 +20260216 214000;208.546000;208.561000;208.538000;208.543000;0 +20260216 214100;208.546000;208.565000;208.543000;208.562000;0 +20260216 214200;208.562000;208.563000;208.515000;208.543000;0 +20260216 214300;208.543000;208.544000;208.509000;208.517000;0 +20260216 214400;208.516000;208.530000;208.509000;208.509000;0 +20260216 214500;208.507000;208.530000;208.507000;208.517000;0 +20260216 214600;208.519000;208.548000;208.517000;208.542000;0 +20260216 214700;208.544000;208.567000;208.539000;208.566000;0 +20260216 214800;208.565000;208.570000;208.547000;208.548000;0 +20260216 214900;208.547000;208.555000;208.513000;208.517000;0 +20260216 215000;208.515000;208.533000;208.498000;208.533000;0 +20260216 215100;208.531000;208.539000;208.520000;208.526000;0 +20260216 215200;208.525000;208.539000;208.515000;208.529000;0 +20260216 215300;208.531000;208.531000;208.506000;208.517000;0 +20260216 215400;208.509000;208.525000;208.506000;208.524000;0 +20260216 215500;208.526000;208.538000;208.523000;208.523000;0 +20260216 215600;208.522000;208.537000;208.521000;208.531000;0 +20260216 215700;208.525000;208.525000;208.483000;208.483000;0 +20260216 215800;208.482000;208.501000;208.475000;208.501000;0 +20260216 215900;208.498000;208.501000;208.463000;208.473000;0 +20260216 220000;208.471000;208.481000;208.454000;208.456000;0 +20260216 220100;208.454000;208.457000;208.398000;208.423000;0 +20260216 220200;208.425000;208.435000;208.407000;208.409000;0 +20260216 220300;208.410000;208.410000;208.372000;208.381000;0 +20260216 220400;208.378000;208.402000;208.346000;208.350000;0 +20260216 220500;208.349000;208.355000;208.298000;208.307000;0 +20260216 220600;208.308000;208.360000;208.308000;208.342000;0 +20260216 220700;208.340000;208.343000;208.315000;208.319000;0 +20260216 220800;208.311000;208.343000;208.305000;208.343000;0 +20260216 220900;208.337000;208.343000;208.314000;208.314000;0 +20260216 221000;208.314000;208.336000;208.282000;208.305000;0 +20260216 221100;208.304000;208.312000;208.274000;208.275000;0 +20260216 221200;208.276000;208.295000;208.271000;208.281000;0 +20260216 221300;208.290000;208.311000;208.285000;208.306000;0 +20260216 221400;208.305000;208.335000;208.297000;208.335000;0 +20260216 221500;208.332000;208.361000;208.329000;208.355000;0 +20260216 221600;208.357000;208.373000;208.353000;208.363000;0 +20260216 221700;208.364000;208.390000;208.356000;208.388000;0 +20260216 221800;208.391000;208.395000;208.355000;208.383000;0 +20260216 221900;208.382000;208.386000;208.369000;208.374000;0 +20260216 222000;208.366000;208.373000;208.358000;208.366000;0 +20260216 222100;208.363000;208.400000;208.362000;208.395000;0 +20260216 222200;208.396000;208.417000;208.390000;208.393000;0 +20260216 222300;208.392000;208.396000;208.373000;208.386000;0 +20260216 222400;208.390000;208.404000;208.380000;208.386000;0 +20260216 222500;208.394000;208.410000;208.384000;208.405000;0 +20260216 222600;208.412000;208.419000;208.405000;208.418000;0 +20260216 222700;208.418000;208.422000;208.416000;208.420000;0 +20260216 222800;208.418000;208.421000;208.396000;208.408000;0 +20260216 222900;208.417000;208.435000;208.408000;208.423000;0 +20260216 223000;208.424000;208.435000;208.408000;208.435000;0 +20260216 223100;208.433000;208.447000;208.417000;208.418000;0 +20260216 223200;208.416000;208.416000;208.368000;208.407000;0 +20260216 223300;208.410000;208.410000;208.367000;208.373000;0 +20260216 223400;208.373000;208.373000;208.324000;208.326000;0 +20260216 223500;208.328000;208.353000;208.295000;208.340000;0 +20260216 223600;208.337000;208.356000;208.315000;208.315000;0 +20260216 223700;208.313000;208.345000;208.293000;208.343000;0 +20260216 223800;208.343000;208.343000;208.295000;208.302000;0 +20260216 223900;208.304000;208.305000;208.286000;208.293000;0 +20260216 224000;208.294000;208.323000;208.291000;208.294000;0 +20260216 224100;208.291000;208.293000;208.257000;208.279000;0 +20260216 224200;208.278000;208.359000;208.278000;208.358000;0 +20260216 224300;208.356000;208.385000;208.347000;208.383000;0 +20260216 224400;208.382000;208.394000;208.365000;208.390000;0 +20260216 224500;208.390000;208.399000;208.365000;208.371000;0 +20260216 224600;208.370000;208.382000;208.357000;208.382000;0 +20260216 224700;208.382000;208.390000;208.370000;208.379000;0 +20260216 224800;208.377000;208.386000;208.377000;208.381000;0 +20260216 224900;208.382000;208.385000;208.341000;208.348000;0 +20260216 225000;208.349000;208.360000;208.332000;208.358000;0 +20260216 225100;208.362000;208.375000;208.356000;208.367000;0 +20260216 225200;208.366000;208.394000;208.364000;208.390000;0 +20260216 225300;208.390000;208.392000;208.370000;208.381000;0 +20260216 225400;208.382000;208.384000;208.366000;208.366000;0 +20260216 225500;208.367000;208.412000;208.367000;208.408000;0 +20260216 225600;208.409000;208.448000;208.406000;208.441000;0 +20260216 225700;208.440000;208.469000;208.438000;208.462000;0 +20260216 225800;208.459000;208.504000;208.459000;208.488000;0 +20260216 225900;208.488000;208.515000;208.488000;208.509000;0 +20260216 230000;208.512000;208.521000;208.427000;208.458000;0 +20260216 230100;208.454000;208.505000;208.448000;208.502000;0 +20260216 230200;208.504000;208.507000;208.492000;208.500000;0 +20260216 230300;208.500000;208.500000;208.456000;208.457000;0 +20260216 230400;208.457000;208.478000;208.449000;208.478000;0 +20260216 230500;208.478000;208.483000;208.455000;208.456000;0 +20260216 230600;208.456000;208.473000;208.437000;208.439000;0 +20260216 230700;208.436000;208.463000;208.436000;208.454000;0 +20260216 230800;208.448000;208.458000;208.444000;208.454000;0 +20260216 230900;208.454000;208.479000;208.454000;208.479000;0 +20260216 231000;208.480000;208.488000;208.456000;208.461000;0 +20260216 231100;208.460000;208.482000;208.459000;208.477000;0 +20260216 231200;208.474000;208.494000;208.428000;208.436000;0 +20260216 231300;208.436000;208.440000;208.405000;208.427000;0 +20260216 231400;208.428000;208.475000;208.428000;208.474000;0 +20260216 231500;208.476000;208.476000;208.437000;208.438000;0 +20260216 231600;208.437000;208.457000;208.437000;208.451000;0 +20260216 231700;208.451000;208.451000;208.425000;208.425000;0 +20260216 231800;208.425000;208.445000;208.425000;208.445000;0 +20260216 231900;208.444000;208.460000;208.433000;208.439000;0 +20260216 232000;208.441000;208.467000;208.433000;208.463000;0 +20260216 232100;208.466000;208.473000;208.442000;208.449000;0 +20260216 232200;208.451000;208.456000;208.430000;208.435000;0 +20260216 232300;208.427000;208.430000;208.409000;208.413000;0 +20260216 232400;208.416000;208.422000;208.354000;208.369000;0 +20260216 232500;208.361000;208.361000;208.324000;208.356000;0 +20260216 232600;208.354000;208.360000;208.329000;208.351000;0 +20260216 232700;208.354000;208.376000;208.345000;208.355000;0 +20260216 232800;208.350000;208.352000;208.324000;208.324000;0 +20260216 232900;208.325000;208.334000;208.307000;208.309000;0 +20260216 233000;208.301000;208.336000;208.288000;208.311000;0 +20260216 233100;208.311000;208.332000;208.273000;208.330000;0 +20260216 233200;208.328000;208.332000;208.273000;208.273000;0 +20260216 233300;208.274000;208.294000;208.262000;208.262000;0 +20260216 233400;208.263000;208.294000;208.259000;208.283000;0 +20260216 233500;208.282000;208.319000;208.270000;208.318000;0 +20260216 233600;208.317000;208.317000;208.297000;208.305000;0 +20260216 233700;208.303000;208.308000;208.287000;208.299000;0 +20260216 233800;208.298000;208.325000;208.298000;208.316000;0 +20260216 233900;208.315000;208.315000;208.262000;208.262000;0 +20260216 234000;208.265000;208.287000;208.233000;208.255000;0 +20260216 234100;208.254000;208.279000;208.233000;208.251000;0 +20260216 234200;208.251000;208.306000;208.251000;208.290000;0 +20260216 234300;208.291000;208.293000;208.262000;208.275000;0 +20260216 234400;208.276000;208.307000;208.274000;208.296000;0 +20260216 234500;208.296000;208.306000;208.288000;208.293000;0 +20260216 234600;208.291000;208.330000;208.291000;208.327000;0 +20260216 234700;208.326000;208.339000;208.313000;208.314000;0 +20260216 234800;208.317000;208.344000;208.317000;208.329000;0 +20260216 234900;208.328000;208.328000;208.313000;208.315000;0 +20260216 235000;208.314000;208.327000;208.296000;208.324000;0 +20260216 235100;208.323000;208.367000;208.318000;208.363000;0 +20260216 235200;208.366000;208.392000;208.366000;208.389000;0 +20260216 235300;208.387000;208.404000;208.379000;208.403000;0 +20260216 235400;208.405000;208.408000;208.393000;208.395000;0 +20260216 235500;208.394000;208.397000;208.364000;208.370000;0 +20260216 235600;208.370000;208.375000;208.359000;208.362000;0 +20260216 235700;208.366000;208.373000;208.359000;208.372000;0 +20260216 235800;208.368000;208.375000;208.352000;208.362000;0 +20260216 235900;208.360000;208.376000;208.360000;208.374000;0 +20260217 000000;208.376000;208.389000;208.350000;208.350000;0 +20260217 000100;208.346000;208.346000;208.300000;208.300000;0 +20260217 000200;208.304000;208.346000;208.300000;208.315000;0 +20260217 000300;208.314000;208.395000;208.313000;208.394000;0 +20260217 000400;208.394000;208.396000;208.375000;208.378000;0 +20260217 000500;208.381000;208.383000;208.361000;208.362000;0 +20260217 000600;208.363000;208.366000;208.328000;208.333000;0 +20260217 000700;208.334000;208.355000;208.328000;208.346000;0 +20260217 000800;208.349000;208.358000;208.344000;208.353000;0 +20260217 000900;208.354000;208.354000;208.328000;208.353000;0 +20260217 001000;208.354000;208.356000;208.339000;208.353000;0 +20260217 001100;208.356000;208.376000;208.355000;208.376000;0 +20260217 001200;208.376000;208.403000;208.376000;208.390000;0 +20260217 001300;208.390000;208.394000;208.388000;208.391000;0 +20260217 001400;208.391000;208.391000;208.378000;208.387000;0 +20260217 001500;208.386000;208.386000;208.375000;208.378000;0 +20260217 001600;208.379000;208.383000;208.366000;208.379000;0 +20260217 001700;208.381000;208.382000;208.311000;208.311000;0 +20260217 001800;208.313000;208.313000;208.229000;208.232000;0 +20260217 001900;208.230000;208.233000;208.123000;208.124000;0 +20260217 002000;208.126000;208.157000;208.071000;208.157000;0 +20260217 002100;208.154000;208.202000;208.133000;208.176000;0 +20260217 002200;208.177000;208.194000;208.155000;208.175000;0 +20260217 002300;208.173000;208.186000;208.148000;208.150000;0 +20260217 002400;208.150000;208.175000;208.133000;208.137000;0 +20260217 002500;208.138000;208.153000;208.102000;208.117000;0 +20260217 002600;208.118000;208.168000;208.118000;208.153000;0 +20260217 002700;208.149000;208.183000;208.127000;208.153000;0 +20260217 002800;208.155000;208.182000;208.141000;208.171000;0 +20260217 002900;208.173000;208.194000;208.117000;208.120000;0 +20260217 003000;208.118000;208.137000;208.088000;208.096000;0 +20260217 003100;208.102000;208.116000;208.081000;208.081000;0 +20260217 003200;208.079000;208.087000;208.036000;208.083000;0 +20260217 003300;208.075000;208.120000;208.069000;208.114000;0 +20260217 003400;208.113000;208.130000;208.097000;208.127000;0 +20260217 003500;208.125000;208.126000;208.092000;208.095000;0 +20260217 003600;208.096000;208.119000;208.077000;208.111000;0 +20260217 003700;208.112000;208.148000;208.101000;208.121000;0 +20260217 003800;208.120000;208.132000;208.110000;208.125000;0 +20260217 003900;208.127000;208.128000;208.092000;208.096000;0 +20260217 004000;208.104000;208.106000;208.065000;208.088000;0 +20260217 004100;208.085000;208.163000;208.084000;208.146000;0 +20260217 004200;208.148000;208.151000;208.129000;208.143000;0 +20260217 004300;208.138000;208.167000;208.136000;208.162000;0 +20260217 004400;208.163000;208.191000;208.162000;208.169000;0 +20260217 004500;208.167000;208.168000;208.143000;208.150000;0 +20260217 004600;208.153000;208.155000;208.126000;208.126000;0 +20260217 004700;208.128000;208.150000;208.127000;208.146000;0 +20260217 004800;208.148000;208.188000;208.146000;208.186000;0 +20260217 004900;208.181000;208.210000;208.175000;208.204000;0 +20260217 005000;208.207000;208.216000;208.179000;208.197000;0 +20260217 005100;208.195000;208.199000;208.168000;208.181000;0 +20260217 005200;208.182000;208.200000;208.171000;208.195000;0 +20260217 005300;208.197000;208.198000;208.130000;208.141000;0 +20260217 005400;208.139000;208.143000;208.107000;208.109000;0 +20260217 005500;208.109000;208.113000;208.088000;208.108000;0 +20260217 005600;208.107000;208.130000;208.097000;208.111000;0 +20260217 005700;208.112000;208.147000;208.105000;208.130000;0 +20260217 005800;208.131000;208.131000;208.094000;208.108000;0 +20260217 005900;208.105000;208.144000;208.105000;208.125000;0 +20260217 010000;208.123000;208.165000;208.113000;208.142000;0 +20260217 010100;208.140000;208.140000;208.063000;208.107000;0 +20260217 010200;208.107000;208.116000;208.072000;208.092000;0 +20260217 010300;208.092000;208.092000;208.060000;208.062000;0 +20260217 010400;208.063000;208.121000;208.058000;208.093000;0 +20260217 010500;208.091000;208.094000;208.069000;208.089000;0 +20260217 010600;208.089000;208.128000;208.088000;208.108000;0 +20260217 010700;208.106000;208.106000;208.060000;208.089000;0 +20260217 010800;208.091000;208.105000;208.076000;208.095000;0 +20260217 010900;208.094000;208.122000;208.091000;208.112000;0 +20260217 011000;208.119000;208.138000;208.105000;208.135000;0 +20260217 011100;208.133000;208.155000;208.096000;208.096000;0 +20260217 011200;208.097000;208.109000;208.090000;208.097000;0 +20260217 011300;208.096000;208.119000;208.086000;208.103000;0 +20260217 011400;208.102000;208.103000;208.083000;208.089000;0 +20260217 011500;208.089000;208.133000;208.086000;208.129000;0 +20260217 011600;208.129000;208.170000;208.106000;208.137000;0 +20260217 011700;208.136000;208.136000;208.113000;208.117000;0 +20260217 011800;208.118000;208.137000;208.109000;208.127000;0 +20260217 011900;208.126000;208.126000;208.070000;208.094000;0 +20260217 012000;208.091000;208.091000;208.065000;208.076000;0 +20260217 012100;208.081000;208.103000;208.078000;208.093000;0 +20260217 012200;208.091000;208.102000;208.084000;208.084000;0 +20260217 012300;208.080000;208.100000;208.074000;208.091000;0 +20260217 012400;208.090000;208.105000;208.081000;208.085000;0 +20260217 012500;208.084000;208.102000;208.077000;208.102000;0 +20260217 012600;208.100000;208.146000;208.100000;208.146000;0 +20260217 012700;208.143000;208.143000;208.102000;208.105000;0 +20260217 012800;208.104000;208.104000;208.090000;208.102000;0 +20260217 012900;208.101000;208.122000;208.086000;208.115000;0 +20260217 013000;208.113000;208.137000;208.101000;208.127000;0 +20260217 013100;208.127000;208.153000;208.120000;208.138000;0 +20260217 013200;208.134000;208.160000;208.124000;208.146000;0 +20260217 013300;208.146000;208.155000;208.123000;208.123000;0 +20260217 013400;208.123000;208.140000;208.073000;208.075000;0 +20260217 013500;208.071000;208.089000;208.058000;208.065000;0 +20260217 013600;208.064000;208.094000;208.064000;208.080000;0 +20260217 013700;208.079000;208.098000;208.062000;208.085000;0 +20260217 013800;208.088000;208.095000;208.070000;208.071000;0 +20260217 013900;208.073000;208.089000;208.070000;208.086000;0 +20260217 014000;208.086000;208.098000;208.075000;208.098000;0 +20260217 014100;208.096000;208.232000;208.095000;208.196000;0 +20260217 014200;208.188000;208.196000;208.111000;208.118000;0 +20260217 014300;208.120000;208.128000;208.083000;208.083000;0 +20260217 014400;208.087000;208.118000;208.084000;208.102000;0 +20260217 014500;208.101000;208.126000;208.082000;208.124000;0 +20260217 014600;208.127000;208.127000;208.089000;208.108000;0 +20260217 014700;208.106000;208.115000;208.080000;208.083000;0 +20260217 014800;208.086000;208.130000;208.086000;208.121000;0 +20260217 014900;208.119000;208.126000;208.107000;208.120000;0 +20260217 015000;208.122000;208.156000;208.122000;208.151000;0 +20260217 015100;208.150000;208.173000;208.148000;208.159000;0 +20260217 015200;208.160000;208.165000;208.155000;208.162000;0 +20260217 015300;208.160000;208.192000;208.157000;208.184000;0 +20260217 015400;208.185000;208.185000;208.147000;208.172000;0 +20260217 015500;208.173000;208.201000;208.164000;208.200000;0 +20260217 015600;208.205000;208.208000;208.190000;208.191000;0 +20260217 015700;208.194000;208.201000;208.191000;208.200000;0 +20260217 015800;208.198000;208.216000;208.198000;208.206000;0 +20260217 015900;208.214000;208.215000;208.180000;208.192000;0 +20260217 020000;208.192000;208.192000;207.821000;207.826000;0 +20260217 020100;207.828000;207.828000;207.762000;207.802000;0 +20260217 020200;207.811000;207.877000;207.808000;207.835000;0 +20260217 020300;207.838000;207.838000;207.756000;207.800000;0 +20260217 020400;207.802000;207.849000;207.767000;207.842000;0 +20260217 020500;207.839000;207.849000;207.761000;207.786000;0 +20260217 020600;207.787000;207.794000;207.651000;207.665000;0 +20260217 020700;207.663000;207.671000;207.586000;207.624000;0 +20260217 020800;207.624000;207.651000;207.616000;207.649000;0 +20260217 020900;207.650000;207.703000;207.642000;207.667000;0 +20260217 021000;207.662000;207.672000;207.643000;207.655000;0 +20260217 021100;207.654000;207.657000;207.591000;207.614000;0 +20260217 021200;207.613000;207.624000;207.587000;207.619000;0 +20260217 021300;207.621000;207.624000;207.551000;207.559000;0 +20260217 021400;207.556000;207.571000;207.525000;207.540000;0 +20260217 021500;207.539000;207.542000;207.437000;207.461000;0 +20260217 021600;207.459000;207.501000;207.456000;207.489000;0 +20260217 021700;207.483000;207.501000;207.463000;207.494000;0 +20260217 021800;207.497000;207.545000;207.497000;207.519000;0 +20260217 021900;207.521000;207.521000;207.449000;207.479000;0 +20260217 022000;207.477000;207.495000;207.458000;207.485000;0 +20260217 022100;207.484000;207.489000;207.459000;207.466000;0 +20260217 022200;207.470000;207.485000;207.466000;207.477000;0 +20260217 022300;207.474000;207.526000;207.473000;207.526000;0 +20260217 022400;207.523000;207.570000;207.499000;207.557000;0 +20260217 022500;207.563000;207.595000;207.531000;207.567000;0 +20260217 022600;207.572000;207.578000;207.560000;207.572000;0 +20260217 022700;207.573000;207.577000;207.540000;207.555000;0 +20260217 022800;207.553000;207.583000;207.549000;207.550000;0 +20260217 022900;207.549000;207.578000;207.515000;207.574000;0 +20260217 023000;207.579000;207.598000;207.518000;207.522000;0 +20260217 023100;207.521000;207.534000;207.456000;207.482000;0 +20260217 023200;207.482000;207.506000;207.472000;207.487000;0 +20260217 023300;207.487000;207.510000;207.467000;207.484000;0 +20260217 023400;207.488000;207.513000;207.451000;207.469000;0 +20260217 023500;207.469000;207.484000;207.380000;207.398000;0 +20260217 023600;207.399000;207.406000;207.381000;207.401000;0 +20260217 023700;207.400000;207.411000;207.366000;207.401000;0 +20260217 023800;207.402000;207.403000;207.351000;207.377000;0 +20260217 023900;207.375000;207.401000;207.341000;207.370000;0 +20260217 024000;207.371000;207.425000;207.354000;207.406000;0 +20260217 024100;207.405000;207.405000;207.370000;207.383000;0 +20260217 024200;207.381000;207.396000;207.371000;207.385000;0 +20260217 024300;207.382000;207.405000;207.366000;207.401000;0 +20260217 024400;207.405000;207.500000;207.385000;207.497000;0 +20260217 024500;207.500000;207.503000;207.432000;207.447000;0 +20260217 024600;207.448000;207.466000;207.412000;207.463000;0 +20260217 024700;207.463000;207.481000;207.441000;207.445000;0 +20260217 024800;207.445000;207.452000;207.421000;207.438000;0 +20260217 024900;207.442000;207.483000;207.442000;207.470000;0 +20260217 025000;207.472000;207.519000;207.471000;207.492000;0 +20260217 025100;207.492000;207.501000;207.470000;207.494000;0 +20260217 025200;207.493000;207.503000;207.468000;207.478000;0 +20260217 025300;207.479000;207.479000;207.412000;207.461000;0 +20260217 025400;207.463000;207.520000;207.455000;207.515000;0 +20260217 025500;207.516000;207.521000;207.480000;207.512000;0 +20260217 025600;207.513000;207.555000;207.511000;207.535000;0 +20260217 025700;207.534000;207.607000;207.523000;207.569000;0 +20260217 025800;207.569000;207.615000;207.569000;207.581000;0 +20260217 025900;207.580000;207.619000;207.561000;207.617000;0 +20260217 030000;207.616000;207.690000;207.581000;207.674000;0 +20260217 030100;207.671000;207.769000;207.648000;207.732000;0 +20260217 030200;207.735000;207.764000;207.720000;207.724000;0 +20260217 030300;207.727000;207.769000;207.708000;207.754000;0 +20260217 030400;207.755000;207.755000;207.682000;207.710000;0 +20260217 030500;207.710000;207.751000;207.700000;207.724000;0 +20260217 030600;207.725000;207.753000;207.710000;207.744000;0 +20260217 030700;207.743000;207.766000;207.719000;207.764000;0 +20260217 030800;207.767000;207.767000;207.728000;207.753000;0 +20260217 030900;207.755000;207.813000;207.740000;207.811000;0 +20260217 031000;207.813000;207.879000;207.811000;207.871000;0 +20260217 031100;207.871000;207.908000;207.849000;207.898000;0 +20260217 031200;207.899000;207.905000;207.847000;207.872000;0 +20260217 031300;207.872000;207.874000;207.801000;207.814000;0 +20260217 031400;207.813000;207.822000;207.740000;207.740000;0 +20260217 031500;207.738000;207.740000;207.674000;207.674000;0 +20260217 031600;207.677000;207.692000;207.600000;207.601000;0 +20260217 031700;207.605000;207.650000;207.553000;207.554000;0 +20260217 031800;207.555000;207.596000;207.553000;207.593000;0 +20260217 031900;207.596000;207.676000;207.591000;207.670000;0 +20260217 032000;207.670000;207.726000;207.669000;207.686000;0 +20260217 032100;207.686000;207.712000;207.683000;207.699000;0 +20260217 032200;207.699000;207.739000;207.696000;207.727000;0 +20260217 032300;207.726000;207.730000;207.702000;207.702000;0 +20260217 032400;207.704000;207.709000;207.653000;207.657000;0 +20260217 032500;207.653000;207.711000;207.635000;207.711000;0 +20260217 032600;207.713000;207.723000;207.679000;207.687000;0 +20260217 032700;207.687000;207.709000;207.640000;207.644000;0 +20260217 032800;207.644000;207.645000;207.598000;207.603000;0 +20260217 032900;207.600000;207.602000;207.573000;207.590000;0 +20260217 033000;207.590000;207.709000;207.590000;207.707000;0 +20260217 033100;207.706000;207.719000;207.654000;207.674000;0 +20260217 033200;207.673000;207.676000;207.616000;207.618000;0 +20260217 033300;207.618000;207.630000;207.595000;207.617000;0 +20260217 033400;207.618000;207.659000;207.597000;207.611000;0 +20260217 033500;207.614000;207.617000;207.566000;207.569000;0 +20260217 033600;207.569000;207.618000;207.556000;207.608000;0 +20260217 033700;207.604000;207.623000;207.597000;207.611000;0 +20260217 033800;207.611000;207.616000;207.599000;207.612000;0 +20260217 033900;207.610000;207.630000;207.597000;207.600000;0 +20260217 034000;207.589000;207.650000;207.567000;207.636000;0 +20260217 034100;207.636000;207.642000;207.586000;207.587000;0 +20260217 034200;207.583000;207.643000;207.581000;207.643000;0 +20260217 034300;207.647000;207.688000;207.645000;207.647000;0 +20260217 034400;207.648000;207.715000;207.648000;207.715000;0 +20260217 034500;207.715000;207.716000;207.662000;207.662000;0 +20260217 034600;207.660000;207.683000;207.617000;207.635000;0 +20260217 034700;207.636000;207.646000;207.588000;207.599000;0 +20260217 034800;207.599000;207.641000;207.599000;207.612000;0 +20260217 034900;207.612000;207.647000;207.599000;207.639000;0 +20260217 035000;207.637000;207.646000;207.603000;207.603000;0 +20260217 035100;207.603000;207.612000;207.569000;207.571000;0 +20260217 035200;207.569000;207.628000;207.562000;207.622000;0 +20260217 035300;207.621000;207.631000;207.587000;207.612000;0 +20260217 035400;207.614000;207.614000;207.511000;207.579000;0 +20260217 035500;207.580000;207.613000;207.541000;207.554000;0 +20260217 035600;207.556000;207.582000;207.535000;207.556000;0 +20260217 035700;207.559000;207.592000;207.553000;207.586000;0 +20260217 035800;207.587000;207.604000;207.559000;207.583000;0 +20260217 035900;207.581000;207.584000;207.482000;207.483000;0 +20260217 040000;207.481000;207.509000;207.473000;207.504000;0 +20260217 040100;207.505000;207.563000;207.505000;207.561000;0 +20260217 040200;207.560000;207.634000;207.560000;207.634000;0 +20260217 040300;207.635000;207.639000;207.588000;207.628000;0 +20260217 040400;207.626000;207.676000;207.626000;207.673000;0 +20260217 040500;207.670000;207.670000;207.637000;207.648000;0 +20260217 040600;207.649000;207.685000;207.649000;207.682000;0 +20260217 040700;207.682000;207.682000;207.617000;207.656000;0 +20260217 040800;207.657000;207.672000;207.635000;207.637000;0 +20260217 040900;207.640000;207.643000;207.593000;207.605000;0 +20260217 041000;207.606000;207.657000;207.591000;207.591000;0 +20260217 041100;207.592000;207.644000;207.592000;207.615000;0 +20260217 041200;207.616000;207.646000;207.613000;207.631000;0 +20260217 041300;207.630000;207.635000;207.614000;207.624000;0 +20260217 041400;207.618000;207.643000;207.601000;207.641000;0 +20260217 041500;207.642000;207.693000;207.639000;207.692000;0 +20260217 041600;207.690000;207.704000;207.664000;207.690000;0 +20260217 041700;207.691000;207.724000;207.688000;207.706000;0 +20260217 041800;207.707000;207.721000;207.705000;207.717000;0 +20260217 041900;207.715000;207.715000;207.687000;207.690000;0 +20260217 042000;207.692000;207.768000;207.689000;207.743000;0 +20260217 042100;207.739000;207.785000;207.738000;207.778000;0 +20260217 042200;207.776000;207.856000;207.776000;207.792000;0 +20260217 042300;207.790000;207.796000;207.750000;207.759000;0 +20260217 042400;207.759000;207.769000;207.722000;207.769000;0 +20260217 042500;207.773000;207.798000;207.763000;207.790000;0 +20260217 042600;207.788000;207.792000;207.755000;207.783000;0 +20260217 042700;207.783000;207.827000;207.783000;207.794000;0 +20260217 042800;207.794000;207.820000;207.752000;207.764000;0 +20260217 042900;207.769000;207.785000;207.753000;207.768000;0 +20260217 043000;207.770000;207.796000;207.766000;207.785000;0 +20260217 043100;207.783000;207.824000;207.779000;207.817000;0 +20260217 043200;207.813000;207.813000;207.757000;207.757000;0 +20260217 043300;207.759000;207.801000;207.759000;207.790000;0 +20260217 043400;207.791000;207.794000;207.771000;207.779000;0 +20260217 043500;207.780000;207.817000;207.780000;207.783000;0 +20260217 043600;207.783000;207.793000;207.773000;207.790000;0 +20260217 043700;207.790000;207.814000;207.779000;207.808000;0 +20260217 043800;207.813000;207.824000;207.804000;207.813000;0 +20260217 043900;207.815000;207.823000;207.795000;207.795000;0 +20260217 044000;207.792000;207.796000;207.766000;207.778000;0 +20260217 044100;207.774000;207.793000;207.756000;207.782000;0 +20260217 044200;207.781000;207.783000;207.742000;207.750000;0 +20260217 044300;207.748000;207.771000;207.739000;207.746000;0 +20260217 044400;207.748000;207.808000;207.748000;207.808000;0 +20260217 044500;207.810000;207.858000;207.809000;207.842000;0 +20260217 044600;207.841000;207.894000;207.841000;207.890000;0 +20260217 044700;207.890000;207.893000;207.873000;207.885000;0 +20260217 044800;207.886000;207.908000;207.875000;207.875000;0 +20260217 044900;207.875000;207.887000;207.855000;207.872000;0 +20260217 045000;207.871000;207.874000;207.862000;207.865000;0 +20260217 045100;207.864000;207.880000;207.861000;207.868000;0 +20260217 045200;207.870000;207.904000;207.869000;207.890000;0 +20260217 045300;207.889000;207.909000;207.874000;207.881000;0 +20260217 045400;207.883000;207.895000;207.877000;207.893000;0 +20260217 045500;207.895000;207.905000;207.866000;207.867000;0 +20260217 045600;207.866000;207.876000;207.861000;207.872000;0 +20260217 045700;207.871000;207.874000;207.829000;207.830000;0 +20260217 045800;207.827000;207.831000;207.809000;207.809000;0 +20260217 045900;207.810000;207.810000;207.793000;207.804000;0 +20260217 050000;207.806000;207.821000;207.769000;207.774000;0 +20260217 050100;207.779000;207.853000;207.772000;207.853000;0 +20260217 050200;207.854000;207.860000;207.825000;207.825000;0 +20260217 050300;207.827000;207.882000;207.802000;207.880000;0 +20260217 050400;207.881000;207.884000;207.844000;207.844000;0 +20260217 050500;207.845000;207.890000;207.844000;207.884000;0 +20260217 050600;207.884000;207.917000;207.878000;207.890000;0 +20260217 050700;207.890000;207.903000;207.883000;207.900000;0 +20260217 050800;207.900000;207.904000;207.886000;207.886000;0 +20260217 050900;207.888000;207.897000;207.882000;207.884000;0 +20260217 051000;207.881000;207.891000;207.829000;207.829000;0 +20260217 051100;207.832000;207.851000;207.815000;207.837000;0 +20260217 051200;207.840000;207.851000;207.812000;207.815000;0 +20260217 051300;207.814000;207.871000;207.814000;207.869000;0 +20260217 051400;207.867000;207.913000;207.862000;207.909000;0 +20260217 051500;207.909000;207.913000;207.871000;207.883000;0 +20260217 051600;207.884000;207.886000;207.850000;207.853000;0 +20260217 051700;207.858000;207.868000;207.845000;207.861000;0 +20260217 051800;207.861000;207.880000;207.857000;207.878000;0 +20260217 051900;207.878000;207.890000;207.872000;207.879000;0 +20260217 052000;207.887000;207.922000;207.887000;207.914000;0 +20260217 052100;207.918000;207.943000;207.917000;207.927000;0 +20260217 052200;207.930000;207.966000;207.930000;207.960000;0 +20260217 052300;207.960000;207.968000;207.953000;207.964000;0 +20260217 052400;207.963000;208.043000;207.963000;208.037000;0 +20260217 052500;208.035000;208.083000;208.032000;208.081000;0 +20260217 052600;208.082000;208.114000;208.072000;208.087000;0 +20260217 052700;208.085000;208.096000;208.043000;208.050000;0 +20260217 052800;208.049000;208.064000;208.038000;208.064000;0 +20260217 052900;208.063000;208.071000;208.039000;208.039000;0 +20260217 053000;208.037000;208.060000;208.031000;208.058000;0 +20260217 053100;208.058000;208.073000;208.044000;208.060000;0 +20260217 053200;208.061000;208.100000;208.043000;208.043000;0 +20260217 053300;208.044000;208.065000;208.041000;208.056000;0 +20260217 053400;208.057000;208.082000;208.046000;208.082000;0 +20260217 053500;208.085000;208.113000;208.082000;208.090000;0 +20260217 053600;208.089000;208.118000;208.089000;208.106000;0 +20260217 053700;208.106000;208.142000;208.102000;208.126000;0 +20260217 053800;208.122000;208.177000;208.122000;208.177000;0 +20260217 053900;208.175000;208.210000;208.139000;208.139000;0 +20260217 054000;208.139000;208.166000;208.117000;208.156000;0 +20260217 054100;208.157000;208.157000;208.113000;208.113000;0 +20260217 054200;208.110000;208.136000;208.095000;208.107000;0 +20260217 054300;208.106000;208.116000;208.093000;208.104000;0 +20260217 054400;208.108000;208.153000;208.098000;208.144000;0 +20260217 054500;208.139000;208.156000;208.124000;208.146000;0 +20260217 054600;208.146000;208.160000;208.136000;208.140000;0 +20260217 054700;208.140000;208.147000;208.113000;208.118000;0 +20260217 054800;208.122000;208.126000;208.096000;208.111000;0 +20260217 054900;208.112000;208.114000;208.067000;208.068000;0 +20260217 055000;208.070000;208.083000;208.049000;208.083000;0 +20260217 055100;208.084000;208.084000;208.047000;208.050000;0 +20260217 055200;208.051000;208.061000;208.014000;208.014000;0 +20260217 055300;208.016000;208.035000;208.000000;208.013000;0 +20260217 055400;208.011000;208.016000;207.973000;208.016000;0 +20260217 055500;208.014000;208.033000;208.011000;208.018000;0 +20260217 055600;208.016000;208.025000;207.990000;208.001000;0 +20260217 055700;208.002000;208.029000;207.985000;207.991000;0 +20260217 055800;207.994000;207.995000;207.969000;207.974000;0 +20260217 055900;207.972000;207.998000;207.972000;207.991000;0 +20260217 060000;207.993000;208.014000;207.983000;208.002000;0 +20260217 060100;208.000000;208.026000;207.995000;208.022000;0 +20260217 060200;208.024000;208.031000;207.984000;207.984000;0 +20260217 060300;207.986000;208.003000;207.949000;207.951000;0 +20260217 060400;207.950000;207.987000;207.950000;207.962000;0 +20260217 060500;207.964000;207.990000;207.952000;207.979000;0 +20260217 060600;207.979000;207.994000;207.929000;207.947000;0 +20260217 060700;207.948000;207.993000;207.934000;207.983000;0 +20260217 060800;207.980000;207.980000;207.948000;207.966000;0 +20260217 060900;207.965000;207.976000;207.935000;207.945000;0 +20260217 061000;207.941000;207.969000;207.917000;207.920000;0 +20260217 061100;207.919000;207.944000;207.913000;207.925000;0 +20260217 061200;207.930000;207.977000;207.930000;207.948000;0 +20260217 061300;207.949000;207.954000;207.925000;207.943000;0 +20260217 061400;207.945000;207.968000;207.911000;207.914000;0 +20260217 061500;207.908000;207.958000;207.908000;207.924000;0 +20260217 061600;207.925000;207.944000;207.907000;207.937000;0 +20260217 061700;207.937000;207.952000;207.925000;207.930000;0 +20260217 061800;207.931000;207.932000;207.903000;207.905000;0 +20260217 061900;207.913000;207.927000;207.897000;207.906000;0 +20260217 062000;207.906000;207.919000;207.877000;207.877000;0 +20260217 062100;207.879000;207.900000;207.873000;207.881000;0 +20260217 062200;207.874000;207.888000;207.848000;207.883000;0 +20260217 062300;207.881000;207.902000;207.856000;207.856000;0 +20260217 062400;207.858000;207.859000;207.807000;207.818000;0 +20260217 062500;207.819000;207.847000;207.802000;207.846000;0 +20260217 062600;207.855000;207.880000;207.841000;207.865000;0 +20260217 062700;207.863000;207.864000;207.826000;207.843000;0 +20260217 062800;207.845000;207.859000;207.844000;207.850000;0 +20260217 062900;207.848000;207.888000;207.836000;207.883000;0 +20260217 063000;207.885000;207.940000;207.885000;207.926000;0 +20260217 063100;207.925000;207.925000;207.876000;207.904000;0 +20260217 063200;207.906000;207.942000;207.885000;207.888000;0 +20260217 063300;207.890000;207.914000;207.886000;207.888000;0 +20260217 063400;207.890000;207.910000;207.876000;207.882000;0 +20260217 063500;207.888000;207.895000;207.874000;207.876000;0 +20260217 063600;207.879000;207.893000;207.850000;207.851000;0 +20260217 063700;207.846000;207.857000;207.820000;207.827000;0 +20260217 063800;207.832000;207.850000;207.832000;207.839000;0 +20260217 063900;207.839000;207.851000;207.801000;207.833000;0 +20260217 064000;207.822000;207.833000;207.807000;207.814000;0 +20260217 064100;207.813000;207.843000;207.801000;207.831000;0 +20260217 064200;207.832000;207.870000;207.830000;207.838000;0 +20260217 064300;207.838000;207.849000;207.830000;207.847000;0 +20260217 064400;207.848000;207.892000;207.841000;207.878000;0 +20260217 064500;207.879000;207.888000;207.844000;207.844000;0 +20260217 064600;207.844000;207.846000;207.831000;207.839000;0 +20260217 064700;207.840000;207.840000;207.786000;207.830000;0 +20260217 064800;207.830000;207.853000;207.830000;207.851000;0 +20260217 064900;207.851000;207.871000;207.841000;207.863000;0 +20260217 065000;207.864000;207.868000;207.775000;207.797000;0 +20260217 065100;207.799000;207.833000;207.799000;207.803000;0 +20260217 065200;207.799000;207.807000;207.757000;207.758000;0 +20260217 065300;207.759000;207.789000;207.742000;207.788000;0 +20260217 065400;207.788000;207.791000;207.759000;207.762000;0 +20260217 065500;207.761000;207.763000;207.715000;207.716000;0 +20260217 065600;207.714000;207.728000;207.688000;207.727000;0 +20260217 065700;207.728000;207.762000;207.721000;207.742000;0 +20260217 065800;207.744000;207.744000;207.698000;207.734000;0 +20260217 065900;207.736000;207.747000;207.707000;207.719000;0 +20260217 070000;207.717000;207.772000;207.688000;207.759000;0 +20260217 070100;207.760000;207.764000;207.742000;207.749000;0 +20260217 070200;207.749000;207.762000;207.703000;207.760000;0 +20260217 070300;207.761000;207.765000;207.710000;207.738000;0 +20260217 070400;207.744000;207.795000;207.740000;207.779000;0 +20260217 070500;207.781000;207.788000;207.746000;207.777000;0 +20260217 070600;207.778000;207.803000;207.768000;207.780000;0 +20260217 070700;207.776000;207.801000;207.776000;207.795000;0 +20260217 070800;207.797000;207.797000;207.755000;207.769000;0 +20260217 070900;207.774000;207.790000;207.765000;207.774000;0 +20260217 071000;207.772000;207.786000;207.761000;207.775000;0 +20260217 071100;207.779000;207.809000;207.775000;207.795000;0 +20260217 071200;207.796000;207.797000;207.760000;207.773000;0 +20260217 071300;207.772000;207.788000;207.757000;207.757000;0 +20260217 071400;207.760000;207.777000;207.697000;207.700000;0 +20260217 071500;207.700000;207.732000;207.684000;207.707000;0 +20260217 071600;207.709000;207.714000;207.687000;207.689000;0 +20260217 071700;207.690000;207.707000;207.690000;207.702000;0 +20260217 071800;207.702000;207.727000;207.686000;207.686000;0 +20260217 071900;207.687000;207.689000;207.669000;207.670000;0 +20260217 072000;207.674000;207.691000;207.662000;207.681000;0 +20260217 072100;207.684000;207.716000;207.684000;207.695000;0 +20260217 072200;207.696000;207.700000;207.668000;207.670000;0 +20260217 072300;207.668000;207.680000;207.652000;207.677000;0 +20260217 072400;207.674000;207.688000;207.656000;207.670000;0 +20260217 072500;207.673000;207.673000;207.621000;207.660000;0 +20260217 072600;207.660000;207.704000;207.658000;207.696000;0 +20260217 072700;207.698000;207.707000;207.665000;207.678000;0 +20260217 072800;207.678000;207.704000;207.678000;207.699000;0 +20260217 072900;207.700000;207.707000;207.678000;207.682000;0 +20260217 073000;207.680000;207.692000;207.636000;207.644000;0 +20260217 073100;207.646000;207.663000;207.625000;207.632000;0 +20260217 073200;207.633000;207.635000;207.617000;207.628000;0 +20260217 073300;207.628000;207.631000;207.582000;207.584000;0 +20260217 073400;207.583000;207.598000;207.575000;207.591000;0 +20260217 073500;207.590000;207.609000;207.590000;207.599000;0 +20260217 073600;207.597000;207.600000;207.553000;207.556000;0 +20260217 073700;207.558000;207.580000;207.546000;207.580000;0 +20260217 073800;207.578000;207.634000;207.578000;207.633000;0 +20260217 073900;207.630000;207.630000;207.593000;207.610000;0 +20260217 074000;207.608000;207.608000;207.565000;207.572000;0 +20260217 074100;207.570000;207.580000;207.540000;207.575000;0 +20260217 074200;207.574000;207.581000;207.554000;207.572000;0 +20260217 074300;207.573000;207.573000;207.529000;207.540000;0 +20260217 074400;207.542000;207.546000;207.517000;207.524000;0 +20260217 074500;207.525000;207.537000;207.461000;207.461000;0 +20260217 074600;207.463000;207.485000;207.438000;207.459000;0 +20260217 074700;207.456000;207.470000;207.431000;207.436000;0 +20260217 074800;207.437000;207.449000;207.401000;207.402000;0 +20260217 074900;207.404000;207.436000;207.395000;207.431000;0 +20260217 075000;207.428000;207.428000;207.392000;207.401000;0 +20260217 075100;207.397000;207.427000;207.391000;207.421000;0 +20260217 075200;207.418000;207.421000;207.402000;207.415000;0 +20260217 075300;207.416000;207.425000;207.405000;207.418000;0 +20260217 075400;207.419000;207.482000;207.418000;207.463000;0 +20260217 075500;207.462000;207.468000;207.444000;207.464000;0 +20260217 075600;207.461000;207.466000;207.438000;207.453000;0 +20260217 075700;207.459000;207.459000;207.403000;207.403000;0 +20260217 075800;207.396000;207.406000;207.375000;207.398000;0 +20260217 075900;207.395000;207.401000;207.372000;207.379000;0 +20260217 080000;207.371000;207.403000;207.359000;207.380000;0 +20260217 080100;207.382000;207.400000;207.361000;207.380000;0 +20260217 080200;207.381000;207.400000;207.362000;207.378000;0 +20260217 080300;207.381000;207.405000;207.371000;207.379000;0 +20260217 080400;207.380000;207.403000;207.375000;207.402000;0 +20260217 080500;207.400000;207.400000;207.356000;207.356000;0 +20260217 080600;207.359000;207.377000;207.347000;207.371000;0 +20260217 080700;207.367000;207.390000;207.344000;207.344000;0 +20260217 080800;207.346000;207.384000;207.346000;207.367000;0 +20260217 080900;207.366000;207.367000;207.320000;207.320000;0 +20260217 081000;207.319000;207.334000;207.292000;207.330000;0 +20260217 081100;207.332000;207.354000;207.309000;207.315000;0 +20260217 081200;207.314000;207.334000;207.273000;207.285000;0 +20260217 081300;207.285000;207.285000;207.241000;207.261000;0 +20260217 081400;207.258000;207.278000;207.245000;207.258000;0 +20260217 081500;207.256000;207.313000;207.256000;207.286000;0 +20260217 081600;207.284000;207.298000;207.250000;207.298000;0 +20260217 081700;207.307000;207.349000;207.302000;207.348000;0 +20260217 081800;207.347000;207.364000;207.288000;207.292000;0 +20260217 081900;207.286000;207.291000;207.229000;207.251000;0 +20260217 082000;207.252000;207.270000;207.234000;207.263000;0 +20260217 082100;207.261000;207.287000;207.245000;207.278000;0 +20260217 082200;207.281000;207.288000;207.257000;207.271000;0 +20260217 082300;207.271000;207.280000;207.238000;207.246000;0 +20260217 082400;207.248000;207.301000;207.230000;207.296000;0 +20260217 082500;207.298000;207.320000;207.275000;207.275000;0 +20260217 082600;207.282000;207.304000;207.282000;207.291000;0 +20260217 082700;207.296000;207.304000;207.279000;207.283000;0 +20260217 082800;207.283000;207.316000;207.274000;207.314000;0 +20260217 082900;207.319000;207.319000;207.295000;207.296000;0 +20260217 083000;207.288000;207.340000;207.284000;207.340000;0 +20260217 083100;207.340000;207.366000;207.335000;207.345000;0 +20260217 083200;207.341000;207.346000;207.292000;207.303000;0 +20260217 083300;207.300000;207.332000;207.291000;207.316000;0 +20260217 083400;207.314000;207.315000;207.283000;207.299000;0 +20260217 083500;207.298000;207.307000;207.251000;207.260000;0 +20260217 083600;207.254000;207.336000;207.253000;207.335000;0 +20260217 083700;207.334000;207.334000;207.275000;207.275000;0 +20260217 083800;207.273000;207.289000;207.263000;207.285000;0 +20260217 083900;207.286000;207.288000;207.260000;207.262000;0 +20260217 084000;207.259000;207.296000;207.243000;207.295000;0 +20260217 084100;207.295000;207.310000;207.268000;207.307000;0 +20260217 084200;207.304000;207.333000;207.282000;207.329000;0 +20260217 084300;207.323000;207.388000;207.321000;207.355000;0 +20260217 084400;207.353000;207.364000;207.310000;207.317000;0 +20260217 084500;207.324000;207.407000;207.313000;207.405000;0 +20260217 084600;207.404000;207.440000;207.392000;207.411000;0 +20260217 084700;207.410000;207.425000;207.372000;207.384000;0 +20260217 084800;207.386000;207.406000;207.359000;207.359000;0 +20260217 084900;207.361000;207.394000;207.356000;207.374000;0 +20260217 085000;207.378000;207.436000;207.362000;207.398000;0 +20260217 085100;207.399000;207.481000;207.385000;207.473000;0 +20260217 085200;207.474000;207.550000;207.461000;207.539000;0 +20260217 085300;207.537000;207.546000;207.422000;207.426000;0 +20260217 085400;207.425000;207.477000;207.416000;207.431000;0 +20260217 085500;207.443000;207.443000;207.375000;207.381000;0 +20260217 085600;207.389000;207.399000;207.344000;207.396000;0 +20260217 085700;207.398000;207.408000;207.348000;207.354000;0 +20260217 085800;207.354000;207.362000;207.312000;207.326000;0 +20260217 085900;207.325000;207.334000;207.292000;207.300000;0 +20260217 090000;207.298000;207.327000;207.270000;207.310000;0 +20260217 090100;207.310000;207.359000;207.297000;207.329000;0 +20260217 090200;207.330000;207.342000;207.317000;207.332000;0 +20260217 090300;207.332000;207.399000;207.328000;207.399000;0 +20260217 090400;207.406000;207.456000;207.392000;207.413000;0 +20260217 090500;207.414000;207.446000;207.406000;207.444000;0 +20260217 090600;207.445000;207.464000;207.430000;207.434000;0 +20260217 090700;207.438000;207.438000;207.405000;207.428000;0 +20260217 090800;207.426000;207.444000;207.406000;207.422000;0 +20260217 090900;207.424000;207.437000;207.404000;207.423000;0 +20260217 091000;207.423000;207.446000;207.398000;207.416000;0 +20260217 091100;207.418000;207.440000;207.385000;207.439000;0 +20260217 091200;207.438000;207.441000;207.408000;207.432000;0 +20260217 091300;207.435000;207.443000;207.370000;207.386000;0 +20260217 091400;207.389000;207.417000;207.372000;207.416000;0 +20260217 091500;207.419000;207.432000;207.406000;207.406000;0 +20260217 091600;207.402000;207.448000;207.401000;207.440000;0 +20260217 091700;207.439000;207.454000;207.422000;207.425000;0 +20260217 091800;207.424000;207.435000;207.409000;207.424000;0 +20260217 091900;207.422000;207.437000;207.412000;207.414000;0 +20260217 092000;207.415000;207.422000;207.375000;207.420000;0 +20260217 092100;207.420000;207.451000;207.409000;207.442000;0 +20260217 092200;207.439000;207.468000;207.430000;207.462000;0 +20260217 092300;207.459000;207.461000;207.426000;207.454000;0 +20260217 092400;207.453000;207.465000;207.421000;207.426000;0 +20260217 092500;207.426000;207.432000;207.388000;207.421000;0 +20260217 092600;207.423000;207.424000;207.403000;207.408000;0 +20260217 092700;207.406000;207.410000;207.365000;207.367000;0 +20260217 092800;207.365000;207.394000;207.350000;207.390000;0 +20260217 092900;207.393000;207.423000;207.384000;207.422000;0 +20260217 093000;207.423000;207.456000;207.383000;207.437000;0 +20260217 093100;207.437000;207.500000;207.426000;207.482000;0 +20260217 093200;207.482000;207.500000;207.454000;207.476000;0 +20260217 093300;207.476000;207.512000;207.431000;207.463000;0 +20260217 093400;207.458000;207.526000;207.454000;207.499000;0 +20260217 093500;207.496000;207.514000;207.478000;207.514000;0 +20260217 093600;207.515000;207.559000;207.510000;207.539000;0 +20260217 093700;207.539000;207.636000;207.539000;207.636000;0 +20260217 093800;207.632000;207.642000;207.547000;207.571000;0 +20260217 093900;207.570000;207.624000;207.550000;207.592000;0 +20260217 094000;207.591000;207.646000;207.563000;207.610000;0 +20260217 094100;207.610000;207.677000;207.610000;207.619000;0 +20260217 094200;207.617000;207.634000;207.548000;207.557000;0 +20260217 094300;207.557000;207.582000;207.545000;207.557000;0 +20260217 094400;207.554000;207.560000;207.525000;207.559000;0 +20260217 094500;207.556000;207.591000;207.528000;207.533000;0 +20260217 094600;207.533000;207.596000;207.521000;207.589000;0 +20260217 094700;207.588000;207.596000;207.517000;207.524000;0 +20260217 094800;207.526000;207.590000;207.526000;207.533000;0 +20260217 094900;207.531000;207.618000;207.523000;207.611000;0 +20260217 095000;207.607000;207.638000;207.498000;207.498000;0 +20260217 095100;207.499000;207.511000;207.470000;207.501000;0 +20260217 095200;207.501000;207.516000;207.455000;207.471000;0 +20260217 095300;207.471000;207.486000;207.433000;207.446000;0 +20260217 095400;207.449000;207.495000;207.449000;207.488000;0 +20260217 095500;207.489000;207.515000;207.477000;207.489000;0 +20260217 095600;207.489000;207.552000;207.486000;207.547000;0 +20260217 095700;207.546000;207.594000;207.523000;207.532000;0 +20260217 095800;207.530000;207.552000;207.466000;207.485000;0 +20260217 095900;207.485000;207.501000;207.471000;207.473000;0 +20260217 100000;207.470000;207.503000;207.413000;207.463000;0 +20260217 100100;207.461000;207.534000;207.430000;207.516000;0 +20260217 100200;207.515000;207.536000;207.494000;207.524000;0 +20260217 100300;207.523000;207.598000;207.520000;207.598000;0 +20260217 100400;207.596000;207.650000;207.588000;207.646000;0 +20260217 100500;207.646000;207.696000;207.629000;207.681000;0 +20260217 100600;207.679000;207.719000;207.638000;207.638000;0 +20260217 100700;207.641000;207.641000;207.590000;207.596000;0 +20260217 100800;207.597000;207.645000;207.576000;207.629000;0 +20260217 100900;207.635000;207.645000;207.588000;207.588000;0 +20260217 101000;207.588000;207.636000;207.588000;207.613000;0 +20260217 101100;207.611000;207.611000;207.555000;207.555000;0 +20260217 101200;207.556000;207.602000;207.551000;207.590000;0 +20260217 101300;207.594000;207.598000;207.540000;207.572000;0 +20260217 101400;207.571000;207.596000;207.566000;207.585000;0 +20260217 101500;207.584000;207.618000;207.573000;207.575000;0 +20260217 101600;207.574000;207.635000;207.571000;207.626000;0 +20260217 101700;207.624000;207.656000;207.609000;207.634000;0 +20260217 101800;207.634000;207.725000;207.633000;207.720000;0 +20260217 101900;207.723000;207.747000;207.690000;207.701000;0 +20260217 102000;207.700000;207.704000;207.649000;207.660000;0 +20260217 102100;207.658000;207.682000;207.638000;207.672000;0 +20260217 102200;207.667000;207.693000;207.623000;207.628000;0 +20260217 102300;207.631000;207.678000;207.627000;207.635000;0 +20260217 102400;207.634000;207.672000;207.630000;207.668000;0 +20260217 102500;207.667000;207.705000;207.612000;207.617000;0 +20260217 102600;207.618000;207.625000;207.584000;207.620000;0 +20260217 102700;207.623000;207.644000;207.605000;207.623000;0 +20260217 102800;207.625000;207.633000;207.556000;207.559000;0 +20260217 102900;207.561000;207.594000;207.539000;207.594000;0 +20260217 103000;207.588000;207.625000;207.563000;207.563000;0 +20260217 103100;207.565000;207.572000;207.530000;207.565000;0 +20260217 103200;207.560000;207.582000;207.540000;207.567000;0 +20260217 103300;207.568000;207.609000;207.561000;207.605000;0 +20260217 103400;207.605000;207.731000;207.592000;207.726000;0 +20260217 103500;207.725000;207.783000;207.708000;207.715000;0 +20260217 103600;207.715000;207.777000;207.708000;207.774000;0 +20260217 103700;207.776000;207.836000;207.757000;207.761000;0 +20260217 103800;207.765000;207.782000;207.721000;207.723000;0 +20260217 103900;207.722000;207.749000;207.675000;207.706000;0 +20260217 104000;207.706000;207.761000;207.694000;207.748000;0 +20260217 104100;207.746000;207.748000;207.692000;207.703000;0 +20260217 104200;207.702000;207.705000;207.656000;207.704000;0 +20260217 104300;207.708000;207.749000;207.690000;207.746000;0 +20260217 104400;207.744000;207.772000;207.738000;207.770000;0 +20260217 104500;207.776000;207.839000;207.769000;207.836000;0 +20260217 104600;207.842000;207.861000;207.796000;207.805000;0 +20260217 104700;207.807000;207.861000;207.806000;207.837000;0 +20260217 104800;207.839000;207.875000;207.795000;207.801000;0 +20260217 104900;207.800000;207.810000;207.766000;207.767000;0 +20260217 105000;207.768000;207.775000;207.707000;207.767000;0 +20260217 105100;207.764000;207.832000;207.748000;207.805000;0 +20260217 105200;207.809000;207.809000;207.711000;207.711000;0 +20260217 105300;207.713000;207.732000;207.671000;207.706000;0 +20260217 105400;207.707000;207.709000;207.643000;207.645000;0 +20260217 105500;207.644000;207.681000;207.629000;207.661000;0 +20260217 105600;207.663000;207.675000;207.588000;207.593000;0 +20260217 105700;207.595000;207.673000;207.588000;207.627000;0 +20260217 105800;207.624000;207.714000;207.624000;207.668000;0 +20260217 105900;207.667000;207.706000;207.661000;207.667000;0 +20260217 110000;207.666000;207.698000;207.664000;207.680000;0 +20260217 110100;207.681000;207.743000;207.680000;207.730000;0 +20260217 110200;207.730000;207.757000;207.725000;207.745000;0 +20260217 110300;207.748000;207.778000;207.742000;207.757000;0 +20260217 110400;207.756000;207.770000;207.731000;207.748000;0 +20260217 110500;207.745000;207.811000;207.740000;207.801000;0 +20260217 110600;207.800000;207.809000;207.724000;207.759000;0 +20260217 110700;207.759000;207.773000;207.729000;207.738000;0 +20260217 110800;207.738000;207.773000;207.718000;207.750000;0 +20260217 110900;207.749000;207.803000;207.744000;207.787000;0 +20260217 111000;207.784000;207.821000;207.784000;207.817000;0 +20260217 111100;207.819000;207.824000;207.793000;207.812000;0 +20260217 111200;207.809000;207.813000;207.782000;207.792000;0 +20260217 111300;207.791000;207.841000;207.789000;207.840000;0 +20260217 111400;207.835000;207.839000;207.801000;207.808000;0 +20260217 111500;207.810000;207.847000;207.772000;207.827000;0 +20260217 111600;207.829000;207.877000;207.820000;207.873000;0 +20260217 111700;207.872000;207.880000;207.837000;207.852000;0 +20260217 111800;207.853000;207.856000;207.822000;207.842000;0 +20260217 111900;207.838000;207.867000;207.832000;207.833000;0 +20260217 112000;207.827000;207.839000;207.798000;207.836000;0 +20260217 112100;207.837000;207.884000;207.837000;207.863000;0 +20260217 112200;207.861000;207.863000;207.831000;207.848000;0 +20260217 112300;207.847000;207.868000;207.847000;207.854000;0 +20260217 112400;207.851000;207.879000;207.843000;207.867000;0 +20260217 112500;207.866000;207.870000;207.831000;207.851000;0 +20260217 112600;207.850000;207.897000;207.850000;207.889000;0 +20260217 112700;207.889000;207.889000;207.835000;207.835000;0 +20260217 112800;207.836000;207.845000;207.804000;207.828000;0 +20260217 112900;207.829000;207.831000;207.787000;207.797000;0 +20260217 113000;207.793000;207.829000;207.789000;207.811000;0 +20260217 113100;207.812000;207.863000;207.812000;207.856000;0 +20260217 113200;207.856000;207.879000;207.855000;207.867000;0 +20260217 113300;207.868000;207.887000;207.836000;207.838000;0 +20260217 113400;207.837000;207.869000;207.831000;207.855000;0 +20260217 113500;207.857000;207.885000;207.843000;207.866000;0 +20260217 113600;207.867000;207.892000;207.852000;207.869000;0 +20260217 113700;207.870000;207.884000;207.846000;207.878000;0 +20260217 113800;207.876000;207.906000;207.872000;207.894000;0 +20260217 113900;207.894000;207.894000;207.863000;207.878000;0 +20260217 114000;207.876000;207.881000;207.831000;207.845000;0 +20260217 114100;207.845000;207.848000;207.825000;207.825000;0 +20260217 114200;207.826000;207.862000;207.822000;207.850000;0 +20260217 114300;207.852000;207.877000;207.803000;207.806000;0 +20260217 114400;207.806000;207.825000;207.801000;207.813000;0 +20260217 114500;207.811000;207.823000;207.780000;207.788000;0 +20260217 114600;207.790000;207.814000;207.767000;207.802000;0 +20260217 114700;207.805000;207.806000;207.783000;207.784000;0 +20260217 114800;207.783000;207.831000;207.774000;207.814000;0 +20260217 114900;207.812000;207.842000;207.811000;207.828000;0 +20260217 115000;207.832000;207.855000;207.825000;207.849000;0 +20260217 115100;207.846000;207.879000;207.836000;207.876000;0 +20260217 115200;207.873000;207.901000;207.864000;207.882000;0 +20260217 115300;207.884000;207.895000;207.854000;207.876000;0 +20260217 115400;207.872000;207.912000;207.865000;207.892000;0 +20260217 115500;207.891000;207.919000;207.878000;207.911000;0 +20260217 115600;207.914000;207.918000;207.881000;207.885000;0 +20260217 115700;207.882000;207.913000;207.859000;207.898000;0 +20260217 115800;207.899000;207.916000;207.882000;207.916000;0 +20260217 115900;207.916000;207.917000;207.895000;207.899000;0 +20260217 120000;207.898000;207.899000;207.843000;207.866000;0 +20260217 120100;207.867000;207.870000;207.823000;207.849000;0 +20260217 120200;207.848000;207.874000;207.839000;207.873000;0 +20260217 120300;207.871000;207.880000;207.853000;207.866000;0 +20260217 120400;207.864000;207.874000;207.847000;207.848000;0 +20260217 120500;207.848000;207.874000;207.840000;207.847000;0 +20260217 120600;207.845000;207.861000;207.838000;207.858000;0 +20260217 120700;207.860000;207.901000;207.858000;207.893000;0 +20260217 120800;207.892000;207.894000;207.875000;207.876000;0 +20260217 120900;207.874000;207.875000;207.814000;207.824000;0 +20260217 121000;207.825000;207.848000;207.825000;207.835000;0 +20260217 121100;207.832000;207.862000;207.821000;207.846000;0 +20260217 121200;207.846000;207.857000;207.803000;207.803000;0 +20260217 121300;207.803000;207.837000;207.800000;207.830000;0 +20260217 121400;207.827000;207.840000;207.811000;207.838000;0 +20260217 121500;207.839000;207.862000;207.824000;207.834000;0 +20260217 121600;207.836000;207.841000;207.809000;207.822000;0 +20260217 121700;207.824000;207.868000;207.820000;207.860000;0 +20260217 121800;207.865000;207.867000;207.835000;207.850000;0 +20260217 121900;207.849000;207.849000;207.810000;207.810000;0 +20260217 122000;207.809000;207.814000;207.771000;207.794000;0 +20260217 122100;207.799000;207.811000;207.788000;207.810000;0 +20260217 122200;207.805000;207.811000;207.772000;207.776000;0 +20260217 122300;207.775000;207.806000;207.767000;207.799000;0 +20260217 122400;207.800000;207.818000;207.782000;207.811000;0 +20260217 122500;207.813000;207.877000;207.811000;207.870000;0 +20260217 122600;207.862000;207.912000;207.858000;207.894000;0 +20260217 122700;207.892000;207.892000;207.852000;207.869000;0 +20260217 122800;207.869000;207.885000;207.867000;207.877000;0 +20260217 122900;207.876000;207.897000;207.871000;207.888000;0 +20260217 123000;207.890000;207.897000;207.881000;207.890000;0 +20260217 123100;207.889000;207.910000;207.881000;207.898000;0 +20260217 123200;207.893000;207.902000;207.856000;207.856000;0 +20260217 123300;207.857000;207.884000;207.832000;207.877000;0 +20260217 123400;207.878000;207.901000;207.878000;207.901000;0 +20260217 123500;207.900000;207.903000;207.849000;207.884000;0 +20260217 123600;207.867000;207.883000;207.862000;207.883000;0 +20260217 123700;207.882000;207.917000;207.882000;207.916000;0 +20260217 123800;207.913000;207.925000;207.885000;207.898000;0 +20260217 123900;207.902000;207.911000;207.882000;207.908000;0 +20260217 124000;207.905000;207.920000;207.900000;207.913000;0 +20260217 124100;207.912000;207.919000;207.887000;207.914000;0 +20260217 124200;207.913000;207.922000;207.886000;207.896000;0 +20260217 124300;207.897000;207.899000;207.844000;207.844000;0 +20260217 124400;207.845000;207.867000;207.835000;207.860000;0 +20260217 124500;207.861000;207.861000;207.834000;207.850000;0 +20260217 124600;207.851000;207.885000;207.843000;207.870000;0 +20260217 124700;207.866000;207.886000;207.856000;207.858000;0 +20260217 124800;207.859000;207.915000;207.855000;207.894000;0 +20260217 124900;207.892000;207.904000;207.870000;207.891000;0 +20260217 125000;207.892000;207.908000;207.884000;207.897000;0 +20260217 125100;207.900000;207.907000;207.886000;207.900000;0 +20260217 125200;207.894000;207.899000;207.848000;207.848000;0 +20260217 125300;207.851000;207.861000;207.835000;207.837000;0 +20260217 125400;207.839000;207.860000;207.829000;207.857000;0 +20260217 125500;207.858000;207.861000;207.847000;207.855000;0 +20260217 125600;207.855000;207.882000;207.854000;207.871000;0 +20260217 125700;207.868000;207.904000;207.858000;207.901000;0 +20260217 125800;207.903000;207.934000;207.902000;207.902000;0 +20260217 125900;207.902000;207.914000;207.886000;207.894000;0 +20260217 130000;207.894000;207.899000;207.868000;207.870000;0 +20260217 130100;207.869000;207.884000;207.861000;207.881000;0 +20260217 130200;207.881000;207.882000;207.810000;207.810000;0 +20260217 130300;207.814000;207.874000;207.814000;207.871000;0 +20260217 130400;207.871000;207.886000;207.855000;207.869000;0 +20260217 130500;207.869000;207.895000;207.869000;207.874000;0 +20260217 130600;207.875000;207.877000;207.853000;207.876000;0 +20260217 130700;207.874000;207.874000;207.834000;207.834000;0 +20260217 130800;207.835000;207.853000;207.823000;207.823000;0 +20260217 130900;207.830000;207.872000;207.821000;207.847000;0 +20260217 131000;207.851000;207.856000;207.825000;207.827000;0 +20260217 131100;207.826000;207.831000;207.807000;207.830000;0 +20260217 131200;207.831000;207.833000;207.806000;207.812000;0 +20260217 131300;207.815000;207.820000;207.778000;207.792000;0 +20260217 131400;207.795000;207.800000;207.762000;207.768000;0 +20260217 131500;207.770000;207.787000;207.754000;207.770000;0 +20260217 131600;207.772000;207.774000;207.751000;207.763000;0 +20260217 131700;207.761000;207.785000;207.761000;207.777000;0 +20260217 131800;207.783000;207.793000;207.772000;207.774000;0 +20260217 131900;207.776000;207.791000;207.769000;207.791000;0 +20260217 132000;207.791000;207.846000;207.783000;207.836000;0 +20260217 132100;207.835000;207.883000;207.835000;207.879000;0 +20260217 132200;207.884000;207.910000;207.883000;207.909000;0 +20260217 132300;207.906000;207.933000;207.883000;207.883000;0 +20260217 132400;207.879000;207.896000;207.865000;207.870000;0 +20260217 132500;207.868000;207.886000;207.857000;207.862000;0 +20260217 132600;207.861000;207.876000;207.847000;207.851000;0 +20260217 132700;207.850000;207.903000;207.849000;207.901000;0 +20260217 132800;207.900000;207.911000;207.886000;207.888000;0 +20260217 132900;207.889000;207.906000;207.871000;207.887000;0 +20260217 133000;207.886000;207.910000;207.879000;207.906000;0 +20260217 133100;207.906000;207.914000;207.897000;207.910000;0 +20260217 133200;207.911000;207.925000;207.900000;207.921000;0 +20260217 133300;207.925000;207.952000;207.922000;207.952000;0 +20260217 133400;207.951000;207.962000;207.944000;207.946000;0 +20260217 133500;207.951000;207.959000;207.927000;207.929000;0 +20260217 133600;207.927000;207.938000;207.926000;207.927000;0 +20260217 133700;207.926000;207.940000;207.914000;207.938000;0 +20260217 133800;207.939000;207.951000;207.929000;207.951000;0 +20260217 133900;207.951000;207.966000;207.943000;207.945000;0 +20260217 134000;207.946000;207.977000;207.943000;207.975000;0 +20260217 134100;207.974000;207.979000;207.944000;207.945000;0 +20260217 134200;207.945000;207.946000;207.917000;207.940000;0 +20260217 134300;207.938000;207.954000;207.926000;207.936000;0 +20260217 134400;207.934000;207.942000;207.916000;207.916000;0 +20260217 134500;207.920000;207.928000;207.914000;207.927000;0 +20260217 134600;207.927000;207.935000;207.924000;207.930000;0 +20260217 134700;207.929000;207.930000;207.908000;207.910000;0 +20260217 134800;207.908000;207.908000;207.876000;207.883000;0 +20260217 134900;207.884000;207.894000;207.875000;207.882000;0 +20260217 135000;207.876000;207.879000;207.867000;207.879000;0 +20260217 135100;207.873000;207.923000;207.873000;207.920000;0 +20260217 135200;207.918000;207.934000;207.915000;207.918000;0 +20260217 135300;207.917000;207.930000;207.911000;207.924000;0 +20260217 135400;207.926000;207.934000;207.921000;207.926000;0 +20260217 135500;207.930000;207.951000;207.918000;207.942000;0 +20260217 135600;207.945000;207.951000;207.926000;207.934000;0 +20260217 135700;207.932000;207.950000;207.929000;207.931000;0 +20260217 135800;207.932000;207.944000;207.926000;207.940000;0 +20260217 135900;207.940000;207.947000;207.920000;207.929000;0 +20260217 140000;207.931000;207.952000;207.928000;207.942000;0 +20260217 140100;207.938000;207.943000;207.904000;207.907000;0 +20260217 140200;207.905000;207.924000;207.895000;207.924000;0 +20260217 140300;207.923000;207.923000;207.894000;207.905000;0 +20260217 140400;207.907000;207.944000;207.906000;207.939000;0 +20260217 140500;207.942000;207.968000;207.924000;207.965000;0 +20260217 140600;207.967000;207.972000;207.933000;207.936000;0 +20260217 140700;207.934000;207.934000;207.925000;207.926000;0 +20260217 140800;207.926000;207.927000;207.902000;207.904000;0 +20260217 140900;207.906000;207.909000;207.883000;207.883000;0 +20260217 141000;207.882000;207.891000;207.868000;207.883000;0 +20260217 141100;207.888000;207.897000;207.880000;207.880000;0 +20260217 141200;207.878000;207.892000;207.878000;207.892000;0 +20260217 141300;207.888000;207.896000;207.873000;207.884000;0 +20260217 141400;207.885000;207.890000;207.877000;207.885000;0 +20260217 141500;207.884000;207.885000;207.877000;207.879000;0 +20260217 141600;207.878000;207.881000;207.868000;207.870000;0 +20260217 141700;207.870000;207.914000;207.866000;207.914000;0 +20260217 141800;207.916000;207.939000;207.908000;207.936000;0 +20260217 141900;207.933000;207.933000;207.899000;207.928000;0 +20260217 142000;207.926000;207.926000;207.903000;207.903000;0 +20260217 142100;207.905000;207.923000;207.904000;207.911000;0 +20260217 142200;207.913000;207.931000;207.912000;207.931000;0 +20260217 142300;207.927000;207.950000;207.926000;207.941000;0 +20260217 142400;207.948000;207.949000;207.941000;207.949000;0 +20260217 142500;207.952000;207.952000;207.929000;207.940000;0 +20260217 142600;207.938000;207.938000;207.918000;207.925000;0 +20260217 142700;207.926000;207.929000;207.906000;207.929000;0 +20260217 142800;207.929000;207.929000;207.894000;207.895000;0 +20260217 142900;207.890000;207.902000;207.886000;207.897000;0 +20260217 143000;207.887000;207.929000;207.883000;207.924000;0 +20260217 143100;207.920000;207.959000;207.916000;207.941000;0 +20260217 143200;207.942000;207.974000;207.942000;207.961000;0 +20260217 143300;207.963000;207.966000;207.945000;207.948000;0 +20260217 143400;207.949000;207.955000;207.936000;207.953000;0 +20260217 143500;207.948000;207.972000;207.943000;207.957000;0 +20260217 143600;207.957000;207.990000;207.954000;207.984000;0 +20260217 143700;207.983000;207.983000;207.963000;207.977000;0 +20260217 143800;207.974000;207.975000;207.958000;207.963000;0 +20260217 143900;207.961000;207.974000;207.957000;207.969000;0 +20260217 144000;207.970000;207.972000;207.957000;207.967000;0 +20260217 144100;207.966000;207.983000;207.964000;207.977000;0 +20260217 144200;207.977000;207.988000;207.972000;207.981000;0 +20260217 144300;207.978000;207.987000;207.975000;207.976000;0 +20260217 144400;207.976000;208.002000;207.972000;208.001000;0 +20260217 144500;208.003000;208.003000;207.989000;207.992000;0 +20260217 144600;207.992000;208.002000;207.966000;207.966000;0 +20260217 144700;207.966000;207.970000;207.944000;207.947000;0 +20260217 144800;207.947000;207.966000;207.947000;207.962000;0 +20260217 144900;207.963000;207.964000;207.955000;207.957000;0 +20260217 145000;207.957000;207.958000;207.904000;207.910000;0 +20260217 145100;207.910000;207.912000;207.894000;207.898000;0 +20260217 145200;207.899000;207.908000;207.893000;207.896000;0 +20260217 145300;207.897000;207.908000;207.875000;207.906000;0 +20260217 145400;207.908000;207.909000;207.849000;207.865000;0 +20260217 145500;207.864000;207.879000;207.862000;207.879000;0 +20260217 145600;207.878000;207.887000;207.873000;207.878000;0 +20260217 145700;207.878000;207.879000;207.847000;207.853000;0 +20260217 145800;207.866000;207.878000;207.834000;207.862000;0 +20260217 145900;207.862000;207.865000;207.801000;207.825000;0 +20260217 150000;207.828000;207.857000;207.822000;207.855000;0 +20260217 150100;207.854000;207.858000;207.837000;207.850000;0 +20260217 150200;207.849000;207.849000;207.765000;207.804000;0 +20260217 150300;207.805000;207.814000;207.767000;207.784000;0 +20260217 150400;207.785000;207.811000;207.780000;207.811000;0 +20260217 150500;207.811000;207.826000;207.808000;207.826000;0 +20260217 150600;207.821000;207.826000;207.819000;207.822000;0 +20260217 150700;207.822000;207.830000;207.812000;207.827000;0 +20260217 150800;207.828000;207.835000;207.825000;207.832000;0 +20260217 150900;207.833000;207.836000;207.819000;207.827000;0 +20260217 151000;207.829000;207.847000;207.829000;207.837000;0 +20260217 151100;207.839000;207.848000;207.836000;207.839000;0 +20260217 151200;207.837000;207.844000;207.829000;207.843000;0 +20260217 151300;207.843000;207.843000;207.821000;207.828000;0 +20260217 151400;207.830000;207.846000;207.821000;207.846000;0 +20260217 151500;207.847000;207.852000;207.836000;207.842000;0 +20260217 151600;207.844000;207.873000;207.844000;207.872000;0 +20260217 151700;207.871000;207.871000;207.842000;207.844000;0 +20260217 151800;207.841000;207.842000;207.825000;207.834000;0 +20260217 151900;207.833000;207.840000;207.816000;207.825000;0 +20260217 152000;207.831000;207.850000;207.831000;207.845000;0 +20260217 152100;207.845000;207.845000;207.813000;207.824000;0 +20260217 152200;207.824000;207.830000;207.807000;207.807000;0 +20260217 152300;207.808000;207.817000;207.807000;207.810000;0 +20260217 152400;207.809000;207.819000;207.804000;207.818000;0 +20260217 152500;207.818000;207.830000;207.818000;207.828000;0 +20260217 152600;207.829000;207.843000;207.824000;207.843000;0 +20260217 152700;207.843000;207.843000;207.833000;207.835000;0 +20260217 152800;207.833000;207.833000;207.821000;207.824000;0 +20260217 152900;207.825000;207.831000;207.821000;207.821000;0 +20260217 153000;207.832000;207.833000;207.811000;207.814000;0 +20260217 153100;207.816000;207.829000;207.809000;207.828000;0 +20260217 153200;207.826000;207.829000;207.814000;207.815000;0 +20260217 153300;207.814000;207.815000;207.793000;207.795000;0 +20260217 153400;207.800000;207.807000;207.788000;207.794000;0 +20260217 153500;207.794000;207.807000;207.789000;207.801000;0 +20260217 153600;207.800000;207.806000;207.797000;207.803000;0 +20260217 153700;207.797000;207.799000;207.775000;207.775000;0 +20260217 153800;207.777000;207.798000;207.777000;207.793000;0 +20260217 153900;207.788000;207.797000;207.779000;207.797000;0 +20260217 154000;207.805000;207.835000;207.800000;207.835000;0 +20260217 154100;207.835000;207.835000;207.820000;207.822000;0 +20260217 154200;207.823000;207.845000;207.822000;207.845000;0 +20260217 154300;207.848000;207.849000;207.819000;207.823000;0 +20260217 154400;207.822000;207.834000;207.818000;207.829000;0 +20260217 154500;207.832000;207.847000;207.829000;207.837000;0 +20260217 154600;207.836000;207.842000;207.833000;207.836000;0 +20260217 154700;207.837000;207.843000;207.828000;207.833000;0 +20260217 154800;207.835000;207.837000;207.822000;207.825000;0 +20260217 154900;207.825000;207.827000;207.804000;207.805000;0 +20260217 155000;207.804000;207.804000;207.796000;207.796000;0 +20260217 155100;207.799000;207.805000;207.794000;207.804000;0 +20260217 155200;207.805000;207.814000;207.800000;207.807000;0 +20260217 155300;207.809000;207.828000;207.805000;207.824000;0 +20260217 155400;207.824000;207.831000;207.808000;207.831000;0 +20260217 155500;207.833000;207.834000;207.808000;207.828000;0 +20260217 155600;207.826000;207.837000;207.812000;207.833000;0 +20260217 155700;207.832000;207.846000;207.829000;207.835000;0 +20260217 155800;207.834000;207.841000;207.802000;207.805000;0 +20260217 155900;207.808000;207.882000;207.805000;207.882000;0 +20260217 160000;207.880000;207.887000;207.857000;207.865000;0 +20260217 160100;207.864000;207.865000;207.827000;207.846000;0 +20260217 160200;207.843000;207.843000;207.826000;207.834000;0 +20260217 160300;207.835000;207.848000;207.832000;207.848000;0 +20260217 160400;207.847000;207.847000;207.833000;207.834000;0 +20260217 160500;207.831000;207.833000;207.817000;207.828000;0 +20260217 160600;207.825000;207.825000;207.803000;207.810000;0 +20260217 160700;207.813000;207.815000;207.805000;207.810000;0 +20260217 160800;207.807000;207.811000;207.803000;207.811000;0 +20260217 160900;207.814000;207.814000;207.803000;207.803000;0 +20260217 161000;207.807000;207.817000;207.802000;207.807000;0 +20260217 161100;207.810000;207.819000;207.807000;207.815000;0 +20260217 161200;207.814000;207.825000;207.814000;207.822000;0 +20260217 161300;207.824000;207.830000;207.819000;207.830000;0 +20260217 161400;207.832000;207.839000;207.826000;207.826000;0 +20260217 161500;207.825000;207.836000;207.825000;207.830000;0 +20260217 161600;207.829000;207.851000;207.818000;207.846000;0 +20260217 161700;207.845000;207.845000;207.826000;207.829000;0 +20260217 161800;207.828000;207.845000;207.828000;207.842000;0 +20260217 161900;207.843000;207.845000;207.830000;207.838000;0 +20260217 162000;207.839000;207.844000;207.839000;207.843000;0 +20260217 162100;207.844000;207.845000;207.835000;207.845000;0 +20260217 162200;207.847000;207.861000;207.847000;207.861000;0 +20260217 162300;207.857000;207.858000;207.844000;207.844000;0 +20260217 162400;207.844000;207.851000;207.839000;207.847000;0 +20260217 162500;207.851000;207.876000;207.849000;207.876000;0 +20260217 162600;207.873000;207.880000;207.873000;207.877000;0 +20260217 162700;207.872000;207.872000;207.855000;207.855000;0 +20260217 162800;207.855000;207.868000;207.855000;207.865000;0 +20260217 162900;207.866000;207.866000;207.856000;207.859000;0 +20260217 163000;207.855000;207.904000;207.855000;207.872000;0 +20260217 163100;207.870000;207.886000;207.863000;207.886000;0 +20260217 163200;207.889000;207.907000;207.889000;207.907000;0 +20260217 163300;207.907000;207.927000;207.901000;207.921000;0 +20260217 163400;207.921000;207.940000;207.920000;207.923000;0 +20260217 163500;207.936000;207.936000;207.924000;207.924000;0 +20260217 163600;207.922000;207.922000;207.919000;207.922000;0 +20260217 163700;207.923000;207.923000;207.923000;207.923000;0 +20260217 163800;207.925000;207.941000;207.920000;207.938000;0 +20260217 163900;207.939000;207.951000;207.930000;207.930000;0 +20260217 164000;207.937000;207.937000;207.922000;207.925000;0 +20260217 164100;207.925000;207.927000;207.924000;207.924000;0 +20260217 164200;207.926000;207.929000;207.925000;207.925000;0 +20260217 164300;207.927000;207.940000;207.920000;207.937000;0 +20260217 164400;207.938000;207.942000;207.937000;207.939000;0 +20260217 164500;207.941000;207.941000;207.925000;207.925000;0 +20260217 164600;207.920000;207.944000;207.912000;207.944000;0 +20260217 164700;207.943000;207.943000;207.929000;207.931000;0 +20260217 164800;207.930000;207.943000;207.930000;207.936000;0 +20260217 164900;207.937000;207.944000;207.937000;207.943000;0 +20260217 165000;207.943000;207.955000;207.936000;207.945000;0 +20260217 165100;207.952000;207.959000;207.942000;207.945000;0 +20260217 165200;207.944000;207.946000;207.936000;207.946000;0 +20260217 165300;207.946000;207.960000;207.938000;207.958000;0 +20260217 165400;207.955000;207.961000;207.939000;207.955000;0 +20260217 165500;207.959000;207.978000;207.942000;207.978000;0 +20260217 165600;207.978000;207.987000;207.973000;207.974000;0 +20260217 165700;207.972000;207.978000;207.949000;207.951000;0 +20260217 165800;207.948000;207.952000;207.937000;207.949000;0 +20260217 165900;207.946000;207.993000;207.942000;207.942000;0 +20260217 170500;207.637000;207.656000;207.637000;207.655000;0 +20260217 170600;207.673000;207.673000;207.659000;207.660000;0 +20260217 170700;207.660000;207.660000;207.644000;207.644000;0 +20260217 170800;207.644000;207.685000;207.644000;207.685000;0 +20260217 170900;207.699000;207.700000;207.682000;207.682000;0 +20260217 171000;207.682000;207.683000;207.679000;207.679000;0 +20260217 171100;207.679000;207.680000;207.663000;207.676000;0 +20260217 171200;207.676000;207.750000;207.630000;207.750000;0 +20260217 171300;207.750000;207.762000;207.750000;207.761000;0 +20260217 171400;207.761000;207.768000;207.761000;207.767000;0 +20260217 171500;207.798000;207.838000;207.755000;207.801000;0 +20260217 171600;207.804000;207.807000;207.641000;207.718000;0 +20260217 171700;207.718000;207.744000;207.713000;207.733000;0 +20260217 171800;207.732000;207.741000;207.684000;207.687000;0 +20260217 171900;207.688000;207.707000;207.648000;207.703000;0 +20260217 172000;207.703000;207.762000;207.687000;207.731000;0 +20260217 172100;207.746000;207.770000;207.730000;207.731000;0 +20260217 172200;207.731000;207.764000;207.731000;207.764000;0 +20260217 172300;207.763000;207.763000;207.737000;207.756000;0 +20260217 172400;207.755000;207.756000;207.651000;207.651000;0 +20260217 172500;207.677000;207.705000;207.675000;207.682000;0 +20260217 172600;207.686000;207.703000;207.663000;207.693000;0 +20260217 172700;207.693000;207.698000;207.663000;207.671000;0 +20260217 172800;207.693000;207.702000;207.668000;207.702000;0 +20260217 172900;207.704000;207.746000;207.668000;207.706000;0 +20260217 173000;207.707000;207.762000;207.707000;207.751000;0 +20260217 173100;207.754000;207.787000;207.733000;207.763000;0 +20260217 173200;207.754000;207.789000;207.753000;207.789000;0 +20260217 173300;207.790000;207.799000;207.742000;207.748000;0 +20260217 173400;207.776000;207.797000;207.776000;207.786000;0 +20260217 173500;207.790000;207.842000;207.789000;207.841000;0 +20260217 173600;207.812000;207.858000;207.812000;207.858000;0 +20260217 173700;207.857000;207.871000;207.838000;207.856000;0 +20260217 173800;207.857000;207.871000;207.848000;207.867000;0 +20260217 173900;207.873000;207.883000;207.811000;207.868000;0 +20260217 174000;207.867000;207.870000;207.830000;207.853000;0 +20260217 174100;207.855000;207.861000;207.828000;207.853000;0 +20260217 174200;207.854000;207.863000;207.814000;207.859000;0 +20260217 174300;207.857000;207.866000;207.813000;207.858000;0 +20260217 174400;207.830000;207.868000;207.826000;207.862000;0 +20260217 174500;207.862000;207.870000;207.820000;207.866000;0 +20260217 174600;207.865000;207.866000;207.832000;207.839000;0 +20260217 174700;207.839000;207.864000;207.833000;207.845000;0 +20260217 174800;207.841000;207.873000;207.838000;207.848000;0 +20260217 174900;207.851000;207.869000;207.835000;207.846000;0 +20260217 175000;207.846000;207.861000;207.845000;207.849000;0 +20260217 175100;207.848000;207.883000;207.837000;207.876000;0 +20260217 175200;207.876000;207.884000;207.876000;207.879000;0 +20260217 175300;207.880000;207.885000;207.876000;207.883000;0 +20260217 175400;207.883000;207.886000;207.873000;207.878000;0 +20260217 175500;207.879000;207.888000;207.839000;207.871000;0 +20260217 175600;207.871000;207.896000;207.859000;207.886000;0 +20260217 175700;207.882000;207.882000;207.814000;207.836000;0 +20260217 175800;207.841000;207.862000;207.809000;207.850000;0 +20260217 175900;207.850000;207.879000;207.810000;207.876000;0 +20260217 180000;207.861000;207.906000;207.835000;207.893000;0 +20260217 180100;207.903000;207.911000;207.891000;207.897000;0 +20260217 180200;207.891000;207.897000;207.891000;207.896000;0 +20260217 180300;207.895000;207.899000;207.878000;207.899000;0 +20260217 180400;207.900000;207.914000;207.876000;207.887000;0 +20260217 180500;207.891000;207.929000;207.891000;207.921000;0 +20260217 180600;207.929000;207.940000;207.926000;207.940000;0 +20260217 180700;207.941000;207.970000;207.941000;207.968000;0 +20260217 180800;207.968000;207.968000;207.937000;207.937000;0 +20260217 180900;207.946000;207.956000;207.937000;207.956000;0 +20260217 181000;207.957000;207.965000;207.948000;207.957000;0 +20260217 181100;207.952000;207.952000;207.932000;207.941000;0 +20260217 181200;207.939000;207.947000;207.934000;207.935000;0 +20260217 181300;207.938000;207.944000;207.934000;207.942000;0 +20260217 181400;207.940000;207.951000;207.932000;207.934000;0 +20260217 181500;207.934000;207.952000;207.930000;207.951000;0 +20260217 181600;207.951000;207.961000;207.945000;207.948000;0 +20260217 181700;207.950000;207.977000;207.950000;207.973000;0 +20260217 181800;207.980000;207.980000;207.963000;207.964000;0 +20260217 181900;207.956000;207.971000;207.952000;207.969000;0 +20260217 182000;207.968000;207.997000;207.962000;207.997000;0 +20260217 182100;207.992000;208.000000;207.978000;207.988000;0 +20260217 182200;207.986000;207.988000;207.968000;207.968000;0 +20260217 182300;207.976000;207.976000;207.956000;207.969000;0 +20260217 182400;207.967000;207.967000;207.961000;207.966000;0 +20260217 182500;207.966000;207.975000;207.954000;207.958000;0 +20260217 182600;207.953000;207.957000;207.948000;207.956000;0 +20260217 182700;207.951000;207.951000;207.933000;207.937000;0 +20260217 182800;207.930000;207.930000;207.886000;207.903000;0 +20260217 182900;207.901000;207.925000;207.899000;207.922000;0 +20260217 183000;207.923000;207.930000;207.913000;207.927000;0 +20260217 183100;207.926000;207.945000;207.926000;207.945000;0 +20260217 183200;207.944000;207.959000;207.941000;207.950000;0 +20260217 183300;207.946000;207.946000;207.927000;207.933000;0 +20260217 183400;207.934000;207.949000;207.934000;207.942000;0 +20260217 183500;207.941000;207.947000;207.931000;207.939000;0 +20260217 183600;207.939000;207.951000;207.937000;207.945000;0 +20260217 183700;207.946000;207.959000;207.928000;207.953000;0 +20260217 183800;207.952000;207.956000;207.938000;207.949000;0 +20260217 183900;207.947000;207.954000;207.918000;207.943000;0 +20260217 184000;207.943000;207.965000;207.919000;207.949000;0 +20260217 184100;207.943000;207.956000;207.935000;207.952000;0 +20260217 184200;207.952000;207.954000;207.943000;207.953000;0 +20260217 184300;207.954000;207.955000;207.943000;207.943000;0 +20260217 184400;207.943000;207.949000;207.917000;207.927000;0 +20260217 184500;207.928000;207.933000;207.903000;207.906000;0 +20260217 184600;207.907000;207.921000;207.892000;207.898000;0 +20260217 184700;207.899000;207.902000;207.890000;207.898000;0 +20260217 184800;207.900000;207.931000;207.891000;207.893000;0 +20260217 184900;207.893000;207.894000;207.713000;207.764000;0 +20260217 185000;207.765000;207.783000;207.704000;207.743000;0 +20260217 185100;207.730000;207.794000;207.726000;207.768000;0 +20260217 185200;207.769000;207.808000;207.769000;207.794000;0 +20260217 185300;207.794000;207.800000;207.769000;207.797000;0 +20260217 185400;207.796000;207.798000;207.777000;207.781000;0 +20260217 185500;207.781000;207.794000;207.746000;207.777000;0 +20260217 185600;207.773000;207.782000;207.762000;207.781000;0 +20260217 185700;207.781000;207.796000;207.739000;207.745000;0 +20260217 185800;207.745000;207.755000;207.704000;207.708000;0 +20260217 185900;207.708000;207.708000;207.675000;207.684000;0 +20260217 190000;207.683000;207.699000;207.650000;207.656000;0 +20260217 190100;207.651000;207.693000;207.642000;207.647000;0 +20260217 190200;207.655000;207.700000;207.639000;207.700000;0 +20260217 190300;207.699000;207.733000;207.678000;207.697000;0 +20260217 190400;207.698000;207.727000;207.667000;207.683000;0 +20260217 190500;207.684000;207.731000;207.674000;207.725000;0 +20260217 190600;207.724000;207.727000;207.681000;207.684000;0 +20260217 190700;207.684000;207.750000;207.683000;207.746000;0 +20260217 190800;207.740000;207.755000;207.732000;207.742000;0 +20260217 190900;207.742000;207.743000;207.705000;207.722000;0 +20260217 191000;207.719000;207.730000;207.671000;207.684000;0 +20260217 191100;207.684000;207.707000;207.660000;207.678000;0 +20260217 191200;207.684000;207.731000;207.681000;207.727000;0 +20260217 191300;207.730000;207.767000;207.729000;207.751000;0 +20260217 191400;207.749000;207.791000;207.749000;207.788000;0 +20260217 191500;207.793000;207.811000;207.773000;207.781000;0 +20260217 191600;207.786000;207.833000;207.781000;207.819000;0 +20260217 191700;207.819000;207.852000;207.808000;207.841000;0 +20260217 191800;207.843000;207.848000;207.832000;207.839000;0 +20260217 191900;207.839000;207.866000;207.822000;207.863000;0 +20260217 192000;207.864000;207.888000;207.859000;207.868000;0 +20260217 192100;207.872000;207.911000;207.862000;207.867000;0 +20260217 192200;207.870000;207.914000;207.869000;207.914000;0 +20260217 192300;207.909000;207.919000;207.891000;207.913000;0 +20260217 192400;207.914000;207.918000;207.883000;207.912000;0 +20260217 192500;207.910000;207.917000;207.857000;207.864000;0 +20260217 192600;207.865000;207.865000;207.826000;207.827000;0 +20260217 192700;207.825000;207.836000;207.817000;207.817000;0 +20260217 192800;207.819000;207.825000;207.800000;207.806000;0 +20260217 192900;207.813000;207.852000;207.812000;207.846000;0 +20260217 193000;207.846000;207.846000;207.800000;207.807000;0 +20260217 193100;207.810000;207.815000;207.768000;207.783000;0 +20260217 193200;207.780000;207.784000;207.751000;207.756000;0 +20260217 193300;207.753000;207.779000;207.751000;207.767000;0 +20260217 193400;207.771000;207.783000;207.717000;207.728000;0 +20260217 193500;207.729000;207.758000;207.729000;207.736000;0 +20260217 193600;207.731000;207.778000;207.729000;207.761000;0 +20260217 193700;207.763000;207.782000;207.743000;207.753000;0 +20260217 193800;207.752000;207.773000;207.739000;207.760000;0 +20260217 193900;207.756000;207.767000;207.754000;207.754000;0 +20260217 194000;207.757000;207.761000;207.741000;207.744000;0 +20260217 194100;207.743000;207.746000;207.704000;207.708000;0 +20260217 194200;207.709000;207.718000;207.700000;207.704000;0 +20260217 194300;207.701000;207.713000;207.698000;207.705000;0 +20260217 194400;207.707000;207.730000;207.703000;207.728000;0 +20260217 194500;207.733000;207.733000;207.666000;207.681000;0 +20260217 194600;207.679000;207.679000;207.656000;207.656000;0 +20260217 194700;207.658000;207.672000;207.653000;207.665000;0 +20260217 194800;207.666000;207.703000;207.665000;207.689000;0 +20260217 194900;207.688000;207.689000;207.660000;207.668000;0 +20260217 195000;207.670000;207.706000;207.664000;207.691000;0 +20260217 195100;207.694000;207.705000;207.666000;207.679000;0 +20260217 195200;207.678000;207.678000;207.617000;207.643000;0 +20260217 195300;207.640000;207.688000;207.634000;207.687000;0 +20260217 195400;207.686000;207.783000;207.685000;207.764000;0 +20260217 195500;207.765000;207.817000;207.758000;207.797000;0 +20260217 195600;207.790000;207.809000;207.778000;207.794000;0 +20260217 195700;207.791000;207.852000;207.785000;207.841000;0 +20260217 195800;207.832000;207.832000;207.818000;207.829000;0 +20260217 195900;207.832000;207.834000;207.786000;207.806000;0 +20260217 200000;207.804000;207.827000;207.782000;207.827000;0 +20260217 200100;207.824000;207.841000;207.780000;207.839000;0 +20260217 200200;207.839000;207.870000;207.813000;207.813000;0 +20260217 200300;207.815000;207.854000;207.809000;207.814000;0 +20260217 200400;207.813000;207.815000;207.796000;207.812000;0 +20260217 200500;207.811000;207.819000;207.793000;207.819000;0 +20260217 200600;207.818000;207.847000;207.812000;207.829000;0 +20260217 200700;207.827000;207.845000;207.816000;207.833000;0 +20260217 200800;207.834000;207.844000;207.811000;207.811000;0 +20260217 200900;207.813000;207.822000;207.765000;207.800000;0 +20260217 201000;207.798000;207.801000;207.774000;207.801000;0 +20260217 201100;207.799000;207.865000;207.799000;207.865000;0 +20260217 201200;207.862000;207.879000;207.849000;207.873000;0 +20260217 201300;207.875000;207.888000;207.865000;207.884000;0 +20260217 201400;207.883000;207.891000;207.873000;207.887000;0 +20260217 201500;207.888000;207.912000;207.888000;207.910000;0 +20260217 201600;207.908000;207.929000;207.889000;207.924000;0 +20260217 201700;207.925000;207.927000;207.900000;207.921000;0 +20260217 201800;207.920000;207.931000;207.913000;207.918000;0 +20260217 201900;207.920000;207.964000;207.919000;207.956000;0 +20260217 202000;207.952000;207.988000;207.951000;207.976000;0 +20260217 202100;207.979000;207.986000;207.947000;207.966000;0 +20260217 202200;207.971000;207.983000;207.946000;207.954000;0 +20260217 202300;207.955000;207.976000;207.949000;207.961000;0 +20260217 202400;207.964000;207.964000;207.921000;207.927000;0 +20260217 202500;207.925000;207.935000;207.895000;207.897000;0 +20260217 202600;207.897000;207.907000;207.874000;207.895000;0 +20260217 202700;207.900000;207.907000;207.879000;207.903000;0 +20260217 202800;207.903000;207.913000;207.873000;207.873000;0 +20260217 202900;207.877000;207.895000;207.871000;207.888000;0 +20260217 203000;207.890000;207.910000;207.890000;207.907000;0 +20260217 203100;207.901000;207.928000;207.898000;207.921000;0 +20260217 203200;207.922000;207.953000;207.909000;207.953000;0 +20260217 203300;207.945000;207.945000;207.920000;207.924000;0 +20260217 203400;207.921000;207.933000;207.907000;207.932000;0 +20260217 203500;207.937000;207.943000;207.935000;207.938000;0 +20260217 203600;207.942000;207.949000;207.930000;207.930000;0 +20260217 203700;207.930000;207.970000;207.930000;207.970000;0 +20260217 203800;207.969000;207.972000;207.946000;207.954000;0 +20260217 203900;207.957000;207.988000;207.957000;207.987000;0 +20260217 204000;207.987000;207.993000;207.978000;207.985000;0 +20260217 204100;207.986000;207.997000;207.981000;207.987000;0 +20260217 204200;207.986000;207.993000;207.965000;207.990000;0 +20260217 204300;207.993000;208.021000;207.988000;208.019000;0 +20260217 204400;208.015000;208.035000;208.008000;208.023000;0 +20260217 204500;208.022000;208.029000;208.013000;208.015000;0 +20260217 204600;208.017000;208.020000;208.003000;208.017000;0 +20260217 204700;208.015000;208.018000;207.991000;207.993000;0 +20260217 204800;207.994000;208.016000;207.990000;208.006000;0 +20260217 204900;208.004000;208.012000;208.002000;208.004000;0 +20260217 205000;208.000000;208.017000;207.997000;208.005000;0 +20260217 205100;208.003000;208.029000;208.001000;208.011000;0 +20260217 205200;208.008000;208.032000;207.995000;208.025000;0 +20260217 205300;208.026000;208.028000;207.991000;208.021000;0 +20260217 205400;208.023000;208.037000;208.013000;208.016000;0 +20260217 205500;208.014000;208.031000;208.002000;208.004000;0 +20260217 205600;208.003000;208.012000;207.993000;208.010000;0 +20260217 205700;208.008000;208.045000;207.990000;207.999000;0 +20260217 205800;208.002000;208.024000;207.998000;208.020000;0 +20260217 205900;208.022000;208.047000;208.022000;208.044000;0 +20260217 210000;208.045000;208.081000;208.014000;208.026000;0 +20260217 210100;208.022000;208.046000;208.016000;208.020000;0 +20260217 210200;208.016000;208.038000;208.008000;208.033000;0 +20260217 210300;208.034000;208.035000;208.029000;208.031000;0 +20260217 210400;208.038000;208.053000;208.032000;208.043000;0 +20260217 210500;208.044000;208.102000;208.043000;208.077000;0 +20260217 210600;208.077000;208.113000;208.071000;208.098000;0 +20260217 210700;208.109000;208.185000;208.109000;208.183000;0 +20260217 210800;208.183000;208.185000;208.153000;208.179000;0 +20260217 210900;208.181000;208.189000;208.156000;208.166000;0 +20260217 211000;208.166000;208.181000;208.162000;208.176000;0 +20260217 211100;208.179000;208.183000;208.164000;208.166000;0 +20260217 211200;208.167000;208.177000;208.162000;208.176000;0 +20260217 211300;208.177000;208.181000;208.153000;208.153000;0 +20260217 211400;208.153000;208.168000;208.145000;208.161000;0 +20260217 211500;208.161000;208.162000;208.145000;208.149000;0 +20260217 211600;208.149000;208.183000;208.149000;208.183000;0 +20260217 211700;208.183000;208.221000;208.181000;208.219000;0 +20260217 211800;208.228000;208.258000;208.216000;208.251000;0 +20260217 211900;208.248000;208.282000;208.229000;208.255000;0 +20260217 212000;208.253000;208.280000;208.239000;208.277000;0 +20260217 212100;208.274000;208.313000;208.274000;208.308000;0 +20260217 212200;208.305000;208.309000;208.251000;208.274000;0 +20260217 212300;208.276000;208.276000;208.246000;208.250000;0 +20260217 212400;208.252000;208.268000;208.246000;208.256000;0 +20260217 212500;208.251000;208.251000;208.226000;208.229000;0 +20260217 212600;208.227000;208.242000;208.223000;208.232000;0 +20260217 212700;208.243000;208.284000;208.243000;208.279000;0 +20260217 212800;208.281000;208.290000;208.271000;208.275000;0 +20260217 212900;208.278000;208.278000;208.264000;208.269000;0 +20260217 213000;208.269000;208.273000;208.262000;208.266000;0 +20260217 213100;208.264000;208.285000;208.264000;208.275000;0 +20260217 213200;208.278000;208.295000;208.275000;208.292000;0 +20260217 213300;208.294000;208.299000;208.262000;208.267000;0 +20260217 213400;208.263000;208.266000;208.232000;208.242000;0 +20260217 213500;208.243000;208.244000;208.239000;208.241000;0 +20260217 213600;208.235000;208.257000;208.232000;208.249000;0 +20260217 213700;208.248000;208.248000;208.234000;208.244000;0 +20260217 213800;208.244000;208.257000;208.240000;208.250000;0 +20260217 213900;208.252000;208.256000;208.236000;208.237000;0 +20260217 214000;208.234000;208.248000;208.207000;208.207000;0 +20260217 214100;208.206000;208.207000;208.182000;208.207000;0 +20260217 214200;208.204000;208.213000;208.195000;208.197000;0 +20260217 214300;208.193000;208.224000;208.192000;208.220000;0 +20260217 214400;208.221000;208.231000;208.216000;208.216000;0 +20260217 214500;208.220000;208.234000;208.217000;208.226000;0 +20260217 214600;208.227000;208.227000;208.210000;208.221000;0 +20260217 214700;208.218000;208.221000;208.197000;208.207000;0 +20260217 214800;208.207000;208.210000;208.180000;208.186000;0 +20260217 214900;208.186000;208.186000;208.154000;208.162000;0 +20260217 215000;208.161000;208.161000;208.121000;208.125000;0 +20260217 215100;208.122000;208.135000;208.115000;208.135000;0 +20260217 215200;208.136000;208.148000;208.131000;208.144000;0 +20260217 215300;208.145000;208.154000;208.140000;208.142000;0 +20260217 215400;208.140000;208.145000;208.125000;208.125000;0 +20260217 215500;208.126000;208.137000;208.118000;208.125000;0 +20260217 215600;208.126000;208.146000;208.124000;208.135000;0 +20260217 215700;208.134000;208.134000;208.061000;208.074000;0 +20260217 215800;208.076000;208.093000;208.075000;208.075000;0 +20260217 215900;208.085000;208.090000;208.075000;208.083000;0 +20260217 220000;208.085000;208.094000;208.057000;208.074000;0 +20260217 220100;208.074000;208.079000;208.051000;208.062000;0 +20260217 220200;208.067000;208.070000;208.047000;208.062000;0 +20260217 220300;208.062000;208.068000;208.046000;208.048000;0 +20260217 220400;208.047000;208.064000;208.040000;208.053000;0 +20260217 220500;208.054000;208.095000;208.054000;208.092000;0 +20260217 220600;208.091000;208.091000;208.076000;208.084000;0 +20260217 220700;208.084000;208.087000;208.076000;208.082000;0 +20260217 220800;208.080000;208.093000;208.078000;208.088000;0 +20260217 220900;208.086000;208.094000;208.086000;208.091000;0 +20260217 221000;208.087000;208.087000;208.080000;208.080000;0 +20260217 221100;208.081000;208.087000;208.079000;208.084000;0 +20260217 221200;208.083000;208.100000;208.074000;208.080000;0 +20260217 221300;208.081000;208.082000;208.079000;208.081000;0 +20260217 221400;208.082000;208.097000;208.081000;208.089000;0 +20260217 221500;208.091000;208.109000;208.091000;208.108000;0 +20260217 221600;208.109000;208.123000;208.109000;208.109000;0 +20260217 221700;208.108000;208.141000;208.108000;208.127000;0 +20260217 221800;208.128000;208.145000;208.127000;208.144000;0 +20260217 221900;208.142000;208.192000;208.142000;208.170000;0 +20260217 222000;208.174000;208.188000;208.165000;208.178000;0 +20260217 222100;208.179000;208.190000;208.168000;208.169000;0 +20260217 222200;208.168000;208.170000;208.151000;208.152000;0 +20260217 222300;208.156000;208.165000;208.145000;208.154000;0 +20260217 222400;208.156000;208.156000;208.146000;208.148000;0 +20260217 222500;208.149000;208.161000;208.149000;208.155000;0 +20260217 222600;208.163000;208.193000;208.144000;208.148000;0 +20260217 222700;208.145000;208.147000;208.090000;208.099000;0 +20260217 222800;208.099000;208.115000;208.099000;208.111000;0 +20260217 222900;208.113000;208.124000;208.106000;208.112000;0 +20260217 223000;208.113000;208.128000;208.102000;208.119000;0 +20260217 223100;208.121000;208.155000;208.121000;208.154000;0 +20260217 223200;208.149000;208.162000;208.104000;208.104000;0 +20260217 223300;208.103000;208.104000;208.078000;208.099000;0 +20260217 223400;208.101000;208.107000;208.098000;208.099000;0 +20260217 223500;208.110000;208.137000;208.110000;208.131000;0 +20260217 223600;208.127000;208.127000;208.106000;208.126000;0 +20260217 223700;208.124000;208.124000;208.067000;208.081000;0 +20260217 223800;208.082000;208.082000;208.059000;208.060000;0 +20260217 223900;208.054000;208.058000;208.042000;208.052000;0 +20260217 224000;208.052000;208.063000;208.036000;208.056000;0 +20260217 224100;208.058000;208.059000;208.030000;208.039000;0 +20260217 224200;208.040000;208.072000;208.040000;208.068000;0 +20260217 224300;208.066000;208.088000;208.065000;208.075000;0 +20260217 224400;208.073000;208.085000;208.069000;208.076000;0 +20260217 224500;208.072000;208.092000;208.072000;208.089000;0 +20260217 224600;208.086000;208.089000;208.058000;208.058000;0 +20260217 224700;208.057000;208.099000;208.055000;208.098000;0 +20260217 224800;208.100000;208.117000;208.085000;208.117000;0 +20260217 224900;208.116000;208.116000;208.103000;208.109000;0 +20260217 225000;208.115000;208.132000;208.115000;208.132000;0 +20260217 225100;208.123000;208.123000;208.093000;208.112000;0 +20260217 225200;208.110000;208.116000;208.100000;208.109000;0 +20260217 225300;208.110000;208.141000;208.110000;208.136000;0 +20260217 225400;208.134000;208.178000;208.125000;208.177000;0 +20260217 225500;208.176000;208.182000;208.150000;208.175000;0 +20260217 225600;208.175000;208.178000;208.154000;208.165000;0 +20260217 225700;208.164000;208.180000;208.157000;208.175000;0 +20260217 225800;208.179000;208.181000;208.164000;208.175000;0 +20260217 225900;208.177000;208.183000;208.170000;208.175000;0 +20260217 230000;208.174000;208.195000;208.172000;208.186000;0 +20260217 230100;208.185000;208.185000;208.124000;208.146000;0 +20260217 230200;208.141000;208.169000;208.135000;208.146000;0 +20260217 230300;208.147000;208.162000;208.142000;208.144000;0 +20260217 230400;208.145000;208.156000;208.118000;208.118000;0 +20260217 230500;208.122000;208.132000;208.117000;208.127000;0 +20260217 230600;208.130000;208.135000;208.116000;208.130000;0 +20260217 230700;208.131000;208.139000;208.114000;208.133000;0 +20260217 230800;208.131000;208.147000;208.118000;208.134000;0 +20260217 230900;208.135000;208.157000;208.134000;208.142000;0 +20260217 231000;208.141000;208.146000;208.133000;208.137000;0 +20260217 231100;208.138000;208.149000;208.138000;208.143000;0 +20260217 231200;208.144000;208.150000;208.137000;208.148000;0 +20260217 231300;208.144000;208.144000;208.108000;208.117000;0 +20260217 231400;208.119000;208.119000;208.099000;208.099000;0 +20260217 231500;208.101000;208.121000;208.099000;208.117000;0 +20260217 231600;208.118000;208.118000;208.104000;208.105000;0 +20260217 231700;208.104000;208.107000;208.093000;208.104000;0 +20260217 231800;208.105000;208.105000;208.092000;208.104000;0 +20260217 231900;208.103000;208.108000;208.091000;208.097000;0 +20260217 232000;208.107000;208.119000;208.107000;208.117000;0 +20260217 232100;208.109000;208.113000;208.099000;208.102000;0 +20260217 232200;208.102000;208.105000;208.087000;208.095000;0 +20260217 232300;208.095000;208.121000;208.094000;208.118000;0 +20260217 232400;208.120000;208.145000;208.120000;208.130000;0 +20260217 232500;208.128000;208.148000;208.126000;208.145000;0 +20260217 232600;208.143000;208.155000;208.125000;208.125000;0 +20260217 232700;208.124000;208.132000;208.117000;208.129000;0 +20260217 232800;208.128000;208.130000;208.102000;208.102000;0 +20260217 232900;208.104000;208.131000;208.104000;208.131000;0 +20260217 233000;208.140000;208.157000;208.140000;208.157000;0 +20260217 233100;208.158000;208.168000;208.134000;208.135000;0 +20260217 233200;208.132000;208.159000;208.126000;208.158000;0 +20260217 233300;208.153000;208.160000;208.129000;208.131000;0 +20260217 233400;208.133000;208.152000;208.112000;208.121000;0 +20260217 233500;208.118000;208.144000;208.110000;208.142000;0 +20260217 233600;208.145000;208.150000;208.141000;208.148000;0 +20260217 233700;208.146000;208.169000;208.140000;208.158000;0 +20260217 233800;208.150000;208.159000;208.119000;208.120000;0 +20260217 233900;208.122000;208.149000;208.103000;208.132000;0 +20260217 234000;208.133000;208.138000;208.120000;208.138000;0 +20260217 234100;208.135000;208.139000;208.113000;208.118000;0 +20260217 234200;208.116000;208.139000;208.110000;208.138000;0 +20260217 234300;208.137000;208.143000;208.126000;208.128000;0 +20260217 234400;208.129000;208.147000;208.128000;208.140000;0 +20260217 234500;208.135000;208.135000;208.130000;208.133000;0 +20260217 234600;208.132000;208.146000;208.120000;208.125000;0 +20260217 234700;208.124000;208.127000;208.113000;208.127000;0 +20260217 234800;208.125000;208.129000;208.122000;208.129000;0 +20260217 234900;208.128000;208.148000;208.114000;208.138000;0 +20260217 235000;208.139000;208.168000;208.139000;208.162000;0 +20260217 235100;208.162000;208.167000;208.144000;208.148000;0 +20260217 235200;208.148000;208.166000;208.143000;208.164000;0 +20260217 235300;208.162000;208.176000;208.162000;208.174000;0 +20260217 235400;208.173000;208.188000;208.172000;208.176000;0 +20260217 235500;208.177000;208.178000;208.164000;208.169000;0 +20260217 235600;208.173000;208.175000;208.149000;208.157000;0 +20260217 235700;208.154000;208.168000;208.152000;208.163000;0 +20260217 235800;208.163000;208.181000;208.161000;208.180000;0 +20260217 235900;208.182000;208.182000;208.171000;208.176000;0 +20260218 000000;208.178000;208.189000;208.175000;208.177000;0 +20260218 000100;208.179000;208.179000;208.164000;208.175000;0 +20260218 000200;208.172000;208.178000;208.165000;208.178000;0 +20260218 000300;208.179000;208.200000;208.179000;208.192000;0 +20260218 000400;208.191000;208.208000;208.191000;208.203000;0 +20260218 000500;208.201000;208.203000;208.195000;208.196000;0 +20260218 000600;208.194000;208.221000;208.194000;208.220000;0 +20260218 000700;208.223000;208.225000;208.215000;208.221000;0 +20260218 000800;208.221000;208.229000;208.215000;208.229000;0 +20260218 000900;208.230000;208.234000;208.219000;208.220000;0 +20260218 001000;208.219000;208.220000;208.213000;208.218000;0 +20260218 001100;208.218000;208.218000;208.209000;208.214000;0 +20260218 001200;208.212000;208.215000;208.205000;208.214000;0 +20260218 001300;208.211000;208.211000;208.174000;208.177000;0 +20260218 001400;208.176000;208.187000;208.176000;208.181000;0 +20260218 001500;208.182000;208.191000;208.166000;208.186000;0 +20260218 001600;208.184000;208.195000;208.159000;208.159000;0 +20260218 001700;208.160000;208.165000;208.159000;208.163000;0 +20260218 001800;208.165000;208.192000;208.163000;208.190000;0 +20260218 001900;208.181000;208.188000;208.178000;208.187000;0 +20260218 002000;208.184000;208.189000;208.174000;208.178000;0 +20260218 002100;208.177000;208.192000;208.174000;208.179000;0 +20260218 002200;208.181000;208.182000;208.136000;208.142000;0 +20260218 002300;208.142000;208.145000;208.131000;208.143000;0 +20260218 002400;208.144000;208.145000;208.141000;208.141000;0 +20260218 002500;208.143000;208.150000;208.133000;208.150000;0 +20260218 002600;208.161000;208.161000;208.148000;208.159000;0 +20260218 002700;208.161000;208.165000;208.159000;208.161000;0 +20260218 002800;208.160000;208.160000;208.136000;208.151000;0 +20260218 002900;208.149000;208.167000;208.149000;208.164000;0 +20260218 003000;208.162000;208.172000;208.162000;208.164000;0 +20260218 003100;208.166000;208.174000;208.156000;208.161000;0 +20260218 003200;208.159000;208.165000;208.150000;208.161000;0 +20260218 003300;208.162000;208.182000;208.162000;208.182000;0 +20260218 003400;208.187000;208.200000;208.180000;208.197000;0 +20260218 003500;208.194000;208.203000;208.192000;208.197000;0 +20260218 003600;208.197000;208.228000;208.191000;208.228000;0 +20260218 003700;208.229000;208.233000;208.221000;208.224000;0 +20260218 003800;208.226000;208.226000;208.189000;208.206000;0 +20260218 003900;208.207000;208.227000;208.206000;208.223000;0 +20260218 004000;208.222000;208.226000;208.212000;208.215000;0 +20260218 004100;208.214000;208.226000;208.182000;208.182000;0 +20260218 004200;208.184000;208.215000;208.184000;208.215000;0 +20260218 004300;208.214000;208.222000;208.209000;208.211000;0 +20260218 004400;208.211000;208.211000;208.194000;208.197000;0 +20260218 004500;208.195000;208.200000;208.192000;208.197000;0 +20260218 004600;208.194000;208.199000;208.163000;208.195000;0 +20260218 004700;208.196000;208.201000;208.194000;208.194000;0 +20260218 004800;208.191000;208.193000;208.182000;208.190000;0 +20260218 004900;208.190000;208.192000;208.163000;208.171000;0 +20260218 005000;208.168000;208.178000;208.159000;208.176000;0 +20260218 005100;208.176000;208.178000;208.156000;208.158000;0 +20260218 005200;208.156000;208.156000;208.147000;208.151000;0 +20260218 005300;208.154000;208.154000;208.128000;208.132000;0 +20260218 005400;208.132000;208.132000;208.119000;208.123000;0 +20260218 005500;208.127000;208.127000;208.105000;208.115000;0 +20260218 005600;208.119000;208.127000;208.088000;208.101000;0 +20260218 005700;208.107000;208.107000;208.070000;208.070000;0 +20260218 005800;208.069000;208.083000;208.063000;208.070000;0 +20260218 005900;208.072000;208.083000;208.057000;208.067000;0 +20260218 010000;208.067000;208.107000;208.066000;208.101000;0 +20260218 010100;208.102000;208.105000;208.069000;208.073000;0 +20260218 010200;208.072000;208.094000;208.062000;208.091000;0 +20260218 010300;208.092000;208.119000;208.092000;208.113000;0 +20260218 010400;208.115000;208.118000;208.084000;208.094000;0 +20260218 010500;208.092000;208.114000;208.083000;208.114000;0 +20260218 010600;208.108000;208.108000;208.089000;208.093000;0 +20260218 010700;208.088000;208.088000;208.062000;208.066000;0 +20260218 010800;208.065000;208.073000;208.065000;208.071000;0 +20260218 010900;208.064000;208.064000;208.037000;208.040000;0 +20260218 011000;208.042000;208.068000;208.039000;208.066000;0 +20260218 011100;208.067000;208.099000;208.067000;208.095000;0 +20260218 011200;208.092000;208.095000;208.077000;208.081000;0 +20260218 011300;208.080000;208.081000;208.025000;208.042000;0 +20260218 011400;208.040000;208.051000;208.034000;208.039000;0 +20260218 011500;208.039000;208.066000;208.025000;208.040000;0 +20260218 011600;208.039000;208.048000;208.034000;208.038000;0 +20260218 011700;208.040000;208.042000;208.035000;208.037000;0 +20260218 011800;208.032000;208.038000;208.012000;208.015000;0 +20260218 011900;208.015000;208.017000;208.001000;208.006000;0 +20260218 012000;208.007000;208.039000;208.003000;208.024000;0 +20260218 012100;208.025000;208.028000;208.003000;208.010000;0 +20260218 012200;208.009000;208.026000;208.009000;208.018000;0 +20260218 012300;208.016000;208.029000;207.999000;208.013000;0 +20260218 012400;208.012000;208.026000;208.012000;208.015000;0 +20260218 012500;208.013000;208.031000;208.011000;208.018000;0 +20260218 012600;208.020000;208.020000;207.992000;207.994000;0 +20260218 012700;207.992000;207.996000;207.978000;207.993000;0 +20260218 012800;207.992000;208.021000;207.980000;208.018000;0 +20260218 012900;208.017000;208.032000;208.006000;208.025000;0 +20260218 013000;208.023000;208.031000;207.996000;208.031000;0 +20260218 013100;208.028000;208.053000;208.028000;208.036000;0 +20260218 013200;208.046000;208.091000;208.042000;208.091000;0 +20260218 013300;208.091000;208.093000;208.042000;208.063000;0 +20260218 013400;208.062000;208.081000;208.047000;208.081000;0 +20260218 013500;208.081000;208.086000;208.078000;208.082000;0 +20260218 013600;208.084000;208.095000;208.079000;208.087000;0 +20260218 013700;208.095000;208.100000;208.075000;208.086000;0 +20260218 013800;208.088000;208.102000;208.067000;208.102000;0 +20260218 013900;208.101000;208.101000;208.045000;208.053000;0 +20260218 014000;208.054000;208.054000;208.011000;208.017000;0 +20260218 014100;208.017000;208.057000;208.017000;208.051000;0 +20260218 014200;208.049000;208.055000;208.030000;208.052000;0 +20260218 014300;208.051000;208.052000;208.044000;208.051000;0 +20260218 014400;208.043000;208.043000;208.025000;208.042000;0 +20260218 014500;208.044000;208.062000;208.038000;208.038000;0 +20260218 014600;208.039000;208.044000;208.023000;208.038000;0 +20260218 014700;208.040000;208.047000;208.035000;208.047000;0 +20260218 014800;208.042000;208.051000;208.032000;208.049000;0 +20260218 014900;208.049000;208.058000;208.016000;208.016000;0 +20260218 015000;208.017000;208.018000;207.993000;208.003000;0 +20260218 015100;208.002000;208.030000;208.001000;208.016000;0 +20260218 015200;208.017000;208.039000;208.017000;208.038000;0 +20260218 015300;208.041000;208.052000;208.036000;208.047000;0 +20260218 015400;208.048000;208.055000;208.038000;208.041000;0 +20260218 015500;208.041000;208.050000;208.037000;208.042000;0 +20260218 015600;208.046000;208.063000;208.046000;208.057000;0 +20260218 015700;208.058000;208.071000;208.054000;208.065000;0 +20260218 015800;208.077000;208.100000;208.069000;208.097000;0 +20260218 015900;208.097000;208.128000;208.090000;208.091000;0 +20260218 020000;208.090000;208.298000;207.998000;208.123000;0 +20260218 020100;208.124000;208.124000;208.028000;208.085000;0 +20260218 020200;208.084000;208.185000;208.061000;208.167000;0 +20260218 020300;208.169000;208.198000;208.140000;208.177000;0 +20260218 020400;208.174000;208.185000;208.157000;208.171000;0 +20260218 020500;208.175000;208.181000;208.148000;208.150000;0 +20260218 020600;208.150000;208.150000;208.111000;208.115000;0 +20260218 020700;208.113000;208.135000;208.085000;208.122000;0 +20260218 020800;208.121000;208.146000;208.107000;208.146000;0 +20260218 020900;208.136000;208.146000;208.109000;208.109000;0 +20260218 021000;208.108000;208.165000;208.101000;208.163000;0 +20260218 021100;208.164000;208.166000;208.147000;208.157000;0 +20260218 021200;208.158000;208.158000;208.126000;208.139000;0 +20260218 021300;208.136000;208.144000;208.122000;208.136000;0 +20260218 021400;208.135000;208.163000;208.121000;208.150000;0 +20260218 021500;208.149000;208.168000;208.141000;208.143000;0 +20260218 021600;208.143000;208.203000;208.139000;208.201000;0 +20260218 021700;208.200000;208.208000;208.181000;208.188000;0 +20260218 021800;208.189000;208.199000;208.174000;208.191000;0 +20260218 021900;208.190000;208.197000;208.170000;208.197000;0 +20260218 022000;208.195000;208.213000;208.181000;208.190000;0 +20260218 022100;208.193000;208.209000;208.182000;208.205000;0 +20260218 022200;208.205000;208.222000;208.189000;208.206000;0 +20260218 022300;208.208000;208.227000;208.199000;208.204000;0 +20260218 022400;208.202000;208.205000;208.186000;208.189000;0 +20260218 022500;208.190000;208.193000;208.181000;208.190000;0 +20260218 022600;208.188000;208.189000;208.154000;208.154000;0 +20260218 022700;208.152000;208.179000;208.149000;208.167000;0 +20260218 022800;208.167000;208.202000;208.166000;208.193000;0 +20260218 022900;208.192000;208.224000;208.185000;208.221000;0 +20260218 023000;208.221000;208.226000;208.189000;208.192000;0 +20260218 023100;208.190000;208.233000;208.190000;208.229000;0 +20260218 023200;208.243000;208.271000;208.230000;208.268000;0 +20260218 023300;208.267000;208.276000;208.258000;208.267000;0 +20260218 023400;208.269000;208.325000;208.269000;208.321000;0 +20260218 023500;208.316000;208.329000;208.297000;208.301000;0 +20260218 023600;208.299000;208.304000;208.268000;208.294000;0 +20260218 023700;208.293000;208.293000;208.250000;208.251000;0 +20260218 023800;208.252000;208.274000;208.232000;208.267000;0 +20260218 023900;208.265000;208.283000;208.252000;208.278000;0 +20260218 024000;208.279000;208.310000;208.269000;208.280000;0 +20260218 024100;208.282000;208.309000;208.274000;208.298000;0 +20260218 024200;208.296000;208.309000;208.255000;208.265000;0 +20260218 024300;208.267000;208.279000;208.254000;208.265000;0 +20260218 024400;208.266000;208.348000;208.266000;208.324000;0 +20260218 024500;208.319000;208.387000;208.319000;208.348000;0 +20260218 024600;208.355000;208.370000;208.329000;208.333000;0 +20260218 024700;208.326000;208.345000;208.311000;208.338000;0 +20260218 024800;208.332000;208.343000;208.315000;208.318000;0 +20260218 024900;208.319000;208.324000;208.293000;208.319000;0 +20260218 025000;208.321000;208.321000;208.287000;208.298000;0 +20260218 025100;208.299000;208.318000;208.279000;208.313000;0 +20260218 025200;208.308000;208.336000;208.304000;208.333000;0 +20260218 025300;208.336000;208.358000;208.321000;208.353000;0 +20260218 025400;208.354000;208.411000;208.341000;208.360000;0 +20260218 025500;208.358000;208.396000;208.344000;208.394000;0 +20260218 025600;208.393000;208.448000;208.392000;208.440000;0 +20260218 025700;208.431000;208.434000;208.372000;208.376000;0 +20260218 025800;208.379000;208.396000;208.369000;208.386000;0 +20260218 025900;208.388000;208.397000;208.371000;208.396000;0 +20260218 030000;208.398000;208.476000;208.389000;208.465000;0 +20260218 030100;208.468000;208.496000;208.396000;208.484000;0 +20260218 030200;208.487000;208.487000;208.416000;208.440000;0 +20260218 030300;208.440000;208.448000;208.409000;208.430000;0 +20260218 030400;208.432000;208.476000;208.424000;208.464000;0 +20260218 030500;208.465000;208.478000;208.400000;208.400000;0 +20260218 030600;208.397000;208.439000;208.394000;208.428000;0 +20260218 030700;208.430000;208.450000;208.390000;208.393000;0 +20260218 030800;208.390000;208.408000;208.389000;208.402000;0 +20260218 030900;208.404000;208.410000;208.340000;208.345000;0 +20260218 031000;208.347000;208.359000;208.305000;208.329000;0 +20260218 031100;208.328000;208.339000;208.281000;208.309000;0 +20260218 031200;208.307000;208.337000;208.293000;208.332000;0 +20260218 031300;208.333000;208.340000;208.298000;208.305000;0 +20260218 031400;208.308000;208.340000;208.295000;208.297000;0 +20260218 031500;208.298000;208.366000;208.294000;208.364000;0 +20260218 031600;208.363000;208.434000;208.340000;208.433000;0 +20260218 031700;208.432000;208.442000;208.392000;208.399000;0 +20260218 031800;208.402000;208.402000;208.359000;208.359000;0 +20260218 031900;208.362000;208.398000;208.355000;208.392000;0 +20260218 032000;208.394000;208.425000;208.386000;208.424000;0 +20260218 032100;208.420000;208.423000;208.360000;208.381000;0 +20260218 032200;208.380000;208.404000;208.368000;208.401000;0 +20260218 032300;208.401000;208.402000;208.355000;208.371000;0 +20260218 032400;208.372000;208.377000;208.346000;208.364000;0 +20260218 032500;208.364000;208.390000;208.347000;208.390000;0 +20260218 032600;208.391000;208.446000;208.373000;208.398000;0 +20260218 032700;208.398000;208.398000;208.360000;208.361000;0 +20260218 032800;208.360000;208.366000;208.348000;208.359000;0 +20260218 032900;208.359000;208.385000;208.348000;208.384000;0 +20260218 033000;208.386000;208.424000;208.386000;208.419000;0 +20260218 033100;208.417000;208.423000;208.401000;208.422000;0 +20260218 033200;208.422000;208.428000;208.392000;208.397000;0 +20260218 033300;208.400000;208.425000;208.394000;208.425000;0 +20260218 033400;208.425000;208.435000;208.405000;208.430000;0 +20260218 033500;208.423000;208.424000;208.404000;208.423000;0 +20260218 033600;208.425000;208.467000;208.420000;208.464000;0 +20260218 033700;208.462000;208.464000;208.445000;208.450000;0 +20260218 033800;208.453000;208.469000;208.428000;208.469000;0 +20260218 033900;208.470000;208.491000;208.460000;208.470000;0 +20260218 034000;208.469000;208.481000;208.431000;208.448000;0 +20260218 034100;208.451000;208.497000;208.439000;208.486000;0 +20260218 034200;208.487000;208.499000;208.462000;208.467000;0 +20260218 034300;208.464000;208.482000;208.460000;208.480000;0 +20260218 034400;208.480000;208.515000;208.473000;208.505000;0 +20260218 034500;208.506000;208.560000;208.489000;208.499000;0 +20260218 034600;208.497000;208.497000;208.444000;208.448000;0 +20260218 034700;208.449000;208.491000;208.412000;208.490000;0 +20260218 034800;208.483000;208.511000;208.480000;208.511000;0 +20260218 034900;208.511000;208.556000;208.507000;208.528000;0 +20260218 035000;208.544000;208.553000;208.519000;208.550000;0 +20260218 035100;208.551000;208.555000;208.517000;208.533000;0 +20260218 035200;208.535000;208.548000;208.506000;208.515000;0 +20260218 035300;208.516000;208.554000;208.513000;208.517000;0 +20260218 035400;208.517000;208.526000;208.492000;208.506000;0 +20260218 035500;208.508000;208.528000;208.491000;208.522000;0 +20260218 035600;208.525000;208.550000;208.519000;208.522000;0 +20260218 035700;208.528000;208.566000;208.524000;208.552000;0 +20260218 035800;208.554000;208.569000;208.536000;208.538000;0 +20260218 035900;208.536000;208.563000;208.528000;208.530000;0 +20260218 040000;208.529000;208.553000;208.524000;208.530000;0 +20260218 040100;208.530000;208.559000;208.527000;208.559000;0 +20260218 040200;208.561000;208.588000;208.559000;208.586000;0 +20260218 040300;208.584000;208.584000;208.532000;208.537000;0 +20260218 040400;208.538000;208.573000;208.534000;208.563000;0 +20260218 040500;208.566000;208.613000;208.565000;208.598000;0 +20260218 040600;208.599000;208.625000;208.578000;208.594000;0 +20260218 040700;208.612000;208.617000;208.588000;208.597000;0 +20260218 040800;208.595000;208.603000;208.563000;208.592000;0 +20260218 040900;208.595000;208.609000;208.563000;208.572000;0 +20260218 041000;208.573000;208.594000;208.571000;208.586000;0 +20260218 041100;208.590000;208.593000;208.576000;208.585000;0 +20260218 041200;208.581000;208.609000;208.573000;208.604000;0 +20260218 041300;208.602000;208.635000;208.587000;208.623000;0 +20260218 041400;208.621000;208.624000;208.600000;208.615000;0 +20260218 041500;208.616000;208.617000;208.601000;208.603000;0 +20260218 041600;208.602000;208.606000;208.569000;208.605000;0 +20260218 041700;208.606000;208.620000;208.589000;208.590000;0 +20260218 041800;208.589000;208.602000;208.589000;208.595000;0 +20260218 041900;208.599000;208.628000;208.595000;208.623000;0 +20260218 042000;208.623000;208.658000;208.620000;208.658000;0 +20260218 042100;208.657000;208.657000;208.610000;208.610000;0 +20260218 042200;208.611000;208.637000;208.611000;208.633000;0 +20260218 042300;208.633000;208.642000;208.621000;208.625000;0 +20260218 042400;208.620000;208.638000;208.608000;208.623000;0 +20260218 042500;208.620000;208.624000;208.603000;208.603000;0 +20260218 042600;208.605000;208.621000;208.602000;208.602000;0 +20260218 042700;208.606000;208.618000;208.602000;208.602000;0 +20260218 042800;208.601000;208.616000;208.582000;208.583000;0 +20260218 042900;208.582000;208.592000;208.568000;208.576000;0 +20260218 043000;208.577000;208.618000;208.577000;208.599000;0 +20260218 043100;208.600000;208.616000;208.599000;208.608000;0 +20260218 043200;208.606000;208.606000;208.560000;208.570000;0 +20260218 043300;208.568000;208.602000;208.548000;208.589000;0 +20260218 043400;208.590000;208.590000;208.569000;208.581000;0 +20260218 043500;208.579000;208.590000;208.569000;208.576000;0 +20260218 043600;208.580000;208.589000;208.561000;208.571000;0 +20260218 043700;208.573000;208.580000;208.561000;208.574000;0 +20260218 043800;208.581000;208.585000;208.567000;208.577000;0 +20260218 043900;208.577000;208.600000;208.577000;208.592000;0 +20260218 044000;208.588000;208.609000;208.588000;208.596000;0 +20260218 044100;208.596000;208.670000;208.594000;208.637000;0 +20260218 044200;208.639000;208.674000;208.633000;208.661000;0 +20260218 044300;208.659000;208.672000;208.647000;208.648000;0 +20260218 044400;208.649000;208.649000;208.620000;208.620000;0 +20260218 044500;208.620000;208.638000;208.617000;208.634000;0 +20260218 044600;208.635000;208.659000;208.622000;208.658000;0 +20260218 044700;208.658000;208.659000;208.638000;208.645000;0 +20260218 044800;208.644000;208.649000;208.634000;208.638000;0 +20260218 044900;208.639000;208.642000;208.610000;208.619000;0 +20260218 045000;208.621000;208.632000;208.601000;208.629000;0 +20260218 045100;208.627000;208.655000;208.613000;208.655000;0 +20260218 045200;208.653000;208.683000;208.651000;208.675000;0 +20260218 045300;208.673000;208.687000;208.668000;208.679000;0 +20260218 045400;208.678000;208.686000;208.673000;208.682000;0 +20260218 045500;208.680000;208.709000;208.680000;208.709000;0 +20260218 045600;208.710000;208.724000;208.700000;208.707000;0 +20260218 045700;208.710000;208.717000;208.699000;208.699000;0 +20260218 045800;208.699000;208.721000;208.667000;208.681000;0 +20260218 045900;208.682000;208.686000;208.667000;208.675000;0 +20260218 050000;208.675000;208.700000;208.668000;208.698000;0 +20260218 050100;208.698000;208.716000;208.687000;208.694000;0 +20260218 050200;208.684000;208.704000;208.665000;208.694000;0 +20260218 050300;208.694000;208.716000;208.691000;208.702000;0 +20260218 050400;208.705000;208.710000;208.682000;208.686000;0 +20260218 050500;208.689000;208.717000;208.686000;208.712000;0 +20260218 050600;208.711000;208.758000;208.700000;208.750000;0 +20260218 050700;208.752000;208.754000;208.716000;208.716000;0 +20260218 050800;208.715000;208.717000;208.701000;208.704000;0 +20260218 050900;208.699000;208.703000;208.698000;208.699000;0 +20260218 051000;208.700000;208.716000;208.698000;208.699000;0 +20260218 051100;208.701000;208.713000;208.691000;208.712000;0 +20260218 051200;208.711000;208.731000;208.703000;208.730000;0 +20260218 051300;208.730000;208.731000;208.721000;208.731000;0 +20260218 051400;208.728000;208.731000;208.692000;208.692000;0 +20260218 051500;208.692000;208.721000;208.692000;208.705000;0 +20260218 051600;208.703000;208.729000;208.699000;208.725000;0 +20260218 051700;208.722000;208.732000;208.719000;208.728000;0 +20260218 051800;208.728000;208.729000;208.713000;208.713000;0 +20260218 051900;208.717000;208.734000;208.717000;208.730000;0 +20260218 052000;208.729000;208.752000;208.728000;208.732000;0 +20260218 052100;208.731000;208.760000;208.731000;208.752000;0 +20260218 052200;208.751000;208.793000;208.749000;208.789000;0 +20260218 052300;208.791000;208.802000;208.776000;208.797000;0 +20260218 052400;208.798000;208.802000;208.792000;208.792000;0 +20260218 052500;208.794000;208.802000;208.792000;208.796000;0 +20260218 052600;208.792000;208.794000;208.751000;208.758000;0 +20260218 052700;208.760000;208.803000;208.754000;208.794000;0 +20260218 052800;208.794000;208.808000;208.794000;208.804000;0 +20260218 052900;208.798000;208.817000;208.798000;208.804000;0 +20260218 053000;208.802000;208.831000;208.798000;208.819000;0 +20260218 053100;208.820000;208.820000;208.793000;208.797000;0 +20260218 053200;208.793000;208.793000;208.744000;208.745000;0 +20260218 053300;208.744000;208.759000;208.736000;208.739000;0 +20260218 053400;208.743000;208.757000;208.727000;208.756000;0 +20260218 053500;208.755000;208.770000;208.731000;208.753000;0 +20260218 053600;208.752000;208.799000;208.748000;208.794000;0 +20260218 053700;208.789000;208.795000;208.753000;208.754000;0 +20260218 053800;208.752000;208.767000;208.722000;208.722000;0 +20260218 053900;208.723000;208.743000;208.722000;208.743000;0 +20260218 054000;208.745000;208.758000;208.735000;208.744000;0 +20260218 054100;208.744000;208.755000;208.732000;208.741000;0 +20260218 054200;208.744000;208.748000;208.718000;208.718000;0 +20260218 054300;208.721000;208.726000;208.695000;208.726000;0 +20260218 054400;208.730000;208.736000;208.714000;208.722000;0 +20260218 054500;208.724000;208.792000;208.724000;208.792000;0 +20260218 054600;208.794000;208.801000;208.770000;208.775000;0 +20260218 054700;208.774000;208.779000;208.762000;208.779000;0 +20260218 054800;208.780000;208.781000;208.764000;208.768000;0 +20260218 054900;208.770000;208.778000;208.766000;208.770000;0 +20260218 055000;208.770000;208.776000;208.743000;208.747000;0 +20260218 055100;208.745000;208.745000;208.710000;208.711000;0 +20260218 055200;208.712000;208.734000;208.712000;208.726000;0 +20260218 055300;208.725000;208.730000;208.710000;208.714000;0 +20260218 055400;208.713000;208.715000;208.697000;208.699000;0 +20260218 055500;208.699000;208.700000;208.649000;208.655000;0 +20260218 055600;208.654000;208.666000;208.652000;208.655000;0 +20260218 055700;208.660000;208.669000;208.641000;208.643000;0 +20260218 055800;208.645000;208.673000;208.645000;208.654000;0 +20260218 055900;208.657000;208.671000;208.654000;208.659000;0 +20260218 060000;208.658000;208.669000;208.650000;208.654000;0 +20260218 060100;208.657000;208.668000;208.654000;208.667000;0 +20260218 060200;208.669000;208.678000;208.655000;208.659000;0 +20260218 060300;208.658000;208.670000;208.655000;208.667000;0 +20260218 060400;208.667000;208.670000;208.657000;208.663000;0 +20260218 060500;208.669000;208.675000;208.653000;208.653000;0 +20260218 060600;208.654000;208.660000;208.636000;208.636000;0 +20260218 060700;208.632000;208.639000;208.592000;208.593000;0 +20260218 060800;208.593000;208.609000;208.590000;208.592000;0 +20260218 060900;208.589000;208.596000;208.574000;208.574000;0 +20260218 061000;208.577000;208.582000;208.563000;208.563000;0 +20260218 061100;208.565000;208.570000;208.542000;208.544000;0 +20260218 061200;208.544000;208.584000;208.541000;208.583000;0 +20260218 061300;208.583000;208.583000;208.564000;208.579000;0 +20260218 061400;208.578000;208.591000;208.574000;208.587000;0 +20260218 061500;208.589000;208.589000;208.570000;208.582000;0 +20260218 061600;208.583000;208.607000;208.579000;208.602000;0 +20260218 061700;208.597000;208.607000;208.567000;208.572000;0 +20260218 061800;208.570000;208.596000;208.567000;208.593000;0 +20260218 061900;208.589000;208.592000;208.573000;208.581000;0 +20260218 062000;208.582000;208.598000;208.573000;208.574000;0 +20260218 062100;208.573000;208.586000;208.563000;208.585000;0 +20260218 062200;208.585000;208.595000;208.577000;208.589000;0 +20260218 062300;208.591000;208.611000;208.584000;208.609000;0 +20260218 062400;208.608000;208.622000;208.607000;208.619000;0 +20260218 062500;208.634000;208.634000;208.598000;208.598000;0 +20260218 062600;208.598000;208.600000;208.556000;208.568000;0 +20260218 062700;208.568000;208.592000;208.568000;208.577000;0 +20260218 062800;208.576000;208.576000;208.548000;208.553000;0 +20260218 062900;208.553000;208.560000;208.543000;208.556000;0 +20260218 063000;208.556000;208.581000;208.552000;208.572000;0 +20260218 063100;208.570000;208.570000;208.552000;208.554000;0 +20260218 063200;208.554000;208.561000;208.533000;208.545000;0 +20260218 063300;208.548000;208.560000;208.545000;208.554000;0 +20260218 063400;208.556000;208.558000;208.527000;208.554000;0 +20260218 063500;208.553000;208.561000;208.540000;208.558000;0 +20260218 063600;208.560000;208.560000;208.548000;208.551000;0 +20260218 063700;208.548000;208.558000;208.545000;208.558000;0 +20260218 063800;208.560000;208.578000;208.558000;208.570000;0 +20260218 063900;208.570000;208.574000;208.558000;208.565000;0 +20260218 064000;208.561000;208.564000;208.551000;208.564000;0 +20260218 064100;208.566000;208.583000;208.566000;208.569000;0 +20260218 064200;208.569000;208.574000;208.551000;208.552000;0 +20260218 064300;208.551000;208.563000;208.537000;208.542000;0 +20260218 064400;208.546000;208.561000;208.542000;208.551000;0 +20260218 064500;208.549000;208.562000;208.549000;208.551000;0 +20260218 064600;208.550000;208.559000;208.540000;208.557000;0 +20260218 064700;208.560000;208.560000;208.550000;208.557000;0 +20260218 064800;208.555000;208.573000;208.555000;208.572000;0 +20260218 064900;208.570000;208.571000;208.560000;208.569000;0 +20260218 065000;208.567000;208.579000;208.554000;208.570000;0 +20260218 065100;208.570000;208.570000;208.564000;208.567000;0 +20260218 065200;208.569000;208.573000;208.566000;208.572000;0 +20260218 065300;208.572000;208.572000;208.546000;208.551000;0 +20260218 065400;208.552000;208.558000;208.540000;208.540000;0 +20260218 065500;208.542000;208.553000;208.533000;208.552000;0 +20260218 065600;208.553000;208.566000;208.540000;208.547000;0 +20260218 065700;208.560000;208.610000;208.558000;208.607000;0 +20260218 065800;208.604000;208.619000;208.600000;208.615000;0 +20260218 065900;208.607000;208.635000;208.606000;208.632000;0 +20260218 070000;208.633000;208.651000;208.620000;208.637000;0 +20260218 070100;208.628000;208.628000;208.593000;208.610000;0 +20260218 070200;208.607000;208.620000;208.595000;208.615000;0 +20260218 070300;208.616000;208.637000;208.605000;208.624000;0 +20260218 070400;208.623000;208.630000;208.605000;208.628000;0 +20260218 070500;208.627000;208.667000;208.627000;208.667000;0 +20260218 070600;208.667000;208.681000;208.656000;208.661000;0 +20260218 070700;208.663000;208.683000;208.663000;208.669000;0 +20260218 070800;208.670000;208.675000;208.644000;208.649000;0 +20260218 070900;208.648000;208.660000;208.635000;208.648000;0 +20260218 071000;208.649000;208.668000;208.649000;208.666000;0 +20260218 071100;208.662000;208.696000;208.660000;208.693000;0 +20260218 071200;208.692000;208.712000;208.678000;208.710000;0 +20260218 071300;208.706000;208.713000;208.695000;208.711000;0 +20260218 071400;208.709000;208.717000;208.703000;208.711000;0 +20260218 071500;208.712000;208.736000;208.710000;208.736000;0 +20260218 071600;208.740000;208.756000;208.731000;208.735000;0 +20260218 071700;208.742000;208.776000;208.739000;208.753000;0 +20260218 071800;208.751000;208.779000;208.744000;208.766000;0 +20260218 071900;208.759000;208.796000;208.758000;208.780000;0 +20260218 072000;208.783000;208.783000;208.746000;208.749000;0 +20260218 072100;208.750000;208.764000;208.743000;208.755000;0 +20260218 072200;208.755000;208.789000;208.752000;208.789000;0 +20260218 072300;208.789000;208.789000;208.749000;208.752000;0 +20260218 072400;208.754000;208.754000;208.728000;208.738000;0 +20260218 072500;208.736000;208.776000;208.726000;208.726000;0 +20260218 072600;208.725000;208.735000;208.708000;208.708000;0 +20260218 072700;208.709000;208.717000;208.686000;208.693000;0 +20260218 072800;208.690000;208.693000;208.663000;208.664000;0 +20260218 072900;208.661000;208.672000;208.641000;208.643000;0 +20260218 073000;208.644000;208.645000;208.557000;208.557000;0 +20260218 073100;208.549000;208.569000;208.538000;208.548000;0 +20260218 073200;208.549000;208.591000;208.544000;208.591000;0 +20260218 073300;208.587000;208.588000;208.571000;208.573000;0 +20260218 073400;208.573000;208.574000;208.549000;208.557000;0 +20260218 073500;208.560000;208.576000;208.509000;208.510000;0 +20260218 073600;208.508000;208.526000;208.504000;208.511000;0 +20260218 073700;208.511000;208.517000;208.485000;208.515000;0 +20260218 073800;208.513000;208.534000;208.510000;208.530000;0 +20260218 073900;208.530000;208.584000;208.530000;208.577000;0 +20260218 074000;208.576000;208.586000;208.555000;208.566000;0 +20260218 074100;208.563000;208.580000;208.529000;208.580000;0 +20260218 074200;208.579000;208.597000;208.574000;208.593000;0 +20260218 074300;208.600000;208.629000;208.588000;208.591000;0 +20260218 074400;208.591000;208.599000;208.571000;208.573000;0 +20260218 074500;208.576000;208.593000;208.576000;208.584000;0 +20260218 074600;208.584000;208.585000;208.555000;208.583000;0 +20260218 074700;208.586000;208.588000;208.560000;208.580000;0 +20260218 074800;208.581000;208.581000;208.566000;208.571000;0 +20260218 074900;208.578000;208.604000;208.577000;208.604000;0 +20260218 075000;208.606000;208.607000;208.596000;208.602000;0 +20260218 075100;208.600000;208.602000;208.574000;208.578000;0 +20260218 075200;208.577000;208.583000;208.547000;208.547000;0 +20260218 075300;208.547000;208.556000;208.524000;208.529000;0 +20260218 075400;208.529000;208.535000;208.515000;208.517000;0 +20260218 075500;208.517000;208.517000;208.497000;208.497000;0 +20260218 075600;208.498000;208.536000;208.489000;208.524000;0 +20260218 075700;208.526000;208.566000;208.517000;208.561000;0 +20260218 075800;208.562000;208.601000;208.558000;208.590000;0 +20260218 075900;208.592000;208.626000;208.578000;208.595000;0 +20260218 080000;208.597000;208.606000;208.576000;208.588000;0 +20260218 080100;208.586000;208.613000;208.575000;208.606000;0 +20260218 080200;208.605000;208.605000;208.577000;208.586000;0 +20260218 080300;208.586000;208.624000;208.574000;208.622000;0 +20260218 080400;208.624000;208.644000;208.621000;208.635000;0 +20260218 080500;208.634000;208.649000;208.628000;208.649000;0 +20260218 080600;208.648000;208.654000;208.634000;208.636000;0 +20260218 080700;208.635000;208.653000;208.621000;208.625000;0 +20260218 080800;208.626000;208.634000;208.618000;208.620000;0 +20260218 080900;208.620000;208.622000;208.599000;208.606000;0 +20260218 081000;208.606000;208.637000;208.606000;208.633000;0 +20260218 081100;208.631000;208.641000;208.613000;208.641000;0 +20260218 081200;208.641000;208.643000;208.616000;208.643000;0 +20260218 081300;208.643000;208.660000;208.632000;208.638000;0 +20260218 081400;208.640000;208.675000;208.638000;208.670000;0 +20260218 081500;208.668000;208.681000;208.659000;208.678000;0 +20260218 081600;208.678000;208.679000;208.614000;208.615000;0 +20260218 081700;208.618000;208.628000;208.604000;208.616000;0 +20260218 081800;208.613000;208.613000;208.574000;208.583000;0 +20260218 081900;208.583000;208.628000;208.566000;208.628000;0 +20260218 082000;208.623000;208.633000;208.597000;208.597000;0 +20260218 082100;208.598000;208.620000;208.578000;208.597000;0 +20260218 082200;208.599000;208.599000;208.561000;208.561000;0 +20260218 082300;208.558000;208.566000;208.508000;208.508000;0 +20260218 082400;208.508000;208.573000;208.504000;208.566000;0 +20260218 082500;208.566000;208.572000;208.540000;208.554000;0 +20260218 082600;208.551000;208.566000;208.543000;208.561000;0 +20260218 082700;208.565000;208.587000;208.564000;208.587000;0 +20260218 082800;208.586000;208.602000;208.560000;208.577000;0 +20260218 082900;208.583000;208.598000;208.565000;208.571000;0 +20260218 083000;208.571000;208.640000;208.571000;208.612000;0 +20260218 083100;208.611000;208.616000;208.579000;208.611000;0 +20260218 083200;208.607000;208.619000;208.588000;208.611000;0 +20260218 083300;208.621000;208.626000;208.585000;208.592000;0 +20260218 083400;208.590000;208.600000;208.576000;208.578000;0 +20260218 083500;208.573000;208.612000;208.571000;208.605000;0 +20260218 083600;208.606000;208.691000;208.603000;208.686000;0 +20260218 083700;208.688000;208.722000;208.677000;208.722000;0 +20260218 083800;208.723000;208.724000;208.687000;208.690000;0 +20260218 083900;208.691000;208.695000;208.665000;208.670000;0 +20260218 084000;208.674000;208.691000;208.577000;208.607000;0 +20260218 084100;208.605000;208.634000;208.497000;208.538000;0 +20260218 084200;208.534000;208.598000;208.534000;208.586000;0 +20260218 084300;208.587000;208.625000;208.550000;208.623000;0 +20260218 084400;208.625000;208.635000;208.522000;208.607000;0 +20260218 084500;208.607000;208.653000;208.570000;208.584000;0 +20260218 084600;208.587000;208.623000;208.576000;208.604000;0 +20260218 084700;208.603000;208.633000;208.586000;208.586000;0 +20260218 084800;208.589000;208.619000;208.589000;208.609000;0 +20260218 084900;208.609000;208.630000;208.598000;208.608000;0 +20260218 085000;208.608000;208.656000;208.608000;208.651000;0 +20260218 085100;208.651000;208.670000;208.632000;208.662000;0 +20260218 085200;208.671000;208.677000;208.641000;208.650000;0 +20260218 085300;208.649000;208.650000;208.602000;208.623000;0 +20260218 085400;208.624000;208.633000;208.594000;208.607000;0 +20260218 085500;208.602000;208.627000;208.601000;208.607000;0 +20260218 085600;208.608000;208.648000;208.592000;208.613000;0 +20260218 085700;208.614000;208.622000;208.587000;208.591000;0 +20260218 085800;208.591000;208.633000;208.577000;208.632000;0 +20260218 085900;208.632000;208.635000;208.606000;208.623000;0 +20260218 090000;208.622000;208.670000;208.605000;208.654000;0 +20260218 090100;208.654000;208.675000;208.646000;208.659000;0 +20260218 090200;208.659000;208.711000;208.645000;208.692000;0 +20260218 090300;208.690000;208.690000;208.639000;208.642000;0 +20260218 090400;208.648000;208.659000;208.640000;208.657000;0 +20260218 090500;208.656000;208.665000;208.596000;208.600000;0 +20260218 090600;208.599000;208.630000;208.596000;208.630000;0 +20260218 090700;208.630000;208.652000;208.599000;208.607000;0 +20260218 090800;208.606000;208.619000;208.578000;208.607000;0 +20260218 090900;208.604000;208.617000;208.596000;208.611000;0 +20260218 091000;208.613000;208.622000;208.550000;208.562000;0 +20260218 091100;208.560000;208.597000;208.551000;208.595000;0 +20260218 091200;208.595000;208.595000;208.577000;208.581000;0 +20260218 091300;208.586000;208.621000;208.575000;208.607000;0 +20260218 091400;208.603000;208.638000;208.599000;208.630000;0 +20260218 091500;208.634000;208.730000;208.601000;208.694000;0 +20260218 091600;208.694000;208.730000;208.694000;208.715000;0 +20260218 091700;208.717000;208.757000;208.706000;208.712000;0 +20260218 091800;208.710000;208.731000;208.654000;208.660000;0 +20260218 091900;208.655000;208.694000;208.634000;208.694000;0 +20260218 092000;208.691000;208.713000;208.662000;208.682000;0 +20260218 092100;208.679000;208.694000;208.654000;208.684000;0 +20260218 092200;208.681000;208.727000;208.668000;208.703000;0 +20260218 092300;208.705000;208.720000;208.670000;208.700000;0 +20260218 092400;208.702000;208.774000;208.699000;208.767000;0 +20260218 092500;208.768000;208.817000;208.760000;208.803000;0 +20260218 092600;208.803000;208.819000;208.775000;208.809000;0 +20260218 092700;208.801000;208.874000;208.793000;208.870000;0 +20260218 092800;208.871000;208.871000;208.801000;208.804000;0 +20260218 092900;208.803000;208.875000;208.796000;208.865000;0 +20260218 093000;208.864000;208.893000;208.818000;208.850000;0 +20260218 093100;208.852000;208.896000;208.825000;208.896000;0 +20260218 093200;208.897000;208.899000;208.845000;208.881000;0 +20260218 093300;208.884000;208.925000;208.881000;208.896000;0 +20260218 093400;208.896000;208.916000;208.800000;208.800000;0 +20260218 093500;208.798000;208.911000;208.797000;208.893000;0 +20260218 093600;208.893000;208.961000;208.859000;208.958000;0 +20260218 093700;208.962000;209.016000;208.882000;208.922000;0 +20260218 093800;208.925000;208.949000;208.891000;208.947000;0 +20260218 093900;208.950000;209.020000;208.948000;209.020000;0 +20260218 094000;209.016000;209.016000;208.967000;208.968000;0 +20260218 094100;208.969000;209.038000;208.967000;209.007000;0 +20260218 094200;209.005000;209.073000;209.004000;209.073000;0 +20260218 094300;209.073000;209.082000;209.048000;209.065000;0 +20260218 094400;209.071000;209.108000;209.052000;209.059000;0 +20260218 094500;209.071000;209.081000;209.028000;209.033000;0 +20260218 094600;209.032000;209.032000;208.993000;209.006000;0 +20260218 094700;209.011000;209.018000;208.991000;208.993000;0 +20260218 094800;208.991000;209.036000;208.960000;209.034000;0 +20260218 094900;209.038000;209.048000;209.011000;209.039000;0 +20260218 095000;209.040000;209.060000;209.009000;209.016000;0 +20260218 095100;209.017000;209.035000;209.000000;209.000000;0 +20260218 095200;209.000000;209.017000;208.982000;209.006000;0 +20260218 095300;209.003000;209.016000;208.958000;208.988000;0 +20260218 095400;208.990000;209.015000;208.978000;208.991000;0 +20260218 095500;208.988000;209.013000;208.966000;208.990000;0 +20260218 095600;208.991000;209.010000;208.977000;209.000000;0 +20260218 095700;208.999000;209.031000;208.972000;209.022000;0 +20260218 095800;209.024000;209.027000;208.997000;208.997000;0 +20260218 095900;208.997000;209.003000;208.974000;208.974000;0 +20260218 100000;208.975000;209.032000;208.973000;209.003000;0 +20260218 100100;209.001000;209.003000;208.959000;208.992000;0 +20260218 100200;208.992000;209.034000;208.956000;209.032000;0 +20260218 100300;209.033000;209.066000;209.011000;209.065000;0 +20260218 100400;209.065000;209.087000;209.036000;209.076000;0 +20260218 100500;209.078000;209.100000;209.056000;209.084000;0 +20260218 100600;209.082000;209.084000;209.028000;209.028000;0 +20260218 100700;209.029000;209.032000;208.936000;208.946000;0 +20260218 100800;208.947000;208.959000;208.923000;208.924000;0 +20260218 100900;208.924000;208.962000;208.920000;208.956000;0 +20260218 101000;208.958000;208.959000;208.890000;208.895000;0 +20260218 101100;208.895000;208.911000;208.823000;208.870000;0 +20260218 101200;208.870000;208.883000;208.837000;208.844000;0 +20260218 101300;208.845000;208.876000;208.845000;208.869000;0 +20260218 101400;208.867000;208.897000;208.856000;208.879000;0 +20260218 101500;208.888000;208.913000;208.867000;208.893000;0 +20260218 101600;208.893000;208.980000;208.891000;208.975000;0 +20260218 101700;208.975000;209.010000;208.954000;208.954000;0 +20260218 101800;208.954000;209.002000;208.948000;209.002000;0 +20260218 101900;209.004000;209.023000;208.986000;209.022000;0 +20260218 102000;209.022000;209.054000;209.018000;209.021000;0 +20260218 102100;209.025000;209.043000;209.012000;209.018000;0 +20260218 102200;209.020000;209.043000;209.017000;209.021000;0 +20260218 102300;209.024000;209.043000;209.004000;209.027000;0 +20260218 102400;209.026000;209.037000;208.975000;208.991000;0 +20260218 102500;208.991000;209.006000;208.985000;208.993000;0 +20260218 102600;208.993000;209.008000;208.979000;209.007000;0 +20260218 102700;209.007000;209.032000;208.993000;209.010000;0 +20260218 102800;209.010000;209.028000;209.002000;209.025000;0 +20260218 102900;209.026000;209.030000;209.010000;209.013000;0 +20260218 103000;209.012000;209.061000;208.987000;209.061000;0 +20260218 103100;209.061000;209.090000;209.037000;209.066000;0 +20260218 103200;209.069000;209.080000;209.050000;209.080000;0 +20260218 103300;209.081000;209.081000;209.038000;209.041000;0 +20260218 103400;209.040000;209.067000;209.040000;209.053000;0 +20260218 103500;209.055000;209.094000;209.048000;209.076000;0 +20260218 103600;209.080000;209.100000;209.069000;209.100000;0 +20260218 103700;209.102000;209.112000;209.085000;209.086000;0 +20260218 103800;209.095000;209.144000;209.095000;209.127000;0 +20260218 103900;209.128000;209.132000;209.105000;209.125000;0 +20260218 104000;209.126000;209.140000;209.111000;209.131000;0 +20260218 104100;209.129000;209.181000;209.129000;209.171000;0 +20260218 104200;209.171000;209.213000;209.169000;209.170000;0 +20260218 104300;209.173000;209.187000;209.160000;209.176000;0 +20260218 104400;209.174000;209.189000;209.162000;209.165000;0 +20260218 104500;209.166000;209.169000;209.091000;209.103000;0 +20260218 104600;209.105000;209.122000;209.102000;209.109000;0 +20260218 104700;209.104000;209.173000;209.083000;209.173000;0 +20260218 104800;209.173000;209.173000;209.126000;209.140000;0 +20260218 104900;209.141000;209.189000;209.137000;209.148000;0 +20260218 105000;209.149000;209.151000;209.065000;209.083000;0 +20260218 105100;209.084000;209.097000;209.043000;209.089000;0 +20260218 105200;209.089000;209.110000;209.078000;209.090000;0 +20260218 105300;209.091000;209.093000;209.041000;209.052000;0 +20260218 105400;209.050000;209.050000;209.016000;209.035000;0 +20260218 105500;209.041000;209.073000;209.023000;209.061000;0 +20260218 105600;209.061000;209.077000;209.042000;209.074000;0 +20260218 105700;209.076000;209.077000;209.017000;209.045000;0 +20260218 105800;209.047000;209.048000;208.997000;209.004000;0 +20260218 105900;209.006000;209.009000;208.985000;208.986000;0 +20260218 110000;208.987000;208.999000;208.949000;208.953000;0 +20260218 110100;208.953000;209.006000;208.953000;209.001000;0 +20260218 110200;209.000000;209.020000;208.984000;208.984000;0 +20260218 110300;208.987000;209.048000;208.975000;209.023000;0 +20260218 110400;209.020000;209.084000;209.010000;209.084000;0 +20260218 110500;209.084000;209.112000;209.057000;209.057000;0 +20260218 110600;209.057000;209.106000;209.057000;209.101000;0 +20260218 110700;209.101000;209.124000;209.100000;209.120000;0 +20260218 110800;209.123000;209.125000;209.096000;209.123000;0 +20260218 110900;209.122000;209.131000;209.110000;209.114000;0 +20260218 111000;209.112000;209.124000;209.075000;209.078000;0 +20260218 111100;209.078000;209.082000;209.059000;209.068000;0 +20260218 111200;209.069000;209.096000;209.068000;209.089000;0 +20260218 111300;209.089000;209.096000;209.066000;209.094000;0 +20260218 111400;209.095000;209.124000;209.086000;209.112000;0 +20260218 111500;209.115000;209.120000;209.101000;209.112000;0 +20260218 111600;209.115000;209.126000;209.111000;209.123000;0 +20260218 111700;209.125000;209.126000;209.085000;209.094000;0 +20260218 111800;209.094000;209.103000;209.080000;209.094000;0 +20260218 111900;209.088000;209.104000;209.069000;209.084000;0 +20260218 112000;209.086000;209.128000;209.085000;209.115000;0 +20260218 112100;209.113000;209.129000;209.105000;209.127000;0 +20260218 112200;209.125000;209.168000;209.114000;209.156000;0 +20260218 112300;209.158000;209.173000;209.133000;209.141000;0 +20260218 112400;209.137000;209.147000;209.123000;209.147000;0 +20260218 112500;209.140000;209.149000;209.130000;209.130000;0 +20260218 112600;209.128000;209.160000;209.120000;209.148000;0 +20260218 112700;209.147000;209.159000;209.127000;209.128000;0 +20260218 112800;209.130000;209.141000;209.115000;209.117000;0 +20260218 112900;209.119000;209.119000;209.084000;209.113000;0 +20260218 113000;209.114000;209.161000;209.107000;209.156000;0 +20260218 113100;209.157000;209.169000;209.149000;209.164000;0 +20260218 113200;209.163000;209.173000;209.146000;209.159000;0 +20260218 113300;209.161000;209.164000;209.126000;209.145000;0 +20260218 113400;209.149000;209.149000;209.117000;209.129000;0 +20260218 113500;209.124000;209.135000;209.104000;209.117000;0 +20260218 113600;209.119000;209.123000;209.090000;209.105000;0 +20260218 113700;209.109000;209.125000;209.100000;209.121000;0 +20260218 113800;209.120000;209.130000;209.109000;209.109000;0 +20260218 113900;209.107000;209.107000;209.085000;209.097000;0 +20260218 114000;209.099000;209.119000;209.090000;209.107000;0 +20260218 114100;209.111000;209.166000;209.105000;209.158000;0 +20260218 114200;209.158000;209.194000;209.148000;209.194000;0 +20260218 114300;209.193000;209.193000;209.142000;209.163000;0 +20260218 114400;209.159000;209.163000;209.136000;209.148000;0 +20260218 114500;209.147000;209.147000;209.112000;209.142000;0 +20260218 114600;209.139000;209.146000;209.131000;209.134000;0 +20260218 114700;209.132000;209.144000;209.128000;209.134000;0 +20260218 114800;209.126000;209.151000;209.123000;209.135000;0 +20260218 114900;209.134000;209.144000;209.125000;209.131000;0 +20260218 115000;209.139000;209.160000;209.139000;209.139000;0 +20260218 115100;209.140000;209.146000;209.111000;209.111000;0 +20260218 115200;209.109000;209.143000;209.104000;209.104000;0 +20260218 115300;209.104000;209.109000;209.077000;209.077000;0 +20260218 115400;209.078000;209.078000;209.065000;209.073000;0 +20260218 115500;209.076000;209.076000;209.060000;209.064000;0 +20260218 115600;209.067000;209.077000;209.064000;209.072000;0 +20260218 115700;209.073000;209.077000;209.036000;209.040000;0 +20260218 115800;209.038000;209.056000;209.029000;209.045000;0 +20260218 115900;209.043000;209.045000;209.025000;209.027000;0 +20260218 120000;209.028000;209.037000;209.011000;209.020000;0 +20260218 120100;209.011000;209.019000;208.991000;208.992000;0 +20260218 120200;208.993000;209.051000;208.993000;209.033000;0 +20260218 120300;209.033000;209.036000;209.017000;209.023000;0 +20260218 120400;209.027000;209.058000;209.019000;209.058000;0 +20260218 120500;209.060000;209.067000;209.050000;209.062000;0 +20260218 120600;209.063000;209.088000;209.051000;209.052000;0 +20260218 120700;209.053000;209.063000;209.040000;209.043000;0 +20260218 120800;209.047000;209.047000;209.001000;209.008000;0 +20260218 120900;209.010000;209.010000;208.994000;209.002000;0 +20260218 121000;209.000000;209.028000;208.996000;209.017000;0 +20260218 121100;209.017000;209.018000;208.998000;209.003000;0 +20260218 121200;209.008000;209.008000;208.980000;208.994000;0 +20260218 121300;208.994000;209.021000;208.989000;209.007000;0 +20260218 121400;209.008000;209.023000;209.002000;209.004000;0 +20260218 121500;209.004000;209.017000;208.973000;209.010000;0 +20260218 121600;209.006000;209.021000;208.992000;209.021000;0 +20260218 121700;209.018000;209.029000;209.005000;209.015000;0 +20260218 121800;209.014000;209.030000;209.010000;209.020000;0 +20260218 121900;209.024000;209.024000;208.995000;209.001000;0 +20260218 122000;209.000000;209.025000;208.992000;209.025000;0 +20260218 122100;209.024000;209.041000;209.013000;209.020000;0 +20260218 122200;209.020000;209.023000;209.008000;209.021000;0 +20260218 122300;209.022000;209.022000;208.997000;208.998000;0 +20260218 122400;208.999000;209.002000;208.978000;208.993000;0 +20260218 122500;208.992000;208.992000;208.978000;208.985000;0 +20260218 122600;208.983000;208.987000;208.971000;208.977000;0 +20260218 122700;208.974000;208.987000;208.973000;208.978000;0 +20260218 122800;208.980000;208.996000;208.980000;208.988000;0 +20260218 122900;208.988000;209.010000;208.985000;208.997000;0 +20260218 123000;208.995000;209.008000;208.990000;208.996000;0 +20260218 123100;208.997000;209.023000;208.996000;208.996000;0 +20260218 123200;208.996000;209.005000;208.986000;208.990000;0 +20260218 123300;208.988000;208.988000;208.973000;208.974000;0 +20260218 123400;208.978000;208.987000;208.966000;208.971000;0 +20260218 123500;208.973000;209.007000;208.968000;208.981000;0 +20260218 123600;208.980000;208.982000;208.958000;208.980000;0 +20260218 123700;208.980000;208.988000;208.947000;208.952000;0 +20260218 123800;208.954000;208.959000;208.929000;208.950000;0 +20260218 123900;208.950000;208.993000;208.948000;208.961000;0 +20260218 124000;208.961000;208.964000;208.897000;208.900000;0 +20260218 124100;208.904000;208.949000;208.903000;208.938000;0 +20260218 124200;208.938000;208.969000;208.933000;208.965000;0 +20260218 124300;208.965000;208.965000;208.914000;208.933000;0 +20260218 124400;208.931000;208.939000;208.931000;208.937000;0 +20260218 124500;208.938000;208.959000;208.932000;208.938000;0 +20260218 124600;208.937000;208.954000;208.931000;208.951000;0 +20260218 124700;208.950000;208.981000;208.948000;208.966000;0 +20260218 124800;208.966000;208.975000;208.956000;208.961000;0 +20260218 124900;208.962000;208.964000;208.892000;208.916000;0 +20260218 125000;208.915000;208.933000;208.895000;208.926000;0 +20260218 125100;208.928000;208.928000;208.896000;208.918000;0 +20260218 125200;208.919000;208.926000;208.911000;208.920000;0 +20260218 125300;208.920000;208.952000;208.920000;208.933000;0 +20260218 125400;208.933000;208.948000;208.930000;208.937000;0 +20260218 125500;208.937000;208.944000;208.913000;208.931000;0 +20260218 125600;208.930000;208.950000;208.929000;208.945000;0 +20260218 125700;208.947000;208.966000;208.947000;208.956000;0 +20260218 125800;208.953000;208.993000;208.941000;208.985000;0 +20260218 125900;208.985000;208.988000;208.941000;208.946000;0 +20260218 130000;208.949000;208.968000;208.949000;208.963000;0 +20260218 130100;208.964000;208.996000;208.954000;208.996000;0 +20260218 130200;209.007000;209.022000;208.994000;208.996000;0 +20260218 130300;208.998000;209.027000;208.997000;208.999000;0 +20260218 130400;208.996000;209.015000;208.996000;209.001000;0 +20260218 130500;209.002000;209.022000;208.988000;209.019000;0 +20260218 130600;209.018000;209.025000;209.003000;209.003000;0 +20260218 130700;209.005000;209.019000;208.992000;209.013000;0 +20260218 130800;209.016000;209.045000;209.014000;209.045000;0 +20260218 130900;209.045000;209.046000;209.023000;209.040000;0 +20260218 131000;209.042000;209.076000;209.028000;209.059000;0 +20260218 131100;209.059000;209.061000;209.032000;209.048000;0 +20260218 131200;209.049000;209.054000;209.031000;209.048000;0 +20260218 131300;209.045000;209.045000;209.017000;209.022000;0 +20260218 131400;209.020000;209.031000;209.016000;209.025000;0 +20260218 131500;209.027000;209.027000;208.988000;208.999000;0 +20260218 131600;208.998000;209.022000;208.998000;209.011000;0 +20260218 131700;209.013000;209.025000;209.008000;209.019000;0 +20260218 131800;209.023000;209.023000;209.005000;209.023000;0 +20260218 131900;209.023000;209.027000;209.004000;209.005000;0 +20260218 132000;209.006000;209.022000;208.973000;209.016000;0 +20260218 132100;209.013000;209.015000;208.986000;209.005000;0 +20260218 132200;209.007000;209.037000;208.999000;209.029000;0 +20260218 132300;209.029000;209.055000;209.026000;209.038000;0 +20260218 132400;209.036000;209.061000;209.035000;209.049000;0 +20260218 132500;209.050000;209.074000;209.032000;209.055000;0 +20260218 132600;209.061000;209.078000;209.053000;209.064000;0 +20260218 132700;209.064000;209.064000;209.029000;209.040000;0 +20260218 132800;209.039000;209.039000;209.024000;209.028000;0 +20260218 132900;209.030000;209.077000;209.029000;209.069000;0 +20260218 133000;209.066000;209.093000;209.058000;209.089000;0 +20260218 133100;209.090000;209.090000;209.061000;209.066000;0 +20260218 133200;209.064000;209.064000;209.047000;209.055000;0 +20260218 133300;209.056000;209.056000;209.038000;209.048000;0 +20260218 133400;209.050000;209.074000;209.048000;209.057000;0 +20260218 133500;209.057000;209.074000;209.046000;209.074000;0 +20260218 133600;209.075000;209.086000;209.067000;209.084000;0 +20260218 133700;209.081000;209.112000;209.077000;209.092000;0 +20260218 133800;209.090000;209.104000;209.078000;209.088000;0 +20260218 133900;209.085000;209.093000;209.058000;209.062000;0 +20260218 134000;209.055000;209.089000;209.053000;209.086000;0 +20260218 134100;209.081000;209.082000;209.067000;209.069000;0 +20260218 134200;209.071000;209.075000;209.026000;209.032000;0 +20260218 134300;209.040000;209.043000;209.014000;209.027000;0 +20260218 134400;209.025000;209.035000;209.012000;209.014000;0 +20260218 134500;209.010000;209.055000;209.009000;209.050000;0 +20260218 134600;209.048000;209.056000;209.039000;209.053000;0 +20260218 134700;209.056000;209.063000;209.042000;209.061000;0 +20260218 134800;209.062000;209.086000;209.062000;209.083000;0 +20260218 134900;209.083000;209.088000;209.070000;209.088000;0 +20260218 135000;209.088000;209.088000;209.071000;209.081000;0 +20260218 135100;209.083000;209.085000;209.059000;209.060000;0 +20260218 135200;209.060000;209.065000;209.015000;209.024000;0 +20260218 135300;209.023000;209.029000;209.010000;209.018000;0 +20260218 135400;209.020000;209.038000;209.018000;209.035000;0 +20260218 135500;209.034000;209.072000;209.023000;209.067000;0 +20260218 135600;209.068000;209.095000;209.066000;209.093000;0 +20260218 135700;209.095000;209.112000;209.094000;209.095000;0 +20260218 135800;209.094000;209.094000;209.079000;209.082000;0 +20260218 135900;209.081000;209.105000;209.077000;209.099000;0 +20260218 140000;209.099000;209.117000;209.024000;209.088000;0 +20260218 140100;209.088000;209.115000;209.082000;209.092000;0 +20260218 140200;209.088000;209.106000;209.039000;209.042000;0 +20260218 140300;209.042000;209.055000;208.584000;208.909000;0 +20260218 140400;208.909000;208.941000;208.803000;208.834000;0 +20260218 140500;208.835000;208.878000;208.728000;208.877000;0 +20260218 140600;208.879000;208.930000;208.787000;208.914000;0 +20260218 140700;208.908000;209.002000;208.898000;208.993000;0 +20260218 140800;208.991000;208.994000;208.923000;208.934000;0 +20260218 140900;208.935000;208.981000;208.926000;208.957000;0 +20260218 141000;208.957000;208.991000;208.950000;208.957000;0 +20260218 141100;208.959000;208.981000;208.948000;208.951000;0 +20260218 141200;208.953000;208.960000;208.913000;208.921000;0 +20260218 141300;208.924000;208.972000;208.913000;208.971000;0 +20260218 141400;208.966000;209.003000;208.966000;208.987000;0 +20260218 141500;208.987000;208.995000;208.943000;208.963000;0 +20260218 141600;208.963000;209.047000;208.955000;209.034000;0 +20260218 141700;209.035000;209.100000;209.032000;209.087000;0 +20260218 141800;209.082000;209.097000;209.047000;209.059000;0 +20260218 141900;209.060000;209.060000;209.035000;209.041000;0 +20260218 142000;209.039000;209.065000;209.037000;209.065000;0 +20260218 142100;209.062000;209.062000;209.028000;209.045000;0 +20260218 142200;209.047000;209.084000;209.047000;209.070000;0 +20260218 142300;209.073000;209.073000;209.051000;209.051000;0 +20260218 142400;209.052000;209.068000;209.016000;209.017000;0 +20260218 142500;209.015000;209.029000;209.003000;209.019000;0 +20260218 142600;209.022000;209.033000;208.993000;209.030000;0 +20260218 142700;209.035000;209.035000;208.987000;208.987000;0 +20260218 142800;208.984000;209.014000;208.982000;208.993000;0 +20260218 142900;208.992000;208.992000;208.965000;208.985000;0 +20260218 143000;208.983000;209.010000;208.975000;208.975000;0 +20260218 143100;208.974000;208.999000;208.949000;208.956000;0 +20260218 143200;208.955000;208.978000;208.927000;208.965000;0 +20260218 143300;208.966000;209.012000;208.950000;209.004000;0 +20260218 143400;209.006000;209.021000;208.995000;209.021000;0 +20260218 143500;209.023000;209.023000;209.001000;209.017000;0 +20260218 143600;209.015000;209.026000;208.970000;208.990000;0 +20260218 143700;208.988000;209.005000;208.969000;208.969000;0 +20260218 143800;208.971000;208.971000;208.930000;208.938000;0 +20260218 143900;208.936000;208.961000;208.926000;208.954000;0 +20260218 144000;208.952000;208.956000;208.907000;208.912000;0 +20260218 144100;208.912000;208.938000;208.909000;208.916000;0 +20260218 144200;208.918000;208.935000;208.903000;208.912000;0 +20260218 144300;208.914000;208.933000;208.908000;208.911000;0 +20260218 144400;208.910000;208.921000;208.903000;208.904000;0 +20260218 144500;208.906000;208.968000;208.904000;208.961000;0 +20260218 144600;208.961000;208.967000;208.950000;208.954000;0 +20260218 144700;208.952000;208.965000;208.927000;208.935000;0 +20260218 144800;208.931000;208.944000;208.918000;208.922000;0 +20260218 144900;208.921000;208.929000;208.901000;208.915000;0 +20260218 145000;208.916000;208.930000;208.911000;208.924000;0 +20260218 145100;208.925000;208.927000;208.903000;208.914000;0 +20260218 145200;208.916000;208.916000;208.882000;208.886000;0 +20260218 145300;208.885000;208.886000;208.864000;208.876000;0 +20260218 145400;208.875000;208.875000;208.859000;208.870000;0 +20260218 145500;208.868000;208.870000;208.838000;208.845000;0 +20260218 145600;208.847000;208.849000;208.824000;208.826000;0 +20260218 145700;208.827000;208.851000;208.820000;208.827000;0 +20260218 145800;208.828000;208.853000;208.825000;208.846000;0 +20260218 145900;208.848000;208.871000;208.843000;208.868000;0 +20260218 150000;208.870000;208.912000;208.870000;208.912000;0 +20260218 150100;208.912000;208.933000;208.906000;208.929000;0 +20260218 150200;208.926000;208.943000;208.914000;208.927000;0 +20260218 150300;208.925000;208.944000;208.915000;208.944000;0 +20260218 150400;208.941000;208.955000;208.939000;208.940000;0 +20260218 150500;208.939000;208.939000;208.908000;208.925000;0 +20260218 150600;208.918000;208.947000;208.912000;208.943000;0 +20260218 150700;208.939000;208.939000;208.920000;208.939000;0 +20260218 150800;208.944000;208.959000;208.933000;208.938000;0 +20260218 150900;208.938000;208.960000;208.933000;208.945000;0 +20260218 151000;208.946000;208.950000;208.930000;208.942000;0 +20260218 151100;208.943000;208.943000;208.909000;208.915000;0 +20260218 151200;208.912000;208.915000;208.893000;208.906000;0 +20260218 151300;208.898000;208.908000;208.893000;208.907000;0 +20260218 151400;208.907000;208.917000;208.896000;208.898000;0 +20260218 151500;208.900000;208.917000;208.893000;208.916000;0 +20260218 151600;208.912000;208.913000;208.904000;208.905000;0 +20260218 151700;208.906000;208.958000;208.906000;208.955000;0 +20260218 151800;208.955000;208.970000;208.944000;208.966000;0 +20260218 151900;208.968000;208.975000;208.960000;208.972000;0 +20260218 152000;208.967000;208.971000;208.945000;208.952000;0 +20260218 152100;208.951000;208.962000;208.942000;208.945000;0 +20260218 152200;208.944000;208.957000;208.941000;208.941000;0 +20260218 152300;208.942000;208.952000;208.934000;208.951000;0 +20260218 152400;208.949000;208.951000;208.926000;208.941000;0 +20260218 152500;208.939000;208.940000;208.913000;208.935000;0 +20260218 152600;208.937000;208.942000;208.920000;208.934000;0 +20260218 152700;208.933000;208.944000;208.926000;208.928000;0 +20260218 152800;208.926000;208.930000;208.924000;208.925000;0 +20260218 152900;208.928000;208.953000;208.923000;208.939000;0 +20260218 153000;208.931000;208.940000;208.857000;208.897000;0 +20260218 153100;208.900000;208.924000;208.900000;208.919000;0 +20260218 153200;208.920000;208.955000;208.918000;208.952000;0 +20260218 153300;208.949000;208.960000;208.945000;208.955000;0 +20260218 153400;208.952000;208.964000;208.941000;208.954000;0 +20260218 153500;208.953000;208.966000;208.949000;208.953000;0 +20260218 153600;208.950000;208.957000;208.948000;208.955000;0 +20260218 153700;208.955000;208.955000;208.918000;208.925000;0 +20260218 153800;208.925000;208.926000;208.908000;208.909000;0 +20260218 153900;208.910000;208.924000;208.907000;208.921000;0 +20260218 154000;208.922000;208.924000;208.907000;208.911000;0 +20260218 154100;208.909000;208.935000;208.906000;208.924000;0 +20260218 154200;208.922000;208.939000;208.918000;208.937000;0 +20260218 154300;208.935000;208.948000;208.923000;208.948000;0 +20260218 154400;208.942000;208.948000;208.929000;208.939000;0 +20260218 154500;208.941000;208.960000;208.935000;208.960000;0 +20260218 154600;208.965000;208.966000;208.943000;208.951000;0 +20260218 154700;208.956000;208.979000;208.955000;208.967000;0 +20260218 154800;208.965000;208.969000;208.957000;208.968000;0 +20260218 154900;208.971000;208.981000;208.959000;208.964000;0 +20260218 155000;208.968000;208.991000;208.954000;208.985000;0 +20260218 155100;208.982000;208.985000;208.970000;208.970000;0 +20260218 155200;208.970000;208.984000;208.965000;208.984000;0 +20260218 155300;208.984000;208.998000;208.970000;208.984000;0 +20260218 155400;208.984000;208.994000;208.970000;208.973000;0 +20260218 155500;208.971000;208.971000;208.927000;208.939000;0 +20260218 155600;208.941000;208.957000;208.941000;208.957000;0 +20260218 155700;208.963000;208.980000;208.963000;208.978000;0 +20260218 155800;208.980000;209.001000;208.977000;208.999000;0 +20260218 155900;208.998000;209.004000;208.977000;208.991000;0 +20260218 160000;208.989000;208.989000;208.974000;208.978000;0 +20260218 160100;208.978000;208.979000;208.963000;208.973000;0 +20260218 160200;208.974000;208.992000;208.968000;208.986000;0 +20260218 160300;208.986000;208.990000;208.975000;208.979000;0 +20260218 160400;208.982000;208.986000;208.982000;208.986000;0 +20260218 160500;208.984000;209.000000;208.982000;208.995000;0 +20260218 160600;208.995000;208.996000;208.988000;208.989000;0 +20260218 160700;208.988000;209.009000;208.988000;209.009000;0 +20260218 160800;209.009000;209.011000;208.989000;209.000000;0 +20260218 160900;208.996000;209.003000;208.992000;208.996000;0 +20260218 161000;208.999000;208.999000;208.990000;208.993000;0 +20260218 161100;208.990000;209.004000;208.990000;208.992000;0 +20260218 161200;208.988000;208.988000;208.931000;208.932000;0 +20260218 161300;208.933000;208.960000;208.932000;208.959000;0 +20260218 161400;208.959000;208.961000;208.948000;208.950000;0 +20260218 161500;208.953000;208.964000;208.946000;208.957000;0 +20260218 161600;208.959000;208.974000;208.958000;208.974000;0 +20260218 161700;208.970000;208.982000;208.958000;208.982000;0 +20260218 161800;208.981000;208.983000;208.968000;208.971000;0 +20260218 161900;208.969000;208.986000;208.968000;208.983000;0 +20260218 162000;208.985000;208.989000;208.979000;208.989000;0 +20260218 162100;208.987000;208.989000;208.987000;208.989000;0 +20260218 162200;208.987000;208.990000;208.987000;208.988000;0 +20260218 162300;208.989000;208.989000;208.986000;208.987000;0 +20260218 162400;208.994000;208.999000;208.991000;208.997000;0 +20260218 162500;208.999000;209.001000;208.987000;208.995000;0 +20260218 162600;208.990000;208.997000;208.979000;208.992000;0 +20260218 162700;208.993000;209.000000;208.988000;208.993000;0 +20260218 162800;208.992000;208.996000;208.989000;208.993000;0 +20260218 162900;208.995000;209.006000;208.990000;209.006000;0 +20260218 163000;209.004000;209.007000;208.999000;209.005000;0 +20260218 163100;209.004000;209.009000;208.997000;209.006000;0 +20260218 163200;209.007000;209.022000;209.004000;209.020000;0 +20260218 163300;209.022000;209.039000;209.013000;209.013000;0 +20260218 163400;209.011000;209.024000;209.009000;209.009000;0 +20260218 163500;209.006000;209.006000;208.993000;209.000000;0 +20260218 163600;209.001000;209.001000;208.984000;208.986000;0 +20260218 163700;208.987000;208.991000;208.984000;208.990000;0 +20260218 163800;208.989000;208.989000;208.986000;208.988000;0 +20260218 163900;208.986000;208.999000;208.986000;208.997000;0 +20260218 164000;208.999000;209.001000;208.992000;208.996000;0 +20260218 164100;208.996000;208.996000;208.993000;208.995000;0 +20260218 164200;208.997000;209.007000;208.997000;209.007000;0 +20260218 164300;209.001000;209.001000;208.995000;208.995000;0 +20260218 164400;209.003000;209.005000;209.000000;209.002000;0 +20260218 164500;209.003000;209.003000;208.995000;208.995000;0 +20260218 164600;208.998000;209.007000;208.989000;208.997000;0 +20260218 164700;208.997000;209.002000;208.988000;208.988000;0 +20260218 164800;208.983000;208.986000;208.982000;208.982000;0 +20260218 164900;208.981000;208.981000;208.968000;208.969000;0 +20260218 165000;208.973000;208.980000;208.966000;208.968000;0 +20260218 165100;208.966000;208.968000;208.945000;208.949000;0 +20260218 165200;208.953000;208.953000;208.933000;208.939000;0 +20260218 165300;208.939000;208.958000;208.937000;208.957000;0 +20260218 165400;208.955000;208.955000;208.919000;208.943000;0 +20260218 165500;208.940000;208.943000;208.901000;208.908000;0 +20260218 165600;208.921000;208.940000;208.911000;208.919000;0 +20260218 165700;208.918000;208.930000;208.894000;208.908000;0 +20260218 165800;208.898000;208.905000;208.862000;208.864000;0 +20260218 165900;208.870000;208.904000;208.870000;208.885000;0 +20260218 170100;208.798000;208.798000;208.798000;208.798000;0 +20260218 170300;208.801000;208.802000;208.801000;208.802000;0 +20260218 170400;208.802000;208.802000;208.795000;208.795000;0 +20260218 170500;208.795000;208.799000;208.795000;208.799000;0 +20260218 170600;208.800000;208.800000;208.800000;208.800000;0 +20260218 170700;208.800000;208.800000;208.800000;208.800000;0 +20260218 170800;208.762000;208.762000;208.723000;208.723000;0 +20260218 170900;208.724000;208.790000;208.724000;208.766000;0 +20260218 171000;208.766000;208.773000;208.762000;208.773000;0 +20260218 171100;208.747000;208.747000;208.747000;208.747000;0 +20260218 171200;208.755000;208.756000;208.711000;208.756000;0 +20260218 171300;208.793000;208.834000;208.792000;208.809000;0 +20260218 171400;208.809000;208.810000;208.806000;208.806000;0 +20260218 171500;208.796000;208.843000;208.796000;208.828000;0 +20260218 171600;208.829000;208.852000;208.829000;208.846000;0 +20260218 171700;208.836000;208.836000;208.836000;208.836000;0 +20260218 171800;208.852000;208.852000;208.851000;208.852000;0 +20260218 171900;208.851000;208.851000;208.835000;208.835000;0 +20260218 172000;208.840000;208.845000;208.840000;208.845000;0 +20260218 172100;208.848000;208.851000;208.835000;208.850000;0 +20260218 172200;208.851000;208.851000;208.803000;208.810000;0 +20260218 172300;208.809000;208.818000;208.809000;208.817000;0 +20260218 172400;208.816000;208.824000;208.815000;208.824000;0 +20260218 172500;208.822000;208.826000;208.822000;208.824000;0 +20260218 172600;208.821000;208.821000;208.813000;208.814000;0 +20260218 172700;208.816000;208.818000;208.816000;208.818000;0 +20260218 172800;208.819000;208.825000;208.818000;208.820000;0 +20260218 172900;208.819000;208.824000;208.817000;208.823000;0 +20260218 173000;208.821000;208.825000;208.807000;208.818000;0 +20260218 173100;208.824000;208.824000;208.807000;208.813000;0 +20260218 173200;208.820000;208.820000;208.813000;208.814000;0 +20260218 173300;208.823000;208.831000;208.822000;208.826000;0 +20260218 173400;208.826000;208.829000;208.820000;208.824000;0 +20260218 173500;208.826000;208.833000;208.808000;208.826000;0 +20260218 173600;208.833000;208.834000;208.801000;208.814000;0 +20260218 173700;208.813000;208.817000;208.812000;208.816000;0 +20260218 173800;208.813000;208.842000;208.812000;208.816000;0 +20260218 173900;208.812000;208.846000;208.812000;208.845000;0 +20260218 174000;208.845000;208.849000;208.797000;208.838000;0 +20260218 174100;208.840000;208.840000;208.831000;208.833000;0 +20260218 174200;208.834000;208.859000;208.818000;208.859000;0 +20260218 174300;208.831000;208.869000;208.828000;208.831000;0 +20260218 174400;208.831000;208.834000;208.822000;208.832000;0 +20260218 174500;208.832000;208.839000;208.824000;208.839000;0 +20260218 174600;208.840000;208.858000;208.829000;208.857000;0 +20260218 174700;208.857000;208.867000;208.857000;208.864000;0 +20260218 174800;208.863000;208.864000;208.858000;208.862000;0 +20260218 174900;208.862000;208.865000;208.860000;208.863000;0 +20260218 175000;208.863000;208.867000;208.859000;208.865000;0 +20260218 175100;208.864000;208.864000;208.857000;208.858000;0 +20260218 175200;208.858000;208.861000;208.856000;208.861000;0 +20260218 175300;208.861000;208.862000;208.849000;208.850000;0 +20260218 175400;208.849000;208.864000;208.848000;208.856000;0 +20260218 175500;208.856000;208.864000;208.856000;208.862000;0 +20260218 175600;208.861000;208.863000;208.858000;208.861000;0 +20260218 175700;208.861000;208.875000;208.860000;208.875000;0 +20260218 175800;208.874000;208.878000;208.853000;208.862000;0 +20260218 175900;208.860000;208.866000;208.842000;208.856000;0 +20260218 180000;208.853000;208.902000;208.833000;208.896000;0 +20260218 180100;208.888000;208.911000;208.874000;208.878000;0 +20260218 180200;208.873000;208.901000;208.834000;208.837000;0 +20260218 180300;208.832000;208.868000;208.832000;208.859000;0 +20260218 180400;208.845000;208.858000;208.819000;208.821000;0 +20260218 180500;208.819000;208.830000;208.806000;208.806000;0 +20260218 180600;208.809000;208.809000;208.805000;208.806000;0 +20260218 180700;208.809000;208.809000;208.803000;208.805000;0 +20260218 180800;208.807000;208.816000;208.805000;208.813000;0 +20260218 180900;208.822000;208.846000;208.813000;208.833000;0 +20260218 181000;208.841000;208.859000;208.836000;208.855000;0 +20260218 181100;208.856000;208.912000;208.856000;208.912000;0 +20260218 181200;208.910000;208.910000;208.861000;208.861000;0 +20260218 181300;208.861000;208.879000;208.858000;208.858000;0 +20260218 181400;208.862000;208.862000;208.854000;208.858000;0 +20260218 181500;208.856000;208.866000;208.856000;208.863000;0 +20260218 181600;208.866000;208.872000;208.862000;208.862000;0 +20260218 181700;208.863000;208.867000;208.846000;208.867000;0 +20260218 181800;208.869000;208.869000;208.834000;208.851000;0 +20260218 181900;208.856000;208.860000;208.839000;208.839000;0 +20260218 182000;208.837000;208.866000;208.829000;208.866000;0 +20260218 182100;208.863000;208.878000;208.855000;208.861000;0 +20260218 182200;208.865000;208.866000;208.837000;208.852000;0 +20260218 182300;208.854000;208.856000;208.820000;208.820000;0 +20260218 182400;208.821000;208.830000;208.810000;208.816000;0 +20260218 182500;208.816000;208.842000;208.816000;208.837000;0 +20260218 182600;208.837000;208.851000;208.835000;208.838000;0 +20260218 182700;208.839000;208.890000;208.835000;208.873000;0 +20260218 182800;208.884000;208.895000;208.869000;208.877000;0 +20260218 182900;208.877000;208.887000;208.866000;208.868000;0 +20260218 183000;208.869000;208.885000;208.868000;208.885000;0 +20260218 183100;208.888000;208.897000;208.880000;208.888000;0 +20260218 183200;208.888000;208.908000;208.888000;208.894000;0 +20260218 183300;208.895000;208.895000;208.880000;208.892000;0 +20260218 183400;208.892000;208.892000;208.848000;208.848000;0 +20260218 183500;208.855000;208.866000;208.849000;208.857000;0 +20260218 183600;208.858000;208.876000;208.850000;208.870000;0 +20260218 183700;208.874000;208.904000;208.871000;208.886000;0 +20260218 183800;208.887000;208.887000;208.873000;208.881000;0 +20260218 183900;208.883000;208.883000;208.873000;208.883000;0 +20260218 184000;208.878000;208.890000;208.874000;208.888000;0 +20260218 184100;208.889000;208.889000;208.871000;208.871000;0 +20260218 184200;208.872000;208.899000;208.872000;208.893000;0 +20260218 184300;208.898000;208.898000;208.877000;208.886000;0 +20260218 184400;208.887000;208.895000;208.864000;208.866000;0 +20260218 184500;208.876000;208.880000;208.838000;208.839000;0 +20260218 184600;208.838000;208.847000;208.828000;208.839000;0 +20260218 184700;208.836000;208.866000;208.832000;208.840000;0 +20260218 184800;208.841000;208.871000;208.841000;208.863000;0 +20260218 184900;208.862000;208.865000;208.860000;208.860000;0 +20260218 185000;208.859000;208.859000;208.837000;208.838000;0 +20260218 185100;208.840000;208.861000;208.839000;208.855000;0 +20260218 185200;208.855000;208.861000;208.843000;208.849000;0 +20260218 185300;208.847000;208.847000;208.833000;208.842000;0 +20260218 185400;208.846000;208.856000;208.837000;208.856000;0 +20260218 185500;208.864000;208.871000;208.851000;208.854000;0 +20260218 185600;208.852000;208.854000;208.819000;208.820000;0 +20260218 185700;208.821000;208.822000;208.780000;208.780000;0 +20260218 185800;208.783000;208.784000;208.758000;208.768000;0 +20260218 185900;208.764000;208.777000;208.741000;208.742000;0 +20260218 190000;208.745000;208.765000;208.724000;208.755000;0 +20260218 190100;208.756000;208.788000;208.708000;208.712000;0 +20260218 190200;208.713000;208.736000;208.710000;208.718000;0 +20260218 190300;208.720000;208.720000;208.639000;208.654000;0 +20260218 190400;208.652000;208.685000;208.651000;208.685000;0 +20260218 190500;208.686000;208.704000;208.664000;208.686000;0 +20260218 190600;208.685000;208.691000;208.659000;208.685000;0 +20260218 190700;208.685000;208.707000;208.673000;208.673000;0 +20260218 190800;208.672000;208.689000;208.660000;208.686000;0 +20260218 190900;208.687000;208.724000;208.673000;208.721000;0 +20260218 191000;208.720000;208.744000;208.717000;208.725000;0 +20260218 191100;208.726000;208.747000;208.720000;208.739000;0 +20260218 191200;208.745000;208.766000;208.733000;208.766000;0 +20260218 191300;208.767000;208.778000;208.767000;208.773000;0 +20260218 191400;208.773000;208.777000;208.752000;208.777000;0 +20260218 191500;208.776000;208.776000;208.758000;208.768000;0 +20260218 191600;208.772000;208.789000;208.765000;208.776000;0 +20260218 191700;208.779000;208.847000;208.778000;208.824000;0 +20260218 191800;208.823000;208.850000;208.798000;208.816000;0 +20260218 191900;208.814000;208.849000;208.806000;208.834000;0 +20260218 192000;208.833000;208.838000;208.792000;208.796000;0 +20260218 192100;208.797000;208.829000;208.797000;208.829000;0 +20260218 192200;208.835000;208.852000;208.819000;208.834000;0 +20260218 192300;208.834000;208.860000;208.831000;208.839000;0 +20260218 192400;208.839000;208.843000;208.802000;208.822000;0 +20260218 192500;208.829000;208.829000;208.790000;208.799000;0 +20260218 192600;208.800000;208.810000;208.787000;208.807000;0 +20260218 192700;208.810000;208.839000;208.810000;208.832000;0 +20260218 192800;208.832000;208.835000;208.807000;208.828000;0 +20260218 192900;208.826000;208.832000;208.821000;208.822000;0 +20260218 193000;208.820000;208.839000;208.809000;208.834000;0 +20260218 193100;208.833000;208.853000;208.710000;208.711000;0 +20260218 193200;208.712000;208.764000;208.711000;208.744000;0 +20260218 193300;208.747000;208.763000;208.738000;208.762000;0 +20260218 193400;208.763000;208.816000;208.750000;208.813000;0 +20260218 193500;208.814000;208.831000;208.799000;208.821000;0 +20260218 193600;208.821000;208.846000;208.803000;208.804000;0 +20260218 193700;208.805000;208.815000;208.795000;208.801000;0 +20260218 193800;208.802000;208.840000;208.798000;208.839000;0 +20260218 193900;208.838000;208.881000;208.837000;208.849000;0 +20260218 194000;208.847000;208.851000;208.838000;208.840000;0 +20260218 194100;208.843000;208.864000;208.834000;208.855000;0 +20260218 194200;208.854000;208.866000;208.836000;208.857000;0 +20260218 194300;208.856000;208.860000;208.822000;208.844000;0 +20260218 194400;208.846000;208.857000;208.815000;208.816000;0 +20260218 194500;208.815000;208.856000;208.805000;208.853000;0 +20260218 194600;208.855000;208.872000;208.842000;208.852000;0 +20260218 194700;208.855000;208.869000;208.847000;208.868000;0 +20260218 194800;208.873000;208.887000;208.869000;208.872000;0 +20260218 194900;208.874000;208.887000;208.840000;208.857000;0 +20260218 195000;208.858000;208.881000;208.805000;208.813000;0 +20260218 195100;208.817000;208.846000;208.805000;208.809000;0 +20260218 195200;208.808000;208.846000;208.803000;208.820000;0 +20260218 195300;208.818000;208.818000;208.753000;208.760000;0 +20260218 195400;208.758000;208.764000;208.676000;208.694000;0 +20260218 195500;208.700000;208.731000;208.675000;208.675000;0 +20260218 195600;208.673000;208.693000;208.645000;208.645000;0 +20260218 195700;208.643000;208.670000;208.642000;208.669000;0 +20260218 195800;208.670000;208.712000;208.670000;208.710000;0 +20260218 195900;208.711000;208.738000;208.711000;208.726000;0 +20260218 200000;208.725000;208.801000;208.725000;208.791000;0 +20260218 200100;208.790000;208.809000;208.762000;208.809000;0 +20260218 200200;208.808000;208.817000;208.776000;208.792000;0 +20260218 200300;208.790000;208.835000;208.789000;208.833000;0 +20260218 200400;208.835000;208.850000;208.793000;208.794000;0 +20260218 200500;208.794000;208.810000;208.751000;208.769000;0 +20260218 200600;208.768000;208.798000;208.764000;208.780000;0 +20260218 200700;208.779000;208.779000;208.741000;208.745000;0 +20260218 200800;208.744000;208.789000;208.733000;208.784000;0 +20260218 200900;208.784000;208.789000;208.737000;208.757000;0 +20260218 201000;208.762000;208.786000;208.742000;208.786000;0 +20260218 201100;208.786000;208.808000;208.766000;208.808000;0 +20260218 201200;208.806000;208.856000;208.806000;208.853000;0 +20260218 201300;208.853000;208.890000;208.848000;208.863000;0 +20260218 201400;208.866000;208.867000;208.834000;208.858000;0 +20260218 201500;208.859000;208.874000;208.850000;208.853000;0 +20260218 201600;208.854000;208.884000;208.852000;208.871000;0 +20260218 201700;208.877000;208.881000;208.858000;208.867000;0 +20260218 201800;208.869000;208.870000;208.839000;208.853000;0 +20260218 201900;208.854000;208.866000;208.843000;208.844000;0 +20260218 202000;208.845000;208.856000;208.843000;208.853000;0 +20260218 202100;208.848000;208.876000;208.848000;208.875000;0 +20260218 202200;208.878000;208.883000;208.868000;208.870000;0 +20260218 202300;208.875000;208.896000;208.871000;208.886000;0 +20260218 202400;208.894000;208.912000;208.885000;208.903000;0 +20260218 202500;208.905000;208.914000;208.873000;208.873000;0 +20260218 202600;208.875000;208.900000;208.866000;208.868000;0 +20260218 202700;208.866000;208.872000;208.854000;208.857000;0 +20260218 202800;208.855000;208.865000;208.853000;208.859000;0 +20260218 202900;208.861000;208.869000;208.857000;208.868000;0 +20260218 203000;208.869000;208.904000;208.868000;208.893000;0 +20260218 203100;208.896000;208.900000;208.889000;208.900000;0 +20260218 203200;208.902000;208.928000;208.901000;208.923000;0 +20260218 203300;208.925000;208.960000;208.912000;208.948000;0 +20260218 203400;208.949000;208.970000;208.949000;208.965000;0 +20260218 203500;208.966000;208.984000;208.964000;208.976000;0 +20260218 203600;208.974000;209.056000;208.970000;209.046000;0 +20260218 203700;209.047000;209.067000;209.029000;209.060000;0 +20260218 203800;209.059000;209.071000;209.022000;209.035000;0 +20260218 203900;209.042000;209.050000;209.030000;209.039000;0 +20260218 204000;209.038000;209.048000;209.028000;209.043000;0 +20260218 204100;209.042000;209.058000;209.031000;209.031000;0 +20260218 204200;209.032000;209.038000;209.009000;209.012000;0 +20260218 204300;209.011000;209.048000;209.009000;209.040000;0 +20260218 204400;209.036000;209.041000;209.014000;209.019000;0 +20260218 204500;209.015000;209.054000;209.015000;209.054000;0 +20260218 204600;209.053000;209.084000;209.043000;209.071000;0 +20260218 204700;209.073000;209.078000;209.059000;209.071000;0 +20260218 204800;209.072000;209.087000;209.072000;209.085000;0 +20260218 204900;209.073000;209.107000;209.053000;209.106000;0 +20260218 205000;209.104000;209.133000;209.099000;209.119000;0 +20260218 205100;209.117000;209.130000;209.111000;209.123000;0 +20260218 205200;209.124000;209.139000;209.118000;209.134000;0 +20260218 205300;209.136000;209.148000;209.124000;209.148000;0 +20260218 205400;209.146000;209.152000;209.141000;209.149000;0 +20260218 205500;209.143000;209.147000;209.121000;209.127000;0 +20260218 205600;209.127000;209.127000;209.102000;209.103000;0 +20260218 205700;209.102000;209.131000;209.100000;209.123000;0 +20260218 205800;209.124000;209.131000;209.120000;209.128000;0 +20260218 205900;209.129000;209.129000;209.113000;209.122000;0 +20260218 210000;209.120000;209.159000;209.119000;209.159000;0 +20260218 210100;209.149000;209.160000;209.138000;209.145000;0 +20260218 210200;209.142000;209.189000;209.134000;209.186000;0 +20260218 210300;209.186000;209.206000;209.160000;209.169000;0 +20260218 210400;209.167000;209.193000;209.119000;209.181000;0 +20260218 210500;209.182000;209.191000;209.126000;209.133000;0 +20260218 210600;209.129000;209.129000;209.081000;209.102000;0 +20260218 210700;209.102000;209.124000;209.098000;209.099000;0 +20260218 210800;209.100000;209.138000;209.096000;209.132000;0 +20260218 210900;209.135000;209.147000;209.099000;209.110000;0 +20260218 211000;209.109000;209.136000;209.109000;209.136000;0 +20260218 211100;209.142000;209.177000;209.135000;209.163000;0 +20260218 211200;209.162000;209.171000;209.137000;209.171000;0 +20260218 211300;209.174000;209.185000;209.138000;209.140000;0 +20260218 211400;209.139000;209.146000;209.101000;209.123000;0 +20260218 211500;209.121000;209.125000;209.106000;209.106000;0 +20260218 211600;209.107000;209.107000;209.060000;209.072000;0 +20260218 211700;209.069000;209.070000;209.043000;209.051000;0 +20260218 211800;209.062000;209.065000;209.026000;209.026000;0 +20260218 211900;209.025000;209.031000;208.966000;208.982000;0 +20260218 212000;208.982000;208.987000;208.957000;208.967000;0 +20260218 212100;208.966000;208.967000;208.852000;208.897000;0 +20260218 212200;208.896000;208.911000;208.875000;208.875000;0 +20260218 212300;208.876000;208.924000;208.868000;208.913000;0 +20260218 212400;208.919000;208.940000;208.919000;208.932000;0 +20260218 212500;208.931000;209.016000;208.926000;209.009000;0 +20260218 212600;209.013000;209.035000;208.995000;209.033000;0 +20260218 212700;209.034000;209.040000;209.016000;209.016000;0 +20260218 212800;209.016000;209.046000;209.010000;209.045000;0 +20260218 212900;209.046000;209.059000;209.033000;209.035000;0 +20260218 213000;209.035000;209.053000;209.005000;209.049000;0 +20260218 213100;209.048000;209.053000;209.009000;209.011000;0 +20260218 213200;209.013000;209.019000;208.995000;209.016000;0 +20260218 213300;209.025000;209.026000;209.011000;209.012000;0 +20260218 213400;209.012000;209.039000;209.012000;209.038000;0 +20260218 213500;209.037000;209.051000;209.032000;209.051000;0 +20260218 213600;209.049000;209.054000;209.043000;209.054000;0 +20260218 213700;209.053000;209.061000;209.040000;209.040000;0 +20260218 213800;209.041000;209.053000;209.030000;209.052000;0 +20260218 213900;209.053000;209.075000;209.015000;209.028000;0 +20260218 214000;209.027000;209.031000;209.016000;209.030000;0 +20260218 214100;209.030000;209.032000;209.017000;209.032000;0 +20260218 214200;209.029000;209.042000;209.007000;209.040000;0 +20260218 214300;209.037000;209.042000;209.013000;209.028000;0 +20260218 214400;209.029000;209.041000;209.029000;209.039000;0 +20260218 214500;209.041000;209.064000;209.040000;209.064000;0 +20260218 214600;209.063000;209.066000;209.054000;209.055000;0 +20260218 214700;209.045000;209.047000;209.035000;209.045000;0 +20260218 214800;209.047000;209.084000;209.028000;209.084000;0 +20260218 214900;209.086000;209.097000;209.063000;209.080000;0 +20260218 215000;209.077000;209.097000;209.070000;209.078000;0 +20260218 215100;209.076000;209.106000;209.073000;209.105000;0 +20260218 215200;209.102000;209.113000;209.097000;209.106000;0 +20260218 215300;209.105000;209.125000;209.103000;209.117000;0 +20260218 215400;209.118000;209.148000;209.117000;209.128000;0 +20260218 215500;209.129000;209.147000;209.107000;209.115000;0 +20260218 215600;209.116000;209.138000;209.092000;209.132000;0 +20260218 215700;209.131000;209.131000;209.078000;209.094000;0 +20260218 215800;209.094000;209.131000;209.094000;209.130000;0 +20260218 215900;209.130000;209.163000;209.117000;209.161000;0 +20260218 220000;209.163000;209.198000;209.117000;209.170000;0 +20260218 220100;209.171000;209.191000;209.157000;209.169000;0 +20260218 220200;209.175000;209.194000;209.171000;209.180000;0 +20260218 220300;209.181000;209.181000;209.141000;209.149000;0 +20260218 220400;209.151000;209.158000;209.128000;209.136000;0 +20260218 220500;209.137000;209.139000;209.106000;209.118000;0 +20260218 220600;209.117000;209.124000;209.114000;209.121000;0 +20260218 220700;209.120000;209.134000;209.120000;209.131000;0 +20260218 220800;209.132000;209.162000;209.132000;209.160000;0 +20260218 220900;209.161000;209.163000;209.129000;209.130000;0 +20260218 221000;209.130000;209.135000;209.125000;209.126000;0 +20260218 221100;209.126000;209.144000;209.124000;209.142000;0 +20260218 221200;209.143000;209.162000;209.136000;209.157000;0 +20260218 221300;209.158000;209.165000;209.150000;209.152000;0 +20260218 221400;209.151000;209.153000;209.126000;209.134000;0 +20260218 221500;209.136000;209.147000;209.133000;209.145000;0 +20260218 221600;209.141000;209.162000;209.140000;209.159000;0 +20260218 221700;209.158000;209.162000;209.157000;209.162000;0 +20260218 221800;209.161000;209.207000;209.158000;209.207000;0 +20260218 221900;209.206000;209.208000;209.154000;209.166000;0 +20260218 222000;209.167000;209.184000;209.162000;209.183000;0 +20260218 222100;209.183000;209.192000;209.156000;209.160000;0 +20260218 222200;209.159000;209.202000;209.159000;209.179000;0 +20260218 222300;209.180000;209.245000;209.178000;209.226000;0 +20260218 222400;209.227000;209.255000;209.224000;209.255000;0 +20260218 222500;209.255000;209.264000;209.233000;209.263000;0 +20260218 222600;209.262000;209.273000;209.252000;209.269000;0 +20260218 222700;209.268000;209.272000;209.247000;209.247000;0 +20260218 222800;209.244000;209.247000;209.227000;209.231000;0 +20260218 222900;209.232000;209.233000;209.214000;209.229000;0 +20260218 223000;209.231000;209.266000;209.229000;209.262000;0 +20260218 223100;209.258000;209.269000;209.243000;209.265000;0 +20260218 223200;209.257000;209.257000;209.232000;209.248000;0 +20260218 223300;209.248000;209.449000;209.247000;209.347000;0 +20260218 223400;209.345000;209.357000;209.268000;209.268000;0 +20260218 223500;209.271000;209.331000;209.252000;209.265000;0 +20260218 223600;209.265000;209.287000;209.262000;209.280000;0 +20260218 223700;209.281000;209.319000;209.253000;209.278000;0 +20260218 223800;209.277000;209.283000;209.260000;209.264000;0 +20260218 223900;209.263000;209.265000;209.235000;209.253000;0 +20260218 224000;209.252000;209.253000;209.242000;209.253000;0 +20260218 224100;209.252000;209.282000;209.240000;209.269000;0 +20260218 224200;209.268000;209.332000;209.263000;209.320000;0 +20260218 224300;209.321000;209.343000;209.306000;209.333000;0 +20260218 224400;209.332000;209.337000;209.314000;209.337000;0 +20260218 224500;209.337000;209.337000;209.304000;209.331000;0 +20260218 224600;209.327000;209.360000;209.316000;209.360000;0 +20260218 224700;209.358000;209.376000;209.322000;209.338000;0 +20260218 224800;209.334000;209.360000;209.332000;209.352000;0 +20260218 224900;209.350000;209.360000;209.335000;209.349000;0 +20260218 225000;209.349000;209.381000;209.333000;209.378000;0 +20260218 225100;209.376000;209.405000;209.368000;209.392000;0 +20260218 225200;209.392000;209.409000;209.362000;209.370000;0 +20260218 225300;209.378000;209.391000;209.326000;209.327000;0 +20260218 225400;209.326000;209.393000;209.323000;209.378000;0 +20260218 225500;209.379000;209.379000;209.334000;209.344000;0 +20260218 225600;209.347000;209.349000;209.302000;209.335000;0 +20260218 225700;209.336000;209.360000;209.332000;209.346000;0 +20260218 225800;209.342000;209.345000;209.299000;209.303000;0 +20260218 225900;209.302000;209.307000;209.289000;209.295000;0 +20260218 230000;209.294000;209.298000;209.271000;209.295000;0 +20260218 230100;209.296000;209.335000;209.286000;209.330000;0 +20260218 230200;209.328000;209.352000;209.327000;209.329000;0 +20260218 230300;209.326000;209.372000;209.322000;209.348000;0 +20260218 230400;209.350000;209.375000;209.344000;209.366000;0 +20260218 230500;209.362000;209.363000;209.340000;209.340000;0 +20260218 230600;209.339000;209.349000;209.338000;209.343000;0 +20260218 230700;209.345000;209.356000;209.339000;209.341000;0 +20260218 230800;209.343000;209.385000;209.340000;209.349000;0 +20260218 230900;209.348000;209.362000;209.332000;209.347000;0 +20260218 231000;209.349000;209.375000;209.346000;209.359000;0 +20260218 231100;209.358000;209.360000;209.342000;209.354000;0 +20260218 231200;209.355000;209.357000;209.338000;209.346000;0 +20260218 231300;209.345000;209.355000;209.339000;209.340000;0 +20260218 231400;209.341000;209.349000;209.331000;209.331000;0 +20260218 231500;209.332000;209.345000;209.315000;209.322000;0 +20260218 231600;209.320000;209.333000;209.314000;209.317000;0 +20260218 231700;209.315000;209.324000;209.310000;209.322000;0 +20260218 231800;209.323000;209.340000;209.322000;209.331000;0 +20260218 231900;209.332000;209.347000;209.327000;209.345000;0 +20260218 232000;209.343000;209.391000;209.336000;209.391000;0 +20260218 232100;209.391000;209.417000;209.374000;209.409000;0 +20260218 232200;209.408000;209.442000;209.393000;209.412000;0 +20260218 232300;209.411000;209.414000;209.380000;209.385000;0 +20260218 232400;209.382000;209.389000;209.341000;209.347000;0 +20260218 232500;209.353000;209.358000;209.298000;209.302000;0 +20260218 232600;209.301000;209.301000;209.266000;209.293000;0 +20260218 232700;209.290000;209.327000;209.290000;209.326000;0 +20260218 232800;209.327000;209.328000;209.290000;209.297000;0 +20260218 232900;209.295000;209.305000;209.236000;209.236000;0 +20260218 233000;209.231000;209.236000;209.211000;209.221000;0 +20260218 233100;209.222000;209.226000;209.186000;209.226000;0 +20260218 233200;209.229000;209.256000;209.229000;209.254000;0 +20260218 233300;209.250000;209.255000;209.235000;209.247000;0 +20260218 233400;209.246000;209.256000;209.241000;209.251000;0 +20260218 233500;209.249000;209.260000;209.237000;209.238000;0 +20260218 233600;209.237000;209.259000;209.229000;209.235000;0 +20260218 233700;209.239000;209.287000;209.239000;209.284000;0 +20260218 233800;209.287000;209.317000;209.283000;209.305000;0 +20260218 233900;209.307000;209.322000;209.295000;209.295000;0 +20260218 234000;209.294000;209.299000;209.278000;209.286000;0 +20260218 234100;209.285000;209.285000;209.268000;209.277000;0 +20260218 234200;209.294000;209.294000;209.266000;209.267000;0 +20260218 234300;209.266000;209.275000;209.260000;209.273000;0 +20260218 234400;209.271000;209.271000;209.255000;209.258000;0 +20260218 234500;209.258000;209.262000;209.246000;209.249000;0 +20260218 234600;209.248000;209.254000;209.227000;209.230000;0 +20260218 234700;209.228000;209.231000;209.218000;209.227000;0 +20260218 234800;209.229000;209.236000;209.222000;209.231000;0 +20260218 234900;209.233000;209.245000;209.224000;209.245000;0 +20260218 235000;209.243000;209.255000;209.199000;209.200000;0 +20260218 235100;209.201000;209.231000;209.201000;209.225000;0 +20260218 235200;209.220000;209.238000;209.220000;209.236000;0 +20260218 235300;209.234000;209.263000;209.232000;209.252000;0 +20260218 235400;209.254000;209.262000;209.246000;209.250000;0 +20260218 235500;209.246000;209.249000;209.236000;209.244000;0 +20260218 235600;209.249000;209.249000;209.221000;209.230000;0 +20260218 235700;209.230000;209.233000;209.181000;209.187000;0 +20260218 235800;209.186000;209.188000;209.152000;209.155000;0 +20260218 235900;209.149000;209.160000;209.141000;209.151000;0 +20260219 000000;209.152000;209.166000;209.146000;209.166000;0 +20260219 000100;209.164000;209.171000;209.156000;209.169000;0 +20260219 000200;209.167000;209.177000;209.152000;209.157000;0 +20260219 000300;209.158000;209.199000;209.158000;209.190000;0 +20260219 000400;209.193000;209.202000;209.189000;209.192000;0 +20260219 000500;209.188000;209.254000;209.186000;209.239000;0 +20260219 000600;209.241000;209.244000;209.207000;209.211000;0 +20260219 000700;209.214000;209.217000;209.143000;209.181000;0 +20260219 000800;209.183000;209.199000;209.181000;209.192000;0 +20260219 000900;209.190000;209.219000;209.185000;209.207000;0 +20260219 001000;209.213000;209.213000;209.193000;209.201000;0 +20260219 001100;209.198000;209.220000;209.195000;209.208000;0 +20260219 001200;209.210000;209.212000;209.183000;209.185000;0 +20260219 001300;209.188000;209.200000;209.174000;209.187000;0 +20260219 001400;209.188000;209.200000;209.169000;209.193000;0 +20260219 001500;209.195000;209.196000;209.147000;209.152000;0 +20260219 001600;209.147000;209.179000;209.147000;209.170000;0 +20260219 001700;209.167000;209.182000;209.155000;209.176000;0 +20260219 001800;209.175000;209.217000;209.171000;209.200000;0 +20260219 001900;209.200000;209.217000;209.189000;209.204000;0 +20260219 002000;209.206000;209.212000;209.174000;209.179000;0 +20260219 002100;209.179000;209.179000;209.172000;209.172000;0 +20260219 002200;209.170000;209.197000;209.170000;209.190000;0 +20260219 002300;209.187000;209.207000;209.187000;209.204000;0 +20260219 002400;209.207000;209.229000;209.206000;209.216000;0 +20260219 002500;209.219000;209.230000;209.202000;209.226000;0 +20260219 002600;209.223000;209.256000;209.221000;209.250000;0 +20260219 002700;209.251000;209.263000;209.244000;209.244000;0 +20260219 002800;209.242000;209.242000;209.213000;209.228000;0 +20260219 002900;209.225000;209.250000;209.222000;209.250000;0 +20260219 003000;209.247000;209.272000;209.245000;209.259000;0 +20260219 003100;209.258000;209.269000;209.239000;209.255000;0 +20260219 003200;209.255000;209.264000;209.251000;209.262000;0 +20260219 003300;209.264000;209.264000;209.242000;209.251000;0 +20260219 003400;209.250000;209.261000;209.202000;209.224000;0 +20260219 003500;209.227000;209.260000;209.223000;209.223000;0 +20260219 003600;209.222000;209.226000;209.197000;209.211000;0 +20260219 003700;209.213000;209.229000;209.191000;209.194000;0 +20260219 003800;209.193000;209.208000;209.170000;209.198000;0 +20260219 003900;209.199000;209.215000;209.199000;209.215000;0 +20260219 004000;209.217000;209.270000;209.217000;209.261000;0 +20260219 004100;209.263000;209.266000;209.251000;209.253000;0 +20260219 004200;209.254000;209.272000;209.252000;209.270000;0 +20260219 004300;209.267000;209.290000;209.260000;209.281000;0 +20260219 004400;209.282000;209.310000;209.282000;209.294000;0 +20260219 004500;209.292000;209.319000;209.292000;209.310000;0 +20260219 004600;209.312000;209.347000;209.312000;209.344000;0 +20260219 004700;209.348000;209.361000;209.338000;209.339000;0 +20260219 004800;209.338000;209.370000;209.329000;209.361000;0 +20260219 004900;209.360000;209.370000;209.342000;209.342000;0 +20260219 005000;209.340000;209.376000;209.336000;209.359000;0 +20260219 005100;209.358000;209.366000;209.354000;209.355000;0 +20260219 005200;209.354000;209.364000;209.346000;209.362000;0 +20260219 005300;209.360000;209.384000;209.355000;209.384000;0 +20260219 005400;209.384000;209.384000;209.352000;209.372000;0 +20260219 005500;209.373000;209.462000;209.370000;209.447000;0 +20260219 005600;209.447000;209.447000;209.413000;209.421000;0 +20260219 005700;209.420000;209.448000;209.402000;209.409000;0 +20260219 005800;209.407000;209.438000;209.405000;209.421000;0 +20260219 005900;209.421000;209.455000;209.415000;209.455000;0 +20260219 010000;209.454000;209.461000;209.436000;209.440000;0 +20260219 010100;209.445000;209.449000;209.412000;209.436000;0 +20260219 010200;209.435000;209.455000;209.416000;209.451000;0 +20260219 010300;209.456000;209.471000;209.440000;209.457000;0 +20260219 010400;209.456000;209.462000;209.439000;209.454000;0 +20260219 010500;209.473000;209.473000;209.442000;209.455000;0 +20260219 010600;209.453000;209.458000;209.385000;209.396000;0 +20260219 010700;209.397000;209.424000;209.393000;209.413000;0 +20260219 010800;209.413000;209.416000;209.396000;209.399000;0 +20260219 010900;209.399000;209.404000;209.393000;209.400000;0 +20260219 011000;209.402000;209.413000;209.368000;209.379000;0 +20260219 011100;209.378000;209.418000;209.378000;209.417000;0 +20260219 011200;209.416000;209.416000;209.364000;209.374000;0 +20260219 011300;209.375000;209.390000;209.371000;209.377000;0 +20260219 011400;209.375000;209.379000;209.346000;209.353000;0 +20260219 011500;209.353000;209.359000;209.333000;209.341000;0 +20260219 011600;209.340000;209.352000;209.274000;209.280000;0 +20260219 011700;209.294000;209.316000;209.288000;209.305000;0 +20260219 011800;209.305000;209.305000;209.269000;209.299000;0 +20260219 011900;209.297000;209.320000;209.286000;209.314000;0 +20260219 012000;209.315000;209.337000;209.309000;209.315000;0 +20260219 012100;209.317000;209.318000;209.288000;209.301000;0 +20260219 012200;209.302000;209.311000;209.270000;209.270000;0 +20260219 012300;209.271000;209.295000;209.258000;209.291000;0 +20260219 012400;209.289000;209.297000;209.274000;209.284000;0 +20260219 012500;209.282000;209.286000;209.272000;209.276000;0 +20260219 012600;209.274000;209.293000;209.266000;209.285000;0 +20260219 012700;209.285000;209.289000;209.255000;209.257000;0 +20260219 012800;209.258000;209.289000;209.252000;209.289000;0 +20260219 012900;209.289000;209.309000;209.275000;209.305000;0 +20260219 013000;209.306000;209.379000;209.306000;209.364000;0 +20260219 013100;209.366000;209.370000;209.318000;209.333000;0 +20260219 013200;209.332000;209.348000;209.310000;209.344000;0 +20260219 013300;209.342000;209.357000;209.327000;209.332000;0 +20260219 013400;209.333000;209.333000;209.311000;209.313000;0 +20260219 013500;209.314000;209.378000;209.311000;209.376000;0 +20260219 013600;209.371000;209.402000;209.371000;209.392000;0 +20260219 013700;209.394000;209.394000;209.322000;209.336000;0 +20260219 013800;209.337000;209.380000;209.333000;209.347000;0 +20260219 013900;209.347000;209.352000;209.335000;209.338000;0 +20260219 014000;209.336000;209.357000;209.328000;209.329000;0 +20260219 014100;209.329000;209.336000;209.274000;209.287000;0 +20260219 014200;209.287000;209.301000;209.266000;209.269000;0 +20260219 014300;209.268000;209.270000;209.232000;209.252000;0 +20260219 014400;209.261000;209.299000;209.261000;209.298000;0 +20260219 014500;209.300000;209.309000;209.298000;209.298000;0 +20260219 014600;209.292000;209.292000;209.243000;209.245000;0 +20260219 014700;209.256000;209.281000;209.255000;209.255000;0 +20260219 014800;209.257000;209.294000;209.257000;209.288000;0 +20260219 014900;209.288000;209.298000;209.280000;209.280000;0 +20260219 015000;209.279000;209.281000;209.257000;209.257000;0 +20260219 015100;209.258000;209.258000;209.232000;209.249000;0 +20260219 015200;209.248000;209.288000;209.241000;209.278000;0 +20260219 015300;209.280000;209.283000;209.228000;209.241000;0 +20260219 015400;209.243000;209.282000;209.243000;209.281000;0 +20260219 015500;209.283000;209.305000;209.280000;209.300000;0 +20260219 015600;209.299000;209.320000;209.299000;209.313000;0 +20260219 015700;209.315000;209.315000;209.298000;209.309000;0 +20260219 015800;209.308000;209.324000;209.308000;209.320000;0 +20260219 015900;209.319000;209.334000;209.314000;209.334000;0 +20260219 020000;209.338000;209.339000;209.316000;209.336000;0 +20260219 020100;209.336000;209.355000;209.334000;209.348000;0 +20260219 020200;209.351000;209.377000;209.343000;209.369000;0 +20260219 020300;209.368000;209.370000;209.353000;209.355000;0 +20260219 020400;209.356000;209.370000;209.352000;209.359000;0 +20260219 020500;209.360000;209.418000;209.357000;209.399000;0 +20260219 020600;209.396000;209.398000;209.349000;209.369000;0 +20260219 020700;209.371000;209.375000;209.351000;209.365000;0 +20260219 020800;209.365000;209.370000;209.334000;209.340000;0 +20260219 020900;209.340000;209.360000;209.334000;209.336000;0 +20260219 021000;209.338000;209.374000;209.336000;209.372000;0 +20260219 021100;209.371000;209.403000;209.371000;209.394000;0 +20260219 021200;209.393000;209.412000;209.384000;209.407000;0 +20260219 021300;209.407000;209.428000;209.400000;209.428000;0 +20260219 021400;209.436000;209.447000;209.419000;209.437000;0 +20260219 021500;209.439000;209.458000;209.437000;209.450000;0 +20260219 021600;209.449000;209.458000;209.445000;209.448000;0 +20260219 021700;209.449000;209.459000;209.441000;209.444000;0 +20260219 021800;209.442000;209.444000;209.404000;209.408000;0 +20260219 021900;209.408000;209.413000;209.396000;209.410000;0 +20260219 022000;209.411000;209.411000;209.366000;209.371000;0 +20260219 022100;209.373000;209.432000;209.373000;209.421000;0 +20260219 022200;209.428000;209.446000;209.407000;209.417000;0 +20260219 022300;209.415000;209.421000;209.395000;209.396000;0 +20260219 022400;209.394000;209.410000;209.380000;209.408000;0 +20260219 022500;209.410000;209.432000;209.402000;209.415000;0 +20260219 022600;209.412000;209.429000;209.405000;209.423000;0 +20260219 022700;209.420000;209.435000;209.417000;209.430000;0 +20260219 022800;209.430000;209.440000;209.423000;209.426000;0 +20260219 022900;209.426000;209.434000;209.417000;209.425000;0 +20260219 023000;209.422000;209.471000;209.419000;209.471000;0 +20260219 023100;209.471000;209.501000;209.471000;209.483000;0 +20260219 023200;209.481000;209.481000;209.447000;209.448000;0 +20260219 023300;209.445000;209.479000;209.418000;209.472000;0 +20260219 023400;209.473000;209.519000;209.465000;209.515000;0 +20260219 023500;209.519000;209.534000;209.501000;209.510000;0 +20260219 023600;209.509000;209.509000;209.472000;209.485000;0 +20260219 023700;209.480000;209.510000;209.476000;209.486000;0 +20260219 023800;209.486000;209.489000;209.418000;209.431000;0 +20260219 023900;209.432000;209.445000;209.411000;209.412000;0 +20260219 024000;209.415000;209.415000;209.366000;209.367000;0 +20260219 024100;209.375000;209.375000;209.340000;209.348000;0 +20260219 024200;209.347000;209.356000;209.324000;209.348000;0 +20260219 024300;209.346000;209.394000;209.346000;209.389000;0 +20260219 024400;209.391000;209.436000;209.391000;209.415000;0 +20260219 024500;209.410000;209.419000;209.398000;209.415000;0 +20260219 024600;209.413000;209.417000;209.378000;209.379000;0 +20260219 024700;209.383000;209.434000;209.381000;209.434000;0 +20260219 024800;209.437000;209.450000;209.422000;209.449000;0 +20260219 024900;209.450000;209.451000;209.434000;209.436000;0 +20260219 025000;209.435000;209.460000;209.429000;209.451000;0 +20260219 025100;209.449000;209.463000;209.438000;209.448000;0 +20260219 025200;209.455000;209.475000;209.454000;209.463000;0 +20260219 025300;209.463000;209.470000;209.429000;209.429000;0 +20260219 025400;209.429000;209.430000;209.403000;209.428000;0 +20260219 025500;209.428000;209.428000;209.339000;209.344000;0 +20260219 025600;209.339000;209.375000;209.338000;209.360000;0 +20260219 025700;209.361000;209.392000;209.354000;209.358000;0 +20260219 025800;209.359000;209.376000;209.329000;209.363000;0 +20260219 025900;209.361000;209.381000;209.338000;209.375000;0 +20260219 030000;209.374000;209.405000;209.351000;209.396000;0 +20260219 030100;209.396000;209.410000;209.374000;209.403000;0 +20260219 030200;209.402000;209.417000;209.362000;209.409000;0 +20260219 030300;209.407000;209.409000;209.364000;209.364000;0 +20260219 030400;209.362000;209.364000;209.280000;209.301000;0 +20260219 030500;209.302000;209.308000;209.254000;209.294000;0 +20260219 030600;209.295000;209.373000;209.295000;209.373000;0 +20260219 030700;209.371000;209.393000;209.294000;209.350000;0 +20260219 030800;209.353000;209.363000;209.334000;209.341000;0 +20260219 030900;209.340000;209.391000;209.336000;209.384000;0 +20260219 031000;209.384000;209.431000;209.371000;209.413000;0 +20260219 031100;209.410000;209.463000;209.410000;209.419000;0 +20260219 031200;209.417000;209.421000;209.368000;209.376000;0 +20260219 031300;209.375000;209.404000;209.374000;209.382000;0 +20260219 031400;209.384000;209.403000;209.340000;209.360000;0 +20260219 031500;209.359000;209.370000;209.343000;209.343000;0 +20260219 031600;209.343000;209.370000;209.343000;209.365000;0 +20260219 031700;209.367000;209.372000;209.336000;209.338000;0 +20260219 031800;209.337000;209.349000;209.312000;209.346000;0 +20260219 031900;209.344000;209.369000;209.324000;209.354000;0 +20260219 032000;209.350000;209.379000;209.316000;209.353000;0 +20260219 032100;209.355000;209.373000;209.327000;209.354000;0 +20260219 032200;209.355000;209.367000;209.304000;209.307000;0 +20260219 032300;209.313000;209.339000;209.292000;209.335000;0 +20260219 032400;209.337000;209.360000;209.335000;209.355000;0 +20260219 032500;209.347000;209.394000;209.346000;209.369000;0 +20260219 032600;209.365000;209.393000;209.365000;209.391000;0 +20260219 032700;209.387000;209.395000;209.336000;209.356000;0 +20260219 032800;209.355000;209.380000;209.319000;209.342000;0 +20260219 032900;209.334000;209.364000;209.327000;209.348000;0 +20260219 033000;209.350000;209.372000;209.340000;209.368000;0 +20260219 033100;209.365000;209.373000;209.287000;209.287000;0 +20260219 033200;209.290000;209.293000;209.255000;209.261000;0 +20260219 033300;209.259000;209.279000;209.199000;209.215000;0 +20260219 033400;209.220000;209.242000;209.218000;209.235000;0 +20260219 033500;209.235000;209.241000;209.187000;209.195000;0 +20260219 033600;209.200000;209.207000;209.177000;209.193000;0 +20260219 033700;209.192000;209.228000;209.183000;209.220000;0 +20260219 033800;209.218000;209.245000;209.202000;209.222000;0 +20260219 033900;209.219000;209.230000;209.186000;209.189000;0 +20260219 034000;209.190000;209.195000;209.111000;209.115000;0 +20260219 034100;209.118000;209.124000;209.089000;209.098000;0 +20260219 034200;209.105000;209.151000;209.098000;209.146000;0 +20260219 034300;209.147000;209.175000;209.147000;209.168000;0 +20260219 034400;209.170000;209.174000;209.124000;209.143000;0 +20260219 034500;209.145000;209.161000;209.127000;209.127000;0 +20260219 034600;209.127000;209.141000;209.116000;209.116000;0 +20260219 034700;209.116000;209.147000;209.115000;209.115000;0 +20260219 034800;209.115000;209.124000;209.101000;209.113000;0 +20260219 034900;209.111000;209.111000;209.076000;209.087000;0 +20260219 035000;209.087000;209.087000;209.035000;209.039000;0 +20260219 035100;209.042000;209.050000;208.979000;208.979000;0 +20260219 035200;208.976000;209.014000;208.964000;208.997000;0 +20260219 035300;208.993000;209.016000;208.968000;209.016000;0 +20260219 035400;209.016000;209.068000;209.013000;209.044000;0 +20260219 035500;209.041000;209.076000;209.041000;209.061000;0 +20260219 035600;209.061000;209.081000;209.052000;209.075000;0 +20260219 035700;209.075000;209.117000;209.071000;209.117000;0 +20260219 035800;209.112000;209.123000;209.090000;209.113000;0 +20260219 035900;209.112000;209.129000;209.070000;209.084000;0 +20260219 040000;209.087000;209.187000;209.087000;209.187000;0 +20260219 040100;209.184000;209.216000;209.173000;209.216000;0 +20260219 040200;209.216000;209.229000;209.211000;209.212000;0 +20260219 040300;209.214000;209.215000;209.185000;209.198000;0 +20260219 040400;209.197000;209.199000;209.128000;209.137000;0 +20260219 040500;209.138000;209.151000;209.115000;209.145000;0 +20260219 040600;209.146000;209.206000;209.141000;209.199000;0 +20260219 040700;209.202000;209.248000;209.199000;209.241000;0 +20260219 040800;209.237000;209.268000;209.215000;209.265000;0 +20260219 040900;209.264000;209.269000;209.241000;209.258000;0 +20260219 041000;209.260000;209.270000;209.237000;209.251000;0 +20260219 041100;209.249000;209.265000;209.223000;209.258000;0 +20260219 041200;209.256000;209.268000;209.242000;209.256000;0 +20260219 041300;209.260000;209.291000;209.254000;209.288000;0 +20260219 041400;209.289000;209.313000;209.289000;209.308000;0 +20260219 041500;209.302000;209.320000;209.286000;209.297000;0 +20260219 041600;209.297000;209.302000;209.255000;209.255000;0 +20260219 041700;209.257000;209.263000;209.244000;209.247000;0 +20260219 041800;209.243000;209.243000;209.207000;209.214000;0 +20260219 041900;209.214000;209.249000;209.203000;209.231000;0 +20260219 042000;209.232000;209.241000;209.220000;209.235000;0 +20260219 042100;209.239000;209.242000;209.210000;209.217000;0 +20260219 042200;209.220000;209.267000;209.218000;209.252000;0 +20260219 042300;209.251000;209.265000;209.233000;209.236000;0 +20260219 042400;209.235000;209.263000;209.234000;209.262000;0 +20260219 042500;209.261000;209.266000;209.242000;209.256000;0 +20260219 042600;209.255000;209.255000;209.224000;209.231000;0 +20260219 042700;209.228000;209.251000;209.216000;209.249000;0 +20260219 042800;209.249000;209.257000;209.236000;209.251000;0 +20260219 042900;209.254000;209.255000;209.209000;209.210000;0 +20260219 043000;209.209000;209.213000;209.176000;209.210000;0 +20260219 043100;209.205000;209.207000;209.148000;209.149000;0 +20260219 043200;209.152000;209.176000;209.146000;209.176000;0 +20260219 043300;209.170000;209.170000;209.147000;209.156000;0 +20260219 043400;209.163000;209.181000;209.158000;209.171000;0 +20260219 043500;209.172000;209.173000;209.124000;209.132000;0 +20260219 043600;209.133000;209.134000;209.093000;209.101000;0 +20260219 043700;209.100000;209.125000;209.077000;209.077000;0 +20260219 043800;209.075000;209.099000;209.061000;209.095000;0 +20260219 043900;209.096000;209.109000;209.084000;209.099000;0 +20260219 044000;209.103000;209.105000;209.080000;209.096000;0 +20260219 044100;209.096000;209.097000;209.064000;209.064000;0 +20260219 044200;209.071000;209.071000;209.029000;209.047000;0 +20260219 044300;209.050000;209.050000;209.003000;209.024000;0 +20260219 044400;209.021000;209.037000;209.015000;209.035000;0 +20260219 044500;209.037000;209.037000;209.017000;209.018000;0 +20260219 044600;209.029000;209.034000;208.948000;208.964000;0 +20260219 044700;208.960000;208.960000;208.932000;208.937000;0 +20260219 044800;208.938000;208.940000;208.918000;208.935000;0 +20260219 044900;208.935000;208.935000;208.877000;208.908000;0 +20260219 045000;208.909000;208.972000;208.909000;208.967000;0 +20260219 045100;208.964000;208.970000;208.940000;208.946000;0 +20260219 045200;208.947000;209.012000;208.946000;209.011000;0 +20260219 045300;209.009000;209.016000;208.993000;209.008000;0 +20260219 045400;209.010000;209.051000;209.002000;209.044000;0 +20260219 045500;209.043000;209.084000;209.032000;209.063000;0 +20260219 045600;209.062000;209.067000;209.023000;209.030000;0 +20260219 045700;209.031000;209.058000;209.031000;209.048000;0 +20260219 045800;209.047000;209.068000;209.038000;209.043000;0 +20260219 045900;209.039000;209.059000;209.022000;209.059000;0 +20260219 050000;209.058000;209.090000;209.040000;209.047000;0 +20260219 050100;209.055000;209.071000;209.047000;209.057000;0 +20260219 050200;209.057000;209.072000;209.048000;209.054000;0 +20260219 050300;209.054000;209.058000;208.906000;208.944000;0 +20260219 050400;208.948000;208.981000;208.937000;208.980000;0 +20260219 050500;208.976000;209.018000;208.950000;209.011000;0 +20260219 050600;209.011000;209.026000;208.978000;209.012000;0 +20260219 050700;209.017000;209.023000;208.964000;208.971000;0 +20260219 050800;208.968000;209.014000;208.965000;209.005000;0 +20260219 050900;209.007000;209.027000;208.990000;209.023000;0 +20260219 051000;209.020000;209.027000;208.969000;208.970000;0 +20260219 051100;208.969000;208.997000;208.962000;208.973000;0 +20260219 051200;208.973000;208.995000;208.965000;208.974000;0 +20260219 051300;208.975000;208.975000;208.923000;208.932000;0 +20260219 051400;208.934000;208.965000;208.927000;208.960000;0 +20260219 051500;208.960000;208.980000;208.943000;208.953000;0 +20260219 051600;208.954000;208.962000;208.896000;208.896000;0 +20260219 051700;208.896000;208.896000;208.882000;208.891000;0 +20260219 051800;208.892000;208.916000;208.888000;208.905000;0 +20260219 051900;208.904000;208.907000;208.890000;208.890000;0 +20260219 052000;208.890000;208.892000;208.857000;208.858000;0 +20260219 052100;208.860000;208.860000;208.839000;208.840000;0 +20260219 052200;208.839000;208.840000;208.805000;208.834000;0 +20260219 052300;208.834000;208.859000;208.820000;208.842000;0 +20260219 052400;208.849000;208.856000;208.839000;208.856000;0 +20260219 052500;208.854000;208.892000;208.852000;208.888000;0 +20260219 052600;208.888000;208.902000;208.881000;208.881000;0 +20260219 052700;208.881000;208.895000;208.860000;208.873000;0 +20260219 052800;208.873000;208.876000;208.842000;208.852000;0 +20260219 052900;208.850000;208.850000;208.828000;208.833000;0 +20260219 053000;208.831000;208.834000;208.736000;208.736000;0 +20260219 053100;208.739000;208.763000;208.733000;208.733000;0 +20260219 053200;208.733000;208.744000;208.712000;208.713000;0 +20260219 053300;208.713000;208.722000;208.703000;208.703000;0 +20260219 053400;208.706000;208.708000;208.682000;208.693000;0 +20260219 053500;208.687000;208.692000;208.653000;208.668000;0 +20260219 053600;208.668000;208.746000;208.664000;208.746000;0 +20260219 053700;208.743000;208.744000;208.718000;208.731000;0 +20260219 053800;208.735000;208.758000;208.723000;208.751000;0 +20260219 053900;208.753000;208.770000;208.737000;208.748000;0 +20260219 054000;208.748000;208.772000;208.744000;208.759000;0 +20260219 054100;208.765000;208.767000;208.732000;208.755000;0 +20260219 054200;208.754000;208.761000;208.735000;208.752000;0 +20260219 054300;208.748000;208.778000;208.745000;208.776000;0 +20260219 054400;208.769000;208.771000;208.754000;208.762000;0 +20260219 054500;208.760000;208.760000;208.729000;208.729000;0 +20260219 054600;208.730000;208.739000;208.717000;208.734000;0 +20260219 054700;208.726000;208.743000;208.721000;208.734000;0 +20260219 054800;208.733000;208.748000;208.725000;208.734000;0 +20260219 054900;208.735000;208.735000;208.710000;208.716000;0 +20260219 055000;208.715000;208.725000;208.700000;208.722000;0 +20260219 055100;208.719000;208.719000;208.650000;208.650000;0 +20260219 055200;208.653000;208.674000;208.618000;208.620000;0 +20260219 055300;208.622000;208.633000;208.616000;208.629000;0 +20260219 055400;208.629000;208.648000;208.623000;208.629000;0 +20260219 055500;208.632000;208.681000;208.632000;208.678000;0 +20260219 055600;208.678000;208.689000;208.672000;208.680000;0 +20260219 055700;208.679000;208.680000;208.620000;208.621000;0 +20260219 055800;208.621000;208.632000;208.610000;208.630000;0 +20260219 055900;208.631000;208.672000;208.630000;208.669000;0 +20260219 060000;208.671000;208.678000;208.646000;208.660000;0 +20260219 060100;208.659000;208.664000;208.618000;208.622000;0 +20260219 060200;208.621000;208.634000;208.583000;208.619000;0 +20260219 060300;208.619000;208.646000;208.604000;208.646000;0 +20260219 060400;208.645000;208.646000;208.606000;208.616000;0 +20260219 060500;208.619000;208.656000;208.619000;208.656000;0 +20260219 060600;208.656000;208.688000;208.654000;208.676000;0 +20260219 060700;208.676000;208.697000;208.643000;208.646000;0 +20260219 060800;208.646000;208.662000;208.628000;208.652000;0 +20260219 060900;208.654000;208.655000;208.620000;208.637000;0 +20260219 061000;208.638000;208.664000;208.632000;208.658000;0 +20260219 061100;208.659000;208.667000;208.644000;208.659000;0 +20260219 061200;208.658000;208.659000;208.644000;208.647000;0 +20260219 061300;208.646000;208.652000;208.629000;208.648000;0 +20260219 061400;208.648000;208.658000;208.623000;208.630000;0 +20260219 061500;208.628000;208.633000;208.572000;208.576000;0 +20260219 061600;208.577000;208.580000;208.557000;208.567000;0 +20260219 061700;208.564000;208.566000;208.530000;208.540000;0 +20260219 061800;208.539000;208.548000;208.519000;208.527000;0 +20260219 061900;208.522000;208.566000;208.521000;208.550000;0 +20260219 062000;208.549000;208.575000;208.540000;208.565000;0 +20260219 062100;208.565000;208.587000;208.542000;208.549000;0 +20260219 062200;208.547000;208.551000;208.490000;208.491000;0 +20260219 062300;208.490000;208.502000;208.478000;208.497000;0 +20260219 062400;208.497000;208.501000;208.478000;208.501000;0 +20260219 062500;208.503000;208.507000;208.480000;208.480000;0 +20260219 062600;208.481000;208.484000;208.457000;208.457000;0 +20260219 062700;208.454000;208.470000;208.397000;208.416000;0 +20260219 062800;208.412000;208.416000;208.354000;208.383000;0 +20260219 062900;208.382000;208.382000;208.341000;208.341000;0 +20260219 063000;208.339000;208.376000;208.339000;208.355000;0 +20260219 063100;208.355000;208.378000;208.351000;208.351000;0 +20260219 063200;208.351000;208.356000;208.335000;208.336000;0 +20260219 063300;208.337000;208.371000;208.332000;208.362000;0 +20260219 063400;208.364000;208.370000;208.339000;208.342000;0 +20260219 063500;208.341000;208.341000;208.305000;208.305000;0 +20260219 063600;208.304000;208.327000;208.301000;208.325000;0 +20260219 063700;208.324000;208.331000;208.289000;208.322000;0 +20260219 063800;208.324000;208.383000;208.324000;208.375000;0 +20260219 063900;208.373000;208.373000;208.336000;208.343000;0 +20260219 064000;208.355000;208.364000;208.314000;208.328000;0 +20260219 064100;208.327000;208.377000;208.327000;208.376000;0 +20260219 064200;208.378000;208.450000;208.378000;208.450000;0 +20260219 064300;208.444000;208.452000;208.399000;208.404000;0 +20260219 064400;208.403000;208.403000;208.366000;208.390000;0 +20260219 064500;208.394000;208.406000;208.371000;208.386000;0 +20260219 064600;208.389000;208.407000;208.385000;208.392000;0 +20260219 064700;208.391000;208.394000;208.358000;208.366000;0 +20260219 064800;208.365000;208.393000;208.357000;208.358000;0 +20260219 064900;208.353000;208.353000;208.290000;208.294000;0 +20260219 065000;208.293000;208.293000;208.249000;208.278000;0 +20260219 065100;208.279000;208.279000;208.214000;208.225000;0 +20260219 065200;208.227000;208.240000;208.200000;208.216000;0 +20260219 065300;208.215000;208.262000;208.215000;208.251000;0 +20260219 065400;208.253000;208.256000;208.235000;208.252000;0 +20260219 065500;208.253000;208.255000;208.240000;208.241000;0 +20260219 065600;208.240000;208.263000;208.204000;208.218000;0 +20260219 065700;208.218000;208.264000;208.214000;208.225000;0 +20260219 065800;208.223000;208.249000;208.216000;208.228000;0 +20260219 065900;208.227000;208.231000;208.213000;208.213000;0 +20260219 070000;208.216000;208.217000;208.136000;208.137000;0 +20260219 070100;208.140000;208.149000;208.079000;208.103000;0 +20260219 070200;208.097000;208.120000;208.095000;208.113000;0 +20260219 070300;208.113000;208.125000;208.088000;208.124000;0 +20260219 070400;208.131000;208.154000;208.122000;208.124000;0 +20260219 070500;208.128000;208.154000;208.110000;208.127000;0 +20260219 070600;208.128000;208.195000;208.128000;208.155000;0 +20260219 070700;208.149000;208.175000;208.147000;208.158000;0 +20260219 070800;208.156000;208.165000;208.107000;208.121000;0 +20260219 070900;208.122000;208.154000;208.102000;208.124000;0 +20260219 071000;208.122000;208.153000;208.108000;208.135000;0 +20260219 071100;208.134000;208.175000;208.132000;208.171000;0 +20260219 071200;208.169000;208.183000;208.155000;208.171000;0 +20260219 071300;208.171000;208.187000;208.162000;208.162000;0 +20260219 071400;208.163000;208.173000;208.142000;208.149000;0 +20260219 071500;208.148000;208.154000;208.131000;208.131000;0 +20260219 071600;208.122000;208.136000;208.110000;208.121000;0 +20260219 071700;208.116000;208.142000;208.116000;208.136000;0 +20260219 071800;208.130000;208.184000;208.125000;208.184000;0 +20260219 071900;208.188000;208.188000;208.127000;208.134000;0 +20260219 072000;208.133000;208.147000;208.116000;208.131000;0 +20260219 072100;208.135000;208.135000;208.086000;208.110000;0 +20260219 072200;208.108000;208.116000;208.083000;208.084000;0 +20260219 072300;208.084000;208.123000;208.082000;208.117000;0 +20260219 072400;208.117000;208.163000;208.110000;208.162000;0 +20260219 072500;208.161000;208.194000;208.150000;208.180000;0 +20260219 072600;208.178000;208.233000;208.177000;208.233000;0 +20260219 072700;208.232000;208.234000;208.213000;208.216000;0 +20260219 072800;208.215000;208.242000;208.211000;208.221000;0 +20260219 072900;208.219000;208.230000;208.200000;208.201000;0 +20260219 073000;208.199000;208.241000;208.199000;208.229000;0 +20260219 073100;208.230000;208.305000;208.230000;208.302000;0 +20260219 073200;208.302000;208.313000;208.284000;208.308000;0 +20260219 073300;208.308000;208.355000;208.304000;208.336000;0 +20260219 073400;208.337000;208.399000;208.322000;208.385000;0 +20260219 073500;208.391000;208.396000;208.354000;208.375000;0 +20260219 073600;208.373000;208.373000;208.326000;208.326000;0 +20260219 073700;208.327000;208.346000;208.325000;208.338000;0 +20260219 073800;208.344000;208.362000;208.336000;208.360000;0 +20260219 073900;208.360000;208.364000;208.346000;208.355000;0 +20260219 074000;208.353000;208.368000;208.336000;208.356000;0 +20260219 074100;208.357000;208.360000;208.339000;208.348000;0 +20260219 074200;208.348000;208.350000;208.327000;208.327000;0 +20260219 074300;208.323000;208.344000;208.314000;208.344000;0 +20260219 074400;208.337000;208.360000;208.321000;208.359000;0 +20260219 074500;208.362000;208.375000;208.352000;208.368000;0 +20260219 074600;208.368000;208.369000;208.355000;208.365000;0 +20260219 074700;208.364000;208.375000;208.354000;208.369000;0 +20260219 074800;208.365000;208.377000;208.333000;208.376000;0 +20260219 074900;208.374000;208.375000;208.346000;208.346000;0 +20260219 075000;208.343000;208.367000;208.336000;208.362000;0 +20260219 075100;208.361000;208.363000;208.346000;208.358000;0 +20260219 075200;208.361000;208.365000;208.347000;208.351000;0 +20260219 075300;208.349000;208.349000;208.323000;208.342000;0 +20260219 075400;208.344000;208.356000;208.324000;208.324000;0 +20260219 075500;208.322000;208.348000;208.313000;208.344000;0 +20260219 075600;208.345000;208.370000;208.345000;208.368000;0 +20260219 075700;208.365000;208.401000;208.365000;208.396000;0 +20260219 075800;208.395000;208.428000;208.392000;208.400000;0 +20260219 075900;208.402000;208.424000;208.400000;208.408000;0 +20260219 080000;208.409000;208.415000;208.380000;208.382000;0 +20260219 080100;208.383000;208.383000;208.327000;208.334000;0 +20260219 080200;208.345000;208.355000;208.296000;208.319000;0 +20260219 080300;208.316000;208.361000;208.314000;208.349000;0 +20260219 080400;208.347000;208.365000;208.323000;208.327000;0 +20260219 080500;208.319000;208.341000;208.301000;208.322000;0 +20260219 080600;208.321000;208.322000;208.280000;208.292000;0 +20260219 080700;208.291000;208.323000;208.277000;208.314000;0 +20260219 080800;208.311000;208.312000;208.285000;208.303000;0 +20260219 080900;208.302000;208.332000;208.296000;208.331000;0 +20260219 081000;208.334000;208.387000;208.319000;208.370000;0 +20260219 081100;208.366000;208.413000;208.366000;208.393000;0 +20260219 081200;208.393000;208.426000;208.377000;208.411000;0 +20260219 081300;208.410000;208.452000;208.409000;208.432000;0 +20260219 081400;208.441000;208.520000;208.434000;208.509000;0 +20260219 081500;208.511000;208.511000;208.462000;208.463000;0 +20260219 081600;208.462000;208.467000;208.447000;208.448000;0 +20260219 081700;208.450000;208.460000;208.433000;208.436000;0 +20260219 081800;208.437000;208.451000;208.425000;208.426000;0 +20260219 081900;208.427000;208.454000;208.423000;208.454000;0 +20260219 082000;208.452000;208.468000;208.439000;208.453000;0 +20260219 082100;208.451000;208.466000;208.444000;208.464000;0 +20260219 082200;208.466000;208.466000;208.447000;208.451000;0 +20260219 082300;208.452000;208.493000;208.452000;208.466000;0 +20260219 082400;208.465000;208.468000;208.422000;208.431000;0 +20260219 082500;208.433000;208.442000;208.411000;208.429000;0 +20260219 082600;208.428000;208.435000;208.398000;208.407000;0 +20260219 082700;208.408000;208.474000;208.408000;208.462000;0 +20260219 082800;208.462000;208.485000;208.451000;208.469000;0 +20260219 082900;208.466000;208.471000;208.428000;208.428000;0 +20260219 083000;208.434000;208.467000;208.387000;208.448000;0 +20260219 083100;208.448000;208.508000;208.441000;208.499000;0 +20260219 083200;208.495000;208.539000;208.478000;208.524000;0 +20260219 083300;208.526000;208.584000;208.522000;208.576000;0 +20260219 083400;208.574000;208.618000;208.554000;208.608000;0 +20260219 083500;208.603000;208.603000;208.565000;208.595000;0 +20260219 083600;208.598000;208.633000;208.589000;208.624000;0 +20260219 083700;208.622000;208.642000;208.604000;208.623000;0 +20260219 083800;208.621000;208.649000;208.607000;208.634000;0 +20260219 083900;208.639000;208.643000;208.587000;208.593000;0 +20260219 084000;208.594000;208.595000;208.572000;208.579000;0 +20260219 084100;208.581000;208.614000;208.572000;208.601000;0 +20260219 084200;208.607000;208.620000;208.588000;208.594000;0 +20260219 084300;208.596000;208.599000;208.544000;208.546000;0 +20260219 084400;208.545000;208.563000;208.539000;208.556000;0 +20260219 084500;208.554000;208.582000;208.541000;208.579000;0 +20260219 084600;208.576000;208.581000;208.549000;208.555000;0 +20260219 084700;208.557000;208.577000;208.518000;208.529000;0 +20260219 084800;208.526000;208.535000;208.506000;208.521000;0 +20260219 084900;208.521000;208.521000;208.442000;208.452000;0 +20260219 085000;208.452000;208.525000;208.451000;208.472000;0 +20260219 085100;208.474000;208.532000;208.474000;208.525000;0 +20260219 085200;208.527000;208.545000;208.477000;208.491000;0 +20260219 085300;208.491000;208.498000;208.424000;208.448000;0 +20260219 085400;208.449000;208.483000;208.438000;208.459000;0 +20260219 085500;208.455000;208.475000;208.439000;208.444000;0 +20260219 085600;208.445000;208.486000;208.437000;208.478000;0 +20260219 085700;208.479000;208.511000;208.471000;208.502000;0 +20260219 085800;208.498000;208.576000;208.493000;208.572000;0 +20260219 085900;208.571000;208.623000;208.568000;208.616000;0 +20260219 090000;208.616000;208.623000;208.511000;208.521000;0 +20260219 090100;208.528000;208.558000;208.478000;208.553000;0 +20260219 090200;208.555000;208.555000;208.487000;208.487000;0 +20260219 090300;208.487000;208.507000;208.463000;208.483000;0 +20260219 090400;208.481000;208.504000;208.467000;208.468000;0 +20260219 090500;208.471000;208.517000;208.464000;208.512000;0 +20260219 090600;208.512000;208.538000;208.497000;208.530000;0 +20260219 090700;208.531000;208.591000;208.527000;208.566000;0 +20260219 090800;208.566000;208.587000;208.549000;208.556000;0 +20260219 090900;208.554000;208.556000;208.493000;208.507000;0 +20260219 091000;208.512000;208.513000;208.470000;208.489000;0 +20260219 091100;208.490000;208.503000;208.479000;208.483000;0 +20260219 091200;208.482000;208.504000;208.473000;208.496000;0 +20260219 091300;208.496000;208.548000;208.484000;208.540000;0 +20260219 091400;208.540000;208.602000;208.495000;208.546000;0 +20260219 091500;208.545000;208.577000;208.519000;208.549000;0 +20260219 091600;208.545000;208.569000;208.540000;208.546000;0 +20260219 091700;208.544000;208.553000;208.520000;208.535000;0 +20260219 091800;208.537000;208.554000;208.494000;208.496000;0 +20260219 091900;208.498000;208.542000;208.494000;208.540000;0 +20260219 092000;208.542000;208.585000;208.531000;208.577000;0 +20260219 092100;208.576000;208.608000;208.563000;208.589000;0 +20260219 092200;208.598000;208.607000;208.554000;208.576000;0 +20260219 092300;208.576000;208.605000;208.559000;208.590000;0 +20260219 092400;208.589000;208.612000;208.579000;208.586000;0 +20260219 092500;208.598000;208.601000;208.560000;208.595000;0 +20260219 092600;208.591000;208.621000;208.573000;208.616000;0 +20260219 092700;208.618000;208.698000;208.601000;208.698000;0 +20260219 092800;208.697000;208.703000;208.646000;208.665000;0 +20260219 092900;208.667000;208.721000;208.651000;208.713000;0 +20260219 093000;208.714000;208.719000;208.657000;208.684000;0 +20260219 093100;208.684000;208.694000;208.645000;208.667000;0 +20260219 093200;208.666000;208.666000;208.615000;208.635000;0 +20260219 093300;208.635000;208.655000;208.591000;208.632000;0 +20260219 093400;208.640000;208.710000;208.625000;208.672000;0 +20260219 093500;208.673000;208.704000;208.634000;208.657000;0 +20260219 093600;208.655000;208.657000;208.501000;208.604000;0 +20260219 093700;208.604000;208.652000;208.584000;208.593000;0 +20260219 093800;208.592000;208.647000;208.586000;208.604000;0 +20260219 093900;208.601000;208.646000;208.587000;208.635000;0 +20260219 094000;208.631000;208.678000;208.601000;208.671000;0 +20260219 094100;208.667000;208.681000;208.571000;208.572000;0 +20260219 094200;208.571000;208.591000;208.547000;208.582000;0 +20260219 094300;208.583000;208.587000;208.546000;208.571000;0 +20260219 094400;208.573000;208.631000;208.567000;208.606000;0 +20260219 094500;208.605000;208.624000;208.566000;208.585000;0 +20260219 094600;208.585000;208.595000;208.550000;208.581000;0 +20260219 094700;208.577000;208.581000;208.527000;208.554000;0 +20260219 094800;208.553000;208.596000;208.544000;208.586000;0 +20260219 094900;208.586000;208.596000;208.549000;208.566000;0 +20260219 095000;208.562000;208.618000;208.562000;208.595000;0 +20260219 095100;208.597000;208.615000;208.585000;208.615000;0 +20260219 095200;208.619000;208.710000;208.614000;208.702000;0 +20260219 095300;208.704000;208.704000;208.643000;208.659000;0 +20260219 095400;208.660000;208.663000;208.580000;208.585000;0 +20260219 095500;208.578000;208.671000;208.575000;208.670000;0 +20260219 095600;208.671000;208.693000;208.661000;208.688000;0 +20260219 095700;208.686000;208.699000;208.651000;208.689000;0 +20260219 095800;208.685000;208.690000;208.633000;208.641000;0 +20260219 095900;208.643000;208.689000;208.611000;208.685000;0 +20260219 100000;208.687000;208.725000;208.632000;208.650000;0 +20260219 100100;208.648000;208.692000;208.643000;208.671000;0 +20260219 100200;208.672000;208.725000;208.615000;208.725000;0 +20260219 100300;208.727000;208.857000;208.720000;208.837000;0 +20260219 100400;208.835000;208.852000;208.777000;208.791000;0 +20260219 100500;208.789000;208.795000;208.747000;208.760000;0 +20260219 100600;208.758000;208.816000;208.751000;208.801000;0 +20260219 100700;208.804000;208.805000;208.752000;208.779000;0 +20260219 100800;208.777000;208.805000;208.740000;208.796000;0 +20260219 100900;208.798000;208.868000;208.784000;208.840000;0 +20260219 101000;208.843000;208.880000;208.814000;208.842000;0 +20260219 101100;208.841000;208.872000;208.829000;208.858000;0 +20260219 101200;208.861000;208.873000;208.819000;208.848000;0 +20260219 101300;208.855000;208.877000;208.809000;208.818000;0 +20260219 101400;208.818000;208.843000;208.799000;208.839000;0 +20260219 101500;208.839000;208.889000;208.834000;208.879000;0 +20260219 101600;208.877000;208.888000;208.829000;208.854000;0 +20260219 101700;208.858000;208.883000;208.844000;208.881000;0 +20260219 101800;208.877000;208.878000;208.824000;208.864000;0 +20260219 101900;208.864000;208.872000;208.823000;208.841000;0 +20260219 102000;208.838000;208.879000;208.827000;208.876000;0 +20260219 102100;208.874000;208.886000;208.797000;208.797000;0 +20260219 102200;208.799000;208.823000;208.797000;208.821000;0 +20260219 102300;208.825000;208.839000;208.797000;208.801000;0 +20260219 102400;208.807000;208.822000;208.786000;208.801000;0 +20260219 102500;208.802000;208.817000;208.781000;208.789000;0 +20260219 102600;208.791000;208.802000;208.755000;208.765000;0 +20260219 102700;208.762000;208.772000;208.704000;208.716000;0 +20260219 102800;208.717000;208.731000;208.711000;208.719000;0 +20260219 102900;208.723000;208.756000;208.718000;208.748000;0 +20260219 103000;208.750000;208.802000;208.733000;208.776000;0 +20260219 103100;208.772000;208.827000;208.772000;208.814000;0 +20260219 103200;208.813000;208.846000;208.805000;208.834000;0 +20260219 103300;208.831000;208.854000;208.787000;208.804000;0 +20260219 103400;208.809000;208.833000;208.787000;208.820000;0 +20260219 103500;208.816000;208.822000;208.774000;208.785000;0 +20260219 103600;208.787000;208.793000;208.756000;208.765000;0 +20260219 103700;208.763000;208.783000;208.751000;208.774000;0 +20260219 103800;208.779000;208.795000;208.742000;208.746000;0 +20260219 103900;208.748000;208.752000;208.706000;208.717000;0 +20260219 104000;208.717000;208.766000;208.717000;208.764000;0 +20260219 104100;208.766000;208.824000;208.764000;208.815000;0 +20260219 104200;208.809000;208.815000;208.782000;208.790000;0 +20260219 104300;208.788000;208.789000;208.742000;208.754000;0 +20260219 104400;208.750000;208.754000;208.704000;208.707000;0 +20260219 104500;208.708000;208.720000;208.679000;208.694000;0 +20260219 104600;208.695000;208.745000;208.694000;208.742000;0 +20260219 104700;208.743000;208.826000;208.739000;208.795000;0 +20260219 104800;208.797000;208.818000;208.758000;208.759000;0 +20260219 104900;208.761000;208.810000;208.751000;208.806000;0 +20260219 105000;208.804000;208.805000;208.700000;208.705000;0 +20260219 105100;208.709000;208.710000;208.648000;208.648000;0 +20260219 105200;208.648000;208.702000;208.647000;208.691000;0 +20260219 105300;208.691000;208.703000;208.601000;208.609000;0 +20260219 105400;208.605000;208.614000;208.557000;208.560000;0 +20260219 105500;208.557000;208.584000;208.538000;208.562000;0 +20260219 105600;208.567000;208.605000;208.567000;208.602000;0 +20260219 105700;208.603000;208.610000;208.583000;208.608000;0 +20260219 105800;208.610000;208.617000;208.570000;208.575000;0 +20260219 105900;208.577000;208.579000;208.531000;208.532000;0 +20260219 110000;208.535000;208.542000;208.515000;208.537000;0 +20260219 110100;208.539000;208.555000;208.508000;208.519000;0 +20260219 110200;208.521000;208.531000;208.487000;208.495000;0 +20260219 110300;208.496000;208.514000;208.462000;208.489000;0 +20260219 110400;208.492000;208.492000;208.422000;208.433000;0 +20260219 110500;208.433000;208.448000;208.399000;208.406000;0 +20260219 110600;208.403000;208.407000;208.336000;208.352000;0 +20260219 110700;208.352000;208.359000;208.268000;208.329000;0 +20260219 110800;208.333000;208.364000;208.318000;208.355000;0 +20260219 110900;208.354000;208.401000;208.354000;208.384000;0 +20260219 111000;208.384000;208.401000;208.341000;208.355000;0 +20260219 111100;208.361000;208.403000;208.355000;208.384000;0 +20260219 111200;208.383000;208.453000;208.378000;208.439000;0 +20260219 111300;208.441000;208.469000;208.436000;208.454000;0 +20260219 111400;208.454000;208.457000;208.385000;208.402000;0 +20260219 111500;208.400000;208.447000;208.389000;208.429000;0 +20260219 111600;208.430000;208.435000;208.410000;208.434000;0 +20260219 111700;208.435000;208.435000;208.380000;208.407000;0 +20260219 111800;208.409000;208.432000;208.408000;208.419000;0 +20260219 111900;208.417000;208.423000;208.359000;208.383000;0 +20260219 112000;208.378000;208.392000;208.367000;208.388000;0 +20260219 112100;208.387000;208.401000;208.381000;208.395000;0 +20260219 112200;208.398000;208.422000;208.391000;208.408000;0 +20260219 112300;208.406000;208.414000;208.399000;208.409000;0 +20260219 112400;208.413000;208.429000;208.397000;208.417000;0 +20260219 112500;208.417000;208.430000;208.387000;208.393000;0 +20260219 112600;208.391000;208.404000;208.386000;208.403000;0 +20260219 112700;208.401000;208.411000;208.344000;208.355000;0 +20260219 112800;208.358000;208.363000;208.321000;208.336000;0 +20260219 112900;208.332000;208.350000;208.325000;208.339000;0 +20260219 113000;208.341000;208.375000;208.340000;208.355000;0 +20260219 113100;208.354000;208.382000;208.350000;208.378000;0 +20260219 113200;208.380000;208.430000;208.369000;208.409000;0 +20260219 113300;208.407000;208.410000;208.358000;208.383000;0 +20260219 113400;208.384000;208.452000;208.380000;208.445000;0 +20260219 113500;208.444000;208.445000;208.403000;208.408000;0 +20260219 113600;208.401000;208.415000;208.388000;208.401000;0 +20260219 113700;208.401000;208.412000;208.382000;208.382000;0 +20260219 113800;208.390000;208.410000;208.390000;208.396000;0 +20260219 113900;208.398000;208.413000;208.390000;208.406000;0 +20260219 114000;208.407000;208.407000;208.351000;208.365000;0 +20260219 114100;208.364000;208.381000;208.354000;208.378000;0 +20260219 114200;208.379000;208.382000;208.353000;208.357000;0 +20260219 114300;208.356000;208.389000;208.352000;208.354000;0 +20260219 114400;208.350000;208.374000;208.341000;208.346000;0 +20260219 114500;208.347000;208.353000;208.299000;208.299000;0 +20260219 114600;208.301000;208.338000;208.299000;208.336000;0 +20260219 114700;208.334000;208.368000;208.319000;208.367000;0 +20260219 114800;208.368000;208.390000;208.359000;208.369000;0 +20260219 114900;208.367000;208.376000;208.364000;208.366000;0 +20260219 115000;208.368000;208.372000;208.340000;208.354000;0 +20260219 115100;208.351000;208.365000;208.320000;208.323000;0 +20260219 115200;208.324000;208.328000;208.298000;208.311000;0 +20260219 115300;208.310000;208.328000;208.303000;208.319000;0 +20260219 115400;208.319000;208.329000;208.295000;208.324000;0 +20260219 115500;208.325000;208.325000;208.288000;208.305000;0 +20260219 115600;208.307000;208.316000;208.292000;208.303000;0 +20260219 115700;208.311000;208.313000;208.289000;208.297000;0 +20260219 115800;208.302000;208.332000;208.296000;208.321000;0 +20260219 115900;208.322000;208.358000;208.312000;208.349000;0 +20260219 120000;208.348000;208.351000;208.309000;208.319000;0 +20260219 120100;208.320000;208.333000;208.294000;208.304000;0 +20260219 120200;208.302000;208.330000;208.302000;208.312000;0 +20260219 120300;208.314000;208.333000;208.306000;208.319000;0 +20260219 120400;208.318000;208.319000;208.273000;208.285000;0 +20260219 120500;208.284000;208.300000;208.271000;208.290000;0 +20260219 120600;208.293000;208.310000;208.284000;208.297000;0 +20260219 120700;208.296000;208.330000;208.296000;208.329000;0 +20260219 120800;208.327000;208.422000;208.307000;208.413000;0 +20260219 120900;208.412000;208.412000;208.364000;208.391000;0 +20260219 121000;208.390000;208.393000;208.356000;208.372000;0 +20260219 121100;208.372000;208.380000;208.340000;208.344000;0 +20260219 121200;208.343000;208.361000;208.320000;208.356000;0 +20260219 121300;208.353000;208.369000;208.302000;208.306000;0 +20260219 121400;208.307000;208.331000;208.302000;208.329000;0 +20260219 121500;208.331000;208.333000;208.312000;208.330000;0 +20260219 121600;208.332000;208.352000;208.325000;208.343000;0 +20260219 121700;208.340000;208.357000;208.334000;208.335000;0 +20260219 121800;208.330000;208.351000;208.307000;208.345000;0 +20260219 121900;208.343000;208.367000;208.337000;208.367000;0 +20260219 122000;208.359000;208.394000;208.359000;208.391000;0 +20260219 122100;208.390000;208.402000;208.371000;208.402000;0 +20260219 122200;208.403000;208.430000;208.391000;208.407000;0 +20260219 122300;208.407000;208.425000;208.406000;208.419000;0 +20260219 122400;208.419000;208.435000;208.392000;208.404000;0 +20260219 122500;208.401000;208.401000;208.365000;208.372000;0 +20260219 122600;208.378000;208.378000;208.341000;208.364000;0 +20260219 122700;208.364000;208.365000;208.340000;208.346000;0 +20260219 122800;208.347000;208.373000;208.344000;208.364000;0 +20260219 122900;208.364000;208.393000;208.364000;208.385000;0 +20260219 123000;208.388000;208.390000;208.355000;208.355000;0 +20260219 123100;208.359000;208.393000;208.347000;208.347000;0 +20260219 123200;208.347000;208.394000;208.340000;208.394000;0 +20260219 123300;208.392000;208.437000;208.390000;208.394000;0 +20260219 123400;208.392000;208.400000;208.373000;208.386000;0 +20260219 123500;208.385000;208.437000;208.385000;208.436000;0 +20260219 123600;208.437000;208.470000;208.429000;208.466000;0 +20260219 123700;208.465000;208.469000;208.426000;208.451000;0 +20260219 123800;208.454000;208.499000;208.449000;208.472000;0 +20260219 123900;208.472000;208.494000;208.448000;208.481000;0 +20260219 124000;208.488000;208.499000;208.476000;208.489000;0 +20260219 124100;208.491000;208.494000;208.468000;208.470000;0 +20260219 124200;208.469000;208.486000;208.466000;208.479000;0 +20260219 124300;208.480000;208.480000;208.461000;208.467000;0 +20260219 124400;208.466000;208.500000;208.461000;208.487000;0 +20260219 124500;208.485000;208.491000;208.472000;208.481000;0 +20260219 124600;208.480000;208.480000;208.460000;208.466000;0 +20260219 124700;208.467000;208.479000;208.452000;208.470000;0 +20260219 124800;208.474000;208.489000;208.461000;208.474000;0 +20260219 124900;208.473000;208.510000;208.471000;208.506000;0 +20260219 125000;208.504000;208.514000;208.498000;208.508000;0 +20260219 125100;208.509000;208.521000;208.499000;208.499000;0 +20260219 125200;208.498000;208.503000;208.481000;208.486000;0 +20260219 125300;208.487000;208.487000;208.458000;208.482000;0 +20260219 125400;208.484000;208.513000;208.484000;208.505000;0 +20260219 125500;208.505000;208.552000;208.505000;208.549000;0 +20260219 125600;208.549000;208.549000;208.514000;208.518000;0 +20260219 125700;208.515000;208.542000;208.488000;208.541000;0 +20260219 125800;208.544000;208.544000;208.522000;208.528000;0 +20260219 125900;208.528000;208.547000;208.525000;208.533000;0 +20260219 130000;208.537000;208.552000;208.528000;208.530000;0 +20260219 130100;208.533000;208.540000;208.506000;208.507000;0 +20260219 130200;208.507000;208.507000;208.467000;208.469000;0 +20260219 130300;208.473000;208.519000;208.471000;208.512000;0 +20260219 130400;208.511000;208.514000;208.493000;208.509000;0 +20260219 130500;208.511000;208.537000;208.510000;208.525000;0 +20260219 130600;208.529000;208.542000;208.514000;208.525000;0 +20260219 130700;208.525000;208.550000;208.518000;208.544000;0 +20260219 130800;208.547000;208.547000;208.505000;208.529000;0 +20260219 130900;208.531000;208.540000;208.515000;208.518000;0 +20260219 131000;208.518000;208.527000;208.515000;208.524000;0 +20260219 131100;208.524000;208.544000;208.514000;208.515000;0 +20260219 131200;208.516000;208.541000;208.516000;208.541000;0 +20260219 131300;208.537000;208.550000;208.533000;208.533000;0 +20260219 131400;208.532000;208.547000;208.529000;208.547000;0 +20260219 131500;208.547000;208.554000;208.541000;208.544000;0 +20260219 131600;208.540000;208.545000;208.509000;208.512000;0 +20260219 131700;208.510000;208.519000;208.503000;208.506000;0 +20260219 131800;208.507000;208.534000;208.506000;208.522000;0 +20260219 131900;208.524000;208.527000;208.512000;208.521000;0 +20260219 132000;208.517000;208.517000;208.492000;208.508000;0 +20260219 132100;208.507000;208.509000;208.489000;208.492000;0 +20260219 132200;208.491000;208.508000;208.480000;208.486000;0 +20260219 132300;208.488000;208.534000;208.488000;208.529000;0 +20260219 132400;208.531000;208.548000;208.520000;208.524000;0 +20260219 132500;208.523000;208.565000;208.521000;208.538000;0 +20260219 132600;208.538000;208.542000;208.521000;208.527000;0 +20260219 132700;208.526000;208.560000;208.525000;208.560000;0 +20260219 132800;208.563000;208.572000;208.558000;208.566000;0 +20260219 132900;208.569000;208.569000;208.550000;208.561000;0 +20260219 133000;208.560000;208.577000;208.559000;208.572000;0 +20260219 133100;208.571000;208.575000;208.556000;208.564000;0 +20260219 133200;208.566000;208.573000;208.552000;208.558000;0 +20260219 133300;208.560000;208.566000;208.527000;208.542000;0 +20260219 133400;208.540000;208.549000;208.527000;208.530000;0 +20260219 133500;208.531000;208.538000;208.497000;208.523000;0 +20260219 133600;208.519000;208.522000;208.483000;208.487000;0 +20260219 133700;208.487000;208.487000;208.459000;208.466000;0 +20260219 133800;208.468000;208.493000;208.468000;208.493000;0 +20260219 133900;208.490000;208.504000;208.489000;208.492000;0 +20260219 134000;208.492000;208.524000;208.487000;208.506000;0 +20260219 134100;208.507000;208.509000;208.472000;208.491000;0 +20260219 134200;208.496000;208.504000;208.476000;208.484000;0 +20260219 134300;208.486000;208.500000;208.479000;208.496000;0 +20260219 134400;208.496000;208.504000;208.490000;208.496000;0 +20260219 134500;208.493000;208.508000;208.478000;208.487000;0 +20260219 134600;208.489000;208.522000;208.480000;208.514000;0 +20260219 134700;208.513000;208.515000;208.500000;208.512000;0 +20260219 134800;208.514000;208.522000;208.511000;208.514000;0 +20260219 134900;208.516000;208.529000;208.497000;208.527000;0 +20260219 135000;208.527000;208.527000;208.480000;208.480000;0 +20260219 135100;208.480000;208.505000;208.462000;208.465000;0 +20260219 135200;208.472000;208.488000;208.466000;208.483000;0 +20260219 135300;208.483000;208.487000;208.457000;208.457000;0 +20260219 135400;208.457000;208.492000;208.457000;208.479000;0 +20260219 135500;208.480000;208.486000;208.461000;208.472000;0 +20260219 135600;208.471000;208.491000;208.461000;208.475000;0 +20260219 135700;208.473000;208.487000;208.455000;208.462000;0 +20260219 135800;208.462000;208.471000;208.448000;208.462000;0 +20260219 135900;208.462000;208.485000;208.447000;208.456000;0 +20260219 140000;208.462000;208.486000;208.462000;208.468000;0 +20260219 140100;208.468000;208.472000;208.450000;208.468000;0 +20260219 140200;208.469000;208.479000;208.458000;208.472000;0 +20260219 140300;208.473000;208.483000;208.456000;208.458000;0 +20260219 140400;208.459000;208.464000;208.444000;208.451000;0 +20260219 140500;208.452000;208.471000;208.452000;208.469000;0 +20260219 140600;208.470000;208.482000;208.462000;208.475000;0 +20260219 140700;208.476000;208.482000;208.475000;208.480000;0 +20260219 140800;208.487000;208.514000;208.487000;208.500000;0 +20260219 140900;208.498000;208.515000;208.490000;208.500000;0 +20260219 141000;208.502000;208.502000;208.471000;208.476000;0 +20260219 141100;208.478000;208.479000;208.462000;208.467000;0 +20260219 141200;208.467000;208.487000;208.467000;208.474000;0 +20260219 141300;208.474000;208.497000;208.466000;208.467000;0 +20260219 141400;208.468000;208.506000;208.468000;208.500000;0 +20260219 141500;208.502000;208.518000;208.500000;208.518000;0 +20260219 141600;208.519000;208.547000;208.500000;208.533000;0 +20260219 141700;208.534000;208.544000;208.522000;208.533000;0 +20260219 141800;208.534000;208.550000;208.534000;208.548000;0 +20260219 141900;208.550000;208.575000;208.550000;208.570000;0 +20260219 142000;208.570000;208.576000;208.550000;208.557000;0 +20260219 142100;208.554000;208.554000;208.534000;208.537000;0 +20260219 142200;208.538000;208.558000;208.536000;208.543000;0 +20260219 142300;208.540000;208.541000;208.524000;208.530000;0 +20260219 142400;208.530000;208.530000;208.520000;208.525000;0 +20260219 142500;208.523000;208.532000;208.515000;208.531000;0 +20260219 142600;208.527000;208.528000;208.511000;208.525000;0 +20260219 142700;208.526000;208.536000;208.525000;208.528000;0 +20260219 142800;208.529000;208.531000;208.522000;208.528000;0 +20260219 142900;208.529000;208.545000;208.515000;208.526000;0 +20260219 143000;208.528000;208.539000;208.522000;208.537000;0 +20260219 143100;208.538000;208.542000;208.533000;208.541000;0 +20260219 143200;208.539000;208.564000;208.534000;208.560000;0 +20260219 143300;208.559000;208.564000;208.550000;208.555000;0 +20260219 143400;208.557000;208.561000;208.545000;208.560000;0 +20260219 143500;208.559000;208.584000;208.559000;208.573000;0 +20260219 143600;208.574000;208.577000;208.556000;208.559000;0 +20260219 143700;208.558000;208.558000;208.534000;208.545000;0 +20260219 143800;208.546000;208.568000;208.546000;208.562000;0 +20260219 143900;208.561000;208.599000;208.556000;208.579000;0 +20260219 144000;208.578000;208.614000;208.578000;208.606000;0 +20260219 144100;208.607000;208.634000;208.596000;208.634000;0 +20260219 144200;208.633000;208.637000;208.600000;208.609000;0 +20260219 144300;208.607000;208.611000;208.588000;208.593000;0 +20260219 144400;208.596000;208.598000;208.575000;208.585000;0 +20260219 144500;208.585000;208.603000;208.579000;208.597000;0 +20260219 144600;208.594000;208.597000;208.585000;208.589000;0 +20260219 144700;208.593000;208.604000;208.582000;208.588000;0 +20260219 144800;208.588000;208.612000;208.588000;208.604000;0 +20260219 144900;208.601000;208.608000;208.597000;208.608000;0 +20260219 145000;208.609000;208.617000;208.594000;208.605000;0 +20260219 145100;208.604000;208.619000;208.598000;208.599000;0 +20260219 145200;208.599000;208.617000;208.599000;208.614000;0 +20260219 145300;208.610000;208.610000;208.593000;208.597000;0 +20260219 145400;208.596000;208.608000;208.579000;208.603000;0 +20260219 145500;208.600000;208.610000;208.596000;208.606000;0 +20260219 145600;208.606000;208.616000;208.601000;208.601000;0 +20260219 145700;208.602000;208.605000;208.586000;208.592000;0 +20260219 145800;208.594000;208.618000;208.594000;208.608000;0 +20260219 145900;208.609000;208.621000;208.582000;208.601000;0 +20260219 150000;208.604000;208.634000;208.604000;208.627000;0 +20260219 150100;208.628000;208.633000;208.613000;208.616000;0 +20260219 150200;208.614000;208.623000;208.608000;208.618000;0 +20260219 150300;208.618000;208.629000;208.615000;208.622000;0 +20260219 150400;208.621000;208.623000;208.604000;208.622000;0 +20260219 150500;208.623000;208.628000;208.617000;208.618000;0 +20260219 150600;208.619000;208.621000;208.609000;208.611000;0 +20260219 150700;208.616000;208.624000;208.616000;208.621000;0 +20260219 150800;208.623000;208.633000;208.612000;208.616000;0 +20260219 150900;208.620000;208.620000;208.609000;208.610000;0 +20260219 151000;208.611000;208.625000;208.609000;208.616000;0 +20260219 151100;208.613000;208.613000;208.584000;208.587000;0 +20260219 151200;208.586000;208.602000;208.584000;208.602000;0 +20260219 151300;208.601000;208.604000;208.589000;208.592000;0 +20260219 151400;208.594000;208.601000;208.590000;208.591000;0 +20260219 151500;208.593000;208.593000;208.582000;208.582000;0 +20260219 151600;208.584000;208.601000;208.575000;208.601000;0 +20260219 151700;208.602000;208.608000;208.602000;208.607000;0 +20260219 151800;208.606000;208.622000;208.606000;208.621000;0 +20260219 151900;208.622000;208.635000;208.621000;208.635000;0 +20260219 152000;208.634000;208.655000;208.626000;208.654000;0 +20260219 152100;208.651000;208.651000;208.634000;208.639000;0 +20260219 152200;208.644000;208.655000;208.644000;208.651000;0 +20260219 152300;208.647000;208.647000;208.624000;208.625000;0 +20260219 152400;208.624000;208.632000;208.614000;208.621000;0 +20260219 152500;208.623000;208.625000;208.612000;208.622000;0 +20260219 152600;208.625000;208.644000;208.624000;208.638000;0 +20260219 152700;208.637000;208.643000;208.637000;208.639000;0 +20260219 152800;208.640000;208.652000;208.640000;208.643000;0 +20260219 152900;208.646000;208.649000;208.634000;208.638000;0 +20260219 153000;208.639000;208.654000;208.628000;208.654000;0 +20260219 153100;208.655000;208.672000;208.652000;208.670000;0 +20260219 153200;208.668000;208.690000;208.668000;208.688000;0 +20260219 153300;208.690000;208.708000;208.681000;208.704000;0 +20260219 153400;208.702000;208.703000;208.692000;208.692000;0 +20260219 153500;208.697000;208.703000;208.682000;208.701000;0 +20260219 153600;208.700000;208.706000;208.692000;208.705000;0 +20260219 153700;208.703000;208.705000;208.691000;208.705000;0 +20260219 153800;208.701000;208.712000;208.697000;208.709000;0 +20260219 153900;208.709000;208.726000;208.706000;208.725000;0 +20260219 154000;208.726000;208.732000;208.722000;208.722000;0 +20260219 154100;208.718000;208.719000;208.707000;208.707000;0 +20260219 154200;208.703000;208.708000;208.687000;208.691000;0 +20260219 154300;208.691000;208.693000;208.688000;208.689000;0 +20260219 154400;208.688000;208.708000;208.685000;208.708000;0 +20260219 154500;208.705000;208.707000;208.694000;208.694000;0 +20260219 154600;208.693000;208.709000;208.691000;208.709000;0 +20260219 154700;208.709000;208.720000;208.704000;208.719000;0 +20260219 154800;208.714000;208.723000;208.714000;208.722000;0 +20260219 154900;208.720000;208.727000;208.703000;208.720000;0 +20260219 155000;208.719000;208.735000;208.713000;208.733000;0 +20260219 155100;208.731000;208.731000;208.691000;208.693000;0 +20260219 155200;208.691000;208.697000;208.686000;208.694000;0 +20260219 155300;208.692000;208.706000;208.689000;208.699000;0 +20260219 155400;208.699000;208.713000;208.697000;208.707000;0 +20260219 155500;208.708000;208.713000;208.678000;208.681000;0 +20260219 155600;208.687000;208.690000;208.664000;208.686000;0 +20260219 155700;208.686000;208.692000;208.678000;208.684000;0 +20260219 155800;208.685000;208.688000;208.677000;208.687000;0 +20260219 155900;208.686000;208.721000;208.685000;208.721000;0 +20260219 160000;208.721000;208.743000;208.713000;208.721000;0 +20260219 160100;208.720000;208.720000;208.711000;208.716000;0 +20260219 160200;208.718000;208.729000;208.712000;208.729000;0 +20260219 160300;208.729000;208.741000;208.713000;208.728000;0 +20260219 160400;208.720000;208.736000;208.720000;208.729000;0 +20260219 160500;208.732000;208.743000;208.718000;208.719000;0 +20260219 160600;208.716000;208.720000;208.713000;208.720000;0 +20260219 160700;208.723000;208.723000;208.707000;208.714000;0 +20260219 160800;208.715000;208.718000;208.713000;208.717000;0 +20260219 160900;208.720000;208.720000;208.697000;208.711000;0 +20260219 161000;208.711000;208.719000;208.702000;208.702000;0 +20260219 161100;208.704000;208.710000;208.703000;208.709000;0 +20260219 161200;208.714000;208.717000;208.714000;208.715000;0 +20260219 161300;208.713000;208.732000;208.713000;208.732000;0 +20260219 161400;208.735000;208.735000;208.711000;208.714000;0 +20260219 161500;208.710000;208.718000;208.703000;208.718000;0 +20260219 161600;208.719000;208.753000;208.718000;208.751000;0 +20260219 161700;208.756000;208.766000;208.747000;208.752000;0 +20260219 161800;208.753000;208.753000;208.729000;208.752000;0 +20260219 161900;208.753000;208.757000;208.742000;208.757000;0 +20260219 162000;208.750000;208.759000;208.696000;208.749000;0 +20260219 162100;208.751000;208.776000;208.745000;208.763000;0 +20260219 162200;208.755000;208.789000;208.751000;208.778000;0 +20260219 162300;208.779000;208.793000;208.770000;208.778000;0 +20260219 162400;208.776000;208.795000;208.766000;208.795000;0 +20260219 162500;208.792000;208.804000;208.769000;208.777000;0 +20260219 162600;208.776000;208.776000;208.768000;208.768000;0 +20260219 162700;208.770000;208.782000;208.759000;208.777000;0 +20260219 162800;208.773000;208.775000;208.759000;208.759000;0 +20260219 162900;208.760000;208.766000;208.751000;208.752000;0 +20260219 163000;208.761000;208.794000;208.761000;208.791000;0 +20260219 163100;208.789000;208.789000;208.760000;208.764000;0 +20260219 163200;208.767000;208.801000;208.767000;208.793000;0 +20260219 163300;208.796000;208.805000;208.792000;208.805000;0 +20260219 163400;208.804000;208.835000;208.804000;208.832000;0 +20260219 163500;208.827000;208.840000;208.819000;208.838000;0 +20260219 163600;208.834000;208.840000;208.823000;208.823000;0 +20260219 163700;208.823000;208.823000;208.808000;208.814000;0 +20260219 163800;208.812000;208.826000;208.806000;208.806000;0 +20260219 163900;208.808000;208.821000;208.806000;208.814000;0 +20260219 164000;208.814000;208.822000;208.799000;208.807000;0 +20260219 164100;208.806000;208.822000;208.806000;208.806000;0 +20260219 164200;208.806000;208.806000;208.800000;208.800000;0 +20260219 164300;208.803000;208.812000;208.798000;208.807000;0 +20260219 164400;208.806000;208.806000;208.801000;208.801000;0 +20260219 164500;208.801000;208.812000;208.790000;208.793000;0 +20260219 164600;208.791000;208.796000;208.790000;208.793000;0 +20260219 164700;208.783000;208.783000;208.754000;208.760000;0 +20260219 164800;208.773000;208.789000;208.772000;208.788000;0 +20260219 164900;208.785000;208.796000;208.785000;208.794000;0 +20260219 165000;208.791000;208.802000;208.777000;208.792000;0 +20260219 165100;208.792000;208.803000;208.784000;208.788000;0 +20260219 165200;208.786000;208.792000;208.769000;208.771000;0 +20260219 165300;208.773000;208.773000;208.720000;208.725000;0 +20260219 165400;208.725000;208.741000;208.697000;208.702000;0 +20260219 165500;208.699000;208.708000;208.678000;208.704000;0 +20260219 165600;208.710000;208.729000;208.663000;208.677000;0 +20260219 165700;208.678000;208.702000;208.656000;208.662000;0 +20260219 165800;208.661000;208.665000;208.632000;208.648000;0 +20260219 165900;208.643000;208.685000;208.643000;208.668000;0 +20260219 170600;208.492000;208.492000;208.492000;208.492000;0 +20260219 170700;208.490000;208.504000;208.490000;208.504000;0 +20260219 170800;208.501000;208.501000;208.501000;208.501000;0 +20260219 170900;208.503000;208.614000;208.503000;208.614000;0 +20260219 171000;208.614000;208.617000;208.614000;208.617000;0 +20260219 171100;208.640000;208.670000;208.640000;208.670000;0 +20260219 171200;208.642000;208.642000;208.591000;208.642000;0 +20260219 171300;208.642000;208.642000;208.638000;208.638000;0 +20260219 171400;208.638000;208.642000;208.638000;208.642000;0 +20260219 171500;208.678000;208.680000;208.613000;208.613000;0 +20260219 171600;208.616000;208.621000;208.611000;208.617000;0 +20260219 171700;208.623000;208.623000;208.592000;208.594000;0 +20260219 171800;208.594000;208.608000;208.528000;208.528000;0 +20260219 171900;208.529000;208.529000;208.514000;208.528000;0 +20260219 172000;208.527000;208.533000;208.514000;208.526000;0 +20260219 172100;208.526000;208.526000;208.498000;208.500000;0 +20260219 172200;208.499000;208.528000;208.490000;208.528000;0 +20260219 172300;208.526000;208.533000;208.490000;208.529000;0 +20260219 172400;208.531000;208.531000;208.517000;208.521000;0 +20260219 172500;208.521000;208.524000;208.521000;208.524000;0 +20260219 172600;208.525000;208.525000;208.516000;208.516000;0 +20260219 172700;208.516000;208.517000;208.493000;208.493000;0 +20260219 172800;208.494000;208.520000;208.493000;208.519000;0 +20260219 172900;208.519000;208.529000;208.519000;208.528000;0 +20260219 173000;208.529000;208.529000;208.496000;208.497000;0 +20260219 173100;208.496000;208.524000;208.496000;208.496000;0 +20260219 173200;208.496000;208.516000;208.496000;208.498000;0 +20260219 173300;208.499000;208.510000;208.498000;208.502000;0 +20260219 173400;208.502000;208.518000;208.489000;208.506000;0 +20260219 173500;208.510000;208.517000;208.492000;208.514000;0 +20260219 173600;208.514000;208.537000;208.508000;208.535000;0 +20260219 173700;208.537000;208.542000;208.522000;208.522000;0 +20260219 173800;208.523000;208.539000;208.523000;208.533000;0 +20260219 173900;208.535000;208.535000;208.523000;208.531000;0 +20260219 174000;208.504000;208.568000;208.494000;208.564000;0 +20260219 174100;208.565000;208.585000;208.563000;208.581000;0 +20260219 174200;208.577000;208.588000;208.577000;208.585000;0 +20260219 174300;208.584000;208.591000;208.581000;208.585000;0 +20260219 174400;208.585000;208.600000;208.585000;208.595000;0 +20260219 174500;208.597000;208.609000;208.594000;208.608000;0 +20260219 174600;208.604000;208.616000;208.564000;208.606000;0 +20260219 174700;208.607000;208.621000;208.605000;208.617000;0 +20260219 174800;208.617000;208.618000;208.597000;208.615000;0 +20260219 174900;208.615000;208.626000;208.610000;208.618000;0 +20260219 175000;208.618000;208.632000;208.610000;208.626000;0 +20260219 175100;208.629000;208.648000;208.626000;208.639000;0 +20260219 175200;208.644000;208.655000;208.637000;208.647000;0 +20260219 175300;208.650000;208.670000;208.630000;208.652000;0 +20260219 175400;208.656000;208.664000;208.613000;208.661000;0 +20260219 175500;208.660000;208.677000;208.624000;208.657000;0 +20260219 175600;208.659000;208.666000;208.622000;208.666000;0 +20260219 175700;208.632000;208.665000;208.624000;208.624000;0 +20260219 175800;208.647000;208.669000;208.630000;208.664000;0 +20260219 175900;208.665000;208.701000;208.631000;208.696000;0 +20260219 180000;208.682000;208.712000;208.622000;208.712000;0 +20260219 180100;208.709000;208.717000;208.696000;208.716000;0 +20260219 180200;208.716000;208.716000;208.681000;208.702000;0 +20260219 180300;208.696000;208.709000;208.681000;208.699000;0 +20260219 180400;208.699000;208.715000;208.699000;208.715000;0 +20260219 180500;208.708000;208.717000;208.696000;208.706000;0 +20260219 180600;208.702000;208.718000;208.696000;208.701000;0 +20260219 180700;208.701000;208.726000;208.676000;208.725000;0 +20260219 180800;208.725000;208.740000;208.685000;208.685000;0 +20260219 180900;208.685000;208.707000;208.681000;208.690000;0 +20260219 181000;208.696000;208.706000;208.684000;208.695000;0 +20260219 181100;208.695000;208.734000;208.695000;208.704000;0 +20260219 181200;208.703000;208.709000;208.702000;208.702000;0 +20260219 181300;208.702000;208.702000;208.686000;208.697000;0 +20260219 181400;208.699000;208.700000;208.687000;208.697000;0 +20260219 181500;208.699000;208.704000;208.697000;208.699000;0 +20260219 181600;208.698000;208.698000;208.698000;208.698000;0 +20260219 181700;208.696000;208.696000;208.673000;208.683000;0 +20260219 181800;208.681000;208.683000;208.680000;208.682000;0 +20260219 181900;208.685000;208.685000;208.670000;208.671000;0 +20260219 182000;208.673000;208.673000;208.659000;208.659000;0 +20260219 182100;208.660000;208.671000;208.657000;208.670000;0 +20260219 182200;208.672000;208.682000;208.669000;208.675000;0 +20260219 182300;208.677000;208.677000;208.670000;208.672000;0 +20260219 182400;208.672000;208.672000;208.652000;208.655000;0 +20260219 182500;208.656000;208.660000;208.653000;208.653000;0 +20260219 182600;208.653000;208.687000;208.653000;208.687000;0 +20260219 182700;208.689000;208.692000;208.675000;208.675000;0 +20260219 182800;208.674000;208.678000;208.669000;208.676000;0 +20260219 182900;208.677000;208.677000;208.660000;208.660000;0 +20260219 183000;208.662000;208.735000;208.661000;208.724000;0 +20260219 183100;208.724000;208.747000;208.709000;208.747000;0 +20260219 183200;208.745000;208.788000;208.745000;208.781000;0 +20260219 183300;208.776000;208.795000;208.773000;208.792000;0 +20260219 183400;208.792000;208.823000;208.792000;208.820000;0 +20260219 183500;208.817000;208.846000;208.816000;208.832000;0 +20260219 183600;208.834000;208.887000;208.831000;208.873000;0 +20260219 183700;208.873000;208.897000;208.860000;208.881000;0 +20260219 183800;208.876000;208.886000;208.865000;208.867000;0 +20260219 183900;208.869000;208.890000;208.854000;208.886000;0 +20260219 184000;208.886000;208.888000;208.848000;208.855000;0 +20260219 184100;208.856000;208.944000;208.854000;208.924000;0 +20260219 184200;208.918000;208.918000;208.900000;208.909000;0 +20260219 184300;208.910000;208.922000;208.892000;208.921000;0 +20260219 184400;208.921000;208.927000;208.913000;208.925000;0 +20260219 184500;208.923000;208.931000;208.895000;208.915000;0 +20260219 184600;208.916000;208.926000;208.896000;208.915000;0 +20260219 184700;208.916000;208.919000;208.905000;208.909000;0 +20260219 184800;208.911000;208.923000;208.909000;208.916000;0 +20260219 184900;208.916000;208.919000;208.877000;208.912000;0 +20260219 185000;208.905000;208.924000;208.902000;208.924000;0 +20260219 185100;208.923000;208.933000;208.901000;208.905000;0 +20260219 185200;208.906000;208.907000;208.891000;208.891000;0 +20260219 185300;208.890000;208.902000;208.873000;208.879000;0 +20260219 185400;208.880000;208.887000;208.858000;208.861000;0 +20260219 185500;208.858000;208.895000;208.852000;208.858000;0 +20260219 185600;208.862000;208.879000;208.854000;208.854000;0 +20260219 185700;208.855000;208.879000;208.837000;208.847000;0 +20260219 185800;208.851000;208.866000;208.848000;208.860000;0 +20260219 185900;208.862000;208.887000;208.859000;208.886000;0 +20260219 190000;208.887000;208.897000;208.781000;208.783000;0 +20260219 190100;208.786000;208.827000;208.781000;208.804000;0 +20260219 190200;208.804000;208.825000;208.782000;208.784000;0 +20260219 190300;208.785000;208.822000;208.783000;208.793000;0 +20260219 190400;208.794000;208.802000;208.782000;208.791000;0 +20260219 190500;208.792000;208.810000;208.792000;208.802000;0 +20260219 190600;208.803000;208.827000;208.797000;208.825000;0 +20260219 190700;208.822000;208.840000;208.819000;208.840000;0 +20260219 190800;208.837000;208.837000;208.823000;208.828000;0 +20260219 190900;208.831000;208.833000;208.800000;208.814000;0 +20260219 191000;208.816000;208.825000;208.809000;208.818000;0 +20260219 191100;208.820000;208.852000;208.818000;208.820000;0 +20260219 191200;208.817000;208.851000;208.817000;208.851000;0 +20260219 191300;208.851000;208.888000;208.850000;208.886000;0 +20260219 191400;208.880000;208.907000;208.861000;208.902000;0 +20260219 191500;208.899000;208.912000;208.877000;208.891000;0 +20260219 191600;208.889000;208.891000;208.872000;208.877000;0 +20260219 191700;208.875000;208.879000;208.866000;208.875000;0 +20260219 191800;208.877000;208.885000;208.872000;208.882000;0 +20260219 191900;208.880000;208.892000;208.849000;208.855000;0 +20260219 192000;208.857000;208.869000;208.836000;208.837000;0 +20260219 192100;208.839000;208.839000;208.768000;208.791000;0 +20260219 192200;208.792000;208.793000;208.763000;208.780000;0 +20260219 192300;208.778000;208.800000;208.740000;208.758000;0 +20260219 192400;208.760000;208.765000;208.737000;208.740000;0 +20260219 192500;208.738000;208.779000;208.738000;208.779000;0 +20260219 192600;208.780000;208.797000;208.776000;208.781000;0 +20260219 192700;208.779000;208.801000;208.775000;208.792000;0 +20260219 192800;208.792000;208.822000;208.789000;208.813000;0 +20260219 192900;208.817000;208.832000;208.814000;208.824000;0 +20260219 193000;208.826000;208.826000;208.806000;208.812000;0 +20260219 193100;208.812000;208.820000;208.807000;208.819000;0 +20260219 193200;208.819000;208.842000;208.814000;208.840000;0 +20260219 193300;208.840000;208.862000;208.828000;208.861000;0 +20260219 193400;208.860000;208.894000;208.860000;208.888000;0 +20260219 193500;208.888000;208.911000;208.865000;208.866000;0 +20260219 193600;208.867000;208.874000;208.835000;208.874000;0 +20260219 193700;208.873000;208.888000;208.861000;208.861000;0 +20260219 193800;208.861000;208.875000;208.858000;208.873000;0 +20260219 193900;208.872000;208.875000;208.856000;208.859000;0 +20260219 194000;208.859000;208.862000;208.815000;208.821000;0 +20260219 194100;208.822000;208.825000;208.794000;208.806000;0 +20260219 194200;208.811000;208.823000;208.808000;208.815000;0 +20260219 194300;208.821000;208.836000;208.816000;208.823000;0 +20260219 194400;208.821000;208.821000;208.803000;208.807000;0 +20260219 194500;208.809000;208.841000;208.809000;208.825000;0 +20260219 194600;208.826000;208.826000;208.795000;208.817000;0 +20260219 194700;208.818000;208.840000;208.797000;208.819000;0 +20260219 194800;208.822000;208.822000;208.807000;208.809000;0 +20260219 194900;208.809000;208.809000;208.781000;208.797000;0 +20260219 195000;208.795000;208.798000;208.685000;208.704000;0 +20260219 195100;208.705000;208.708000;208.623000;208.639000;0 +20260219 195200;208.640000;208.647000;208.548000;208.611000;0 +20260219 195300;208.607000;208.686000;208.562000;208.673000;0 +20260219 195400;208.670000;208.726000;208.578000;208.692000;0 +20260219 195500;208.691000;208.719000;208.625000;208.660000;0 +20260219 195600;208.662000;208.672000;208.627000;208.648000;0 +20260219 195700;208.647000;208.724000;208.646000;208.722000;0 +20260219 195800;208.723000;208.772000;208.717000;208.762000;0 +20260219 195900;208.763000;208.764000;208.736000;208.744000;0 +20260219 200000;208.746000;208.811000;208.742000;208.802000;0 +20260219 200100;208.804000;208.804000;208.764000;208.772000;0 +20260219 200200;208.768000;208.769000;208.720000;208.720000;0 +20260219 200300;208.719000;208.745000;208.708000;208.735000;0 +20260219 200400;208.741000;208.743000;208.737000;208.740000;0 +20260219 200500;208.740000;208.753000;208.694000;208.699000;0 +20260219 200600;208.696000;208.701000;208.665000;208.668000;0 +20260219 200700;208.669000;208.674000;208.626000;208.627000;0 +20260219 200800;208.628000;208.649000;208.588000;208.598000;0 +20260219 200900;208.598000;208.636000;208.597000;208.633000;0 +20260219 201000;208.633000;208.683000;208.633000;208.680000;0 +20260219 201100;208.682000;208.708000;208.670000;208.707000;0 +20260219 201200;208.708000;208.726000;208.704000;208.724000;0 +20260219 201300;208.724000;208.732000;208.723000;208.725000;0 +20260219 201400;208.720000;208.736000;208.689000;208.719000;0 +20260219 201500;208.720000;208.753000;208.704000;208.727000;0 +20260219 201600;208.736000;208.736000;208.640000;208.643000;0 +20260219 201700;208.644000;208.672000;208.640000;208.669000;0 +20260219 201800;208.667000;208.717000;208.641000;208.717000;0 +20260219 201900;208.710000;208.710000;208.685000;208.697000;0 +20260219 202000;208.695000;208.750000;208.692000;208.749000;0 +20260219 202100;208.750000;208.800000;208.744000;208.794000;0 +20260219 202200;208.792000;208.818000;208.782000;208.815000;0 +20260219 202300;208.829000;208.832000;208.807000;208.813000;0 +20260219 202400;208.816000;208.824000;208.788000;208.809000;0 +20260219 202500;208.812000;208.828000;208.770000;208.772000;0 +20260219 202600;208.774000;208.784000;208.727000;208.733000;0 +20260219 202700;208.733000;208.792000;208.716000;208.778000;0 +20260219 202800;208.773000;208.800000;208.771000;208.793000;0 +20260219 202900;208.789000;208.844000;208.781000;208.788000;0 +20260219 203000;208.788000;208.811000;208.784000;208.810000;0 +20260219 203100;208.826000;208.846000;208.816000;208.829000;0 +20260219 203200;208.831000;208.858000;208.812000;208.846000;0 +20260219 203300;208.848000;208.891000;208.848000;208.876000;0 +20260219 203400;208.874000;208.877000;208.852000;208.853000;0 +20260219 203500;208.849000;208.856000;208.812000;208.851000;0 +20260219 203600;208.852000;208.860000;208.828000;208.830000;0 +20260219 203700;208.831000;208.848000;208.824000;208.831000;0 +20260219 203800;208.830000;208.845000;208.825000;208.837000;0 +20260219 203900;208.841000;208.859000;208.830000;208.831000;0 +20260219 204000;208.828000;208.830000;208.781000;208.794000;0 +20260219 204100;208.796000;208.840000;208.789000;208.792000;0 +20260219 204200;208.791000;208.818000;208.785000;208.813000;0 +20260219 204300;208.814000;208.819000;208.787000;208.805000;0 +20260219 204400;208.807000;208.816000;208.756000;208.780000;0 +20260219 204500;208.775000;208.775000;208.700000;208.700000;0 +20260219 204600;208.703000;208.717000;208.684000;208.697000;0 +20260219 204700;208.692000;208.737000;208.678000;208.716000;0 +20260219 204800;208.717000;208.718000;208.685000;208.699000;0 +20260219 204900;208.698000;208.712000;208.691000;208.707000;0 +20260219 205000;208.709000;208.709000;208.615000;208.631000;0 +20260219 205100;208.624000;208.695000;208.619000;208.689000;0 +20260219 205200;208.691000;208.716000;208.651000;208.663000;0 +20260219 205300;208.665000;208.670000;208.642000;208.658000;0 +20260219 205400;208.658000;208.669000;208.640000;208.654000;0 +20260219 205500;208.657000;208.666000;208.619000;208.651000;0 +20260219 205600;208.648000;208.657000;208.620000;208.622000;0 +20260219 205700;208.620000;208.648000;208.620000;208.626000;0 +20260219 205800;208.629000;208.629000;208.581000;208.603000;0 +20260219 205900;208.598000;208.634000;208.596000;208.613000;0 +20260219 210000;208.610000;208.628000;208.555000;208.568000;0 +20260219 210100;208.564000;208.564000;208.475000;208.534000;0 +20260219 210200;208.532000;208.536000;208.476000;208.487000;0 +20260219 210300;208.486000;208.506000;208.460000;208.492000;0 +20260219 210400;208.493000;208.543000;208.485000;208.542000;0 +20260219 210500;208.550000;208.568000;208.542000;208.555000;0 +20260219 210600;208.555000;208.575000;208.547000;208.561000;0 +20260219 210700;208.561000;208.564000;208.523000;208.524000;0 +20260219 210800;208.524000;208.569000;208.518000;208.552000;0 +20260219 210900;208.550000;208.557000;208.521000;208.529000;0 +20260219 211000;208.532000;208.535000;208.503000;208.519000;0 +20260219 211100;208.515000;208.515000;208.474000;208.474000;0 +20260219 211200;208.477000;208.487000;208.458000;208.462000;0 +20260219 211300;208.467000;208.496000;208.457000;208.457000;0 +20260219 211400;208.458000;208.469000;208.443000;208.446000;0 +20260219 211500;208.443000;208.444000;208.407000;208.414000;0 +20260219 211600;208.413000;208.432000;208.399000;208.426000;0 +20260219 211700;208.431000;208.440000;208.383000;208.414000;0 +20260219 211800;208.407000;208.442000;208.401000;208.418000;0 +20260219 211900;208.420000;208.442000;208.420000;208.434000;0 +20260219 212000;208.435000;208.495000;208.426000;208.493000;0 +20260219 212100;208.491000;208.520000;208.491000;208.509000;0 +20260219 212200;208.508000;208.515000;208.493000;208.496000;0 +20260219 212300;208.497000;208.534000;208.492000;208.515000;0 +20260219 212400;208.514000;208.516000;208.466000;208.489000;0 +20260219 212500;208.492000;208.537000;208.480000;208.537000;0 +20260219 212600;208.536000;208.536000;208.485000;208.486000;0 +20260219 212700;208.485000;208.502000;208.467000;208.498000;0 +20260219 212800;208.501000;208.510000;208.481000;208.483000;0 +20260219 212900;208.485000;208.496000;208.479000;208.486000;0 +20260219 213000;208.494000;208.527000;208.494000;208.510000;0 +20260219 213100;208.511000;208.519000;208.501000;208.501000;0 +20260219 213200;208.502000;208.531000;208.500000;208.525000;0 +20260219 213300;208.527000;208.532000;208.495000;208.496000;0 +20260219 213400;208.495000;208.539000;208.495000;208.533000;0 +20260219 213500;208.537000;208.539000;208.532000;208.538000;0 +20260219 213600;208.536000;208.564000;208.531000;208.548000;0 +20260219 213700;208.549000;208.550000;208.532000;208.539000;0 +20260219 213800;208.540000;208.548000;208.529000;208.547000;0 +20260219 213900;208.546000;208.554000;208.538000;208.540000;0 +20260219 214000;208.535000;208.536000;208.504000;208.513000;0 +20260219 214100;208.515000;208.532000;208.500000;208.501000;0 +20260219 214200;208.500000;208.518000;208.500000;208.512000;0 +20260219 214300;208.506000;208.507000;208.490000;208.490000;0 +20260219 214400;208.487000;208.488000;208.474000;208.482000;0 +20260219 214500;208.481000;208.484000;208.473000;208.481000;0 +20260219 214600;208.483000;208.485000;208.450000;208.482000;0 +20260219 214700;208.480000;208.495000;208.475000;208.480000;0 +20260219 214800;208.481000;208.522000;208.481000;208.521000;0 +20260219 214900;208.521000;208.537000;208.504000;208.533000;0 +20260219 215000;208.532000;208.595000;208.532000;208.581000;0 +20260219 215100;208.581000;208.581000;208.554000;208.562000;0 +20260219 215200;208.561000;208.583000;208.561000;208.581000;0 +20260219 215300;208.581000;208.605000;208.581000;208.600000;0 +20260219 215400;208.596000;208.632000;208.596000;208.625000;0 +20260219 215500;208.627000;208.649000;208.625000;208.649000;0 +20260219 215600;208.643000;208.643000;208.624000;208.626000;0 +20260219 215700;208.625000;208.636000;208.612000;208.616000;0 +20260219 215800;208.617000;208.626000;208.589000;208.598000;0 +20260219 215900;208.592000;208.602000;208.581000;208.598000;0 +20260219 220000;208.594000;208.617000;208.593000;208.614000;0 +20260219 220100;208.613000;208.635000;208.611000;208.635000;0 +20260219 220200;208.637000;208.669000;208.636000;208.659000;0 +20260219 220300;208.661000;208.664000;208.645000;208.645000;0 +20260219 220400;208.645000;208.645000;208.619000;208.619000;0 +20260219 220500;208.615000;208.615000;208.585000;208.590000;0 +20260219 220600;208.590000;208.610000;208.587000;208.600000;0 +20260219 220700;208.599000;208.604000;208.591000;208.594000;0 +20260219 220800;208.589000;208.594000;208.576000;208.580000;0 +20260219 220900;208.579000;208.580000;208.573000;208.578000;0 +20260219 221000;208.579000;208.585000;208.560000;208.585000;0 +20260219 221100;208.589000;208.603000;208.589000;208.603000;0 +20260219 221200;208.602000;208.608000;208.600000;208.606000;0 +20260219 221300;208.607000;208.611000;208.600000;208.611000;0 +20260219 221400;208.610000;208.611000;208.570000;208.579000;0 +20260219 221500;208.580000;208.596000;208.579000;208.583000;0 +20260219 221600;208.583000;208.621000;208.576000;208.589000;0 +20260219 221700;208.589000;208.595000;208.578000;208.590000;0 +20260219 221800;208.591000;208.591000;208.572000;208.582000;0 +20260219 221900;208.581000;208.581000;208.577000;208.581000;0 +20260219 222000;208.582000;208.582000;208.562000;208.577000;0 +20260219 222100;208.577000;208.589000;208.564000;208.566000;0 +20260219 222200;208.568000;208.569000;208.556000;208.564000;0 +20260219 222300;208.563000;208.563000;208.549000;208.560000;0 +20260219 222400;208.561000;208.561000;208.542000;208.547000;0 +20260219 222500;208.548000;208.550000;208.526000;208.531000;0 +20260219 222600;208.538000;208.538000;208.525000;208.529000;0 +20260219 222700;208.529000;208.532000;208.511000;208.513000;0 +20260219 222800;208.516000;208.516000;208.488000;208.488000;0 +20260219 222900;208.489000;208.491000;208.483000;208.488000;0 +20260219 223000;208.491000;208.515000;208.490000;208.505000;0 +20260219 223100;208.502000;208.519000;208.502000;208.513000;0 +20260219 223200;208.511000;208.523000;208.506000;208.518000;0 +20260219 223300;208.516000;208.529000;208.516000;208.527000;0 +20260219 223400;208.529000;208.529000;208.515000;208.520000;0 +20260219 223500;208.516000;208.532000;208.516000;208.521000;0 +20260219 223600;208.529000;208.543000;208.525000;208.543000;0 +20260219 223700;208.542000;208.561000;208.541000;208.545000;0 +20260219 223800;208.544000;208.567000;208.544000;208.565000;0 +20260219 223900;208.566000;208.579000;208.559000;208.564000;0 +20260219 224000;208.563000;208.563000;208.510000;208.514000;0 +20260219 224100;208.515000;208.561000;208.515000;208.561000;0 +20260219 224200;208.560000;208.567000;208.545000;208.554000;0 +20260219 224300;208.555000;208.563000;208.554000;208.561000;0 +20260219 224400;208.560000;208.560000;208.521000;208.531000;0 +20260219 224500;208.532000;208.532000;208.508000;208.508000;0 +20260219 224600;208.507000;208.518000;208.505000;208.509000;0 +20260219 224700;208.511000;208.520000;208.508000;208.514000;0 +20260219 224800;208.514000;208.521000;208.498000;208.521000;0 +20260219 224900;208.518000;208.533000;208.516000;208.530000;0 +20260219 225000;208.529000;208.540000;208.521000;208.534000;0 +20260219 225100;208.534000;208.542000;208.524000;208.524000;0 +20260219 225200;208.525000;208.533000;208.503000;208.514000;0 +20260219 225300;208.522000;208.548000;208.518000;208.547000;0 +20260219 225400;208.547000;208.548000;208.529000;208.536000;0 +20260219 225500;208.537000;208.551000;208.535000;208.544000;0 +20260219 225600;208.546000;208.579000;208.546000;208.579000;0 +20260219 225700;208.581000;208.583000;208.572000;208.579000;0 +20260219 225800;208.577000;208.577000;208.550000;208.563000;0 +20260219 225900;208.561000;208.565000;208.542000;208.545000;0 +20260219 230000;208.548000;208.549000;208.505000;208.515000;0 +20260219 230100;208.517000;208.540000;208.516000;208.540000;0 +20260219 230200;208.536000;208.551000;208.536000;208.551000;0 +20260219 230300;208.551000;208.552000;208.509000;208.517000;0 +20260219 230400;208.521000;208.540000;208.518000;208.526000;0 +20260219 230500;208.528000;208.545000;208.519000;208.523000;0 +20260219 230600;208.523000;208.525000;208.505000;208.519000;0 +20260219 230700;208.522000;208.559000;208.520000;208.559000;0 +20260219 230800;208.560000;208.568000;208.559000;208.564000;0 +20260219 230900;208.562000;208.588000;208.562000;208.579000;0 +20260219 231000;208.580000;208.582000;208.563000;208.578000;0 +20260219 231100;208.577000;208.579000;208.532000;208.538000;0 +20260219 231200;208.540000;208.557000;208.540000;208.551000;0 +20260219 231300;208.550000;208.550000;208.532000;208.542000;0 +20260219 231400;208.546000;208.565000;208.543000;208.553000;0 +20260219 231500;208.555000;208.555000;208.536000;208.541000;0 +20260219 231600;208.542000;208.545000;208.522000;208.537000;0 +20260219 231700;208.538000;208.546000;208.531000;208.546000;0 +20260219 231800;208.546000;208.554000;208.541000;208.544000;0 +20260219 231900;208.545000;208.545000;208.528000;208.537000;0 +20260219 232000;208.536000;208.557000;208.532000;208.556000;0 +20260219 232100;208.557000;208.558000;208.538000;208.544000;0 +20260219 232200;208.541000;208.550000;208.535000;208.538000;0 +20260219 232300;208.537000;208.545000;208.530000;208.544000;0 +20260219 232400;208.543000;208.547000;208.540000;208.545000;0 +20260219 232500;208.546000;208.559000;208.542000;208.555000;0 +20260219 232600;208.554000;208.570000;208.549000;208.567000;0 +20260219 232700;208.567000;208.571000;208.559000;208.559000;0 +20260219 232800;208.569000;208.574000;208.562000;208.567000;0 +20260219 232900;208.568000;208.575000;208.561000;208.574000;0 +20260219 233000;208.572000;208.609000;208.572000;208.601000;0 +20260219 233100;208.603000;208.626000;208.603000;208.618000;0 +20260219 233200;208.620000;208.626000;208.608000;208.611000;0 +20260219 233300;208.617000;208.621000;208.594000;208.597000;0 +20260219 233400;208.603000;208.603000;208.564000;208.572000;0 +20260219 233500;208.564000;208.566000;208.560000;208.563000;0 +20260219 233600;208.571000;208.589000;208.566000;208.587000;0 +20260219 233700;208.587000;208.592000;208.570000;208.577000;0 +20260219 233800;208.580000;208.580000;208.557000;208.560000;0 +20260219 233900;208.561000;208.572000;208.560000;208.563000;0 +20260219 234000;208.562000;208.568000;208.548000;208.555000;0 +20260219 234100;208.558000;208.565000;208.550000;208.562000;0 +20260219 234200;208.561000;208.566000;208.551000;208.552000;0 +20260219 234300;208.555000;208.558000;208.540000;208.547000;0 +20260219 234400;208.547000;208.547000;208.529000;208.529000;0 +20260219 234500;208.528000;208.547000;208.527000;208.532000;0 +20260219 234600;208.533000;208.533000;208.510000;208.516000;0 +20260219 234700;208.518000;208.544000;208.515000;208.540000;0 +20260219 234800;208.540000;208.563000;208.539000;208.549000;0 +20260219 234900;208.546000;208.560000;208.543000;208.549000;0 +20260219 235000;208.551000;208.554000;208.539000;208.545000;0 +20260219 235100;208.542000;208.565000;208.542000;208.565000;0 +20260219 235200;208.569000;208.577000;208.566000;208.576000;0 +20260219 235300;208.581000;208.587000;208.573000;208.579000;0 +20260219 235400;208.580000;208.604000;208.575000;208.604000;0 +20260219 235500;208.600000;208.607000;208.584000;208.600000;0 +20260219 235600;208.604000;208.617000;208.574000;208.596000;0 +20260219 235700;208.596000;208.609000;208.592000;208.592000;0 +20260219 235800;208.595000;208.611000;208.593000;208.599000;0 +20260219 235900;208.600000;208.602000;208.580000;208.585000;0 +20260220 000000;208.589000;208.591000;208.545000;208.564000;0 +20260220 000100;208.565000;208.587000;208.565000;208.584000;0 +20260220 000200;208.580000;208.598000;208.578000;208.593000;0 +20260220 000300;208.592000;208.618000;208.587000;208.600000;0 +20260220 000400;208.603000;208.608000;208.585000;208.589000;0 +20260220 000500;208.592000;208.623000;208.590000;208.615000;0 +20260220 000600;208.615000;208.627000;208.586000;208.600000;0 +20260220 000700;208.604000;208.626000;208.598000;208.617000;0 +20260220 000800;208.619000;208.619000;208.602000;208.612000;0 +20260220 000900;208.613000;208.624000;208.596000;208.623000;0 +20260220 001000;208.625000;208.652000;208.625000;208.638000;0 +20260220 001100;208.638000;208.645000;208.627000;208.637000;0 +20260220 001200;208.640000;208.660000;208.632000;208.650000;0 +20260220 001300;208.654000;208.667000;208.643000;208.644000;0 +20260220 001400;208.644000;208.648000;208.618000;208.622000;0 +20260220 001500;208.626000;208.635000;208.621000;208.633000;0 +20260220 001600;208.632000;208.645000;208.630000;208.636000;0 +20260220 001700;208.634000;208.636000;208.613000;208.630000;0 +20260220 001800;208.632000;208.632000;208.617000;208.632000;0 +20260220 001900;208.631000;208.631000;208.613000;208.620000;0 +20260220 002000;208.621000;208.630000;208.616000;208.628000;0 +20260220 002100;208.633000;208.641000;208.630000;208.637000;0 +20260220 002200;208.639000;208.667000;208.631000;208.654000;0 +20260220 002300;208.653000;208.658000;208.647000;208.652000;0 +20260220 002400;208.651000;208.655000;208.629000;208.640000;0 +20260220 002500;208.642000;208.650000;208.634000;208.644000;0 +20260220 002600;208.655000;208.665000;208.652000;208.664000;0 +20260220 002700;208.660000;208.669000;208.657000;208.659000;0 +20260220 002800;208.660000;208.668000;208.658000;208.658000;0 +20260220 002900;208.658000;208.668000;208.652000;208.656000;0 +20260220 003000;208.653000;208.658000;208.635000;208.638000;0 +20260220 003100;208.638000;208.643000;208.628000;208.631000;0 +20260220 003200;208.632000;208.664000;208.632000;208.653000;0 +20260220 003300;208.651000;208.666000;208.638000;208.666000;0 +20260220 003400;208.666000;208.689000;208.666000;208.689000;0 +20260220 003500;208.689000;208.696000;208.673000;208.689000;0 +20260220 003600;208.686000;208.692000;208.679000;208.683000;0 +20260220 003700;208.684000;208.700000;208.684000;208.691000;0 +20260220 003800;208.689000;208.709000;208.689000;208.699000;0 +20260220 003900;208.702000;208.719000;208.695000;208.707000;0 +20260220 004000;208.705000;208.710000;208.675000;208.685000;0 +20260220 004100;208.687000;208.687000;208.675000;208.680000;0 +20260220 004200;208.683000;208.689000;208.660000;208.662000;0 +20260220 004300;208.666000;208.668000;208.645000;208.662000;0 +20260220 004400;208.665000;208.690000;208.657000;208.689000;0 +20260220 004500;208.689000;208.694000;208.681000;208.693000;0 +20260220 004600;208.688000;208.697000;208.679000;208.697000;0 +20260220 004700;208.698000;208.777000;208.696000;208.738000;0 +20260220 004800;208.737000;208.793000;208.733000;208.733000;0 +20260220 004900;208.735000;208.764000;208.731000;208.745000;0 +20260220 005000;208.747000;208.773000;208.743000;208.755000;0 +20260220 005100;208.755000;208.776000;208.751000;208.771000;0 +20260220 005200;208.767000;208.783000;208.751000;208.779000;0 +20260220 005300;208.780000;208.790000;208.760000;208.784000;0 +20260220 005400;208.790000;208.800000;208.753000;208.759000;0 +20260220 005500;208.757000;208.758000;208.706000;208.720000;0 +20260220 005600;208.719000;208.750000;208.719000;208.745000;0 +20260220 005700;208.747000;208.770000;208.742000;208.770000;0 +20260220 005800;208.766000;208.768000;208.749000;208.763000;0 +20260220 005900;208.757000;208.824000;208.755000;208.794000;0 +20260220 010000;208.793000;208.807000;208.772000;208.795000;0 +20260220 010100;208.798000;208.824000;208.789000;208.821000;0 +20260220 010200;208.821000;208.860000;208.803000;208.830000;0 +20260220 010300;208.829000;208.863000;208.823000;208.825000;0 +20260220 010400;208.826000;208.843000;208.804000;208.834000;0 +20260220 010500;208.830000;208.847000;208.797000;208.799000;0 +20260220 010600;208.798000;208.801000;208.712000;208.738000;0 +20260220 010700;208.738000;208.773000;208.736000;208.751000;0 +20260220 010800;208.757000;208.757000;208.717000;208.726000;0 +20260220 010900;208.724000;208.757000;208.722000;208.753000;0 +20260220 011000;208.752000;208.784000;208.752000;208.774000;0 +20260220 011100;208.775000;208.775000;208.761000;208.771000;0 +20260220 011200;208.770000;208.772000;208.719000;208.720000;0 +20260220 011300;208.722000;208.728000;208.689000;208.691000;0 +20260220 011400;208.691000;208.698000;208.659000;208.697000;0 +20260220 011500;208.697000;208.703000;208.678000;208.690000;0 +20260220 011600;208.689000;208.714000;208.686000;208.714000;0 +20260220 011700;208.714000;208.738000;208.703000;208.703000;0 +20260220 011800;208.703000;208.732000;208.701000;208.730000;0 +20260220 011900;208.729000;208.734000;208.727000;208.729000;0 +20260220 012000;208.726000;208.753000;208.722000;208.741000;0 +20260220 012100;208.739000;208.752000;208.733000;208.752000;0 +20260220 012200;208.753000;208.768000;208.750000;208.768000;0 +20260220 012300;208.767000;208.769000;208.734000;208.751000;0 +20260220 012400;208.750000;208.761000;208.725000;208.726000;0 +20260220 012500;208.730000;208.741000;208.684000;208.688000;0 +20260220 012600;208.692000;208.720000;208.692000;208.704000;0 +20260220 012700;208.706000;208.707000;208.700000;208.701000;0 +20260220 012800;208.705000;208.707000;208.694000;208.699000;0 +20260220 012900;208.698000;208.704000;208.697000;208.700000;0 +20260220 013000;208.701000;208.722000;208.700000;208.712000;0 +20260220 013100;208.712000;208.712000;208.676000;208.682000;0 +20260220 013200;208.680000;208.695000;208.675000;208.685000;0 +20260220 013300;208.684000;208.699000;208.669000;208.673000;0 +20260220 013400;208.673000;208.673000;208.626000;208.636000;0 +20260220 013500;208.644000;208.667000;208.624000;208.664000;0 +20260220 013600;208.661000;208.665000;208.618000;208.644000;0 +20260220 013700;208.653000;208.655000;208.622000;208.650000;0 +20260220 013800;208.649000;208.652000;208.621000;208.621000;0 +20260220 013900;208.622000;208.685000;208.621000;208.677000;0 +20260220 014000;208.678000;208.700000;208.669000;208.687000;0 +20260220 014100;208.685000;208.690000;208.676000;208.690000;0 +20260220 014200;208.692000;208.704000;208.691000;208.700000;0 +20260220 014300;208.702000;208.708000;208.690000;208.690000;0 +20260220 014400;208.686000;208.695000;208.667000;208.668000;0 +20260220 014500;208.668000;208.692000;208.664000;208.689000;0 +20260220 014600;208.690000;208.700000;208.689000;208.695000;0 +20260220 014700;208.691000;208.700000;208.686000;208.698000;0 +20260220 014800;208.694000;208.697000;208.676000;208.676000;0 +20260220 014900;208.677000;208.695000;208.672000;208.672000;0 +20260220 015000;208.672000;208.674000;208.642000;208.643000;0 +20260220 015100;208.644000;208.653000;208.636000;208.640000;0 +20260220 015200;208.640000;208.681000;208.639000;208.679000;0 +20260220 015300;208.680000;208.700000;208.680000;208.696000;0 +20260220 015400;208.696000;208.712000;208.690000;208.705000;0 +20260220 015500;208.705000;208.709000;208.673000;208.676000;0 +20260220 015600;208.679000;208.680000;208.625000;208.636000;0 +20260220 015700;208.636000;208.649000;208.628000;208.646000;0 +20260220 015800;208.645000;208.673000;208.636000;208.663000;0 +20260220 015900;208.662000;208.670000;208.648000;208.648000;0 +20260220 020000;208.648000;208.873000;208.644000;208.873000;0 +20260220 020100;208.865000;208.918000;208.805000;208.810000;0 +20260220 020200;208.811000;208.818000;208.762000;208.789000;0 +20260220 020300;208.795000;208.796000;208.757000;208.778000;0 +20260220 020400;208.777000;208.801000;208.752000;208.752000;0 +20260220 020500;208.752000;208.831000;208.745000;208.808000;0 +20260220 020600;208.806000;208.806000;208.744000;208.751000;0 +20260220 020700;208.751000;208.775000;208.726000;208.742000;0 +20260220 020800;208.742000;208.776000;208.733000;208.763000;0 +20260220 020900;208.761000;208.772000;208.747000;208.769000;0 +20260220 021000;208.768000;208.773000;208.734000;208.752000;0 +20260220 021100;208.754000;208.774000;208.728000;208.730000;0 +20260220 021200;208.729000;208.733000;208.707000;208.709000;0 +20260220 021300;208.707000;208.708000;208.676000;208.694000;0 +20260220 021400;208.692000;208.702000;208.667000;208.693000;0 +20260220 021500;208.694000;208.700000;208.677000;208.681000;0 +20260220 021600;208.678000;208.696000;208.673000;208.691000;0 +20260220 021700;208.688000;208.689000;208.679000;208.684000;0 +20260220 021800;208.685000;208.685000;208.640000;208.681000;0 +20260220 021900;208.682000;208.695000;208.676000;208.681000;0 +20260220 022000;208.681000;208.700000;208.673000;208.700000;0 +20260220 022100;208.702000;208.713000;208.686000;208.697000;0 +20260220 022200;208.701000;208.710000;208.695000;208.700000;0 +20260220 022300;208.701000;208.704000;208.678000;208.684000;0 +20260220 022400;208.684000;208.704000;208.684000;208.696000;0 +20260220 022500;208.698000;208.716000;208.689000;208.698000;0 +20260220 022600;208.694000;208.702000;208.669000;208.674000;0 +20260220 022700;208.679000;208.690000;208.672000;208.672000;0 +20260220 022800;208.675000;208.689000;208.670000;208.675000;0 +20260220 022900;208.673000;208.711000;208.673000;208.696000;0 +20260220 023000;208.695000;208.695000;208.670000;208.671000;0 +20260220 023100;208.672000;208.686000;208.654000;208.656000;0 +20260220 023200;208.655000;208.655000;208.613000;208.626000;0 +20260220 023300;208.629000;208.630000;208.550000;208.560000;0 +20260220 023400;208.560000;208.648000;208.554000;208.648000;0 +20260220 023500;208.650000;208.689000;208.626000;208.683000;0 +20260220 023600;208.682000;208.685000;208.658000;208.663000;0 +20260220 023700;208.661000;208.676000;208.625000;208.627000;0 +20260220 023800;208.627000;208.662000;208.619000;208.660000;0 +20260220 023900;208.662000;208.666000;208.650000;208.665000;0 +20260220 024000;208.666000;208.724000;208.666000;208.724000;0 +20260220 024100;208.722000;208.727000;208.694000;208.712000;0 +20260220 024200;208.713000;208.762000;208.704000;208.734000;0 +20260220 024300;208.735000;208.766000;208.721000;208.737000;0 +20260220 024400;208.735000;208.774000;208.728000;208.750000;0 +20260220 024500;208.748000;208.750000;208.717000;208.729000;0 +20260220 024600;208.736000;208.764000;208.735000;208.761000;0 +20260220 024700;208.760000;208.764000;208.745000;208.753000;0 +20260220 024800;208.753000;208.767000;208.746000;208.758000;0 +20260220 024900;208.759000;208.779000;208.754000;208.758000;0 +20260220 025000;208.758000;208.786000;208.755000;208.777000;0 +20260220 025100;208.777000;208.812000;208.777000;208.799000;0 +20260220 025200;208.800000;208.854000;208.800000;208.854000;0 +20260220 025300;208.852000;208.903000;208.836000;208.872000;0 +20260220 025400;208.874000;208.889000;208.846000;208.874000;0 +20260220 025500;208.877000;209.019000;208.867000;208.974000;0 +20260220 025600;208.979000;209.054000;208.958000;209.029000;0 +20260220 025700;209.025000;209.075000;208.996000;209.075000;0 +20260220 025800;209.069000;209.093000;209.051000;209.059000;0 +20260220 025900;209.061000;209.086000;209.044000;209.070000;0 +20260220 030000;209.068000;209.087000;209.025000;209.034000;0 +20260220 030100;209.031000;209.049000;208.980000;209.027000;0 +20260220 030200;209.026000;209.065000;208.995000;209.027000;0 +20260220 030300;209.026000;209.028000;208.950000;208.965000;0 +20260220 030400;208.964000;208.994000;208.946000;208.984000;0 +20260220 030500;208.986000;209.028000;208.981000;208.995000;0 +20260220 030600;208.994000;209.016000;208.977000;209.016000;0 +20260220 030700;209.016000;209.024000;208.993000;209.017000;0 +20260220 030800;209.011000;209.011000;208.922000;208.927000;0 +20260220 030900;208.928000;208.945000;208.893000;208.893000;0 +20260220 031000;208.896000;208.915000;208.891000;208.907000;0 +20260220 031100;208.906000;208.943000;208.905000;208.916000;0 +20260220 031200;208.915000;208.936000;208.893000;208.906000;0 +20260220 031300;208.913000;208.913000;208.869000;208.891000;0 +20260220 031400;208.894000;208.913000;208.882000;208.898000;0 +20260220 031500;208.894000;208.923000;208.887000;208.902000;0 +20260220 031600;208.901000;208.919000;208.883000;208.883000;0 +20260220 031700;208.885000;208.917000;208.881000;208.890000;0 +20260220 031800;208.900000;208.941000;208.885000;208.941000;0 +20260220 031900;208.941000;208.941000;208.900000;208.918000;0 +20260220 032000;208.919000;208.920000;208.900000;208.903000;0 +20260220 032100;208.901000;208.912000;208.889000;208.892000;0 +20260220 032200;208.891000;208.901000;208.849000;208.855000;0 +20260220 032300;208.854000;208.895000;208.854000;208.892000;0 +20260220 032400;208.890000;208.910000;208.886000;208.907000;0 +20260220 032500;208.906000;208.919000;208.892000;208.910000;0 +20260220 032600;208.914000;208.937000;208.912000;208.922000;0 +20260220 032700;208.922000;208.946000;208.922000;208.944000;0 +20260220 032800;208.943000;208.994000;208.943000;208.990000;0 +20260220 032900;208.988000;209.004000;208.968000;208.997000;0 +20260220 033000;208.991000;209.023000;208.983000;208.987000;0 +20260220 033100;208.987000;209.001000;208.964000;208.971000;0 +20260220 033200;208.972000;208.976000;208.940000;208.970000;0 +20260220 033300;208.967000;208.970000;208.940000;208.957000;0 +20260220 033400;208.956000;208.962000;208.935000;208.942000;0 +20260220 033500;208.942000;208.987000;208.937000;208.983000;0 +20260220 033600;208.983000;209.051000;208.983000;209.042000;0 +20260220 033700;209.042000;209.085000;209.029000;209.075000;0 +20260220 033800;209.075000;209.079000;209.044000;209.049000;0 +20260220 033900;209.047000;209.052000;209.026000;209.052000;0 +20260220 034000;209.054000;209.072000;209.034000;209.043000;0 +20260220 034100;209.045000;209.121000;209.040000;209.090000;0 +20260220 034200;209.090000;209.122000;209.076000;209.113000;0 +20260220 034300;209.114000;209.133000;209.112000;209.127000;0 +20260220 034400;209.127000;209.219000;209.110000;209.210000;0 +20260220 034500;209.208000;209.229000;209.196000;209.216000;0 +20260220 034600;209.216000;209.235000;209.215000;209.220000;0 +20260220 034700;209.219000;209.231000;209.192000;209.214000;0 +20260220 034800;209.214000;209.268000;209.214000;209.248000;0 +20260220 034900;209.250000;209.289000;209.246000;209.256000;0 +20260220 035000;209.253000;209.260000;209.170000;209.170000;0 +20260220 035100;209.170000;209.189000;209.159000;209.188000;0 +20260220 035200;209.188000;209.212000;209.161000;209.206000;0 +20260220 035300;209.207000;209.226000;209.188000;209.221000;0 +20260220 035400;209.222000;209.229000;209.206000;209.215000;0 +20260220 035500;209.216000;209.230000;209.200000;209.204000;0 +20260220 035600;209.202000;209.224000;209.201000;209.217000;0 +20260220 035700;209.218000;209.251000;209.216000;209.248000;0 +20260220 035800;209.247000;209.269000;209.235000;209.266000;0 +20260220 035900;209.267000;209.271000;209.236000;209.255000;0 +20260220 040000;209.255000;209.283000;209.246000;209.272000;0 +20260220 040100;209.269000;209.353000;209.267000;209.346000;0 +20260220 040200;209.350000;209.370000;209.335000;209.354000;0 +20260220 040300;209.356000;209.363000;209.336000;209.340000;0 +20260220 040400;209.340000;209.349000;209.329000;209.339000;0 +20260220 040500;209.337000;209.349000;209.317000;209.317000;0 +20260220 040600;209.316000;209.321000;209.297000;209.320000;0 +20260220 040700;209.318000;209.345000;209.310000;209.343000;0 +20260220 040800;209.344000;209.348000;209.326000;209.338000;0 +20260220 040900;209.337000;209.371000;209.329000;209.363000;0 +20260220 041000;209.365000;209.380000;209.343000;209.360000;0 +20260220 041100;209.358000;209.359000;209.323000;209.325000;0 +20260220 041200;209.323000;209.323000;209.291000;209.294000;0 +20260220 041300;209.291000;209.320000;209.280000;209.310000;0 +20260220 041400;209.308000;209.313000;209.275000;209.275000;0 +20260220 041500;209.277000;209.277000;209.237000;209.251000;0 +20260220 041600;209.252000;209.321000;209.252000;209.316000;0 +20260220 041700;209.316000;209.316000;209.283000;209.292000;0 +20260220 041800;209.295000;209.314000;209.281000;209.282000;0 +20260220 041900;209.283000;209.312000;209.283000;209.308000;0 +20260220 042000;209.310000;209.333000;209.291000;209.292000;0 +20260220 042100;209.292000;209.293000;209.263000;209.264000;0 +20260220 042200;209.265000;209.267000;209.244000;209.258000;0 +20260220 042300;209.259000;209.285000;209.253000;209.272000;0 +20260220 042400;209.269000;209.303000;209.269000;209.297000;0 +20260220 042500;209.297000;209.302000;209.264000;209.265000;0 +20260220 042600;209.265000;209.269000;209.236000;209.237000;0 +20260220 042700;209.238000;209.253000;209.223000;209.253000;0 +20260220 042800;209.253000;209.266000;209.241000;209.261000;0 +20260220 042900;209.260000;209.286000;209.254000;209.254000;0 +20260220 043000;209.255000;209.444000;209.255000;209.426000;0 +20260220 043100;209.421000;209.443000;209.348000;209.389000;0 +20260220 043200;209.389000;209.421000;209.323000;209.348000;0 +20260220 043300;209.350000;209.442000;209.330000;209.440000;0 +20260220 043400;209.442000;209.451000;209.415000;209.441000;0 +20260220 043500;209.442000;209.499000;209.442000;209.481000;0 +20260220 043600;209.479000;209.479000;209.430000;209.431000;0 +20260220 043700;209.430000;209.487000;209.430000;209.483000;0 +20260220 043800;209.477000;209.477000;209.432000;209.472000;0 +20260220 043900;209.470000;209.472000;209.431000;209.457000;0 +20260220 044000;209.453000;209.469000;209.425000;209.429000;0 +20260220 044100;209.431000;209.462000;209.431000;209.459000;0 +20260220 044200;209.461000;209.467000;209.445000;209.463000;0 +20260220 044300;209.460000;209.460000;209.408000;209.412000;0 +20260220 044400;209.410000;209.466000;209.403000;209.464000;0 +20260220 044500;209.461000;209.473000;209.426000;209.426000;0 +20260220 044600;209.425000;209.437000;209.400000;209.400000;0 +20260220 044700;209.397000;209.404000;209.360000;209.368000;0 +20260220 044800;209.363000;209.376000;209.360000;209.371000;0 +20260220 044900;209.369000;209.378000;209.334000;209.334000;0 +20260220 045000;209.332000;209.339000;209.319000;209.339000;0 +20260220 045100;209.339000;209.352000;209.296000;209.313000;0 +20260220 045200;209.311000;209.318000;209.296000;209.313000;0 +20260220 045300;209.314000;209.322000;209.305000;209.309000;0 +20260220 045400;209.302000;209.333000;209.302000;209.331000;0 +20260220 045500;209.338000;209.390000;209.337000;209.381000;0 +20260220 045600;209.383000;209.396000;209.375000;209.385000;0 +20260220 045700;209.386000;209.386000;209.350000;209.350000;0 +20260220 045800;209.349000;209.355000;209.309000;209.315000;0 +20260220 045900;209.313000;209.313000;209.260000;209.266000;0 +20260220 050000;209.270000;209.291000;209.257000;209.283000;0 +20260220 050100;209.284000;209.293000;209.275000;209.293000;0 +20260220 050200;209.287000;209.300000;209.238000;209.239000;0 +20260220 050300;209.238000;209.244000;209.208000;209.239000;0 +20260220 050400;209.240000;209.258000;209.238000;209.241000;0 +20260220 050500;209.242000;209.271000;209.239000;209.265000;0 +20260220 050600;209.264000;209.277000;209.243000;209.249000;0 +20260220 050700;209.250000;209.250000;209.225000;209.238000;0 +20260220 050800;209.239000;209.265000;209.237000;209.255000;0 +20260220 050900;209.256000;209.266000;209.247000;209.251000;0 +20260220 051000;209.251000;209.263000;209.244000;209.263000;0 +20260220 051100;209.264000;209.264000;209.212000;209.218000;0 +20260220 051200;209.220000;209.232000;209.207000;209.210000;0 +20260220 051300;209.212000;209.225000;209.201000;209.201000;0 +20260220 051400;209.198000;209.204000;209.171000;209.179000;0 +20260220 051500;209.180000;209.206000;209.179000;209.192000;0 +20260220 051600;209.195000;209.224000;209.194000;209.217000;0 +20260220 051700;209.217000;209.229000;209.208000;209.225000;0 +20260220 051800;209.226000;209.254000;209.219000;209.246000;0 +20260220 051900;209.236000;209.262000;209.234000;209.250000;0 +20260220 052000;209.249000;209.251000;209.230000;209.244000;0 +20260220 052100;209.245000;209.255000;209.215000;209.229000;0 +20260220 052200;209.227000;209.239000;209.227000;209.236000;0 +20260220 052300;209.236000;209.260000;209.229000;209.260000;0 +20260220 052400;209.257000;209.259000;209.229000;209.242000;0 +20260220 052500;209.242000;209.254000;209.223000;209.227000;0 +20260220 052600;209.225000;209.232000;209.212000;209.222000;0 +20260220 052700;209.225000;209.233000;209.217000;209.217000;0 +20260220 052800;209.217000;209.249000;209.214000;209.243000;0 +20260220 052900;209.243000;209.273000;209.243000;209.268000;0 +20260220 053000;209.266000;209.272000;209.253000;209.262000;0 +20260220 053100;209.263000;209.281000;209.260000;209.262000;0 +20260220 053200;209.261000;209.313000;209.261000;209.307000;0 +20260220 053300;209.306000;209.333000;209.300000;209.323000;0 +20260220 053400;209.324000;209.329000;209.299000;209.310000;0 +20260220 053500;209.306000;209.319000;209.301000;209.314000;0 +20260220 053600;209.313000;209.327000;209.295000;209.325000;0 +20260220 053700;209.326000;209.336000;209.312000;209.315000;0 +20260220 053800;209.318000;209.331000;209.306000;209.331000;0 +20260220 053900;209.333000;209.350000;209.331000;209.340000;0 +20260220 054000;209.340000;209.348000;209.310000;209.315000;0 +20260220 054100;209.320000;209.324000;209.305000;209.312000;0 +20260220 054200;209.313000;209.326000;209.301000;209.303000;0 +20260220 054300;209.305000;209.334000;209.295000;209.333000;0 +20260220 054400;209.338000;209.368000;209.333000;209.349000;0 +20260220 054500;209.348000;209.354000;209.327000;209.334000;0 +20260220 054600;209.334000;209.367000;209.324000;209.354000;0 +20260220 054700;209.354000;209.354000;209.324000;209.335000;0 +20260220 054800;209.336000;209.354000;209.334000;209.350000;0 +20260220 054900;209.350000;209.350000;209.325000;209.325000;0 +20260220 055000;209.325000;209.328000;209.306000;209.328000;0 +20260220 055100;209.332000;209.346000;209.297000;209.297000;0 +20260220 055200;209.299000;209.328000;209.297000;209.319000;0 +20260220 055300;209.316000;209.327000;209.311000;209.320000;0 +20260220 055400;209.319000;209.330000;209.310000;209.311000;0 +20260220 055500;209.309000;209.310000;209.218000;209.224000;0 +20260220 055600;209.224000;209.225000;209.172000;209.197000;0 +20260220 055700;209.195000;209.195000;209.085000;209.097000;0 +20260220 055800;209.101000;209.101000;209.075000;209.090000;0 +20260220 055900;209.092000;209.121000;209.090000;209.108000;0 +20260220 060000;209.105000;209.106000;208.999000;208.999000;0 +20260220 060100;208.998000;209.062000;208.992000;209.028000;0 +20260220 060200;209.029000;209.029000;208.971000;208.971000;0 +20260220 060300;208.972000;208.995000;208.957000;208.986000;0 +20260220 060400;208.983000;209.004000;208.978000;208.995000;0 +20260220 060500;208.997000;209.024000;208.985000;209.022000;0 +20260220 060600;209.025000;209.043000;209.016000;209.032000;0 +20260220 060700;209.032000;209.073000;209.028000;209.073000;0 +20260220 060800;209.073000;209.108000;209.066000;209.108000;0 +20260220 060900;209.112000;209.152000;209.111000;209.148000;0 +20260220 061000;209.144000;209.144000;209.109000;209.122000;0 +20260220 061100;209.122000;209.127000;209.101000;209.101000;0 +20260220 061200;209.101000;209.101000;209.042000;209.060000;0 +20260220 061300;209.054000;209.072000;209.039000;209.041000;0 +20260220 061400;209.039000;209.073000;209.037000;209.068000;0 +20260220 061500;209.067000;209.125000;209.066000;209.124000;0 +20260220 061600;209.127000;209.130000;209.096000;209.115000;0 +20260220 061700;209.116000;209.152000;209.115000;209.152000;0 +20260220 061800;209.151000;209.177000;209.144000;209.177000;0 +20260220 061900;209.179000;209.180000;209.143000;209.146000;0 +20260220 062000;209.147000;209.147000;209.070000;209.070000;0 +20260220 062100;209.072000;209.075000;209.052000;209.074000;0 +20260220 062200;209.075000;209.079000;209.058000;209.065000;0 +20260220 062300;209.066000;209.121000;209.066000;209.112000;0 +20260220 062400;209.113000;209.157000;209.113000;209.149000;0 +20260220 062500;209.147000;209.166000;209.137000;209.148000;0 +20260220 062600;209.148000;209.172000;209.141000;209.158000;0 +20260220 062700;209.157000;209.159000;209.130000;209.135000;0 +20260220 062800;209.132000;209.134000;209.099000;209.099000;0 +20260220 062900;209.106000;209.128000;209.106000;209.128000;0 +20260220 063000;209.127000;209.127000;209.074000;209.074000;0 +20260220 063100;209.075000;209.094000;209.070000;209.085000;0 +20260220 063200;209.082000;209.099000;209.078000;209.078000;0 +20260220 063300;209.076000;209.078000;209.050000;209.077000;0 +20260220 063400;209.075000;209.094000;209.069000;209.088000;0 +20260220 063500;209.091000;209.108000;209.087000;209.090000;0 +20260220 063600;209.088000;209.098000;209.068000;209.082000;0 +20260220 063700;209.086000;209.088000;209.065000;209.077000;0 +20260220 063800;209.077000;209.123000;209.077000;209.118000;0 +20260220 063900;209.118000;209.136000;209.110000;209.110000;0 +20260220 064000;209.110000;209.144000;209.104000;209.138000;0 +20260220 064100;209.142000;209.152000;209.123000;209.136000;0 +20260220 064200;209.138000;209.138000;209.107000;209.115000;0 +20260220 064300;209.112000;209.128000;209.109000;209.109000;0 +20260220 064400;209.109000;209.126000;209.094000;209.125000;0 +20260220 064500;209.125000;209.141000;209.113000;209.117000;0 +20260220 064600;209.117000;209.129000;209.110000;209.111000;0 +20260220 064700;209.110000;209.139000;209.107000;209.136000;0 +20260220 064800;209.136000;209.138000;209.098000;209.098000;0 +20260220 064900;209.097000;209.122000;209.085000;209.108000;0 +20260220 065000;209.109000;209.148000;209.105000;209.142000;0 +20260220 065100;209.143000;209.156000;209.125000;209.155000;0 +20260220 065200;209.156000;209.165000;209.143000;209.156000;0 +20260220 065300;209.155000;209.175000;209.147000;209.172000;0 +20260220 065400;209.174000;209.177000;209.162000;209.163000;0 +20260220 065500;209.165000;209.180000;209.162000;209.171000;0 +20260220 065600;209.165000;209.177000;209.155000;209.158000;0 +20260220 065700;209.160000;209.182000;209.123000;209.126000;0 +20260220 065800;209.124000;209.124000;209.089000;209.089000;0 +20260220 065900;209.088000;209.100000;209.076000;209.085000;0 +20260220 070000;209.088000;209.110000;209.067000;209.075000;0 +20260220 070100;209.076000;209.085000;209.063000;209.066000;0 +20260220 070200;209.065000;209.097000;209.044000;209.088000;0 +20260220 070300;209.085000;209.149000;209.085000;209.144000;0 +20260220 070400;209.146000;209.187000;209.146000;209.167000;0 +20260220 070500;209.168000;209.198000;209.158000;209.192000;0 +20260220 070600;209.194000;209.208000;209.178000;209.206000;0 +20260220 070700;209.208000;209.238000;209.198000;209.225000;0 +20260220 070800;209.227000;209.266000;209.224000;209.253000;0 +20260220 070900;209.253000;209.258000;209.222000;209.245000;0 +20260220 071000;209.246000;209.246000;209.211000;209.211000;0 +20260220 071100;209.207000;209.207000;209.183000;209.191000;0 +20260220 071200;209.193000;209.241000;209.192000;209.240000;0 +20260220 071300;209.239000;209.268000;209.224000;209.264000;0 +20260220 071400;209.263000;209.263000;209.230000;209.244000;0 +20260220 071500;209.244000;209.254000;209.233000;209.233000;0 +20260220 071600;209.234000;209.263000;209.229000;209.248000;0 +20260220 071700;209.252000;209.252000;209.231000;209.240000;0 +20260220 071800;209.238000;209.244000;209.217000;209.243000;0 +20260220 071900;209.243000;209.273000;209.232000;209.261000;0 +20260220 072000;209.256000;209.257000;209.227000;209.242000;0 +20260220 072100;209.240000;209.256000;209.226000;209.234000;0 +20260220 072200;209.232000;209.232000;209.204000;209.210000;0 +20260220 072300;209.214000;209.245000;209.210000;209.228000;0 +20260220 072400;209.230000;209.258000;209.230000;209.247000;0 +20260220 072500;209.247000;209.272000;209.244000;209.255000;0 +20260220 072600;209.256000;209.268000;209.255000;209.268000;0 +20260220 072700;209.265000;209.270000;209.250000;209.250000;0 +20260220 072800;209.250000;209.255000;209.235000;209.239000;0 +20260220 072900;209.236000;209.249000;209.227000;209.227000;0 +20260220 073000;209.225000;209.246000;209.200000;209.203000;0 +20260220 073100;209.202000;209.202000;209.128000;209.130000;0 +20260220 073200;209.128000;209.159000;209.109000;209.153000;0 +20260220 073300;209.150000;209.168000;209.142000;209.163000;0 +20260220 073400;209.160000;209.174000;209.141000;209.170000;0 +20260220 073500;209.168000;209.208000;209.167000;209.208000;0 +20260220 073600;209.215000;209.243000;209.213000;209.231000;0 +20260220 073700;209.227000;209.231000;209.180000;209.188000;0 +20260220 073800;209.187000;209.208000;209.183000;209.195000;0 +20260220 073900;209.195000;209.198000;209.174000;209.186000;0 +20260220 074000;209.182000;209.212000;209.168000;209.207000;0 +20260220 074100;209.208000;209.212000;209.182000;209.184000;0 +20260220 074200;209.182000;209.201000;209.168000;209.200000;0 +20260220 074300;209.199000;209.199000;209.175000;209.185000;0 +20260220 074400;209.184000;209.202000;209.163000;209.181000;0 +20260220 074500;209.180000;209.201000;209.174000;209.182000;0 +20260220 074600;209.183000;209.194000;209.167000;209.187000;0 +20260220 074700;209.189000;209.212000;209.184000;209.206000;0 +20260220 074800;209.207000;209.224000;209.197000;209.222000;0 +20260220 074900;209.223000;209.237000;209.211000;209.225000;0 +20260220 075000;209.224000;209.266000;209.215000;209.255000;0 +20260220 075100;209.255000;209.275000;209.252000;209.267000;0 +20260220 075200;209.268000;209.297000;209.246000;209.262000;0 +20260220 075300;209.262000;209.265000;209.234000;209.248000;0 +20260220 075400;209.246000;209.246000;209.217000;209.230000;0 +20260220 075500;209.229000;209.239000;209.200000;209.239000;0 +20260220 075600;209.237000;209.237000;209.208000;209.210000;0 +20260220 075700;209.211000;209.236000;209.202000;209.234000;0 +20260220 075800;209.234000;209.234000;209.199000;209.209000;0 +20260220 075900;209.205000;209.206000;209.166000;209.167000;0 +20260220 080000;209.178000;209.198000;209.149000;209.163000;0 +20260220 080100;209.162000;209.175000;209.141000;209.170000;0 +20260220 080200;209.169000;209.190000;209.169000;209.186000;0 +20260220 080300;209.189000;209.211000;209.188000;209.194000;0 +20260220 080400;209.194000;209.209000;209.184000;209.205000;0 +20260220 080500;209.204000;209.204000;209.140000;209.147000;0 +20260220 080600;209.148000;209.192000;209.148000;209.176000;0 +20260220 080700;209.176000;209.206000;209.176000;209.203000;0 +20260220 080800;209.204000;209.217000;209.189000;209.217000;0 +20260220 080900;209.217000;209.240000;209.195000;209.228000;0 +20260220 081000;209.229000;209.229000;209.219000;209.223000;0 +20260220 081100;209.226000;209.236000;209.210000;209.236000;0 +20260220 081200;209.232000;209.248000;209.227000;209.243000;0 +20260220 081300;209.243000;209.249000;209.215000;209.231000;0 +20260220 081400;209.232000;209.232000;209.197000;209.199000;0 +20260220 081500;209.201000;209.217000;209.196000;209.211000;0 +20260220 081600;209.212000;209.220000;209.189000;209.211000;0 +20260220 081700;209.210000;209.240000;209.196000;209.225000;0 +20260220 081800;209.222000;209.254000;209.203000;209.250000;0 +20260220 081900;209.251000;209.258000;209.222000;209.238000;0 +20260220 082000;209.236000;209.247000;209.207000;209.228000;0 +20260220 082100;209.227000;209.243000;209.209000;209.213000;0 +20260220 082200;209.213000;209.215000;209.168000;209.183000;0 +20260220 082300;209.185000;209.226000;209.185000;209.209000;0 +20260220 082400;209.212000;209.212000;209.168000;209.194000;0 +20260220 082500;209.198000;209.217000;209.181000;209.216000;0 +20260220 082600;209.215000;209.244000;209.202000;209.244000;0 +20260220 082700;209.244000;209.310000;209.234000;209.296000;0 +20260220 082800;209.300000;209.320000;209.296000;209.314000;0 +20260220 082900;209.314000;209.339000;209.282000;209.299000;0 +20260220 083000;209.274000;209.352000;209.180000;209.311000;0 +20260220 083100;209.310000;209.334000;209.274000;209.297000;0 +20260220 083200;209.303000;209.320000;209.260000;209.269000;0 +20260220 083300;209.269000;209.275000;209.227000;209.238000;0 +20260220 083400;209.232000;209.271000;209.232000;209.260000;0 +20260220 083500;209.262000;209.315000;209.230000;209.291000;0 +20260220 083600;209.293000;209.295000;209.254000;209.268000;0 +20260220 083700;209.271000;209.307000;209.263000;209.296000;0 +20260220 083800;209.292000;209.320000;209.284000;209.303000;0 +20260220 083900;209.303000;209.309000;209.289000;209.296000;0 +20260220 084000;209.293000;209.350000;209.289000;209.337000;0 +20260220 084100;209.331000;209.354000;209.321000;209.339000;0 +20260220 084200;209.338000;209.338000;209.298000;209.309000;0 +20260220 084300;209.308000;209.322000;209.287000;209.317000;0 +20260220 084400;209.313000;209.380000;209.306000;209.349000;0 +20260220 084500;209.352000;209.371000;209.335000;209.338000;0 +20260220 084600;209.340000;209.362000;209.325000;209.346000;0 +20260220 084700;209.344000;209.371000;209.332000;209.358000;0 +20260220 084800;209.360000;209.374000;209.337000;209.344000;0 +20260220 084900;209.343000;209.382000;209.313000;209.377000;0 +20260220 085000;209.380000;209.411000;209.366000;209.405000;0 +20260220 085100;209.412000;209.430000;209.412000;209.420000;0 +20260220 085200;209.422000;209.436000;209.401000;209.431000;0 +20260220 085300;209.433000;209.529000;209.430000;209.528000;0 +20260220 085400;209.528000;209.550000;209.515000;209.540000;0 +20260220 085500;209.539000;209.539000;209.477000;209.509000;0 +20260220 085600;209.508000;209.557000;209.506000;209.557000;0 +20260220 085700;209.557000;209.564000;209.534000;209.563000;0 +20260220 085800;209.563000;209.602000;209.558000;209.587000;0 +20260220 085900;209.581000;209.612000;209.579000;209.600000;0 +20260220 090000;209.595000;209.608000;209.570000;209.599000;0 +20260220 090100;209.599000;209.613000;209.579000;209.580000;0 +20260220 090200;209.577000;209.635000;209.567000;209.618000;0 +20260220 090300;209.614000;209.614000;209.561000;209.575000;0 +20260220 090400;209.565000;209.581000;209.557000;209.574000;0 +20260220 090500;209.572000;209.572000;209.538000;209.545000;0 +20260220 090600;209.537000;209.554000;209.515000;209.530000;0 +20260220 090700;209.529000;209.540000;209.510000;209.519000;0 +20260220 090800;209.516000;209.527000;209.503000;209.512000;0 +20260220 090900;209.514000;209.570000;209.504000;209.566000;0 +20260220 091000;209.567000;209.596000;209.549000;209.578000;0 +20260220 091100;209.576000;209.583000;209.542000;209.567000;0 +20260220 091200;209.568000;209.574000;209.534000;209.549000;0 +20260220 091300;209.552000;209.588000;209.550000;209.583000;0 +20260220 091400;209.586000;209.592000;209.499000;209.521000;0 +20260220 091500;209.516000;209.526000;209.450000;209.455000;0 +20260220 091600;209.455000;209.470000;209.431000;209.443000;0 +20260220 091700;209.443000;209.494000;209.433000;209.478000;0 +20260220 091800;209.478000;209.498000;209.471000;209.489000;0 +20260220 091900;209.489000;209.500000;209.462000;209.463000;0 +20260220 092000;209.461000;209.468000;209.444000;209.461000;0 +20260220 092100;209.460000;209.498000;209.457000;209.489000;0 +20260220 092200;209.495000;209.496000;209.466000;209.480000;0 +20260220 092300;209.479000;209.482000;209.461000;209.464000;0 +20260220 092400;209.464000;209.479000;209.433000;209.437000;0 +20260220 092500;209.441000;209.491000;209.438000;209.456000;0 +20260220 092600;209.459000;209.459000;209.443000;209.456000;0 +20260220 092700;209.456000;209.476000;209.445000;209.475000;0 +20260220 092800;209.471000;209.498000;209.437000;209.440000;0 +20260220 092900;209.442000;209.455000;209.419000;209.439000;0 +20260220 093000;209.443000;209.456000;209.407000;209.419000;0 +20260220 093100;209.418000;209.442000;209.402000;209.431000;0 +20260220 093200;209.431000;209.480000;209.428000;209.468000;0 +20260220 093300;209.469000;209.490000;209.451000;209.451000;0 +20260220 093400;209.451000;209.466000;209.399000;209.411000;0 +20260220 093500;209.404000;209.456000;209.393000;209.440000;0 +20260220 093600;209.437000;209.445000;209.417000;209.427000;0 +20260220 093700;209.427000;209.438000;209.387000;209.393000;0 +20260220 093800;209.390000;209.408000;209.362000;209.366000;0 +20260220 093900;209.366000;209.391000;209.353000;209.383000;0 +20260220 094000;209.385000;209.407000;209.371000;209.401000;0 +20260220 094100;209.399000;209.406000;209.378000;209.389000;0 +20260220 094200;209.389000;209.466000;209.386000;209.450000;0 +20260220 094300;209.447000;209.487000;209.424000;209.481000;0 +20260220 094400;209.481000;209.483000;209.440000;209.440000;0 +20260220 094500;209.451000;209.451000;209.339000;209.386000;0 +20260220 094600;209.385000;209.428000;209.381000;209.393000;0 +20260220 094700;209.397000;209.410000;209.355000;209.375000;0 +20260220 094800;209.379000;209.439000;209.376000;209.402000;0 +20260220 094900;209.398000;209.421000;209.387000;209.411000;0 +20260220 095000;209.411000;209.428000;209.402000;209.414000;0 +20260220 095100;209.415000;209.424000;209.389000;209.399000;0 +20260220 095200;209.401000;209.477000;209.401000;209.435000;0 +20260220 095300;209.433000;209.481000;209.428000;209.469000;0 +20260220 095400;209.471000;209.472000;209.427000;209.450000;0 +20260220 095500;209.449000;209.456000;209.418000;209.419000;0 +20260220 095600;209.417000;209.447000;209.391000;209.400000;0 +20260220 095700;209.399000;209.399000;209.350000;209.396000;0 +20260220 095800;209.397000;209.446000;209.388000;209.444000;0 +20260220 095900;209.439000;209.469000;209.394000;209.395000;0 +20260220 100000;209.391000;209.536000;209.372000;209.532000;0 +20260220 100100;209.536000;209.677000;209.397000;209.612000;0 +20260220 100200;209.612000;209.663000;209.350000;209.401000;0 +20260220 100300;209.401000;209.406000;209.235000;209.289000;0 +20260220 100400;209.287000;209.389000;209.269000;209.367000;0 +20260220 100500;209.365000;209.401000;209.302000;209.302000;0 +20260220 100600;209.303000;209.413000;209.285000;209.298000;0 +20260220 100700;209.296000;209.402000;209.285000;209.380000;0 +20260220 100800;209.384000;209.476000;209.378000;209.460000;0 +20260220 100900;209.462000;209.531000;209.456000;209.474000;0 +20260220 101000;209.473000;209.516000;209.410000;209.447000;0 +20260220 101100;209.440000;209.440000;209.287000;209.310000;0 +20260220 101200;209.312000;209.320000;209.216000;209.252000;0 +20260220 101300;209.254000;209.262000;209.106000;209.154000;0 +20260220 101400;209.153000;209.201000;209.102000;209.128000;0 +20260220 101500;209.127000;209.156000;209.040000;209.052000;0 +20260220 101600;209.052000;209.117000;209.015000;209.090000;0 +20260220 101700;209.090000;209.333000;209.089000;209.291000;0 +20260220 101800;209.294000;209.295000;209.174000;209.246000;0 +20260220 101900;209.255000;209.274000;209.190000;209.199000;0 +20260220 102000;209.197000;209.239000;209.103000;209.228000;0 +20260220 102100;209.229000;209.229000;209.146000;209.183000;0 +20260220 102200;209.185000;209.317000;209.166000;209.311000;0 +20260220 102300;209.310000;209.374000;209.251000;209.354000;0 +20260220 102400;209.353000;209.378000;209.331000;209.378000;0 +20260220 102500;209.377000;209.395000;209.303000;209.327000;0 +20260220 102600;209.326000;209.412000;209.306000;209.408000;0 +20260220 102700;209.402000;209.417000;209.250000;209.286000;0 +20260220 102800;209.284000;209.314000;209.257000;209.265000;0 +20260220 102900;209.262000;209.282000;209.218000;209.239000;0 +20260220 103000;209.241000;209.329000;209.184000;209.220000;0 +20260220 103100;209.223000;209.258000;209.217000;209.233000;0 +20260220 103200;209.227000;209.269000;209.196000;209.199000;0 +20260220 103300;209.198000;209.241000;209.188000;209.211000;0 +20260220 103400;209.213000;209.258000;209.181000;209.206000;0 +20260220 103500;209.208000;209.226000;209.179000;209.197000;0 +20260220 103600;209.188000;209.236000;209.163000;209.228000;0 +20260220 103700;209.230000;209.255000;209.176000;209.224000;0 +20260220 103800;209.226000;209.235000;209.116000;209.124000;0 +20260220 103900;209.129000;209.185000;209.119000;209.185000;0 +20260220 104000;209.182000;209.193000;209.122000;209.138000;0 +20260220 104100;209.136000;209.188000;209.115000;209.149000;0 +20260220 104200;209.145000;209.159000;209.091000;209.110000;0 +20260220 104300;209.112000;209.163000;209.088000;209.137000;0 +20260220 104400;209.138000;209.191000;209.101000;209.184000;0 +20260220 104500;209.187000;209.239000;209.164000;209.166000;0 +20260220 104600;209.167000;209.180000;209.111000;209.164000;0 +20260220 104700;209.165000;209.221000;209.146000;209.180000;0 +20260220 104800;209.178000;209.218000;209.168000;209.216000;0 +20260220 104900;209.215000;209.215000;209.143000;209.152000;0 +20260220 105000;209.154000;209.169000;209.091000;209.114000;0 +20260220 105100;209.110000;209.151000;209.108000;209.126000;0 +20260220 105200;209.127000;209.172000;209.113000;209.161000;0 +20260220 105300;209.163000;209.173000;209.131000;209.152000;0 +20260220 105400;209.152000;209.174000;209.135000;209.143000;0 +20260220 105500;209.144000;209.152000;209.069000;209.100000;0 +20260220 105600;209.096000;209.138000;209.096000;209.123000;0 +20260220 105700;209.123000;209.150000;209.076000;209.076000;0 +20260220 105800;209.078000;209.089000;209.040000;209.044000;0 +20260220 105900;209.041000;209.061000;209.032000;209.055000;0 +20260220 110000;209.066000;209.089000;209.047000;209.065000;0 +20260220 110100;209.068000;209.086000;209.040000;209.059000;0 +20260220 110200;209.058000;209.072000;209.020000;209.054000;0 +20260220 110300;209.057000;209.082000;209.039000;209.058000;0 +20260220 110400;209.057000;209.099000;209.039000;209.064000;0 +20260220 110500;209.060000;209.088000;209.047000;209.068000;0 +20260220 110600;209.068000;209.106000;209.062000;209.075000;0 +20260220 110700;209.076000;209.114000;209.058000;209.065000;0 +20260220 110800;209.065000;209.128000;209.051000;209.119000;0 +20260220 110900;209.121000;209.121000;209.086000;209.099000;0 +20260220 111000;209.099000;209.111000;209.066000;209.069000;0 +20260220 111100;209.069000;209.111000;209.062000;209.100000;0 +20260220 111200;209.099000;209.124000;209.071000;209.097000;0 +20260220 111300;209.093000;209.118000;209.048000;209.049000;0 +20260220 111400;209.049000;209.064000;209.030000;209.045000;0 +20260220 111500;209.048000;209.064000;208.986000;208.996000;0 +20260220 111600;208.997000;209.026000;208.968000;209.002000;0 +20260220 111700;209.005000;209.041000;208.993000;209.032000;0 +20260220 111800;209.035000;209.059000;209.024000;209.024000;0 +20260220 111900;209.026000;209.058000;209.021000;209.050000;0 +20260220 112000;209.055000;209.059000;209.029000;209.051000;0 +20260220 112100;209.049000;209.058000;209.003000;209.012000;0 +20260220 112200;209.009000;209.069000;209.001000;209.052000;0 +20260220 112300;209.051000;209.058000;209.019000;209.047000;0 +20260220 112400;209.053000;209.065000;209.030000;209.046000;0 +20260220 112500;209.047000;209.055000;208.980000;209.004000;0 +20260220 112600;209.006000;209.068000;209.006000;209.058000;0 +20260220 112700;209.058000;209.058000;209.012000;209.039000;0 +20260220 112800;209.042000;209.059000;209.029000;209.050000;0 +20260220 112900;209.047000;209.062000;209.025000;209.028000;0 +20260220 113000;209.027000;209.060000;208.999000;209.058000;0 +20260220 113100;209.059000;209.081000;209.045000;209.045000;0 +20260220 113200;209.047000;209.059000;209.026000;209.044000;0 +20260220 113300;209.043000;209.083000;209.043000;209.057000;0 +20260220 113400;209.057000;209.148000;209.050000;209.139000;0 +20260220 113500;209.143000;209.160000;209.132000;209.137000;0 +20260220 113600;209.136000;209.189000;209.133000;209.185000;0 +20260220 113700;209.189000;209.189000;209.146000;209.160000;0 +20260220 113800;209.160000;209.178000;209.134000;209.167000;0 +20260220 113900;209.168000;209.192000;209.161000;209.174000;0 +20260220 114000;209.172000;209.186000;209.131000;209.155000;0 +20260220 114100;209.155000;209.178000;209.145000;209.163000;0 +20260220 114200;209.164000;209.188000;209.150000;209.154000;0 +20260220 114300;209.157000;209.190000;209.129000;209.130000;0 +20260220 114400;209.130000;209.140000;209.122000;209.134000;0 +20260220 114500;209.133000;209.179000;209.131000;209.164000;0 +20260220 114600;209.164000;209.171000;209.134000;209.134000;0 +20260220 114700;209.133000;209.140000;209.110000;209.134000;0 +20260220 114800;209.133000;209.145000;209.125000;209.131000;0 +20260220 114900;209.133000;209.150000;209.129000;209.135000;0 +20260220 115000;209.135000;209.136000;209.096000;209.106000;0 +20260220 115100;209.106000;209.114000;209.078000;209.107000;0 +20260220 115200;209.107000;209.182000;209.096000;209.176000;0 +20260220 115300;209.176000;209.218000;209.174000;209.194000;0 +20260220 115400;209.195000;209.210000;209.150000;209.151000;0 +20260220 115500;209.157000;209.173000;209.121000;209.122000;0 +20260220 115600;209.120000;209.124000;209.080000;209.113000;0 +20260220 115700;209.115000;209.206000;209.113000;209.203000;0 +20260220 115800;209.203000;209.225000;209.201000;209.220000;0 +20260220 115900;209.216000;209.221000;209.192000;209.208000;0 +20260220 120000;209.213000;209.272000;209.196000;209.260000;0 +20260220 120100;209.261000;209.271000;209.246000;209.258000;0 +20260220 120200;209.255000;209.268000;209.194000;209.209000;0 +20260220 120300;209.211000;209.227000;209.151000;209.167000;0 +20260220 120400;209.168000;209.175000;209.120000;209.138000;0 +20260220 120500;209.140000;209.184000;209.140000;209.153000;0 +20260220 120600;209.156000;209.186000;209.156000;209.168000;0 +20260220 120700;209.164000;209.186000;209.124000;209.127000;0 +20260220 120800;209.132000;209.191000;209.120000;209.185000;0 +20260220 120900;209.186000;209.192000;209.164000;209.178000;0 +20260220 121000;209.176000;209.208000;209.159000;209.191000;0 +20260220 121100;209.190000;209.191000;209.106000;209.109000;0 +20260220 121200;209.106000;209.137000;209.106000;209.123000;0 +20260220 121300;209.119000;209.180000;209.108000;209.168000;0 +20260220 121400;209.171000;209.179000;209.081000;209.088000;0 +20260220 121500;209.085000;209.097000;209.059000;209.060000;0 +20260220 121600;209.067000;209.094000;209.060000;209.083000;0 +20260220 121700;209.084000;209.108000;209.063000;209.075000;0 +20260220 121800;209.071000;209.138000;209.071000;209.137000;0 +20260220 121900;209.137000;209.157000;209.118000;209.121000;0 +20260220 122000;209.121000;209.166000;209.114000;209.160000;0 +20260220 122100;209.159000;209.177000;209.123000;209.123000;0 +20260220 122200;209.118000;209.156000;209.105000;209.143000;0 +20260220 122300;209.146000;209.158000;209.136000;209.150000;0 +20260220 122400;209.150000;209.157000;209.104000;209.104000;0 +20260220 122500;209.103000;209.137000;209.101000;209.124000;0 +20260220 122600;209.124000;209.165000;209.120000;209.146000;0 +20260220 122700;209.143000;209.174000;209.130000;209.164000;0 +20260220 122800;209.164000;209.166000;209.137000;209.155000;0 +20260220 122900;209.154000;209.181000;209.145000;209.156000;0 +20260220 123000;209.156000;209.214000;209.143000;209.214000;0 +20260220 123100;209.218000;209.218000;209.186000;209.187000;0 +20260220 123200;209.187000;209.206000;209.182000;209.199000;0 +20260220 123300;209.193000;209.219000;209.185000;209.195000;0 +20260220 123400;209.198000;209.199000;209.183000;209.192000;0 +20260220 123500;209.191000;209.199000;209.182000;209.198000;0 +20260220 123600;209.193000;209.196000;209.154000;209.167000;0 +20260220 123700;209.168000;209.179000;209.158000;209.159000;0 +20260220 123800;209.158000;209.158000;209.132000;209.147000;0 +20260220 123900;209.147000;209.175000;209.147000;209.162000;0 +20260220 124000;209.158000;209.178000;209.139000;209.165000;0 +20260220 124100;209.166000;209.189000;209.154000;209.185000;0 +20260220 124200;209.181000;209.183000;209.165000;209.179000;0 +20260220 124300;209.174000;209.187000;209.140000;209.154000;0 +20260220 124400;209.154000;209.163000;209.131000;209.151000;0 +20260220 124500;209.149000;209.153000;209.120000;209.150000;0 +20260220 124600;209.150000;209.172000;209.146000;209.146000;0 +20260220 124700;209.146000;209.148000;209.118000;209.145000;0 +20260220 124800;209.144000;209.186000;209.143000;209.176000;0 +20260220 124900;209.178000;209.178000;209.127000;209.156000;0 +20260220 125000;209.156000;209.158000;209.138000;209.146000;0 +20260220 125100;209.147000;209.155000;209.119000;209.140000;0 +20260220 125200;209.141000;209.164000;209.122000;209.157000;0 +20260220 125300;209.157000;209.158000;209.104000;209.130000;0 +20260220 125400;209.125000;209.149000;209.114000;209.126000;0 +20260220 125500;209.125000;209.139000;209.090000;209.124000;0 +20260220 125600;209.123000;209.134000;209.096000;209.105000;0 +20260220 125700;209.106000;209.118000;209.063000;209.076000;0 +20260220 125800;209.075000;209.094000;209.054000;209.066000;0 +20260220 125900;209.060000;209.081000;209.058000;209.077000;0 +20260220 130000;209.073000;209.103000;209.073000;209.098000;0 +20260220 130100;209.098000;209.113000;209.088000;209.098000;0 +20260220 130200;209.098000;209.135000;209.098000;209.132000;0 +20260220 130300;209.131000;209.141000;209.117000;209.131000;0 +20260220 130400;209.131000;209.144000;209.122000;209.134000;0 +20260220 130500;209.134000;209.142000;209.114000;209.126000;0 +20260220 130600;209.125000;209.144000;209.124000;209.144000;0 +20260220 130700;209.143000;209.145000;209.089000;209.090000;0 +20260220 130800;209.091000;209.103000;209.065000;209.082000;0 +20260220 130900;209.082000;209.093000;209.056000;209.063000;0 +20260220 131000;209.064000;209.106000;209.048000;209.102000;0 +20260220 131100;209.104000;209.155000;209.097000;209.149000;0 +20260220 131200;209.147000;209.164000;209.123000;209.164000;0 +20260220 131300;209.159000;209.159000;209.128000;209.141000;0 +20260220 131400;209.144000;209.172000;209.140000;209.170000;0 +20260220 131500;209.169000;209.178000;209.149000;209.168000;0 +20260220 131600;209.170000;209.189000;209.162000;209.170000;0 +20260220 131700;209.170000;209.190000;209.142000;209.158000;0 +20260220 131800;209.159000;209.160000;209.140000;209.143000;0 +20260220 131900;209.144000;209.149000;209.117000;209.136000;0 +20260220 132000;209.138000;209.165000;209.126000;209.151000;0 +20260220 132100;209.151000;209.172000;209.131000;209.135000;0 +20260220 132200;209.133000;209.143000;209.125000;209.130000;0 +20260220 132300;209.133000;209.134000;209.099000;209.103000;0 +20260220 132400;209.104000;209.108000;209.046000;209.060000;0 +20260220 132500;209.055000;209.107000;209.051000;209.080000;0 +20260220 132600;209.079000;209.093000;209.030000;209.034000;0 +20260220 132700;209.034000;209.080000;209.025000;209.056000;0 +20260220 132800;209.054000;209.078000;209.040000;209.077000;0 +20260220 132900;209.072000;209.084000;209.055000;209.061000;0 +20260220 133000;209.061000;209.105000;209.014000;209.105000;0 +20260220 133100;209.103000;209.129000;209.084000;209.120000;0 +20260220 133200;209.118000;209.129000;209.055000;209.077000;0 +20260220 133300;209.072000;209.095000;209.058000;209.065000;0 +20260220 133400;209.066000;209.098000;209.042000;209.065000;0 +20260220 133500;209.063000;209.099000;208.963000;208.986000;0 +20260220 133600;208.984000;209.044000;208.983000;209.042000;0 +20260220 133700;209.040000;209.089000;209.038000;209.080000;0 +20260220 133800;209.079000;209.099000;209.054000;209.071000;0 +20260220 133900;209.071000;209.079000;208.996000;209.006000;0 +20260220 134000;209.008000;209.044000;208.992000;209.036000;0 +20260220 134100;209.042000;209.066000;209.030000;209.062000;0 +20260220 134200;209.063000;209.082000;209.049000;209.060000;0 +20260220 134300;209.061000;209.074000;209.038000;209.065000;0 +20260220 134400;209.066000;209.106000;209.050000;209.077000;0 +20260220 134500;209.075000;209.110000;209.069000;209.079000;0 +20260220 134600;209.078000;209.135000;209.077000;209.135000;0 +20260220 134700;209.132000;209.166000;209.122000;209.164000;0 +20260220 134800;209.166000;209.170000;209.121000;209.153000;0 +20260220 134900;209.155000;209.187000;209.150000;209.170000;0 +20260220 135000;209.170000;209.177000;209.121000;209.166000;0 +20260220 135100;209.165000;209.172000;209.134000;209.161000;0 +20260220 135200;209.156000;209.196000;209.156000;209.188000;0 +20260220 135300;209.189000;209.206000;209.176000;209.194000;0 +20260220 135400;209.201000;209.212000;209.180000;209.206000;0 +20260220 135500;209.210000;209.216000;209.177000;209.198000;0 +20260220 135600;209.196000;209.210000;209.172000;209.174000;0 +20260220 135700;209.169000;209.181000;209.156000;209.174000;0 +20260220 135800;209.175000;209.215000;209.170000;209.200000;0 +20260220 135900;209.202000;209.205000;209.185000;209.193000;0 +20260220 140000;209.192000;209.196000;209.150000;209.165000;0 +20260220 140100;209.166000;209.237000;209.166000;209.229000;0 +20260220 140200;209.231000;209.256000;209.231000;209.242000;0 +20260220 140300;209.242000;209.242000;209.200000;209.218000;0 +20260220 140400;209.218000;209.219000;209.182000;209.196000;0 +20260220 140500;209.196000;209.198000;209.174000;209.186000;0 +20260220 140600;209.189000;209.202000;209.180000;209.190000;0 +20260220 140700;209.189000;209.206000;209.180000;209.195000;0 +20260220 140800;209.196000;209.199000;209.169000;209.172000;0 +20260220 140900;209.170000;209.175000;209.146000;209.164000;0 +20260220 141000;209.163000;209.171000;209.140000;209.161000;0 +20260220 141100;209.161000;209.169000;209.120000;209.127000;0 +20260220 141200;209.128000;209.131000;209.099000;209.102000;0 +20260220 141300;209.102000;209.128000;209.096000;209.120000;0 +20260220 141400;209.119000;209.124000;209.090000;209.095000;0 +20260220 141500;209.092000;209.106000;209.084000;209.097000;0 +20260220 141600;209.096000;209.117000;209.081000;209.117000;0 +20260220 141700;209.119000;209.145000;209.119000;209.145000;0 +20260220 141800;209.145000;209.159000;209.128000;209.146000;0 +20260220 141900;209.146000;209.153000;209.127000;209.133000;0 +20260220 142000;209.134000;209.143000;209.127000;209.140000;0 +20260220 142100;209.144000;209.149000;209.122000;209.146000;0 +20260220 142200;209.147000;209.175000;209.146000;209.150000;0 +20260220 142300;209.147000;209.165000;209.146000;209.165000;0 +20260220 142400;209.164000;209.176000;209.148000;209.154000;0 +20260220 142500;209.152000;209.165000;209.146000;209.153000;0 +20260220 142600;209.152000;209.152000;209.131000;209.139000;0 +20260220 142700;209.144000;209.158000;209.132000;209.133000;0 +20260220 142800;209.134000;209.139000;209.115000;209.115000;0 +20260220 142900;209.115000;209.147000;209.111000;209.142000;0 +20260220 143000;209.143000;209.167000;209.132000;209.163000;0 +20260220 143100;209.164000;209.186000;209.163000;209.183000;0 +20260220 143200;209.180000;209.203000;209.164000;209.184000;0 +20260220 143300;209.186000;209.189000;209.178000;209.182000;0 +20260220 143400;209.181000;209.188000;209.178000;209.185000;0 +20260220 143500;209.189000;209.194000;209.173000;209.182000;0 +20260220 143600;209.181000;209.229000;209.181000;209.222000;0 +20260220 143700;209.224000;209.224000;209.204000;209.209000;0 +20260220 143800;209.212000;209.219000;209.201000;209.212000;0 +20260220 143900;209.211000;209.214000;209.190000;209.208000;0 +20260220 144000;209.209000;209.220000;209.209000;209.212000;0 +20260220 144100;209.209000;209.222000;209.206000;209.222000;0 +20260220 144200;209.225000;209.225000;209.216000;209.222000;0 +20260220 144300;209.218000;209.220000;209.190000;209.203000;0 +20260220 144400;209.204000;209.217000;209.201000;209.215000;0 +20260220 144500;209.213000;209.225000;209.211000;209.221000;0 +20260220 144600;209.222000;209.250000;209.220000;209.248000;0 +20260220 144700;209.251000;209.261000;209.239000;209.249000;0 +20260220 144800;209.253000;209.265000;209.246000;209.247000;0 +20260220 144900;209.245000;209.248000;209.232000;209.240000;0 +20260220 145000;209.237000;209.243000;209.217000;209.233000;0 +20260220 145100;209.233000;209.246000;209.214000;209.233000;0 +20260220 145200;209.233000;209.234000;209.212000;209.224000;0 +20260220 145300;209.225000;209.233000;209.206000;209.206000;0 +20260220 145400;209.207000;209.227000;209.202000;209.209000;0 +20260220 145500;209.207000;209.231000;209.202000;209.231000;0 +20260220 145600;209.232000;209.238000;209.218000;209.219000;0 +20260220 145700;209.219000;209.226000;209.201000;209.220000;0 +20260220 145800;209.221000;209.245000;209.213000;209.215000;0 +20260220 145900;209.217000;209.222000;209.179000;209.192000;0 +20260220 150000;209.195000;209.211000;209.184000;209.208000;0 +20260220 150100;209.211000;209.215000;209.191000;209.195000;0 +20260220 150200;209.197000;209.199000;209.165000;209.169000;0 +20260220 150300;209.170000;209.183000;209.167000;209.169000;0 +20260220 150400;209.170000;209.171000;209.152000;209.165000;0 +20260220 150500;209.166000;209.198000;209.162000;209.192000;0 +20260220 150600;209.193000;209.202000;209.180000;209.193000;0 +20260220 150700;209.192000;209.195000;209.175000;209.185000;0 +20260220 150800;209.186000;209.186000;209.181000;209.185000;0 +20260220 150900;209.182000;209.182000;209.149000;209.150000;0 +20260220 151000;209.150000;209.179000;209.149000;209.171000;0 +20260220 151100;209.170000;209.173000;209.137000;209.137000;0 +20260220 151200;209.140000;209.144000;209.123000;209.144000;0 +20260220 151300;209.146000;209.151000;209.132000;209.133000;0 +20260220 151400;209.132000;209.134000;209.112000;209.119000;0 +20260220 151500;209.124000;209.129000;209.093000;209.098000;0 +20260220 151600;209.095000;209.102000;209.088000;209.094000;0 +20260220 151700;209.094000;209.099000;209.083000;209.085000;0 +20260220 151800;209.082000;209.085000;209.070000;209.083000;0 +20260220 151900;209.083000;209.084000;209.060000;209.062000;0 +20260220 152000;209.064000;209.080000;209.063000;209.071000;0 +20260220 152100;209.068000;209.074000;209.047000;209.049000;0 +20260220 152200;209.046000;209.075000;209.046000;209.070000;0 +20260220 152300;209.071000;209.079000;209.063000;209.075000;0 +20260220 152400;209.077000;209.094000;209.072000;209.090000;0 +20260220 152500;209.090000;209.094000;209.077000;209.088000;0 +20260220 152600;209.090000;209.097000;209.083000;209.090000;0 +20260220 152700;209.091000;209.092000;209.082000;209.082000;0 +20260220 152800;209.082000;209.084000;209.067000;209.074000;0 +20260220 152900;209.074000;209.080000;209.066000;209.068000;0 +20260220 153000;209.067000;209.091000;209.067000;209.080000;0 +20260220 153100;209.081000;209.097000;209.073000;209.080000;0 +20260220 153200;209.077000;209.090000;209.073000;209.085000;0 +20260220 153300;209.081000;209.094000;209.072000;209.090000;0 +20260220 153400;209.092000;209.096000;209.082000;209.089000;0 +20260220 153500;209.089000;209.098000;209.086000;209.097000;0 +20260220 153600;209.096000;209.098000;209.095000;209.095000;0 +20260220 153700;209.095000;209.099000;209.077000;209.077000;0 +20260220 153800;209.077000;209.078000;209.054000;209.074000;0 +20260220 153900;209.075000;209.089000;209.072000;209.074000;0 +20260220 154000;209.079000;209.094000;209.071000;209.071000;0 +20260220 154100;209.066000;209.073000;209.064000;209.073000;0 +20260220 154200;209.071000;209.074000;209.067000;209.067000;0 +20260220 154300;209.067000;209.071000;209.061000;209.070000;0 +20260220 154400;209.067000;209.079000;209.063000;209.073000;0 +20260220 154500;209.072000;209.097000;209.065000;209.095000;0 +20260220 154600;209.094000;209.100000;209.087000;209.093000;0 +20260220 154700;209.094000;209.102000;209.090000;209.100000;0 +20260220 154800;209.098000;209.100000;209.088000;209.098000;0 +20260220 154900;209.096000;209.097000;209.071000;209.071000;0 +20260220 155000;209.074000;209.080000;209.056000;209.065000;0 +20260220 155100;209.064000;209.071000;209.064000;209.067000;0 +20260220 155200;209.064000;209.065000;209.050000;209.059000;0 +20260220 155300;209.059000;209.063000;209.049000;209.058000;0 +20260220 155400;209.055000;209.077000;209.055000;209.072000;0 +20260220 155500;209.070000;209.090000;209.053000;209.081000;0 +20260220 155600;209.086000;209.090000;209.079000;209.083000;0 +20260220 155700;209.082000;209.083000;209.072000;209.082000;0 +20260220 155800;209.083000;209.090000;209.077000;209.089000;0 +20260220 155900;209.088000;209.175000;209.085000;209.171000;0 +20260220 160000;209.166000;209.166000;209.145000;209.153000;0 +20260220 160100;209.153000;209.155000;209.120000;209.120000;0 +20260220 160200;209.118000;209.130000;209.113000;209.129000;0 +20260220 160300;209.129000;209.140000;209.116000;209.139000;0 +20260220 160400;209.142000;209.164000;209.139000;209.161000;0 +20260220 160500;209.157000;209.170000;209.141000;209.156000;0 +20260220 160600;209.159000;209.163000;209.147000;209.147000;0 +20260220 160700;209.144000;209.161000;209.132000;209.156000;0 +20260220 160800;209.155000;209.179000;209.139000;209.162000;0 +20260220 160900;209.163000;209.164000;209.146000;209.151000;0 +20260220 161000;209.154000;209.162000;209.152000;209.156000;0 +20260220 161100;209.156000;209.159000;209.138000;209.156000;0 +20260220 161200;209.151000;209.153000;209.138000;209.150000;0 +20260220 161300;209.149000;209.158000;209.143000;209.151000;0 +20260220 161400;209.151000;209.156000;209.146000;209.154000;0 +20260220 161500;209.152000;209.153000;209.138000;209.140000;0 +20260220 161600;209.140000;209.149000;209.138000;209.139000;0 +20260220 161700;209.150000;209.151000;209.125000;209.125000;0 +20260220 161800;209.123000;209.127000;209.121000;209.121000;0 +20260220 161900;209.123000;209.128000;209.121000;209.128000;0 +20260220 162000;209.126000;209.126000;209.086000;209.106000;0 +20260220 162100;209.104000;209.128000;209.104000;209.122000;0 +20260220 162200;209.120000;209.125000;209.101000;209.101000;0 +20260220 162300;209.098000;209.098000;209.083000;209.097000;0 +20260220 162400;209.096000;209.097000;209.082000;209.082000;0 +20260220 162500;209.079000;209.091000;209.067000;209.091000;0 +20260220 162600;209.092000;209.106000;209.087000;209.106000;0 +20260220 162700;209.106000;209.106000;209.081000;209.084000;0 +20260220 162800;209.084000;209.087000;209.073000;209.073000;0 +20260220 162900;209.074000;209.093000;209.072000;209.083000;0 +20260220 163000;209.080000;209.095000;209.073000;209.074000;0 +20260220 163100;209.074000;209.083000;209.068000;209.082000;0 +20260220 163200;209.082000;209.084000;209.082000;209.082000;0 +20260220 163300;209.081000;209.112000;209.081000;209.111000;0 +20260220 163400;209.113000;209.118000;209.111000;209.115000;0 +20260220 163500;209.113000;209.113000;209.098000;209.101000;0 +20260220 163600;209.098000;209.120000;209.094000;209.118000;0 +20260220 163700;209.123000;209.130000;209.106000;209.115000;0 +20260220 163800;209.114000;209.128000;209.110000;209.117000;0 +20260220 163900;209.118000;209.124000;209.110000;209.110000;0 +20260220 164000;209.108000;209.108000;209.107000;209.108000;0 +20260220 164100;209.107000;209.111000;209.100000;209.107000;0 +20260220 164200;209.107000;209.115000;209.104000;209.115000;0 +20260220 164300;209.117000;209.117000;209.108000;209.116000;0 +20260220 164400;209.114000;209.127000;209.104000;209.122000;0 +20260220 164500;209.116000;209.127000;209.094000;209.119000;0 +20260220 164600;209.121000;209.134000;209.107000;209.110000;0 +20260220 164700;209.111000;209.126000;209.108000;209.121000;0 +20260220 164800;209.125000;209.125000;209.113000;209.117000;0 +20260220 164900;209.116000;209.145000;209.114000;209.137000;0 +20260220 165000;209.139000;209.147000;209.102000;209.119000;0 +20260220 165100;209.120000;209.127000;209.114000;209.126000;0 +20260220 165200;209.127000;209.127000;209.096000;209.104000;0 +20260220 165300;209.102000;209.106000;209.067000;209.070000;0 +20260220 165400;209.067000;209.085000;209.050000;209.051000;0 +20260220 165500;209.047000;209.067000;209.032000;209.043000;0 +20260220 165600;209.040000;209.055000;209.009000;209.018000;0 +20260220 165700;209.016000;209.023000;208.955000;208.957000;0 +20260220 165800;208.956000;208.998000;208.936000;208.985000;0 +20260220 165900;208.952000;208.991000;208.952000;208.990000;0 +20260222 170600;208.842000;208.842000;208.806000;208.806000;0 +20260222 170700;208.807000;208.882000;208.775000;208.775000;0 +20260222 170800;208.780000;208.804000;208.763000;208.766000;0 +20260222 170900;208.765000;208.810000;208.725000;208.810000;0 +20260222 171000;208.795000;208.818000;208.795000;208.818000;0 +20260222 171100;208.834000;208.849000;208.834000;208.835000;0 +20260222 171200;208.816000;208.826000;208.771000;208.813000;0 +20260222 171300;208.823000;208.846000;208.814000;208.814000;0 +20260222 171400;208.778000;208.778000;208.778000;208.778000;0 +20260222 171500;208.787000;208.875000;208.778000;208.850000;0 +20260222 171600;208.863000;208.863000;208.828000;208.828000;0 +20260222 171700;208.768000;208.841000;208.768000;208.841000;0 +20260222 171800;208.841000;208.997000;208.841000;208.958000;0 +20260222 171900;208.955000;208.955000;208.933000;208.941000;0 +20260222 172000;208.940000;208.979000;208.940000;208.963000;0 +20260222 172100;208.973000;208.974000;208.948000;208.948000;0 +20260222 172200;208.963000;208.963000;208.939000;208.963000;0 +20260222 172300;208.963000;208.965000;208.963000;208.965000;0 +20260222 172400;208.965000;208.967000;208.963000;208.966000;0 +20260222 172500;208.966000;208.979000;208.966000;208.978000;0 +20260222 172600;208.978000;208.979000;208.978000;208.979000;0 +20260222 172700;208.978000;208.978000;208.973000;208.978000;0 +20260222 172800;208.978000;208.982000;208.978000;208.981000;0 +20260222 172900;208.981000;208.985000;208.981000;208.982000;0 +20260222 173000;208.982000;208.983000;208.976000;208.979000;0 +20260222 173100;208.978000;209.003000;208.978000;208.998000;0 +20260222 173200;208.994000;209.028000;208.984000;209.008000;0 +20260222 173300;209.009000;209.009000;208.981000;208.988000;0 +20260222 173400;209.006000;209.016000;208.985000;209.005000;0 +20260222 173500;208.995000;209.046000;208.982000;209.018000;0 +20260222 173600;209.017000;209.051000;209.000000;209.032000;0 +20260222 173700;209.039000;209.049000;209.003000;209.003000;0 +20260222 173800;208.995000;209.051000;208.988000;209.006000;0 +20260222 173900;209.021000;209.022000;208.990000;209.000000;0 +20260222 174000;209.000000;209.001000;208.988000;208.990000;0 +20260222 174100;208.990000;209.009000;208.987000;208.987000;0 +20260222 174200;208.987000;209.014000;208.985000;209.014000;0 +20260222 174300;208.992000;209.024000;208.980000;208.981000;0 +20260222 174400;208.982000;208.982000;208.980000;208.982000;0 +20260222 174500;208.982000;208.982000;208.979000;208.980000;0 +20260222 174600;208.980000;209.003000;208.971000;209.002000;0 +20260222 174700;209.002000;209.011000;208.974000;209.011000;0 +20260222 174800;209.011000;209.016000;209.005000;209.011000;0 +20260222 174900;209.011000;209.032000;208.997000;209.016000;0 +20260222 175000;209.017000;209.054000;208.999000;209.021000;0 +20260222 175100;209.020000;209.046000;208.984000;209.020000;0 +20260222 175200;209.021000;209.028000;208.997000;209.021000;0 +20260222 175300;209.021000;209.038000;209.004000;209.005000;0 +20260222 175400;209.005000;209.016000;208.993000;209.009000;0 +20260222 175500;209.008000;209.008000;208.986000;209.000000;0 +20260222 175600;208.999000;209.012000;208.978000;209.006000;0 +20260222 175700;209.006000;209.012000;208.980000;208.988000;0 +20260222 175800;208.988000;208.996000;208.979000;208.995000;0 +20260222 175900;208.994000;209.001000;208.990000;208.995000;0 +20260222 180000;208.991000;208.991000;208.802000;208.979000;0 +20260222 180100;208.974000;209.063000;208.926000;208.936000;0 +20260222 180200;208.933000;208.936000;208.855000;208.871000;0 +20260222 180300;208.871000;208.917000;208.853000;208.903000;0 +20260222 180400;208.892000;208.919000;208.877000;208.915000;0 +20260222 180500;208.916000;208.987000;208.890000;208.976000;0 +20260222 180600;208.975000;209.026000;208.956000;209.012000;0 +20260222 180700;209.008000;209.020000;208.934000;208.942000;0 +20260222 180800;208.939000;208.991000;208.939000;208.990000;0 +20260222 180900;208.983000;208.991000;208.961000;208.983000;0 +20260222 181000;208.983000;209.081000;208.983000;209.066000;0 +20260222 181100;209.066000;209.069000;209.032000;209.065000;0 +20260222 181200;209.054000;209.068000;209.030000;209.037000;0 +20260222 181300;209.037000;209.054000;208.965000;208.969000;0 +20260222 181400;208.968000;209.006000;208.953000;208.998000;0 +20260222 181500;208.997000;208.997000;208.902000;208.935000;0 +20260222 181600;208.934000;208.986000;208.930000;208.961000;0 +20260222 181700;208.962000;208.967000;208.912000;208.939000;0 +20260222 181800;208.937000;208.958000;208.905000;208.913000;0 +20260222 181900;208.911000;208.916000;208.898000;208.909000;0 +20260222 182000;208.907000;208.942000;208.875000;208.895000;0 +20260222 182100;208.896000;208.908000;208.849000;208.886000;0 +20260222 182200;208.886000;208.910000;208.856000;208.872000;0 +20260222 182300;208.871000;208.878000;208.852000;208.872000;0 +20260222 182400;208.872000;208.878000;208.856000;208.870000;0 +20260222 182500;208.871000;208.886000;208.839000;208.854000;0 +20260222 182600;208.853000;208.863000;208.821000;208.841000;0 +20260222 182700;208.838000;208.841000;208.807000;208.829000;0 +20260222 182800;208.829000;208.841000;208.817000;208.819000;0 +20260222 182900;208.830000;208.884000;208.826000;208.880000;0 +20260222 183000;208.876000;208.907000;208.874000;208.886000;0 +20260222 183100;208.886000;208.915000;208.886000;208.910000;0 +20260222 183200;208.910000;208.928000;208.904000;208.928000;0 +20260222 183300;208.929000;208.951000;208.873000;208.873000;0 +20260222 183400;208.872000;208.914000;208.869000;208.910000;0 +20260222 183500;208.910000;208.910000;208.858000;208.860000;0 +20260222 183600;208.865000;208.869000;208.823000;208.847000;0 +20260222 183700;208.846000;208.871000;208.833000;208.834000;0 +20260222 183800;208.832000;208.838000;208.801000;208.814000;0 +20260222 183900;208.814000;208.894000;208.799000;208.894000;0 +20260222 184000;208.893000;208.908000;208.878000;208.898000;0 +20260222 184100;208.897000;208.908000;208.871000;208.871000;0 +20260222 184200;208.872000;208.872000;208.833000;208.843000;0 +20260222 184300;208.847000;208.848000;208.839000;208.841000;0 +20260222 184400;208.840000;208.892000;208.831000;208.871000;0 +20260222 184500;208.872000;208.873000;208.826000;208.833000;0 +20260222 184600;208.835000;208.865000;208.834000;208.865000;0 +20260222 184700;208.864000;208.879000;208.850000;208.850000;0 +20260222 184800;208.847000;208.847000;208.799000;208.829000;0 +20260222 184900;208.829000;208.832000;208.811000;208.818000;0 +20260222 185000;208.819000;208.819000;208.753000;208.780000;0 +20260222 185100;208.791000;208.808000;208.778000;208.798000;0 +20260222 185200;208.796000;208.809000;208.786000;208.795000;0 +20260222 185300;208.792000;208.818000;208.751000;208.756000;0 +20260222 185400;208.757000;208.819000;208.754000;208.818000;0 +20260222 185500;208.818000;208.850000;208.818000;208.849000;0 +20260222 185600;208.855000;208.858000;208.846000;208.858000;0 +20260222 185700;208.852000;208.863000;208.829000;208.830000;0 +20260222 185800;208.830000;208.892000;208.825000;208.840000;0 +20260222 185900;208.838000;208.865000;208.834000;208.853000;0 +20260222 190000;208.860000;208.867000;208.784000;208.784000;0 +20260222 190100;208.781000;208.813000;208.771000;208.780000;0 +20260222 190200;208.777000;208.805000;208.751000;208.770000;0 +20260222 190300;208.772000;208.772000;208.718000;208.745000;0 +20260222 190400;208.743000;208.748000;208.702000;208.702000;0 +20260222 190500;208.701000;208.744000;208.697000;208.720000;0 +20260222 190600;208.720000;208.729000;208.678000;208.691000;0 +20260222 190700;208.695000;208.715000;208.681000;208.710000;0 +20260222 190800;208.706000;208.758000;208.690000;208.749000;0 +20260222 190900;208.748000;208.760000;208.725000;208.758000;0 +20260222 191000;208.759000;208.765000;208.732000;208.758000;0 +20260222 191100;208.757000;208.807000;208.746000;208.800000;0 +20260222 191200;208.801000;208.811000;208.777000;208.799000;0 +20260222 191300;208.798000;208.827000;208.789000;208.818000;0 +20260222 191400;208.817000;208.832000;208.797000;208.807000;0 +20260222 191500;208.808000;208.818000;208.794000;208.802000;0 +20260222 191600;208.805000;208.848000;208.799000;208.844000;0 +20260222 191700;208.846000;208.858000;208.832000;208.839000;0 +20260222 191800;208.839000;208.866000;208.829000;208.866000;0 +20260222 191900;208.866000;208.867000;208.841000;208.842000;0 +20260222 192000;208.841000;208.850000;208.792000;208.792000;0 +20260222 192100;208.791000;208.799000;208.754000;208.754000;0 +20260222 192200;208.752000;208.754000;208.729000;208.748000;0 +20260222 192300;208.752000;208.771000;208.735000;208.736000;0 +20260222 192400;208.739000;208.744000;208.706000;208.725000;0 +20260222 192500;208.726000;208.728000;208.677000;208.677000;0 +20260222 192600;208.673000;208.682000;208.633000;208.640000;0 +20260222 192700;208.645000;208.664000;208.630000;208.648000;0 +20260222 192800;208.648000;208.678000;208.638000;208.677000;0 +20260222 192900;208.678000;208.680000;208.640000;208.655000;0 +20260222 193000;208.656000;208.672000;208.607000;208.607000;0 +20260222 193100;208.611000;208.630000;208.597000;208.617000;0 +20260222 193200;208.617000;208.618000;208.593000;208.609000;0 +20260222 193300;208.609000;208.630000;208.594000;208.605000;0 +20260222 193400;208.605000;208.621000;208.589000;208.596000;0 +20260222 193500;208.595000;208.620000;208.583000;208.607000;0 +20260222 193600;208.603000;208.608000;208.556000;208.560000;0 +20260222 193700;208.560000;208.560000;208.523000;208.537000;0 +20260222 193800;208.548000;208.549000;208.516000;208.522000;0 +20260222 193900;208.520000;208.533000;208.497000;208.503000;0 +20260222 194000;208.501000;208.519000;208.490000;208.501000;0 +20260222 194100;208.499000;208.517000;208.494000;208.497000;0 +20260222 194200;208.498000;208.508000;208.471000;208.477000;0 +20260222 194300;208.473000;208.479000;208.424000;208.438000;0 +20260222 194400;208.437000;208.465000;208.437000;208.445000;0 +20260222 194500;208.447000;208.450000;208.419000;208.422000;0 +20260222 194600;208.426000;208.448000;208.409000;208.409000;0 +20260222 194700;208.407000;208.477000;208.404000;208.464000;0 +20260222 194800;208.463000;208.469000;208.435000;208.445000;0 +20260222 194900;208.445000;208.457000;208.441000;208.445000;0 +20260222 195000;208.444000;208.446000;208.389000;208.424000;0 +20260222 195100;208.428000;208.469000;208.423000;208.437000;0 +20260222 195200;208.437000;208.458000;208.421000;208.432000;0 +20260222 195300;208.432000;208.466000;208.425000;208.439000;0 +20260222 195400;208.438000;208.460000;208.424000;208.460000;0 +20260222 195500;208.461000;208.477000;208.446000;208.450000;0 +20260222 195600;208.452000;208.462000;208.417000;208.419000;0 +20260222 195700;208.422000;208.447000;208.397000;208.410000;0 +20260222 195800;208.410000;208.424000;208.386000;208.402000;0 +20260222 195900;208.402000;208.414000;208.395000;208.397000;0 +20260222 200000;208.394000;208.394000;208.324000;208.345000;0 +20260222 200100;208.350000;208.358000;208.323000;208.323000;0 +20260222 200200;208.328000;208.329000;208.276000;208.310000;0 +20260222 200300;208.313000;208.329000;208.288000;208.318000;0 +20260222 200400;208.317000;208.321000;208.290000;208.305000;0 +20260222 200500;208.306000;208.367000;208.306000;208.357000;0 +20260222 200600;208.355000;208.360000;208.309000;208.318000;0 +20260222 200700;208.316000;208.341000;208.300000;208.333000;0 +20260222 200800;208.327000;208.335000;208.306000;208.323000;0 +20260222 200900;208.317000;208.333000;208.307000;208.317000;0 +20260222 201000;208.320000;208.321000;208.268000;208.278000;0 +20260222 201100;208.275000;208.287000;208.236000;208.246000;0 +20260222 201200;208.245000;208.262000;208.244000;208.255000;0 +20260222 201300;208.255000;208.279000;208.232000;208.268000;0 +20260222 201400;208.270000;208.272000;208.214000;208.245000;0 +20260222 201500;208.244000;208.270000;208.224000;208.266000;0 +20260222 201600;208.269000;208.303000;208.257000;208.303000;0 +20260222 201700;208.299000;208.303000;208.270000;208.301000;0 +20260222 201800;208.301000;208.327000;208.277000;208.319000;0 +20260222 201900;208.318000;208.338000;208.300000;208.338000;0 +20260222 202000;208.341000;208.380000;208.338000;208.343000;0 +20260222 202100;208.349000;208.377000;208.338000;208.374000;0 +20260222 202200;208.379000;208.388000;208.361000;208.375000;0 +20260222 202300;208.372000;208.372000;208.327000;208.352000;0 +20260222 202400;208.354000;208.409000;208.340000;208.404000;0 +20260222 202500;208.398000;208.404000;208.374000;208.391000;0 +20260222 202600;208.387000;208.391000;208.338000;208.341000;0 +20260222 202700;208.335000;208.357000;208.333000;208.353000;0 +20260222 202800;208.356000;208.380000;208.352000;208.379000;0 +20260222 202900;208.380000;208.408000;208.379000;208.404000;0 +20260222 203000;208.402000;208.448000;208.397000;208.445000;0 +20260222 203100;208.445000;208.503000;208.431000;208.502000;0 +20260222 203200;208.503000;208.513000;208.489000;208.511000;0 +20260222 203300;208.509000;208.512000;208.473000;208.495000;0 +20260222 203400;208.494000;208.524000;208.494000;208.514000;0 +20260222 203500;208.522000;208.524000;208.489000;208.503000;0 +20260222 203600;208.501000;208.509000;208.424000;208.424000;0 +20260222 203700;208.420000;208.474000;208.418000;208.474000;0 +20260222 203800;208.473000;208.498000;208.469000;208.488000;0 +20260222 203900;208.487000;208.505000;208.464000;208.499000;0 +20260222 204000;208.499000;208.515000;208.494000;208.496000;0 +20260222 204100;208.497000;208.497000;208.455000;208.473000;0 +20260222 204200;208.475000;208.483000;208.464000;208.477000;0 +20260222 204300;208.475000;208.496000;208.469000;208.484000;0 +20260222 204400;208.485000;208.504000;208.473000;208.492000;0 +20260222 204500;208.493000;208.504000;208.481000;208.484000;0 +20260222 204600;208.481000;208.481000;208.426000;208.431000;0 +20260222 204700;208.432000;208.443000;208.400000;208.403000;0 +20260222 204800;208.404000;208.439000;208.403000;208.438000;0 +20260222 204900;208.439000;208.468000;208.428000;208.464000;0 +20260222 205000;208.464000;208.471000;208.454000;208.468000;0 +20260222 205100;208.467000;208.470000;208.444000;208.459000;0 +20260222 205200;208.458000;208.465000;208.390000;208.425000;0 +20260222 205300;208.427000;208.451000;208.422000;208.439000;0 +20260222 205400;208.441000;208.479000;208.432000;208.479000;0 +20260222 205500;208.482000;208.489000;208.468000;208.476000;0 +20260222 205600;208.473000;208.524000;208.454000;208.517000;0 +20260222 205700;208.514000;208.524000;208.482000;208.490000;0 +20260222 205800;208.489000;208.498000;208.463000;208.486000;0 +20260222 205900;208.487000;208.487000;208.477000;208.484000;0 +20260222 210000;208.481000;208.488000;208.430000;208.452000;0 +20260222 210100;208.453000;208.457000;208.420000;208.434000;0 +20260222 210200;208.434000;208.476000;208.431000;208.464000;0 +20260222 210300;208.463000;208.468000;208.435000;208.464000;0 +20260222 210400;208.459000;208.470000;208.411000;208.421000;0 +20260222 210500;208.414000;208.427000;208.403000;208.425000;0 +20260222 210600;208.425000;208.451000;208.413000;208.426000;0 +20260222 210700;208.431000;208.441000;208.418000;208.422000;0 +20260222 210800;208.432000;208.467000;208.432000;208.462000;0 +20260222 210900;208.460000;208.488000;208.460000;208.482000;0 +20260222 211000;208.483000;208.488000;208.434000;208.437000;0 +20260222 211100;208.438000;208.444000;208.376000;208.381000;0 +20260222 211200;208.385000;208.438000;208.385000;208.401000;0 +20260222 211300;208.403000;208.403000;208.374000;208.374000;0 +20260222 211400;208.376000;208.405000;208.357000;208.405000;0 +20260222 211500;208.410000;208.431000;208.397000;208.427000;0 +20260222 211600;208.433000;208.466000;208.429000;208.430000;0 +20260222 211700;208.431000;208.462000;208.431000;208.455000;0 +20260222 211800;208.449000;208.460000;208.436000;208.457000;0 +20260222 211900;208.455000;208.467000;208.452000;208.460000;0 +20260222 212000;208.456000;208.500000;208.454000;208.499000;0 +20260222 212100;208.495000;208.507000;208.484000;208.504000;0 +20260222 212200;208.503000;208.507000;208.465000;208.470000;0 +20260222 212300;208.471000;208.479000;208.455000;208.462000;0 +20260222 212400;208.460000;208.485000;208.460000;208.472000;0 +20260222 212500;208.473000;208.473000;208.445000;208.450000;0 +20260222 212600;208.449000;208.476000;208.449000;208.464000;0 +20260222 212700;208.463000;208.492000;208.461000;208.466000;0 +20260222 212800;208.471000;208.475000;208.456000;208.466000;0 +20260222 212900;208.465000;208.480000;208.465000;208.470000;0 +20260222 213000;208.468000;208.477000;208.442000;208.476000;0 +20260222 213100;208.481000;208.486000;208.474000;208.483000;0 +20260222 213200;208.482000;208.532000;208.482000;208.524000;0 +20260222 213300;208.526000;208.545000;208.512000;208.540000;0 +20260222 213400;208.539000;208.540000;208.516000;208.525000;0 +20260222 213500;208.526000;208.535000;208.509000;208.520000;0 +20260222 213600;208.518000;208.606000;208.506000;208.574000;0 +20260222 213700;208.576000;208.581000;208.556000;208.558000;0 +20260222 213800;208.559000;208.594000;208.558000;208.593000;0 +20260222 213900;208.599000;208.602000;208.587000;208.599000;0 +20260222 214000;208.602000;208.629000;208.594000;208.609000;0 +20260222 214100;208.607000;208.618000;208.600000;208.618000;0 +20260222 214200;208.615000;208.637000;208.609000;208.630000;0 +20260222 214300;208.632000;208.663000;208.628000;208.660000;0 +20260222 214400;208.662000;208.662000;208.637000;208.641000;0 +20260222 214500;208.639000;208.639000;208.620000;208.634000;0 +20260222 214600;208.638000;208.640000;208.619000;208.630000;0 +20260222 214700;208.629000;208.640000;208.618000;208.638000;0 +20260222 214800;208.638000;208.641000;208.624000;208.630000;0 +20260222 214900;208.627000;208.639000;208.611000;208.611000;0 +20260222 215000;208.612000;208.612000;208.594000;208.599000;0 +20260222 215100;208.603000;208.603000;208.550000;208.552000;0 +20260222 215200;208.552000;208.576000;208.550000;208.562000;0 +20260222 215300;208.561000;208.578000;208.558000;208.569000;0 +20260222 215400;208.571000;208.571000;208.561000;208.561000;0 +20260222 215500;208.563000;208.568000;208.550000;208.556000;0 +20260222 215600;208.550000;208.571000;208.547000;208.571000;0 +20260222 215700;208.572000;208.573000;208.561000;208.571000;0 +20260222 215800;208.568000;208.576000;208.558000;208.571000;0 +20260222 215900;208.572000;208.574000;208.542000;208.546000;0 +20260222 220000;208.555000;208.582000;208.552000;208.564000;0 +20260222 220100;208.566000;208.596000;208.562000;208.596000;0 +20260222 220200;208.590000;208.604000;208.586000;208.590000;0 +20260222 220300;208.597000;208.632000;208.568000;208.606000;0 +20260222 220400;208.605000;208.618000;208.590000;208.591000;0 +20260222 220500;208.591000;208.615000;208.591000;208.603000;0 +20260222 220600;208.604000;208.625000;208.603000;208.612000;0 +20260222 220700;208.609000;208.614000;208.584000;208.594000;0 +20260222 220800;208.595000;208.623000;208.595000;208.618000;0 +20260222 220900;208.622000;208.630000;208.605000;208.609000;0 +20260222 221000;208.608000;208.630000;208.591000;208.630000;0 +20260222 221100;208.626000;208.639000;208.612000;208.630000;0 +20260222 221200;208.632000;208.668000;208.626000;208.662000;0 +20260222 221300;208.663000;208.663000;208.614000;208.616000;0 +20260222 221400;208.616000;208.631000;208.610000;208.631000;0 +20260222 221500;208.632000;208.632000;208.575000;208.576000;0 +20260222 221600;208.577000;208.585000;208.568000;208.568000;0 +20260222 221700;208.569000;208.574000;208.531000;208.535000;0 +20260222 221800;208.533000;208.552000;208.527000;208.544000;0 +20260222 221900;208.544000;208.587000;208.544000;208.574000;0 +20260222 222000;208.575000;208.586000;208.571000;208.576000;0 +20260222 222100;208.577000;208.642000;208.574000;208.636000;0 +20260222 222200;208.629000;208.629000;208.606000;208.610000;0 +20260222 222300;208.608000;208.615000;208.592000;208.614000;0 +20260222 222400;208.614000;208.620000;208.597000;208.604000;0 +20260222 222500;208.606000;208.623000;208.604000;208.623000;0 +20260222 222600;208.621000;208.624000;208.600000;208.601000;0 +20260222 222700;208.600000;208.625000;208.591000;208.619000;0 +20260222 222800;208.616000;208.651000;208.615000;208.642000;0 +20260222 222900;208.642000;208.659000;208.631000;208.657000;0 +20260222 223000;208.656000;208.656000;208.623000;208.625000;0 +20260222 223100;208.622000;208.644000;208.622000;208.623000;0 +20260222 223200;208.622000;208.622000;208.597000;208.599000;0 +20260222 223300;208.599000;208.599000;208.574000;208.588000;0 +20260222 223400;208.581000;208.597000;208.575000;208.575000;0 +20260222 223500;208.570000;208.570000;208.540000;208.556000;0 +20260222 223600;208.554000;208.589000;208.551000;208.576000;0 +20260222 223700;208.576000;208.588000;208.570000;208.581000;0 +20260222 223800;208.580000;208.581000;208.573000;208.580000;0 +20260222 223900;208.579000;208.593000;208.574000;208.575000;0 +20260222 224000;208.575000;208.581000;208.565000;208.573000;0 +20260222 224100;208.573000;208.592000;208.569000;208.592000;0 +20260222 224200;208.594000;208.601000;208.589000;208.593000;0 +20260222 224300;208.594000;208.613000;208.586000;208.598000;0 +20260222 224400;208.598000;208.604000;208.587000;208.596000;0 +20260222 224500;208.597000;208.604000;208.593000;208.593000;0 +20260222 224600;208.586000;208.593000;208.558000;208.564000;0 +20260222 224700;208.563000;208.574000;208.556000;208.560000;0 +20260222 224800;208.555000;208.561000;208.552000;208.559000;0 +20260222 224900;208.566000;208.570000;208.560000;208.560000;0 +20260222 225000;208.556000;208.564000;208.549000;208.551000;0 +20260222 225100;208.546000;208.551000;208.528000;208.534000;0 +20260222 225200;208.534000;208.535000;208.516000;208.516000;0 +20260222 225300;208.514000;208.517000;208.502000;208.513000;0 +20260222 225400;208.510000;208.536000;208.500000;208.533000;0 +20260222 225500;208.532000;208.536000;208.523000;208.531000;0 +20260222 225600;208.533000;208.535000;208.527000;208.532000;0 +20260222 225700;208.534000;208.534000;208.518000;208.519000;0 +20260222 225800;208.519000;208.527000;208.510000;208.514000;0 +20260222 225900;208.516000;208.518000;208.502000;208.513000;0 +20260222 230000;208.516000;208.517000;208.485000;208.489000;0 +20260222 230100;208.487000;208.495000;208.484000;208.486000;0 +20260222 230200;208.489000;208.490000;208.474000;208.476000;0 +20260222 230300;208.469000;208.477000;208.463000;208.472000;0 +20260222 230400;208.472000;208.490000;208.460000;208.462000;0 +20260222 230500;208.463000;208.470000;208.452000;208.452000;0 +20260222 230600;208.454000;208.456000;208.443000;208.456000;0 +20260222 230700;208.456000;208.508000;208.455000;208.481000;0 +20260222 230800;208.483000;208.507000;208.483000;208.505000;0 +20260222 230900;208.506000;208.536000;208.493000;208.535000;0 +20260222 231000;208.534000;208.538000;208.518000;208.532000;0 +20260222 231100;208.531000;208.550000;208.520000;208.547000;0 +20260222 231200;208.546000;208.548000;208.511000;208.527000;0 +20260222 231300;208.527000;208.542000;208.520000;208.531000;0 +20260222 231400;208.533000;208.541000;208.526000;208.533000;0 +20260222 231500;208.533000;208.548000;208.528000;208.536000;0 +20260222 231600;208.535000;208.541000;208.529000;208.538000;0 +20260222 231700;208.538000;208.559000;208.534000;208.558000;0 +20260222 231800;208.558000;208.567000;208.546000;208.551000;0 +20260222 231900;208.551000;208.560000;208.512000;208.523000;0 +20260222 232000;208.518000;208.524000;208.494000;208.504000;0 +20260222 232100;208.504000;208.518000;208.504000;208.518000;0 +20260222 232200;208.519000;208.521000;208.503000;208.505000;0 +20260222 232300;208.505000;208.515000;208.505000;208.512000;0 +20260222 232400;208.512000;208.528000;208.511000;208.517000;0 +20260222 232500;208.517000;208.533000;208.510000;208.533000;0 +20260222 232600;208.527000;208.544000;208.527000;208.539000;0 +20260222 232700;208.540000;208.544000;208.532000;208.535000;0 +20260222 232800;208.535000;208.550000;208.531000;208.549000;0 +20260222 232900;208.549000;208.555000;208.545000;208.548000;0 +20260222 233000;208.552000;208.556000;208.541000;208.552000;0 +20260222 233100;208.552000;208.600000;208.552000;208.600000;0 +20260222 233200;208.599000;208.616000;208.593000;208.602000;0 +20260222 233300;208.600000;208.634000;208.592000;208.632000;0 +20260222 233400;208.632000;208.642000;208.627000;208.641000;0 +20260222 233500;208.642000;208.648000;208.637000;208.637000;0 +20260222 233600;208.639000;208.661000;208.638000;208.659000;0 +20260222 233700;208.660000;208.693000;208.657000;208.684000;0 +20260222 233800;208.690000;208.708000;208.690000;208.707000;0 +20260222 233900;208.706000;208.752000;208.705000;208.749000;0 +20260222 234000;208.749000;208.753000;208.730000;208.746000;0 +20260222 234100;208.752000;208.763000;208.729000;208.736000;0 +20260222 234200;208.738000;208.752000;208.738000;208.738000;0 +20260222 234300;208.738000;208.738000;208.722000;208.731000;0 +20260222 234400;208.732000;208.740000;208.724000;208.738000;0 +20260222 234500;208.738000;208.738000;208.715000;208.716000;0 +20260222 234600;208.718000;208.721000;208.696000;208.706000;0 +20260222 234700;208.707000;208.707000;208.702000;208.706000;0 +20260222 234800;208.707000;208.754000;208.696000;208.753000;0 +20260222 234900;208.752000;208.757000;208.745000;208.746000;0 +20260222 235000;208.747000;208.765000;208.747000;208.756000;0 +20260222 235100;208.757000;208.762000;208.756000;208.759000;0 +20260222 235200;208.758000;208.758000;208.730000;208.741000;0 +20260222 235300;208.742000;208.745000;208.725000;208.743000;0 +20260222 235400;208.744000;208.745000;208.732000;208.734000;0 +20260222 235500;208.735000;208.735000;208.707000;208.707000;0 +20260222 235600;208.709000;208.712000;208.696000;208.707000;0 +20260222 235700;208.708000;208.712000;208.696000;208.696000;0 +20260222 235800;208.698000;208.740000;208.698000;208.736000;0 +20260222 235900;208.736000;208.740000;208.727000;208.734000;0 +20260223 000000;208.736000;208.757000;208.720000;208.733000;0 +20260223 000100;208.736000;208.736000;208.726000;208.728000;0 +20260223 000200;208.728000;208.732000;208.707000;208.713000;0 +20260223 000300;208.710000;208.715000;208.703000;208.704000;0 +20260223 000400;208.703000;208.715000;208.692000;208.715000;0 +20260223 000500;208.713000;208.730000;208.711000;208.717000;0 +20260223 000600;208.718000;208.726000;208.710000;208.725000;0 +20260223 000700;208.726000;208.755000;208.726000;208.752000;0 +20260223 000800;208.751000;208.780000;208.749000;208.763000;0 +20260223 000900;208.762000;208.762000;208.716000;208.723000;0 +20260223 001000;208.724000;208.724000;208.703000;208.714000;0 +20260223 001100;208.722000;208.735000;208.720000;208.729000;0 +20260223 001200;208.731000;208.760000;208.729000;208.753000;0 +20260223 001300;208.752000;208.769000;208.752000;208.769000;0 +20260223 001400;208.770000;208.785000;208.765000;208.775000;0 +20260223 001500;208.774000;208.792000;208.773000;208.774000;0 +20260223 001600;208.774000;208.777000;208.756000;208.761000;0 +20260223 001700;208.760000;208.766000;208.753000;208.760000;0 +20260223 001800;208.759000;208.761000;208.753000;208.761000;0 +20260223 001900;208.770000;208.772000;208.749000;208.749000;0 +20260223 002000;208.748000;208.762000;208.746000;208.749000;0 +20260223 002100;208.747000;208.773000;208.744000;208.768000;0 +20260223 002200;208.770000;208.770000;208.741000;208.741000;0 +20260223 002300;208.742000;208.748000;208.727000;208.727000;0 +20260223 002400;208.727000;208.732000;208.725000;208.731000;0 +20260223 002500;208.721000;208.742000;208.721000;208.740000;0 +20260223 002600;208.740000;208.747000;208.732000;208.739000;0 +20260223 002700;208.737000;208.756000;208.736000;208.754000;0 +20260223 002800;208.754000;208.759000;208.753000;208.758000;0 +20260223 002900;208.758000;208.764000;208.752000;208.764000;0 +20260223 003000;208.764000;208.764000;208.749000;208.753000;0 +20260223 003100;208.752000;208.768000;208.749000;208.768000;0 +20260223 003200;208.769000;208.769000;208.741000;208.741000;0 +20260223 003300;208.740000;208.745000;208.721000;208.725000;0 +20260223 003400;208.725000;208.745000;208.723000;208.741000;0 +20260223 003500;208.740000;208.742000;208.718000;208.731000;0 +20260223 003600;208.731000;208.731000;208.710000;208.710000;0 +20260223 003700;208.710000;208.732000;208.706000;208.731000;0 +20260223 003800;208.731000;208.742000;208.728000;208.729000;0 +20260223 003900;208.732000;208.762000;208.732000;208.762000;0 +20260223 004000;208.762000;208.762000;208.744000;208.755000;0 +20260223 004100;208.755000;208.762000;208.747000;208.750000;0 +20260223 004200;208.751000;208.764000;208.750000;208.750000;0 +20260223 004300;208.751000;208.752000;208.727000;208.732000;0 +20260223 004400;208.732000;208.742000;208.730000;208.730000;0 +20260223 004500;208.730000;208.741000;208.727000;208.741000;0 +20260223 004600;208.743000;208.744000;208.735000;208.742000;0 +20260223 004700;208.743000;208.746000;208.742000;208.743000;0 +20260223 004800;208.743000;208.756000;208.743000;208.756000;0 +20260223 004900;208.757000;208.759000;208.756000;208.759000;0 +20260223 005000;208.754000;208.761000;208.754000;208.755000;0 +20260223 005100;208.756000;208.759000;208.745000;208.746000;0 +20260223 005200;208.745000;208.746000;208.727000;208.741000;0 +20260223 005300;208.740000;208.758000;208.738000;208.757000;0 +20260223 005400;208.759000;208.766000;208.758000;208.760000;0 +20260223 005500;208.761000;208.767000;208.750000;208.757000;0 +20260223 005600;208.760000;208.769000;208.751000;208.769000;0 +20260223 005700;208.770000;208.771000;208.759000;208.761000;0 +20260223 005800;208.769000;208.794000;208.769000;208.787000;0 +20260223 005900;208.785000;208.815000;208.785000;208.799000;0 +20260223 010000;208.794000;208.836000;208.794000;208.811000;0 +20260223 010100;208.815000;208.842000;208.814000;208.814000;0 +20260223 010200;208.816000;208.817000;208.789000;208.792000;0 +20260223 010300;208.793000;208.799000;208.772000;208.785000;0 +20260223 010400;208.787000;208.818000;208.784000;208.797000;0 +20260223 010500;208.796000;208.796000;208.754000;208.771000;0 +20260223 010600;208.774000;208.778000;208.753000;208.753000;0 +20260223 010700;208.750000;208.754000;208.736000;208.752000;0 +20260223 010800;208.752000;208.766000;208.746000;208.750000;0 +20260223 010900;208.759000;208.764000;208.734000;208.734000;0 +20260223 011000;208.736000;208.742000;208.708000;208.712000;0 +20260223 011100;208.713000;208.759000;208.713000;208.752000;0 +20260223 011200;208.752000;208.782000;208.750000;208.781000;0 +20260223 011300;208.781000;208.781000;208.741000;208.741000;0 +20260223 011400;208.741000;208.786000;208.741000;208.784000;0 +20260223 011500;208.783000;208.788000;208.756000;208.760000;0 +20260223 011600;208.761000;208.761000;208.722000;208.723000;0 +20260223 011700;208.728000;208.750000;208.728000;208.748000;0 +20260223 011800;208.751000;208.751000;208.735000;208.746000;0 +20260223 011900;208.748000;208.748000;208.700000;208.703000;0 +20260223 012000;208.706000;208.715000;208.699000;208.709000;0 +20260223 012100;208.712000;208.733000;208.710000;208.726000;0 +20260223 012200;208.723000;208.742000;208.723000;208.742000;0 +20260223 012300;208.740000;208.749000;208.739000;208.745000;0 +20260223 012400;208.752000;208.752000;208.738000;208.746000;0 +20260223 012500;208.745000;208.752000;208.724000;208.750000;0 +20260223 012600;208.752000;208.763000;208.746000;208.754000;0 +20260223 012700;208.750000;208.762000;208.750000;208.753000;0 +20260223 012800;208.754000;208.767000;208.743000;208.745000;0 +20260223 012900;208.747000;208.747000;208.715000;208.719000;0 +20260223 013000;208.722000;208.754000;208.715000;208.738000;0 +20260223 013100;208.740000;208.740000;208.711000;208.735000;0 +20260223 013200;208.735000;208.751000;208.730000;208.745000;0 +20260223 013300;208.746000;208.760000;208.744000;208.758000;0 +20260223 013400;208.756000;208.783000;208.754000;208.782000;0 +20260223 013500;208.789000;208.795000;208.776000;208.777000;0 +20260223 013600;208.775000;208.793000;208.768000;208.791000;0 +20260223 013700;208.793000;208.793000;208.778000;208.781000;0 +20260223 013800;208.783000;208.818000;208.783000;208.816000;0 +20260223 013900;208.820000;208.825000;208.805000;208.805000;0 +20260223 014000;208.807000;208.819000;208.799000;208.810000;0 +20260223 014100;208.810000;208.813000;208.792000;208.794000;0 +20260223 014200;208.793000;208.798000;208.787000;208.795000;0 +20260223 014300;208.794000;208.808000;208.787000;208.803000;0 +20260223 014400;208.806000;208.806000;208.786000;208.787000;0 +20260223 014500;208.786000;208.794000;208.747000;208.780000;0 +20260223 014600;208.797000;208.820000;208.797000;208.816000;0 +20260223 014700;208.817000;208.824000;208.814000;208.820000;0 +20260223 014800;208.818000;208.844000;208.818000;208.844000;0 +20260223 014900;208.845000;208.894000;208.845000;208.894000;0 +20260223 015000;208.891000;208.911000;208.890000;208.907000;0 +20260223 015100;208.908000;208.927000;208.907000;208.912000;0 +20260223 015200;208.911000;208.933000;208.906000;208.923000;0 +20260223 015300;208.922000;208.941000;208.916000;208.936000;0 +20260223 015400;208.938000;208.992000;208.938000;208.985000;0 +20260223 015500;208.986000;208.986000;208.962000;208.970000;0 +20260223 015600;208.971000;208.971000;208.938000;208.945000;0 +20260223 015700;208.944000;208.969000;208.936000;208.960000;0 +20260223 015800;208.962000;208.981000;208.952000;208.980000;0 +20260223 015900;208.984000;208.994000;208.977000;208.983000;0 +20260223 020000;208.982000;208.994000;208.938000;208.990000;0 +20260223 020100;208.990000;209.014000;208.976000;208.985000;0 +20260223 020200;208.986000;209.002000;208.967000;208.976000;0 +20260223 020300;208.977000;209.017000;208.975000;208.992000;0 +20260223 020400;208.992000;209.011000;208.983000;208.985000;0 +20260223 020500;208.987000;208.995000;208.967000;208.986000;0 +20260223 020600;208.991000;209.043000;208.991000;209.026000;0 +20260223 020700;209.024000;209.050000;209.018000;209.025000;0 +20260223 020800;209.024000;209.047000;209.017000;209.024000;0 +20260223 020900;209.024000;209.040000;209.009000;209.016000;0 +20260223 021000;209.016000;209.019000;208.984000;208.984000;0 +20260223 021100;208.984000;209.010000;208.979000;208.996000;0 +20260223 021200;208.992000;209.029000;208.991000;209.028000;0 +20260223 021300;209.028000;209.056000;209.021000;209.055000;0 +20260223 021400;209.050000;209.050000;209.023000;209.040000;0 +20260223 021500;209.040000;209.053000;208.980000;208.980000;0 +20260223 021600;208.979000;209.007000;208.977000;208.996000;0 +20260223 021700;208.993000;209.007000;208.990000;208.994000;0 +20260223 021800;208.995000;209.028000;208.992000;209.027000;0 +20260223 021900;209.027000;209.043000;209.005000;209.030000;0 +20260223 022000;209.031000;209.044000;209.013000;209.028000;0 +20260223 022100;209.028000;209.035000;209.020000;209.033000;0 +20260223 022200;209.033000;209.054000;209.024000;209.041000;0 +20260223 022300;209.042000;209.089000;209.042000;209.078000;0 +20260223 022400;209.079000;209.091000;209.071000;209.085000;0 +20260223 022500;209.086000;209.096000;209.071000;209.090000;0 +20260223 022600;209.091000;209.104000;209.069000;209.072000;0 +20260223 022700;209.071000;209.103000;209.069000;209.089000;0 +20260223 022800;209.090000;209.105000;209.089000;209.103000;0 +20260223 022900;209.097000;209.105000;209.084000;209.089000;0 +20260223 023000;209.090000;209.100000;209.059000;209.063000;0 +20260223 023100;209.062000;209.062000;209.016000;209.029000;0 +20260223 023200;209.032000;209.037000;209.010000;209.011000;0 +20260223 023300;209.014000;209.027000;208.998000;209.008000;0 +20260223 023400;209.008000;209.017000;208.993000;209.010000;0 +20260223 023500;209.012000;209.015000;208.977000;208.988000;0 +20260223 023600;208.989000;209.058000;208.989000;209.039000;0 +20260223 023700;209.039000;209.053000;209.004000;209.017000;0 +20260223 023800;209.018000;209.045000;208.994000;209.045000;0 +20260223 023900;209.046000;209.119000;209.046000;209.114000;0 +20260223 024000;209.117000;209.135000;209.108000;209.117000;0 +20260223 024100;209.116000;209.116000;209.030000;209.030000;0 +20260223 024200;209.031000;209.035000;209.012000;209.019000;0 +20260223 024300;209.021000;209.032000;209.001000;209.015000;0 +20260223 024400;209.017000;209.056000;209.006000;209.006000;0 +20260223 024500;209.003000;209.047000;209.001000;209.035000;0 +20260223 024600;209.039000;209.092000;209.019000;209.085000;0 +20260223 024700;209.084000;209.085000;209.045000;209.053000;0 +20260223 024800;209.048000;209.072000;209.026000;209.028000;0 +20260223 024900;209.027000;209.044000;208.995000;208.996000;0 +20260223 025000;209.001000;209.010000;208.978000;208.996000;0 +20260223 025100;208.995000;209.006000;208.977000;208.992000;0 +20260223 025200;208.990000;209.008000;208.980000;209.002000;0 +20260223 025300;209.000000;209.014000;208.976000;208.982000;0 +20260223 025400;208.983000;209.000000;208.977000;208.987000;0 +20260223 025500;208.988000;208.988000;208.960000;208.964000;0 +20260223 025600;208.966000;208.966000;208.925000;208.964000;0 +20260223 025700;208.967000;208.967000;208.910000;208.922000;0 +20260223 025800;208.922000;208.972000;208.916000;208.956000;0 +20260223 025900;208.956000;208.965000;208.930000;208.946000;0 +20260223 030000;208.943000;209.032000;208.928000;209.027000;0 +20260223 030100;209.024000;209.050000;208.976000;208.976000;0 +20260223 030200;208.977000;209.036000;208.976000;209.013000;0 +20260223 030300;209.016000;209.026000;208.966000;208.985000;0 +20260223 030400;208.986000;209.002000;208.961000;208.966000;0 +20260223 030500;208.965000;209.023000;208.955000;209.001000;0 +20260223 030600;209.002000;209.038000;208.964000;209.032000;0 +20260223 030700;209.032000;209.049000;209.027000;209.042000;0 +20260223 030800;209.042000;209.043000;209.025000;209.028000;0 +20260223 030900;209.031000;209.050000;209.022000;209.039000;0 +20260223 031000;209.038000;209.038000;209.009000;209.014000;0 +20260223 031100;209.015000;209.051000;208.987000;208.987000;0 +20260223 031200;208.986000;209.018000;208.985000;208.986000;0 +20260223 031300;208.984000;209.007000;208.955000;208.964000;0 +20260223 031400;208.968000;208.975000;208.933000;208.948000;0 +20260223 031500;208.943000;208.949000;208.922000;208.929000;0 +20260223 031600;208.928000;208.949000;208.920000;208.937000;0 +20260223 031700;208.936000;208.992000;208.936000;208.975000;0 +20260223 031800;208.979000;209.002000;208.959000;208.974000;0 +20260223 031900;208.975000;209.006000;208.968000;208.992000;0 +20260223 032000;208.989000;209.009000;208.978000;208.983000;0 +20260223 032100;208.983000;209.032000;208.982000;209.024000;0 +20260223 032200;209.025000;209.037000;209.001000;209.037000;0 +20260223 032300;209.037000;209.040000;208.994000;209.008000;0 +20260223 032400;209.005000;209.035000;208.980000;209.022000;0 +20260223 032500;209.024000;209.035000;208.998000;209.001000;0 +20260223 032600;209.002000;209.020000;208.999000;209.016000;0 +20260223 032700;209.019000;209.060000;209.018000;209.033000;0 +20260223 032800;209.033000;209.045000;208.998000;209.011000;0 +20260223 032900;209.010000;209.015000;208.965000;208.978000;0 +20260223 033000;208.977000;209.002000;208.963000;208.977000;0 +20260223 033100;208.976000;208.986000;208.963000;208.977000;0 +20260223 033200;208.976000;209.033000;208.969000;209.028000;0 +20260223 033300;209.028000;209.055000;209.002000;209.041000;0 +20260223 033400;209.038000;209.065000;209.020000;209.060000;0 +20260223 033500;209.058000;209.099000;209.053000;209.091000;0 +20260223 033600;209.090000;209.092000;209.056000;209.075000;0 +20260223 033700;209.073000;209.084000;209.050000;209.051000;0 +20260223 033800;209.050000;209.077000;209.029000;209.072000;0 +20260223 033900;209.074000;209.097000;209.070000;209.081000;0 +20260223 034000;209.082000;209.088000;209.055000;209.062000;0 +20260223 034100;209.064000;209.086000;209.058000;209.069000;0 +20260223 034200;209.068000;209.074000;209.041000;209.048000;0 +20260223 034300;209.051000;209.069000;209.036000;209.068000;0 +20260223 034400;209.069000;209.073000;209.045000;209.048000;0 +20260223 034500;209.050000;209.073000;209.034000;209.059000;0 +20260223 034600;209.060000;209.067000;209.029000;209.029000;0 +20260223 034700;209.032000;209.074000;209.032000;209.068000;0 +20260223 034800;209.067000;209.091000;209.063000;209.091000;0 +20260223 034900;209.090000;209.117000;209.080000;209.110000;0 +20260223 035000;209.109000;209.138000;209.107000;209.118000;0 +20260223 035100;209.117000;209.122000;209.101000;209.111000;0 +20260223 035200;209.109000;209.115000;209.085000;209.110000;0 +20260223 035300;209.105000;209.143000;209.102000;209.133000;0 +20260223 035400;209.133000;209.134000;209.101000;209.119000;0 +20260223 035500;209.118000;209.138000;209.108000;209.126000;0 +20260223 035600;209.127000;209.127000;209.100000;209.117000;0 +20260223 035700;209.117000;209.142000;209.116000;209.134000;0 +20260223 035800;209.137000;209.144000;209.125000;209.127000;0 +20260223 035900;209.127000;209.132000;209.108000;209.108000;0 +20260223 040000;209.107000;209.151000;209.105000;209.145000;0 +20260223 040100;209.144000;209.144000;209.087000;209.087000;0 +20260223 040200;209.086000;209.096000;209.061000;209.080000;0 +20260223 040300;209.081000;209.085000;209.067000;209.076000;0 +20260223 040400;209.072000;209.074000;209.047000;209.051000;0 +20260223 040500;209.048000;209.051000;209.019000;209.044000;0 +20260223 040600;209.046000;209.055000;209.017000;209.051000;0 +20260223 040700;209.052000;209.063000;209.052000;209.059000;0 +20260223 040800;209.061000;209.065000;209.047000;209.047000;0 +20260223 040900;209.051000;209.070000;209.024000;209.031000;0 +20260223 041000;209.031000;209.057000;209.026000;209.054000;0 +20260223 041100;209.059000;209.073000;209.028000;209.043000;0 +20260223 041200;209.038000;209.052000;209.020000;209.047000;0 +20260223 041300;209.045000;209.051000;209.038000;209.040000;0 +20260223 041400;209.038000;209.045000;209.020000;209.043000;0 +20260223 041500;209.043000;209.048000;209.025000;209.036000;0 +20260223 041600;209.035000;209.058000;209.033000;209.046000;0 +20260223 041700;209.048000;209.048000;209.020000;209.020000;0 +20260223 041800;209.022000;209.030000;209.000000;209.000000;0 +20260223 041900;209.004000;209.008000;208.993000;208.996000;0 +20260223 042000;208.993000;209.020000;208.993000;209.020000;0 +20260223 042100;209.018000;209.033000;209.012000;209.012000;0 +20260223 042200;209.009000;209.034000;209.009000;209.022000;0 +20260223 042300;209.018000;209.018000;209.003000;209.010000;0 +20260223 042400;209.009000;209.034000;209.009000;209.028000;0 +20260223 042500;209.032000;209.066000;209.028000;209.061000;0 +20260223 042600;209.062000;209.070000;209.034000;209.034000;0 +20260223 042700;209.031000;209.034000;209.015000;209.033000;0 +20260223 042800;209.032000;209.039000;209.023000;209.036000;0 +20260223 042900;209.039000;209.059000;209.030000;209.059000;0 +20260223 043000;209.058000;209.072000;209.046000;209.070000;0 +20260223 043100;209.072000;209.093000;209.066000;209.093000;0 +20260223 043200;209.093000;209.108000;209.081000;209.108000;0 +20260223 043300;209.105000;209.109000;209.094000;209.094000;0 +20260223 043400;209.096000;209.110000;209.091000;209.101000;0 +20260223 043500;209.102000;209.113000;209.094000;209.094000;0 +20260223 043600;209.095000;209.128000;209.087000;209.107000;0 +20260223 043700;209.106000;209.120000;209.095000;209.113000;0 +20260223 043800;209.123000;209.123000;209.101000;209.114000;0 +20260223 043900;209.107000;209.116000;209.089000;209.104000;0 +20260223 044000;209.105000;209.144000;209.105000;209.135000;0 +20260223 044100;209.136000;209.153000;209.136000;209.145000;0 +20260223 044200;209.145000;209.168000;209.145000;209.168000;0 +20260223 044300;209.167000;209.168000;209.138000;209.156000;0 +20260223 044400;209.160000;209.184000;209.160000;209.182000;0 +20260223 044500;209.180000;209.194000;209.166000;209.179000;0 +20260223 044600;209.178000;209.189000;209.171000;209.186000;0 +20260223 044700;209.181000;209.182000;209.161000;209.170000;0 +20260223 044800;209.170000;209.170000;209.147000;209.163000;0 +20260223 044900;209.165000;209.172000;209.145000;209.156000;0 +20260223 045000;209.154000;209.154000;209.120000;209.137000;0 +20260223 045100;209.139000;209.139000;209.105000;209.120000;0 +20260223 045200;209.123000;209.176000;209.118000;209.176000;0 +20260223 045300;209.172000;209.187000;209.169000;209.169000;0 +20260223 045400;209.167000;209.183000;209.155000;209.172000;0 +20260223 045500;209.172000;209.190000;209.166000;209.186000;0 +20260223 045600;209.186000;209.197000;209.163000;209.166000;0 +20260223 045700;209.166000;209.180000;209.132000;209.157000;0 +20260223 045800;209.161000;209.180000;209.133000;209.137000;0 +20260223 045900;209.138000;209.149000;209.113000;209.117000;0 +20260223 050000;209.117000;209.143000;209.100000;209.142000;0 +20260223 050100;209.141000;209.147000;209.118000;209.127000;0 +20260223 050200;209.124000;209.131000;209.109000;209.122000;0 +20260223 050300;209.123000;209.125000;209.090000;209.090000;0 +20260223 050400;209.091000;209.097000;209.082000;209.090000;0 +20260223 050500;209.091000;209.115000;209.089000;209.112000;0 +20260223 050600;209.115000;209.133000;209.097000;209.097000;0 +20260223 050700;209.100000;209.112000;209.099000;209.112000;0 +20260223 050800;209.111000;209.128000;209.100000;209.100000;0 +20260223 050900;209.100000;209.131000;209.090000;209.124000;0 +20260223 051000;209.122000;209.126000;209.090000;209.118000;0 +20260223 051100;209.119000;209.119000;209.104000;209.114000;0 +20260223 051200;209.113000;209.120000;209.104000;209.120000;0 +20260223 051300;209.123000;209.137000;209.113000;209.128000;0 +20260223 051400;209.131000;209.132000;209.094000;209.128000;0 +20260223 051500;209.131000;209.154000;209.125000;209.149000;0 +20260223 051600;209.147000;209.151000;209.120000;209.132000;0 +20260223 051700;209.133000;209.135000;209.117000;209.120000;0 +20260223 051800;209.126000;209.132000;209.103000;209.103000;0 +20260223 051900;209.104000;209.117000;209.104000;209.108000;0 +20260223 052000;209.106000;209.121000;209.103000;209.110000;0 +20260223 052100;209.112000;209.125000;209.105000;209.106000;0 +20260223 052200;209.104000;209.113000;209.096000;209.104000;0 +20260223 052300;209.105000;209.122000;209.093000;209.122000;0 +20260223 052400;209.119000;209.180000;209.119000;209.160000;0 +20260223 052500;209.160000;209.163000;209.142000;209.147000;0 +20260223 052600;209.149000;209.153000;209.079000;209.120000;0 +20260223 052700;209.121000;209.141000;209.119000;209.131000;0 +20260223 052800;209.130000;209.138000;209.114000;209.130000;0 +20260223 052900;209.130000;209.153000;209.129000;209.129000;0 +20260223 053000;209.129000;209.165000;209.129000;209.161000;0 +20260223 053100;209.164000;209.211000;209.152000;209.209000;0 +20260223 053200;209.207000;209.220000;209.200000;209.216000;0 +20260223 053300;209.215000;209.217000;209.186000;209.191000;0 +20260223 053400;209.192000;209.193000;209.172000;209.175000;0 +20260223 053500;209.175000;209.215000;209.174000;209.215000;0 +20260223 053600;209.218000;209.219000;209.197000;209.211000;0 +20260223 053700;209.213000;209.222000;209.198000;209.217000;0 +20260223 053800;209.215000;209.216000;209.196000;209.196000;0 +20260223 053900;209.202000;209.207000;209.192000;209.197000;0 +20260223 054000;209.198000;209.209000;209.197000;209.207000;0 +20260223 054100;209.209000;209.209000;209.191000;209.201000;0 +20260223 054200;209.199000;209.202000;209.194000;209.196000;0 +20260223 054300;209.196000;209.196000;209.184000;209.187000;0 +20260223 054400;209.187000;209.190000;209.177000;209.189000;0 +20260223 054500;209.190000;209.190000;209.168000;209.170000;0 +20260223 054600;209.171000;209.177000;209.165000;209.171000;0 +20260223 054700;209.168000;209.200000;209.167000;209.200000;0 +20260223 054800;209.199000;209.199000;209.179000;209.181000;0 +20260223 054900;209.175000;209.178000;209.164000;209.172000;0 +20260223 055000;209.169000;209.181000;209.165000;209.177000;0 +20260223 055100;209.181000;209.182000;209.142000;209.143000;0 +20260223 055200;209.142000;209.143000;209.122000;209.137000;0 +20260223 055300;209.136000;209.136000;209.101000;209.101000;0 +20260223 055400;209.100000;209.114000;209.100000;209.112000;0 +20260223 055500;209.114000;209.133000;209.101000;209.121000;0 +20260223 055600;209.119000;209.130000;209.118000;209.123000;0 +20260223 055700;209.121000;209.121000;209.092000;209.108000;0 +20260223 055800;209.108000;209.122000;209.096000;209.118000;0 +20260223 055900;209.119000;209.123000;209.081000;209.084000;0 +20260223 060000;209.082000;209.087000;209.052000;209.058000;0 +20260223 060100;209.057000;209.060000;209.021000;209.033000;0 +20260223 060200;209.031000;209.037000;209.023000;209.024000;0 +20260223 060300;209.026000;209.045000;209.014000;209.040000;0 +20260223 060400;209.039000;209.049000;209.025000;209.030000;0 +20260223 060500;209.029000;209.040000;209.024000;209.029000;0 +20260223 060600;209.030000;209.053000;209.028000;209.042000;0 +20260223 060700;209.044000;209.044000;209.023000;209.029000;0 +20260223 060800;209.031000;209.051000;209.031000;209.050000;0 +20260223 060900;209.047000;209.099000;209.046000;209.093000;0 +20260223 061000;209.090000;209.104000;209.083000;209.104000;0 +20260223 061100;209.103000;209.127000;209.086000;209.124000;0 +20260223 061200;209.122000;209.158000;209.122000;209.158000;0 +20260223 061300;209.158000;209.158000;209.140000;209.150000;0 +20260223 061400;209.151000;209.158000;209.133000;209.158000;0 +20260223 061500;209.154000;209.163000;209.133000;209.134000;0 +20260223 061600;209.132000;209.136000;209.117000;209.134000;0 +20260223 061700;209.133000;209.139000;209.120000;209.120000;0 +20260223 061800;209.122000;209.122000;209.090000;209.097000;0 +20260223 061900;209.104000;209.104000;209.084000;209.089000;0 +20260223 062000;209.089000;209.093000;209.076000;209.088000;0 +20260223 062100;209.087000;209.087000;209.037000;209.037000;0 +20260223 062200;209.035000;209.050000;209.014000;209.014000;0 +20260223 062300;209.014000;209.025000;209.009000;209.009000;0 +20260223 062400;209.015000;209.026000;209.002000;209.004000;0 +20260223 062500;209.004000;209.014000;208.998000;208.998000;0 +20260223 062600;208.993000;209.000000;208.982000;208.983000;0 +20260223 062700;208.978000;208.978000;208.950000;208.957000;0 +20260223 062800;208.959000;208.962000;208.946000;208.959000;0 +20260223 062900;208.961000;208.967000;208.943000;208.960000;0 +20260223 063000;208.959000;208.969000;208.932000;208.956000;0 +20260223 063100;208.957000;208.958000;208.927000;208.936000;0 +20260223 063200;208.931000;208.967000;208.923000;208.950000;0 +20260223 063300;208.942000;208.987000;208.939000;208.964000;0 +20260223 063400;208.973000;208.973000;208.953000;208.953000;0 +20260223 063500;208.953000;208.978000;208.953000;208.970000;0 +20260223 063600;208.972000;208.982000;208.960000;208.966000;0 +20260223 063700;208.965000;208.981000;208.958000;208.979000;0 +20260223 063800;208.975000;208.996000;208.973000;208.996000;0 +20260223 063900;208.996000;209.025000;208.989000;209.025000;0 +20260223 064000;209.024000;209.035000;209.024000;209.031000;0 +20260223 064100;209.032000;209.067000;209.026000;209.067000;0 +20260223 064200;209.066000;209.097000;209.062000;209.084000;0 +20260223 064300;209.081000;209.101000;209.067000;209.095000;0 +20260223 064400;209.094000;209.101000;209.085000;209.087000;0 +20260223 064500;209.089000;209.092000;209.076000;209.078000;0 +20260223 064600;209.077000;209.088000;209.055000;209.056000;0 +20260223 064700;209.056000;209.060000;209.032000;209.033000;0 +20260223 064800;209.036000;209.048000;209.021000;209.024000;0 +20260223 064900;209.025000;209.043000;209.021000;209.043000;0 +20260223 065000;209.046000;209.054000;209.030000;209.031000;0 +20260223 065100;209.033000;209.044000;209.028000;209.040000;0 +20260223 065200;209.038000;209.056000;209.019000;209.056000;0 +20260223 065300;209.059000;209.059000;209.032000;209.035000;0 +20260223 065400;209.037000;209.058000;209.035000;209.053000;0 +20260223 065500;209.054000;209.068000;209.015000;209.031000;0 +20260223 065600;209.026000;209.035000;208.969000;208.969000;0 +20260223 065700;208.970000;208.994000;208.969000;208.976000;0 +20260223 065800;208.978000;209.001000;208.976000;208.993000;0 +20260223 065900;208.995000;209.002000;208.987000;209.001000;0 +20260223 070000;209.012000;209.030000;208.999000;209.022000;0 +20260223 070100;209.022000;209.047000;209.014000;209.035000;0 +20260223 070200;209.035000;209.039000;208.999000;209.001000;0 +20260223 070300;209.002000;209.030000;208.955000;208.976000;0 +20260223 070400;208.976000;208.991000;208.968000;208.979000;0 +20260223 070500;208.978000;209.001000;208.972000;208.981000;0 +20260223 070600;208.982000;208.983000;208.959000;208.980000;0 +20260223 070700;208.981000;209.009000;208.975000;208.990000;0 +20260223 070800;208.992000;209.006000;208.990000;208.994000;0 +20260223 070900;208.996000;209.001000;208.984000;208.988000;0 +20260223 071000;208.984000;208.996000;208.970000;208.977000;0 +20260223 071100;208.979000;208.979000;208.933000;208.942000;0 +20260223 071200;208.941000;208.977000;208.941000;208.977000;0 +20260223 071300;208.975000;208.982000;208.941000;208.941000;0 +20260223 071400;208.944000;208.956000;208.923000;208.934000;0 +20260223 071500;208.931000;208.931000;208.909000;208.919000;0 +20260223 071600;208.920000;208.927000;208.899000;208.902000;0 +20260223 071700;208.903000;208.905000;208.874000;208.878000;0 +20260223 071800;208.885000;208.889000;208.848000;208.854000;0 +20260223 071900;208.852000;208.862000;208.843000;208.862000;0 +20260223 072000;208.860000;208.872000;208.854000;208.856000;0 +20260223 072100;208.857000;208.865000;208.845000;208.855000;0 +20260223 072200;208.856000;208.864000;208.839000;208.843000;0 +20260223 072300;208.836000;208.847000;208.835000;208.835000;0 +20260223 072400;208.831000;208.837000;208.801000;208.813000;0 +20260223 072500;208.809000;208.865000;208.805000;208.862000;0 +20260223 072600;208.865000;208.929000;208.859000;208.926000;0 +20260223 072700;208.926000;208.932000;208.882000;208.899000;0 +20260223 072800;208.900000;208.934000;208.900000;208.921000;0 +20260223 072900;208.921000;208.952000;208.920000;208.950000;0 +20260223 073000;208.951000;208.977000;208.926000;208.927000;0 +20260223 073100;208.928000;208.954000;208.893000;208.900000;0 +20260223 073200;208.900000;208.909000;208.874000;208.892000;0 +20260223 073300;208.893000;208.905000;208.878000;208.892000;0 +20260223 073400;208.891000;208.899000;208.859000;208.863000;0 +20260223 073500;208.864000;208.887000;208.857000;208.877000;0 +20260223 073600;208.881000;208.905000;208.875000;208.888000;0 +20260223 073700;208.889000;208.906000;208.883000;208.885000;0 +20260223 073800;208.886000;208.908000;208.883000;208.898000;0 +20260223 073900;208.897000;208.908000;208.896000;208.899000;0 +20260223 074000;208.897000;208.921000;208.893000;208.919000;0 +20260223 074100;208.922000;208.922000;208.892000;208.895000;0 +20260223 074200;208.897000;208.897000;208.862000;208.873000;0 +20260223 074300;208.874000;208.892000;208.862000;208.880000;0 +20260223 074400;208.881000;208.920000;208.881000;208.914000;0 +20260223 074500;208.909000;208.918000;208.881000;208.894000;0 +20260223 074600;208.896000;208.897000;208.878000;208.887000;0 +20260223 074700;208.884000;208.885000;208.863000;208.871000;0 +20260223 074800;208.867000;208.872000;208.845000;208.857000;0 +20260223 074900;208.857000;208.863000;208.848000;208.851000;0 +20260223 075000;208.852000;208.869000;208.852000;208.859000;0 +20260223 075100;208.862000;208.863000;208.847000;208.858000;0 +20260223 075200;208.861000;208.885000;208.860000;208.881000;0 +20260223 075300;208.879000;208.894000;208.876000;208.893000;0 +20260223 075400;208.892000;208.895000;208.876000;208.893000;0 +20260223 075500;208.893000;208.899000;208.859000;208.859000;0 +20260223 075600;208.859000;208.884000;208.859000;208.878000;0 +20260223 075700;208.882000;208.910000;208.872000;208.902000;0 +20260223 075800;208.898000;208.909000;208.889000;208.895000;0 +20260223 075900;208.894000;208.902000;208.875000;208.900000;0 +20260223 080000;208.904000;208.938000;208.885000;208.919000;0 +20260223 080100;208.927000;208.948000;208.902000;208.912000;0 +20260223 080200;208.910000;208.910000;208.867000;208.875000;0 +20260223 080300;208.873000;208.885000;208.854000;208.874000;0 +20260223 080400;208.875000;208.886000;208.865000;208.865000;0 +20260223 080500;208.865000;208.871000;208.826000;208.827000;0 +20260223 080600;208.826000;208.849000;208.815000;208.846000;0 +20260223 080700;208.852000;208.902000;208.851000;208.892000;0 +20260223 080800;208.893000;208.894000;208.869000;208.878000;0 +20260223 080900;208.880000;208.888000;208.868000;208.877000;0 +20260223 081000;208.878000;208.881000;208.849000;208.859000;0 +20260223 081100;208.859000;208.859000;208.836000;208.836000;0 +20260223 081200;208.836000;208.853000;208.824000;208.848000;0 +20260223 081300;208.849000;208.869000;208.832000;208.862000;0 +20260223 081400;208.865000;208.880000;208.858000;208.873000;0 +20260223 081500;208.872000;208.907000;208.872000;208.896000;0 +20260223 081600;208.893000;208.893000;208.853000;208.853000;0 +20260223 081700;208.853000;208.854000;208.808000;208.813000;0 +20260223 081800;208.813000;208.823000;208.775000;208.819000;0 +20260223 081900;208.820000;208.832000;208.805000;208.830000;0 +20260223 082000;208.833000;208.834000;208.807000;208.821000;0 +20260223 082100;208.821000;208.821000;208.803000;208.810000;0 +20260223 082200;208.809000;208.829000;208.770000;208.803000;0 +20260223 082300;208.805000;208.805000;208.782000;208.787000;0 +20260223 082400;208.788000;208.807000;208.783000;208.786000;0 +20260223 082500;208.785000;208.833000;208.775000;208.826000;0 +20260223 082600;208.820000;208.843000;208.820000;208.833000;0 +20260223 082700;208.831000;208.833000;208.818000;208.830000;0 +20260223 082800;208.827000;208.828000;208.798000;208.825000;0 +20260223 082900;208.827000;208.833000;208.818000;208.821000;0 +20260223 083000;208.822000;208.823000;208.767000;208.782000;0 +20260223 083100;208.783000;208.804000;208.778000;208.786000;0 +20260223 083200;208.787000;208.790000;208.750000;208.750000;0 +20260223 083300;208.749000;208.776000;208.741000;208.768000;0 +20260223 083400;208.769000;208.771000;208.724000;208.731000;0 +20260223 083500;208.732000;208.732000;208.697000;208.697000;0 +20260223 083600;208.698000;208.734000;208.695000;208.728000;0 +20260223 083700;208.726000;208.742000;208.706000;208.720000;0 +20260223 083800;208.729000;208.732000;208.678000;208.692000;0 +20260223 083900;208.690000;208.723000;208.688000;208.706000;0 +20260223 084000;208.710000;208.749000;208.708000;208.729000;0 +20260223 084100;208.728000;208.765000;208.723000;208.764000;0 +20260223 084200;208.764000;208.771000;208.737000;208.752000;0 +20260223 084300;208.753000;208.803000;208.748000;208.800000;0 +20260223 084400;208.800000;208.832000;208.792000;208.799000;0 +20260223 084500;208.795000;208.803000;208.773000;208.777000;0 +20260223 084600;208.779000;208.795000;208.768000;208.775000;0 +20260223 084700;208.777000;208.802000;208.777000;208.785000;0 +20260223 084800;208.786000;208.806000;208.784000;208.804000;0 +20260223 084900;208.809000;208.813000;208.789000;208.800000;0 +20260223 085000;208.808000;208.824000;208.799000;208.806000;0 +20260223 085100;208.811000;208.822000;208.790000;208.802000;0 +20260223 085200;208.802000;208.816000;208.780000;208.780000;0 +20260223 085300;208.780000;208.792000;208.772000;208.790000;0 +20260223 085400;208.790000;208.825000;208.790000;208.813000;0 +20260223 085500;208.818000;208.835000;208.796000;208.834000;0 +20260223 085600;208.830000;208.830000;208.795000;208.812000;0 +20260223 085700;208.814000;208.824000;208.787000;208.787000;0 +20260223 085800;208.789000;208.814000;208.786000;208.808000;0 +20260223 085900;208.806000;208.841000;208.800000;208.832000;0 +20260223 090000;208.826000;208.831000;208.788000;208.793000;0 +20260223 090100;208.794000;208.810000;208.776000;208.786000;0 +20260223 090200;208.786000;208.826000;208.770000;208.813000;0 +20260223 090300;208.813000;208.845000;208.807000;208.844000;0 +20260223 090400;208.845000;208.881000;208.842000;208.876000;0 +20260223 090500;208.875000;208.909000;208.870000;208.902000;0 +20260223 090600;208.902000;208.902000;208.861000;208.867000;0 +20260223 090700;208.863000;208.886000;208.845000;208.857000;0 +20260223 090800;208.855000;208.887000;208.851000;208.882000;0 +20260223 090900;208.880000;208.880000;208.846000;208.846000;0 +20260223 091000;208.846000;208.849000;208.820000;208.839000;0 +20260223 091100;208.839000;208.856000;208.822000;208.852000;0 +20260223 091200;208.851000;208.871000;208.845000;208.871000;0 +20260223 091300;208.873000;208.895000;208.872000;208.881000;0 +20260223 091400;208.883000;208.891000;208.864000;208.880000;0 +20260223 091500;208.879000;208.893000;208.863000;208.879000;0 +20260223 091600;208.878000;208.900000;208.871000;208.884000;0 +20260223 091700;208.883000;208.901000;208.875000;208.897000;0 +20260223 091800;208.898000;208.907000;208.891000;208.891000;0 +20260223 091900;208.893000;208.911000;208.892000;208.898000;0 +20260223 092000;208.899000;208.900000;208.882000;208.887000;0 +20260223 092100;208.891000;208.903000;208.881000;208.881000;0 +20260223 092200;208.880000;208.900000;208.871000;208.900000;0 +20260223 092300;208.898000;208.911000;208.889000;208.906000;0 +20260223 092400;208.907000;208.939000;208.906000;208.927000;0 +20260223 092500;208.931000;208.972000;208.929000;208.970000;0 +20260223 092600;208.969000;208.999000;208.962000;208.984000;0 +20260223 092700;208.984000;208.998000;208.984000;208.990000;0 +20260223 092800;208.991000;209.003000;208.976000;208.990000;0 +20260223 092900;208.984000;208.989000;208.970000;208.982000;0 +20260223 093000;208.980000;209.078000;208.980000;209.078000;0 +20260223 093100;209.080000;209.106000;209.033000;209.034000;0 +20260223 093200;209.034000;209.062000;209.018000;209.030000;0 +20260223 093300;209.031000;209.074000;209.031000;209.047000;0 +20260223 093400;209.046000;209.096000;209.042000;209.066000;0 +20260223 093500;209.068000;209.076000;209.028000;209.032000;0 +20260223 093600;209.036000;209.043000;208.991000;209.001000;0 +20260223 093700;209.001000;209.028000;208.985000;209.023000;0 +20260223 093800;209.025000;209.025000;208.993000;209.001000;0 +20260223 093900;209.002000;209.010000;208.987000;208.998000;0 +20260223 094000;208.996000;209.002000;208.965000;208.967000;0 +20260223 094100;208.966000;209.005000;208.966000;208.992000;0 +20260223 094200;208.993000;209.014000;208.970000;209.001000;0 +20260223 094300;209.001000;209.004000;208.955000;208.987000;0 +20260223 094400;208.989000;209.008000;208.974000;209.002000;0 +20260223 094500;209.001000;209.005000;208.979000;208.990000;0 +20260223 094600;208.985000;208.995000;208.939000;208.994000;0 +20260223 094700;208.994000;209.013000;208.978000;209.002000;0 +20260223 094800;209.007000;209.039000;209.003000;209.018000;0 +20260223 094900;209.021000;209.036000;209.006000;209.017000;0 +20260223 095000;209.017000;209.074000;209.009000;209.051000;0 +20260223 095100;209.053000;209.059000;208.989000;208.998000;0 +20260223 095200;208.998000;209.024000;208.965000;209.018000;0 +20260223 095300;209.022000;209.042000;209.007000;209.014000;0 +20260223 095400;209.014000;209.036000;209.013000;209.027000;0 +20260223 095500;209.024000;209.054000;209.024000;209.040000;0 +20260223 095600;209.043000;209.055000;209.012000;209.012000;0 +20260223 095700;209.010000;209.045000;209.000000;209.021000;0 +20260223 095800;209.021000;209.022000;208.983000;208.983000;0 +20260223 095900;208.984000;208.988000;208.945000;208.945000;0 +20260223 100000;208.944000;208.984000;208.939000;208.942000;0 +20260223 100100;208.943000;208.956000;208.912000;208.929000;0 +20260223 100200;208.927000;208.927000;208.887000;208.887000;0 +20260223 100300;208.888000;208.926000;208.873000;208.873000;0 +20260223 100400;208.875000;208.886000;208.810000;208.810000;0 +20260223 100500;208.809000;208.820000;208.768000;208.773000;0 +20260223 100600;208.774000;208.787000;208.751000;208.767000;0 +20260223 100700;208.768000;208.828000;208.755000;208.826000;0 +20260223 100800;208.824000;208.826000;208.784000;208.795000;0 +20260223 100900;208.787000;208.796000;208.741000;208.746000;0 +20260223 101000;208.744000;208.746000;208.709000;208.732000;0 +20260223 101100;208.735000;208.738000;208.691000;208.691000;0 +20260223 101200;208.691000;208.701000;208.666000;208.698000;0 +20260223 101300;208.697000;208.705000;208.667000;208.696000;0 +20260223 101400;208.699000;208.705000;208.678000;208.705000;0 +20260223 101500;208.706000;208.730000;208.701000;208.715000;0 +20260223 101600;208.714000;208.727000;208.698000;208.726000;0 +20260223 101700;208.724000;208.735000;208.699000;208.715000;0 +20260223 101800;208.715000;208.748000;208.713000;208.748000;0 +20260223 101900;208.758000;208.760000;208.703000;208.737000;0 +20260223 102000;208.739000;208.742000;208.696000;208.729000;0 +20260223 102100;208.727000;208.752000;208.718000;208.733000;0 +20260223 102200;208.732000;208.740000;208.715000;208.715000;0 +20260223 102300;208.715000;208.726000;208.697000;208.726000;0 +20260223 102400;208.726000;208.730000;208.704000;208.705000;0 +20260223 102500;208.709000;208.733000;208.706000;208.732000;0 +20260223 102600;208.733000;208.770000;208.722000;208.765000;0 +20260223 102700;208.766000;208.774000;208.736000;208.736000;0 +20260223 102800;208.738000;208.745000;208.685000;208.731000;0 +20260223 102900;208.730000;208.745000;208.710000;208.733000;0 +20260223 103000;208.733000;208.756000;208.710000;208.749000;0 +20260223 103100;208.748000;208.817000;208.727000;208.808000;0 +20260223 103200;208.809000;208.817000;208.788000;208.814000;0 +20260223 103300;208.816000;208.834000;208.764000;208.764000;0 +20260223 103400;208.763000;208.788000;208.726000;208.735000;0 +20260223 103500;208.737000;208.750000;208.704000;208.708000;0 +20260223 103600;208.706000;208.731000;208.695000;208.702000;0 +20260223 103700;208.702000;208.729000;208.699000;208.725000;0 +20260223 103800;208.725000;208.746000;208.716000;208.721000;0 +20260223 103900;208.727000;208.737000;208.714000;208.730000;0 +20260223 104000;208.732000;208.746000;208.714000;208.722000;0 +20260223 104100;208.723000;208.744000;208.679000;208.692000;0 +20260223 104200;208.692000;208.757000;208.671000;208.756000;0 +20260223 104300;208.757000;208.782000;208.751000;208.757000;0 +20260223 104400;208.757000;208.757000;208.661000;208.689000;0 +20260223 104500;208.687000;208.698000;208.638000;208.638000;0 +20260223 104600;208.641000;208.649000;208.599000;208.614000;0 +20260223 104700;208.614000;208.650000;208.564000;208.564000;0 +20260223 104800;208.564000;208.565000;208.522000;208.537000;0 +20260223 104900;208.540000;208.578000;208.526000;208.566000;0 +20260223 105000;208.565000;208.579000;208.487000;208.503000;0 +20260223 105100;208.504000;208.540000;208.482000;208.494000;0 +20260223 105200;208.494000;208.503000;208.314000;208.336000;0 +20260223 105300;208.334000;208.385000;208.329000;208.377000;0 +20260223 105400;208.374000;208.397000;208.364000;208.380000;0 +20260223 105500;208.386000;208.400000;208.348000;208.380000;0 +20260223 105600;208.383000;208.393000;208.351000;208.355000;0 +20260223 105700;208.357000;208.406000;208.346000;208.399000;0 +20260223 105800;208.403000;208.427000;208.393000;208.393000;0 +20260223 105900;208.390000;208.394000;208.373000;208.389000;0 +20260223 110000;208.390000;208.401000;208.372000;208.391000;0 +20260223 110100;208.391000;208.396000;208.358000;208.374000;0 +20260223 110200;208.370000;208.380000;208.289000;208.292000;0 +20260223 110300;208.291000;208.333000;208.282000;208.305000;0 +20260223 110400;208.306000;208.341000;208.235000;208.256000;0 +20260223 110500;208.256000;208.313000;208.256000;208.308000;0 +20260223 110600;208.305000;208.388000;208.301000;208.385000;0 +20260223 110700;208.386000;208.391000;208.370000;208.375000;0 +20260223 110800;208.375000;208.386000;208.347000;208.378000;0 +20260223 110900;208.379000;208.383000;208.346000;208.356000;0 +20260223 111000;208.357000;208.430000;208.348000;208.423000;0 +20260223 111100;208.421000;208.444000;208.418000;208.435000;0 +20260223 111200;208.435000;208.435000;208.395000;208.404000;0 +20260223 111300;208.408000;208.417000;208.390000;208.417000;0 +20260223 111400;208.416000;208.426000;208.369000;208.380000;0 +20260223 111500;208.376000;208.401000;208.358000;208.394000;0 +20260223 111600;208.393000;208.417000;208.377000;208.383000;0 +20260223 111700;208.383000;208.411000;208.376000;208.411000;0 +20260223 111800;208.411000;208.449000;208.410000;208.434000;0 +20260223 111900;208.432000;208.449000;208.421000;208.449000;0 +20260223 112000;208.446000;208.487000;208.446000;208.476000;0 +20260223 112100;208.474000;208.488000;208.458000;208.483000;0 +20260223 112200;208.480000;208.480000;208.440000;208.464000;0 +20260223 112300;208.457000;208.458000;208.428000;208.435000;0 +20260223 112400;208.433000;208.434000;208.397000;208.406000;0 +20260223 112500;208.412000;208.423000;208.377000;208.404000;0 +20260223 112600;208.402000;208.451000;208.402000;208.447000;0 +20260223 112700;208.446000;208.446000;208.429000;208.431000;0 +20260223 112800;208.433000;208.439000;208.407000;208.412000;0 +20260223 112900;208.412000;208.430000;208.408000;208.426000;0 +20260223 113000;208.425000;208.445000;208.414000;208.437000;0 +20260223 113100;208.436000;208.455000;208.424000;208.429000;0 +20260223 113200;208.432000;208.469000;208.424000;208.456000;0 +20260223 113300;208.458000;208.486000;208.443000;208.444000;0 +20260223 113400;208.447000;208.460000;208.441000;208.450000;0 +20260223 113500;208.455000;208.455000;208.410000;208.429000;0 +20260223 113600;208.431000;208.433000;208.396000;208.396000;0 +20260223 113700;208.400000;208.444000;208.400000;208.443000;0 +20260223 113800;208.438000;208.459000;208.435000;208.445000;0 +20260223 113900;208.449000;208.503000;208.441000;208.500000;0 +20260223 114000;208.498000;208.508000;208.461000;208.490000;0 +20260223 114100;208.491000;208.509000;208.468000;208.495000;0 +20260223 114200;208.494000;208.509000;208.450000;208.466000;0 +20260223 114300;208.468000;208.490000;208.453000;208.466000;0 +20260223 114400;208.461000;208.486000;208.455000;208.480000;0 +20260223 114500;208.480000;208.506000;208.471000;208.489000;0 +20260223 114600;208.488000;208.497000;208.484000;208.494000;0 +20260223 114700;208.493000;208.494000;208.458000;208.476000;0 +20260223 114800;208.474000;208.475000;208.427000;208.456000;0 +20260223 114900;208.455000;208.506000;208.454000;208.500000;0 +20260223 115000;208.498000;208.500000;208.481000;208.481000;0 +20260223 115100;208.482000;208.504000;208.475000;208.501000;0 +20260223 115200;208.503000;208.531000;208.497000;208.524000;0 +20260223 115300;208.522000;208.540000;208.511000;208.534000;0 +20260223 115400;208.532000;208.537000;208.514000;208.515000;0 +20260223 115500;208.516000;208.529000;208.506000;208.521000;0 +20260223 115600;208.520000;208.522000;208.471000;208.471000;0 +20260223 115700;208.469000;208.499000;208.437000;208.444000;0 +20260223 115800;208.446000;208.466000;208.428000;208.431000;0 +20260223 115900;208.431000;208.436000;208.402000;208.411000;0 +20260223 120000;208.413000;208.420000;208.379000;208.380000;0 +20260223 120100;208.379000;208.406000;208.374000;208.377000;0 +20260223 120200;208.374000;208.379000;208.347000;208.348000;0 +20260223 120300;208.348000;208.372000;208.348000;208.352000;0 +20260223 120400;208.353000;208.357000;208.314000;208.319000;0 +20260223 120500;208.314000;208.319000;208.274000;208.278000;0 +20260223 120600;208.276000;208.279000;208.226000;208.258000;0 +20260223 120700;208.259000;208.305000;208.247000;208.291000;0 +20260223 120800;208.292000;208.308000;208.282000;208.302000;0 +20260223 120900;208.304000;208.311000;208.279000;208.291000;0 +20260223 121000;208.294000;208.295000;208.257000;208.261000;0 +20260223 121100;208.261000;208.271000;208.239000;208.267000;0 +20260223 121200;208.262000;208.262000;208.227000;208.227000;0 +20260223 121300;208.224000;208.249000;208.214000;208.232000;0 +20260223 121400;208.230000;208.230000;208.176000;208.196000;0 +20260223 121500;208.195000;208.235000;208.188000;208.223000;0 +20260223 121600;208.222000;208.248000;208.222000;208.236000;0 +20260223 121700;208.237000;208.255000;208.224000;208.232000;0 +20260223 121800;208.233000;208.259000;208.223000;208.234000;0 +20260223 121900;208.244000;208.244000;208.213000;208.221000;0 +20260223 122000;208.221000;208.231000;208.204000;208.211000;0 +20260223 122100;208.210000;208.226000;208.197000;208.207000;0 +20260223 122200;208.201000;208.221000;208.197000;208.213000;0 +20260223 122300;208.213000;208.221000;208.196000;208.199000;0 +20260223 122400;208.199000;208.203000;208.165000;208.165000;0 +20260223 122500;208.166000;208.183000;208.157000;208.167000;0 +20260223 122600;208.173000;208.177000;208.144000;208.153000;0 +20260223 122700;208.151000;208.187000;208.151000;208.181000;0 +20260223 122800;208.179000;208.183000;208.166000;208.170000;0 +20260223 122900;208.169000;208.173000;208.155000;208.158000;0 +20260223 123000;208.157000;208.163000;208.139000;208.159000;0 +20260223 123100;208.159000;208.198000;208.159000;208.186000;0 +20260223 123200;208.186000;208.217000;208.186000;208.216000;0 +20260223 123300;208.217000;208.230000;208.208000;208.227000;0 +20260223 123400;208.229000;208.241000;208.226000;208.228000;0 +20260223 123500;208.230000;208.230000;208.189000;208.203000;0 +20260223 123600;208.203000;208.209000;208.175000;208.183000;0 +20260223 123700;208.181000;208.189000;208.161000;208.175000;0 +20260223 123800;208.174000;208.183000;208.161000;208.168000;0 +20260223 123900;208.170000;208.184000;208.170000;208.170000;0 +20260223 124000;208.171000;208.195000;208.163000;208.188000;0 +20260223 124100;208.188000;208.218000;208.176000;208.206000;0 +20260223 124200;208.207000;208.233000;208.197000;208.231000;0 +20260223 124300;208.229000;208.267000;208.229000;208.254000;0 +20260223 124400;208.258000;208.294000;208.235000;208.246000;0 +20260223 124500;208.247000;208.258000;208.235000;208.258000;0 +20260223 124600;208.261000;208.262000;208.236000;208.258000;0 +20260223 124700;208.254000;208.264000;208.238000;208.248000;0 +20260223 124800;208.245000;208.257000;208.231000;208.236000;0 +20260223 124900;208.235000;208.248000;208.229000;208.247000;0 +20260223 125000;208.245000;208.258000;208.233000;208.253000;0 +20260223 125100;208.252000;208.274000;208.252000;208.255000;0 +20260223 125200;208.254000;208.295000;208.254000;208.294000;0 +20260223 125300;208.294000;208.299000;208.281000;208.297000;0 +20260223 125400;208.295000;208.311000;208.285000;208.298000;0 +20260223 125500;208.299000;208.320000;208.280000;208.314000;0 +20260223 125600;208.316000;208.329000;208.303000;208.329000;0 +20260223 125700;208.328000;208.369000;208.316000;208.367000;0 +20260223 125800;208.368000;208.374000;208.348000;208.362000;0 +20260223 125900;208.361000;208.365000;208.337000;208.358000;0 +20260223 130000;208.358000;208.405000;208.350000;208.401000;0 +20260223 130100;208.402000;208.404000;208.365000;208.390000;0 +20260223 130200;208.386000;208.396000;208.366000;208.379000;0 +20260223 130300;208.378000;208.416000;208.378000;208.414000;0 +20260223 130400;208.413000;208.417000;208.407000;208.408000;0 +20260223 130500;208.410000;208.427000;208.405000;208.422000;0 +20260223 130600;208.422000;208.434000;208.416000;208.434000;0 +20260223 130700;208.436000;208.451000;208.422000;208.431000;0 +20260223 130800;208.434000;208.450000;208.433000;208.447000;0 +20260223 130900;208.445000;208.445000;208.427000;208.440000;0 +20260223 131000;208.441000;208.441000;208.430000;208.433000;0 +20260223 131100;208.436000;208.446000;208.417000;208.430000;0 +20260223 131200;208.432000;208.480000;208.426000;208.477000;0 +20260223 131300;208.473000;208.488000;208.469000;208.485000;0 +20260223 131400;208.486000;208.520000;208.485000;208.517000;0 +20260223 131500;208.516000;208.518000;208.476000;208.499000;0 +20260223 131600;208.496000;208.529000;208.491000;208.529000;0 +20260223 131700;208.527000;208.560000;208.523000;208.549000;0 +20260223 131800;208.549000;208.553000;208.541000;208.546000;0 +20260223 131900;208.545000;208.551000;208.537000;208.542000;0 +20260223 132000;208.540000;208.570000;208.538000;208.570000;0 +20260223 132100;208.568000;208.594000;208.564000;208.583000;0 +20260223 132200;208.585000;208.627000;208.585000;208.618000;0 +20260223 132300;208.616000;208.661000;208.600000;208.645000;0 +20260223 132400;208.643000;208.666000;208.643000;208.664000;0 +20260223 132500;208.663000;208.665000;208.646000;208.664000;0 +20260223 132600;208.661000;208.686000;208.637000;208.665000;0 +20260223 132700;208.663000;208.689000;208.662000;208.682000;0 +20260223 132800;208.683000;208.718000;208.682000;208.718000;0 +20260223 132900;208.716000;208.721000;208.699000;208.719000;0 +20260223 133000;208.722000;208.731000;208.707000;208.722000;0 +20260223 133100;208.726000;208.726000;208.701000;208.712000;0 +20260223 133200;208.713000;208.737000;208.713000;208.732000;0 +20260223 133300;208.730000;208.731000;208.699000;208.701000;0 +20260223 133400;208.693000;208.693000;208.670000;208.686000;0 +20260223 133500;208.682000;208.683000;208.659000;208.664000;0 +20260223 133600;208.665000;208.667000;208.638000;208.643000;0 +20260223 133700;208.645000;208.647000;208.627000;208.629000;0 +20260223 133800;208.631000;208.653000;208.625000;208.627000;0 +20260223 133900;208.626000;208.626000;208.591000;208.593000;0 +20260223 134000;208.596000;208.601000;208.576000;208.592000;0 +20260223 134100;208.590000;208.590000;208.553000;208.557000;0 +20260223 134200;208.557000;208.591000;208.555000;208.579000;0 +20260223 134300;208.579000;208.579000;208.545000;208.560000;0 +20260223 134400;208.559000;208.572000;208.557000;208.569000;0 +20260223 134500;208.571000;208.580000;208.565000;208.566000;0 +20260223 134600;208.569000;208.569000;208.547000;208.566000;0 +20260223 134700;208.566000;208.612000;208.559000;208.608000;0 +20260223 134800;208.609000;208.613000;208.592000;208.598000;0 +20260223 134900;208.596000;208.624000;208.596000;208.608000;0 +20260223 135000;208.608000;208.610000;208.583000;208.591000;0 +20260223 135100;208.589000;208.589000;208.573000;208.573000;0 +20260223 135200;208.573000;208.573000;208.544000;208.552000;0 +20260223 135300;208.554000;208.565000;208.539000;208.540000;0 +20260223 135400;208.542000;208.543000;208.526000;208.540000;0 +20260223 135500;208.540000;208.545000;208.516000;208.518000;0 +20260223 135600;208.519000;208.522000;208.484000;208.489000;0 +20260223 135700;208.489000;208.512000;208.488000;208.499000;0 +20260223 135800;208.499000;208.525000;208.499000;208.517000;0 +20260223 135900;208.516000;208.527000;208.510000;208.525000;0 +20260223 140000;208.528000;208.560000;208.522000;208.560000;0 +20260223 140100;208.558000;208.591000;208.558000;208.589000;0 +20260223 140200;208.590000;208.593000;208.577000;208.577000;0 +20260223 140300;208.577000;208.593000;208.567000;208.576000;0 +20260223 140400;208.578000;208.588000;208.565000;208.566000;0 +20260223 140500;208.567000;208.576000;208.563000;208.575000;0 +20260223 140600;208.573000;208.582000;208.564000;208.576000;0 +20260223 140700;208.578000;208.578000;208.541000;208.541000;0 +20260223 140800;208.537000;208.542000;208.530000;208.530000;0 +20260223 140900;208.528000;208.551000;208.528000;208.542000;0 +20260223 141000;208.544000;208.549000;208.535000;208.535000;0 +20260223 141100;208.534000;208.544000;208.532000;208.533000;0 +20260223 141200;208.530000;208.534000;208.525000;208.528000;0 +20260223 141300;208.527000;208.528000;208.513000;208.517000;0 +20260223 141400;208.517000;208.521000;208.508000;208.511000;0 +20260223 141500;208.511000;208.525000;208.507000;208.522000;0 +20260223 141600;208.524000;208.534000;208.509000;208.522000;0 +20260223 141700;208.520000;208.535000;208.517000;208.524000;0 +20260223 141800;208.522000;208.532000;208.518000;208.527000;0 +20260223 141900;208.526000;208.528000;208.511000;208.524000;0 +20260223 142000;208.525000;208.526000;208.510000;208.517000;0 +20260223 142100;208.526000;208.533000;208.517000;208.533000;0 +20260223 142200;208.530000;208.571000;208.530000;208.563000;0 +20260223 142300;208.564000;208.570000;208.537000;208.537000;0 +20260223 142400;208.538000;208.546000;208.534000;208.544000;0 +20260223 142500;208.541000;208.541000;208.509000;208.512000;0 +20260223 142600;208.514000;208.524000;208.509000;208.521000;0 +20260223 142700;208.522000;208.535000;208.511000;208.525000;0 +20260223 142800;208.532000;208.542000;208.528000;208.537000;0 +20260223 142900;208.537000;208.540000;208.521000;208.531000;0 +20260223 143000;208.527000;208.534000;208.521000;208.530000;0 +20260223 143100;208.528000;208.537000;208.496000;208.536000;0 +20260223 143200;208.537000;208.543000;208.524000;208.540000;0 +20260223 143300;208.539000;208.560000;208.535000;208.560000;0 +20260223 143400;208.558000;208.569000;208.545000;208.562000;0 +20260223 143500;208.563000;208.565000;208.546000;208.550000;0 +20260223 143600;208.549000;208.565000;208.549000;208.556000;0 +20260223 143700;208.555000;208.564000;208.554000;208.564000;0 +20260223 143800;208.566000;208.582000;208.554000;208.571000;0 +20260223 143900;208.573000;208.581000;208.568000;208.573000;0 +20260223 144000;208.571000;208.573000;208.544000;208.563000;0 +20260223 144100;208.571000;208.581000;208.565000;208.572000;0 +20260223 144200;208.571000;208.576000;208.555000;208.555000;0 +20260223 144300;208.556000;208.556000;208.541000;208.546000;0 +20260223 144400;208.545000;208.555000;208.526000;208.555000;0 +20260223 144500;208.562000;208.579000;208.556000;208.576000;0 +20260223 144600;208.575000;208.590000;208.556000;208.556000;0 +20260223 144700;208.554000;208.568000;208.549000;208.567000;0 +20260223 144800;208.572000;208.606000;208.572000;208.606000;0 +20260223 144900;208.610000;208.612000;208.592000;208.600000;0 +20260223 145000;208.599000;208.603000;208.583000;208.592000;0 +20260223 145100;208.590000;208.598000;208.558000;208.562000;0 +20260223 145200;208.563000;208.591000;208.562000;208.582000;0 +20260223 145300;208.583000;208.590000;208.574000;208.588000;0 +20260223 145400;208.588000;208.596000;208.578000;208.592000;0 +20260223 145500;208.590000;208.591000;208.571000;208.578000;0 +20260223 145600;208.578000;208.606000;208.578000;208.604000;0 +20260223 145700;208.603000;208.624000;208.585000;208.588000;0 +20260223 145800;208.587000;208.588000;208.566000;208.571000;0 +20260223 145900;208.573000;208.578000;208.556000;208.566000;0 +20260223 150000;208.560000;208.586000;208.559000;208.585000;0 +20260223 150100;208.586000;208.588000;208.566000;208.581000;0 +20260223 150200;208.583000;208.595000;208.576000;208.583000;0 +20260223 150300;208.582000;208.585000;208.568000;208.578000;0 +20260223 150400;208.576000;208.594000;208.575000;208.592000;0 +20260223 150500;208.595000;208.596000;208.569000;208.580000;0 +20260223 150600;208.574000;208.584000;208.570000;208.581000;0 +20260223 150700;208.580000;208.587000;208.572000;208.586000;0 +20260223 150800;208.586000;208.595000;208.582000;208.583000;0 +20260223 150900;208.583000;208.596000;208.583000;208.596000;0 +20260223 151000;208.597000;208.597000;208.585000;208.594000;0 +20260223 151100;208.594000;208.603000;208.588000;208.588000;0 +20260223 151200;208.589000;208.591000;208.580000;208.584000;0 +20260223 151300;208.581000;208.581000;208.569000;208.569000;0 +20260223 151400;208.571000;208.582000;208.571000;208.582000;0 +20260223 151500;208.582000;208.600000;208.581000;208.591000;0 +20260223 151600;208.591000;208.595000;208.588000;208.593000;0 +20260223 151700;208.595000;208.606000;208.593000;208.605000;0 +20260223 151800;208.606000;208.624000;208.598000;208.617000;0 +20260223 151900;208.618000;208.621000;208.612000;208.619000;0 +20260223 152000;208.618000;208.621000;208.617000;208.619000;0 +20260223 152100;208.617000;208.649000;208.617000;208.649000;0 +20260223 152200;208.659000;208.672000;208.656000;208.669000;0 +20260223 152300;208.671000;208.671000;208.662000;208.669000;0 +20260223 152400;208.667000;208.671000;208.652000;208.671000;0 +20260223 152500;208.672000;208.688000;208.668000;208.688000;0 +20260223 152600;208.686000;208.689000;208.681000;208.682000;0 +20260223 152700;208.683000;208.696000;208.676000;208.680000;0 +20260223 152800;208.678000;208.701000;208.678000;208.699000;0 +20260223 152900;208.700000;208.705000;208.686000;208.686000;0 +20260223 153000;208.685000;208.710000;208.682000;208.695000;0 +20260223 153100;208.693000;208.698000;208.683000;208.685000;0 +20260223 153200;208.685000;208.697000;208.676000;208.693000;0 +20260223 153300;208.694000;208.701000;208.686000;208.700000;0 +20260223 153400;208.700000;208.700000;208.684000;208.700000;0 +20260223 153500;208.698000;208.711000;208.694000;208.696000;0 +20260223 153600;208.697000;208.718000;208.696000;208.715000;0 +20260223 153700;208.715000;208.715000;208.698000;208.704000;0 +20260223 153800;208.703000;208.710000;208.703000;208.710000;0 +20260223 153900;208.708000;208.708000;208.696000;208.699000;0 +20260223 154000;208.697000;208.707000;208.690000;208.694000;0 +20260223 154100;208.693000;208.694000;208.688000;208.688000;0 +20260223 154200;208.689000;208.689000;208.665000;208.668000;0 +20260223 154300;208.668000;208.675000;208.662000;208.672000;0 +20260223 154400;208.674000;208.676000;208.668000;208.671000;0 +20260223 154500;208.669000;208.672000;208.664000;208.664000;0 +20260223 154600;208.664000;208.678000;208.650000;208.650000;0 +20260223 154700;208.652000;208.678000;208.652000;208.672000;0 +20260223 154800;208.674000;208.711000;208.673000;208.711000;0 +20260223 154900;208.711000;208.711000;208.707000;208.708000;0 +20260223 155000;208.710000;208.726000;208.710000;208.713000;0 +20260223 155100;208.714000;208.721000;208.708000;208.718000;0 +20260223 155200;208.720000;208.720000;208.710000;208.712000;0 +20260223 155300;208.714000;208.716000;208.692000;208.696000;0 +20260223 155400;208.695000;208.695000;208.665000;208.677000;0 +20260223 155500;208.676000;208.696000;208.674000;208.690000;0 +20260223 155600;208.687000;208.704000;208.682000;208.704000;0 +20260223 155700;208.702000;208.730000;208.700000;208.711000;0 +20260223 155800;208.709000;208.731000;208.706000;208.725000;0 +20260223 155900;208.724000;208.729000;208.709000;208.727000;0 +20260223 160000;208.721000;208.730000;208.718000;208.721000;0 +20260223 160100;208.717000;208.733000;208.713000;208.732000;0 +20260223 160200;208.729000;208.731000;208.712000;208.726000;0 +20260223 160300;208.727000;208.732000;208.721000;208.731000;0 +20260223 160400;208.730000;208.744000;208.728000;208.743000;0 +20260223 160500;208.743000;208.743000;208.729000;208.742000;0 +20260223 160600;208.739000;208.753000;208.733000;208.753000;0 +20260223 160700;208.753000;208.764000;208.741000;208.749000;0 +20260223 160800;208.749000;208.754000;208.733000;208.738000;0 +20260223 160900;208.741000;208.741000;208.725000;208.726000;0 +20260223 161000;208.729000;208.733000;208.729000;208.731000;0 +20260223 161100;208.734000;208.747000;208.722000;208.747000;0 +20260223 161200;208.748000;208.754000;208.744000;208.748000;0 +20260223 161300;208.748000;208.751000;208.745000;208.745000;0 +20260223 161400;208.749000;208.774000;208.747000;208.766000;0 +20260223 161500;208.764000;208.780000;208.764000;208.767000;0 +20260223 161600;208.758000;208.758000;208.750000;208.750000;0 +20260223 161700;208.748000;208.749000;208.718000;208.718000;0 +20260223 161800;208.715000;208.726000;208.715000;208.722000;0 +20260223 161900;208.721000;208.725000;208.718000;208.720000;0 +20260223 162000;208.721000;208.746000;208.721000;208.740000;0 +20260223 162100;208.742000;208.749000;208.736000;208.747000;0 +20260223 162200;208.748000;208.757000;208.742000;208.756000;0 +20260223 162300;208.756000;208.756000;208.749000;208.750000;0 +20260223 162400;208.751000;208.766000;208.749000;208.764000;0 +20260223 162500;208.762000;208.768000;208.755000;208.755000;0 +20260223 162600;208.751000;208.777000;208.742000;208.777000;0 +20260223 162700;208.776000;208.802000;208.775000;208.802000;0 +20260223 162800;208.798000;208.799000;208.787000;208.798000;0 +20260223 162900;208.800000;208.800000;208.787000;208.797000;0 +20260223 163000;208.799000;208.829000;208.799000;208.829000;0 +20260223 163100;208.826000;208.832000;208.826000;208.831000;0 +20260223 163200;208.828000;208.841000;208.823000;208.834000;0 +20260223 163300;208.835000;208.839000;208.826000;208.830000;0 +20260223 163400;208.828000;208.838000;208.817000;208.829000;0 +20260223 163500;208.830000;208.832000;208.815000;208.822000;0 +20260223 163600;208.819000;208.822000;208.811000;208.819000;0 +20260223 163700;208.826000;208.827000;208.821000;208.824000;0 +20260223 163800;208.823000;208.856000;208.813000;208.839000;0 +20260223 163900;208.844000;208.857000;208.830000;208.831000;0 +20260223 164000;208.828000;208.834000;208.827000;208.829000;0 +20260223 164100;208.827000;208.833000;208.821000;208.821000;0 +20260223 164200;208.822000;208.822000;208.813000;208.822000;0 +20260223 164300;208.824000;208.826000;208.815000;208.826000;0 +20260223 164400;208.824000;208.833000;208.823000;208.830000;0 +20260223 164500;208.834000;208.834000;208.824000;208.824000;0 +20260223 164600;208.827000;208.834000;208.827000;208.829000;0 +20260223 164700;208.827000;208.831000;208.825000;208.828000;0 +20260223 164800;208.827000;208.834000;208.824000;208.826000;0 +20260223 164900;208.824000;208.826000;208.787000;208.796000;0 +20260223 165000;208.801000;208.811000;208.799000;208.811000;0 +20260223 165100;208.810000;208.815000;208.805000;208.813000;0 +20260223 165200;208.810000;208.811000;208.784000;208.795000;0 +20260223 165300;208.791000;208.794000;208.769000;208.787000;0 +20260223 165400;208.793000;208.793000;208.753000;208.754000;0 +20260223 165500;208.750000;208.780000;208.728000;208.737000;0 +20260223 165600;208.741000;208.745000;208.650000;208.673000;0 +20260223 165700;208.669000;208.682000;208.613000;208.615000;0 +20260223 165800;208.615000;208.650000;208.609000;208.633000;0 +20260223 165900;208.636000;208.665000;208.557000;208.557000;0 +20260223 170000;208.554000;208.554000;208.535000;208.535000;0 +20260223 170500;208.450000;208.450000;208.449000;208.450000;0 +20260223 170600;208.449000;208.472000;208.448000;208.471000;0 +20260223 170700;208.472000;208.473000;208.471000;208.473000;0 +20260223 170800;208.475000;208.475000;208.470000;208.471000;0 +20260223 170900;208.471000;208.471000;208.457000;208.466000;0 +20260223 171000;208.464000;208.476000;208.464000;208.476000;0 +20260223 171100;208.474000;208.481000;208.474000;208.480000;0 +20260223 171200;208.480000;208.481000;208.480000;208.480000;0 +20260223 171300;208.480000;208.489000;208.477000;208.478000;0 +20260223 171400;208.477000;208.489000;208.477000;208.477000;0 +20260223 171500;208.477000;208.489000;208.467000;208.467000;0 +20260223 171600;208.481000;208.511000;208.468000;208.468000;0 +20260223 171700;208.484000;208.489000;208.468000;208.480000;0 +20260223 171800;208.485000;208.488000;208.468000;208.488000;0 +20260223 171900;208.474000;208.501000;208.474000;208.500000;0 +20260223 172000;208.500000;208.531000;208.500000;208.531000;0 +20260223 172100;208.530000;208.548000;208.524000;208.547000;0 +20260223 172200;208.547000;208.548000;208.524000;208.524000;0 +20260223 172300;208.524000;208.525000;208.524000;208.525000;0 +20260223 172400;208.524000;208.535000;208.524000;208.524000;0 +20260223 172500;208.524000;208.537000;208.518000;208.520000;0 +20260223 172600;208.491000;208.503000;208.473000;208.473000;0 +20260223 172700;208.483000;208.510000;208.473000;208.500000;0 +20260223 172800;208.500000;208.511000;208.500000;208.500000;0 +20260223 172900;208.501000;208.501000;208.485000;208.485000;0 +20260223 173000;208.486000;208.545000;208.486000;208.539000;0 +20260223 173100;208.535000;208.554000;208.516000;208.530000;0 +20260223 173200;208.553000;208.563000;208.521000;208.560000;0 +20260223 173300;208.544000;208.571000;208.536000;208.567000;0 +20260223 173400;208.534000;208.574000;208.530000;208.567000;0 +20260223 173500;208.571000;208.588000;208.536000;208.574000;0 +20260223 173600;208.574000;208.584000;208.568000;208.582000;0 +20260223 173700;208.582000;208.586000;208.570000;208.580000;0 +20260223 173800;208.580000;208.585000;208.549000;208.579000;0 +20260223 173900;208.580000;208.587000;208.579000;208.583000;0 +20260223 174000;208.584000;208.588000;208.566000;208.584000;0 +20260223 174100;208.584000;208.591000;208.567000;208.587000;0 +20260223 174200;208.589000;208.599000;208.567000;208.574000;0 +20260223 174300;208.583000;208.591000;208.534000;208.578000;0 +20260223 174400;208.580000;208.594000;208.566000;208.577000;0 +20260223 174500;208.578000;208.591000;208.558000;208.572000;0 +20260223 174600;208.572000;208.585000;208.541000;208.564000;0 +20260223 174700;208.565000;208.576000;208.540000;208.548000;0 +20260223 174800;208.547000;208.564000;208.536000;208.539000;0 +20260223 174900;208.539000;208.559000;208.537000;208.539000;0 +20260223 175000;208.541000;208.568000;208.535000;208.541000;0 +20260223 175100;208.541000;208.549000;208.535000;208.546000;0 +20260223 175200;208.548000;208.550000;208.522000;208.548000;0 +20260223 175300;208.548000;208.557000;208.532000;208.557000;0 +20260223 175400;208.558000;208.567000;208.550000;208.565000;0 +20260223 175500;208.566000;208.573000;208.555000;208.561000;0 +20260223 175600;208.561000;208.566000;208.523000;208.531000;0 +20260223 175700;208.525000;208.584000;208.523000;208.548000;0 +20260223 175800;208.549000;208.558000;208.521000;208.533000;0 +20260223 175900;208.534000;208.555000;208.492000;208.525000;0 +20260223 180000;208.519000;208.573000;208.519000;208.564000;0 +20260223 180100;208.580000;208.591000;208.568000;208.591000;0 +20260223 180200;208.588000;208.594000;208.559000;208.560000;0 +20260223 180300;208.553000;208.557000;208.538000;208.551000;0 +20260223 180400;208.553000;208.560000;208.551000;208.560000;0 +20260223 180500;208.558000;208.561000;208.540000;208.544000;0 +20260223 180600;208.551000;208.581000;208.551000;208.581000;0 +20260223 180700;208.584000;208.589000;208.576000;208.576000;0 +20260223 180800;208.578000;208.596000;208.578000;208.585000;0 +20260223 180900;208.586000;208.586000;208.575000;208.580000;0 +20260223 181000;208.579000;208.588000;208.578000;208.587000;0 +20260223 181100;208.587000;208.618000;208.575000;208.618000;0 +20260223 181200;208.613000;208.623000;208.610000;208.623000;0 +20260223 181300;208.621000;208.621000;208.614000;208.615000;0 +20260223 181400;208.600000;208.639000;208.599000;208.626000;0 +20260223 181500;208.628000;208.634000;208.610000;208.634000;0 +20260223 181600;208.627000;208.643000;208.620000;208.642000;0 +20260223 181700;208.631000;208.631000;208.619000;208.619000;0 +20260223 181800;208.622000;208.628000;208.622000;208.626000;0 +20260223 181900;208.624000;208.627000;208.609000;208.618000;0 +20260223 182000;208.619000;208.628000;208.614000;208.627000;0 +20260223 182100;208.635000;208.635000;208.626000;208.628000;0 +20260223 182200;208.629000;208.642000;208.626000;208.638000;0 +20260223 182300;208.636000;208.649000;208.630000;208.645000;0 +20260223 182400;208.647000;208.654000;208.632000;208.653000;0 +20260223 182500;208.658000;208.663000;208.646000;208.662000;0 +20260223 182600;208.662000;208.664000;208.658000;208.662000;0 +20260223 182700;208.662000;208.662000;208.656000;208.659000;0 +20260223 182800;208.659000;208.663000;208.659000;208.660000;0 +20260223 182900;208.662000;208.678000;208.662000;208.677000;0 +20260223 183000;208.677000;208.677000;208.664000;208.667000;0 +20260223 183100;208.667000;208.681000;208.667000;208.678000;0 +20260223 183200;208.683000;208.690000;208.677000;208.689000;0 +20260223 183300;208.689000;208.702000;208.686000;208.695000;0 +20260223 183400;208.691000;208.750000;208.690000;208.748000;0 +20260223 183500;208.755000;208.755000;208.735000;208.738000;0 +20260223 183600;208.741000;208.741000;208.648000;208.707000;0 +20260223 183700;208.707000;208.714000;208.695000;208.698000;0 +20260223 183800;208.697000;208.701000;208.659000;208.670000;0 +20260223 183900;208.670000;208.679000;208.659000;208.676000;0 +20260223 184000;208.681000;208.689000;208.668000;208.673000;0 +20260223 184100;208.669000;208.670000;208.629000;208.632000;0 +20260223 184200;208.632000;208.642000;208.564000;208.590000;0 +20260223 184300;208.590000;208.646000;208.573000;208.632000;0 +20260223 184400;208.633000;208.641000;208.609000;208.634000;0 +20260223 184500;208.648000;208.676000;208.645000;208.659000;0 +20260223 184600;208.663000;208.735000;208.663000;208.723000;0 +20260223 184700;208.725000;208.746000;208.711000;208.746000;0 +20260223 184800;208.741000;208.741000;208.708000;208.727000;0 +20260223 184900;208.731000;208.731000;208.719000;208.723000;0 +20260223 185000;208.728000;208.739000;208.667000;208.671000;0 +20260223 185100;208.669000;208.684000;208.633000;208.675000;0 +20260223 185200;208.676000;208.715000;208.659000;208.715000;0 +20260223 185300;208.710000;208.716000;208.670000;208.693000;0 +20260223 185400;208.694000;208.722000;208.693000;208.705000;0 +20260223 185500;208.705000;208.709000;208.671000;208.707000;0 +20260223 185600;208.707000;208.719000;208.706000;208.715000;0 +20260223 185700;208.716000;208.745000;208.714000;208.742000;0 +20260223 185800;208.746000;208.746000;208.699000;208.734000;0 +20260223 185900;208.733000;208.746000;208.719000;208.719000;0 +20260223 190000;208.720000;208.740000;208.691000;208.713000;0 +20260223 190100;208.713000;208.774000;208.700000;208.765000;0 +20260223 190200;208.765000;208.777000;208.745000;208.761000;0 +20260223 190300;208.770000;208.778000;208.761000;208.767000;0 +20260223 190400;208.767000;208.807000;208.767000;208.801000;0 +20260223 190500;208.802000;208.832000;208.788000;208.818000;0 +20260223 190600;208.818000;208.823000;208.789000;208.807000;0 +20260223 190700;208.804000;208.819000;208.804000;208.817000;0 +20260223 190800;208.816000;208.824000;208.796000;208.800000;0 +20260223 190900;208.802000;208.827000;208.793000;208.817000;0 +20260223 191000;208.819000;208.855000;208.815000;208.818000;0 +20260223 191100;208.816000;208.844000;208.816000;208.844000;0 +20260223 191200;208.843000;208.862000;208.843000;208.853000;0 +20260223 191300;208.853000;208.855000;208.840000;208.855000;0 +20260223 191400;208.856000;208.881000;208.853000;208.874000;0 +20260223 191500;208.875000;208.895000;208.874000;208.874000;0 +20260223 191600;208.870000;208.870000;208.830000;208.853000;0 +20260223 191700;208.855000;208.881000;208.850000;208.881000;0 +20260223 191800;208.882000;208.896000;208.879000;208.886000;0 +20260223 191900;208.884000;208.915000;208.884000;208.913000;0 +20260223 192000;208.911000;208.914000;208.899000;208.910000;0 +20260223 192100;208.911000;208.911000;208.883000;208.888000;0 +20260223 192200;208.888000;208.895000;208.864000;208.867000;0 +20260223 192300;208.872000;208.875000;208.849000;208.851000;0 +20260223 192400;208.852000;208.857000;208.846000;208.848000;0 +20260223 192500;208.847000;208.859000;208.844000;208.857000;0 +20260223 192600;208.856000;208.859000;208.844000;208.844000;0 +20260223 192700;208.841000;208.850000;208.786000;208.786000;0 +20260223 192800;208.787000;208.798000;208.785000;208.797000;0 +20260223 192900;208.797000;208.809000;208.772000;208.772000;0 +20260223 193000;208.772000;208.803000;208.759000;208.796000;0 +20260223 193100;208.788000;208.809000;208.780000;208.806000;0 +20260223 193200;208.806000;208.832000;208.797000;208.814000;0 +20260223 193300;208.820000;208.840000;208.814000;208.825000;0 +20260223 193400;208.826000;208.832000;208.802000;208.830000;0 +20260223 193500;208.834000;208.866000;208.834000;208.861000;0 +20260223 193600;208.863000;208.885000;208.857000;208.882000;0 +20260223 193700;208.888000;208.897000;208.854000;208.861000;0 +20260223 193800;208.856000;208.876000;208.846000;208.867000;0 +20260223 193900;208.870000;208.883000;208.861000;208.875000;0 +20260223 194000;208.876000;208.881000;208.853000;208.860000;0 +20260223 194100;208.861000;208.869000;208.856000;208.863000;0 +20260223 194200;208.863000;208.863000;208.827000;208.840000;0 +20260223 194300;208.838000;208.870000;208.838000;208.852000;0 +20260223 194400;208.850000;208.858000;208.836000;208.842000;0 +20260223 194500;208.839000;208.855000;208.828000;208.842000;0 +20260223 194600;208.840000;208.861000;208.834000;208.857000;0 +20260223 194700;208.861000;208.869000;208.851000;208.861000;0 +20260223 194800;208.857000;208.881000;208.856000;208.858000;0 +20260223 194900;208.856000;208.883000;208.855000;208.866000;0 +20260223 195000;208.864000;208.872000;208.844000;208.866000;0 +20260223 195100;208.863000;208.897000;208.858000;208.897000;0 +20260223 195200;208.896000;208.902000;208.870000;208.885000;0 +20260223 195300;208.884000;208.912000;208.859000;208.904000;0 +20260223 195400;208.905000;208.931000;208.893000;208.913000;0 +20260223 195500;208.920000;208.927000;208.872000;208.923000;0 +20260223 195600;208.922000;208.948000;208.920000;208.941000;0 +20260223 195700;208.939000;208.957000;208.933000;208.948000;0 +20260223 195800;208.945000;208.965000;208.945000;208.950000;0 +20260223 195900;208.948000;208.986000;208.944000;208.979000;0 +20260223 200000;208.977000;208.985000;208.913000;208.982000;0 +20260223 200100;208.983000;209.010000;208.971000;209.004000;0 +20260223 200200;209.000000;209.041000;208.990000;209.030000;0 +20260223 200300;209.026000;209.045000;209.024000;209.029000;0 +20260223 200400;209.032000;209.042000;209.007000;209.007000;0 +20260223 200500;209.006000;209.029000;208.985000;208.988000;0 +20260223 200600;208.990000;209.001000;208.977000;208.989000;0 +20260223 200700;208.989000;208.997000;208.975000;208.995000;0 +20260223 200800;208.994000;209.007000;208.978000;209.001000;0 +20260223 200900;208.995000;209.004000;208.989000;209.001000;0 +20260223 201000;209.003000;209.004000;208.964000;208.967000;0 +20260223 201100;208.966000;208.987000;208.959000;208.959000;0 +20260223 201200;208.958000;208.978000;208.958000;208.959000;0 +20260223 201300;208.959000;208.966000;208.945000;208.955000;0 +20260223 201400;208.953000;208.978000;208.937000;208.961000;0 +20260223 201500;208.962000;208.993000;208.955000;208.956000;0 +20260223 201600;208.955000;208.974000;208.933000;208.951000;0 +20260223 201700;208.952000;208.993000;208.952000;208.982000;0 +20260223 201800;208.978000;209.010000;208.977000;208.994000;0 +20260223 201900;208.990000;209.021000;208.990000;209.010000;0 +20260223 202000;209.009000;209.014000;208.995000;209.000000;0 +20260223 202100;209.001000;209.030000;209.001000;209.021000;0 +20260223 202200;209.020000;209.124000;209.016000;209.069000;0 +20260223 202300;209.064000;209.142000;209.042000;209.119000;0 +20260223 202400;209.117000;209.129000;209.088000;209.112000;0 +20260223 202500;209.108000;209.126000;209.061000;209.076000;0 +20260223 202600;209.084000;209.104000;209.070000;209.074000;0 +20260223 202700;209.077000;209.107000;209.074000;209.089000;0 +20260223 202800;209.089000;209.101000;209.054000;209.057000;0 +20260223 202900;209.052000;209.087000;209.048000;209.087000;0 +20260223 203000;209.085000;209.094000;209.052000;209.065000;0 +20260223 203100;209.060000;209.077000;209.037000;209.064000;0 +20260223 203200;209.065000;209.104000;209.065000;209.087000;0 +20260223 203300;209.088000;209.093000;209.040000;209.041000;0 +20260223 203400;209.040000;209.069000;209.040000;209.064000;0 +20260223 203500;209.065000;209.067000;209.030000;209.038000;0 +20260223 203600;209.037000;209.049000;209.035000;209.037000;0 +20260223 203700;209.035000;209.035000;209.015000;209.024000;0 +20260223 203800;209.021000;209.041000;209.012000;209.013000;0 +20260223 203900;209.013000;209.013000;208.990000;209.001000;0 +20260223 204000;209.003000;209.048000;208.995000;209.045000;0 +20260223 204100;209.045000;209.088000;209.045000;209.082000;0 +20260223 204200;209.081000;209.118000;209.081000;209.108000;0 +20260223 204300;209.107000;209.126000;209.099000;209.117000;0 +20260223 204400;209.119000;209.126000;209.061000;209.077000;0 +20260223 204500;209.075000;209.082000;209.043000;209.054000;0 +20260223 204600;209.061000;209.067000;209.031000;209.035000;0 +20260223 204700;209.034000;209.037000;209.016000;209.030000;0 +20260223 204800;209.028000;209.029000;208.991000;209.002000;0 +20260223 204900;209.001000;209.022000;208.981000;209.014000;0 +20260223 205000;209.018000;209.033000;209.014000;209.019000;0 +20260223 205100;209.021000;209.037000;209.021000;209.032000;0 +20260223 205200;209.031000;209.039000;208.999000;209.007000;0 +20260223 205300;209.008000;209.012000;208.991000;209.010000;0 +20260223 205400;209.008000;209.045000;208.985000;209.021000;0 +20260223 205500;209.019000;209.040000;209.015000;209.034000;0 +20260223 205600;209.033000;209.077000;209.033000;209.073000;0 +20260223 205700;209.074000;209.102000;209.074000;209.098000;0 +20260223 205800;209.098000;209.112000;209.084000;209.093000;0 +20260223 205900;209.091000;209.103000;209.063000;209.063000;0 +20260223 210000;209.067000;209.096000;209.055000;209.058000;0 +20260223 210100;209.056000;209.071000;208.979000;209.052000;0 +20260223 210200;209.052000;209.062000;209.005000;209.013000;0 +20260223 210300;209.015000;209.015000;208.981000;208.999000;0 +20260223 210400;208.999000;209.005000;208.962000;208.969000;0 +20260223 210500;208.972000;208.977000;208.936000;208.949000;0 +20260223 210600;208.953000;208.973000;208.950000;208.958000;0 +20260223 210700;208.956000;208.993000;208.956000;208.993000;0 +20260223 210800;208.995000;209.015000;208.990000;209.015000;0 +20260223 210900;209.014000;209.015000;208.986000;209.006000;0 +20260223 211000;209.004000;209.033000;209.003000;209.014000;0 +20260223 211100;209.018000;209.026000;209.014000;209.020000;0 +20260223 211200;209.022000;209.078000;209.019000;209.054000;0 +20260223 211300;209.052000;209.078000;209.039000;209.067000;0 +20260223 211400;209.068000;209.085000;209.065000;209.080000;0 +20260223 211500;209.078000;209.136000;209.075000;209.136000;0 +20260223 211600;209.133000;209.154000;209.130000;209.134000;0 +20260223 211700;209.135000;209.140000;209.096000;209.130000;0 +20260223 211800;209.128000;209.147000;209.122000;209.129000;0 +20260223 211900;209.130000;209.140000;209.117000;209.136000;0 +20260223 212000;209.139000;209.154000;209.126000;209.127000;0 +20260223 212100;209.126000;209.152000;209.126000;209.141000;0 +20260223 212200;209.146000;209.152000;209.112000;209.112000;0 +20260223 212300;209.113000;209.149000;209.113000;209.148000;0 +20260223 212400;209.149000;209.174000;209.127000;209.167000;0 +20260223 212500;209.166000;209.209000;209.163000;209.202000;0 +20260223 212600;209.209000;209.230000;209.204000;209.223000;0 +20260223 212700;209.225000;209.227000;209.203000;209.203000;0 +20260223 212800;209.208000;209.209000;209.153000;209.157000;0 +20260223 212900;209.157000;209.208000;209.156000;209.204000;0 +20260223 213000;209.207000;209.218000;209.174000;209.188000;0 +20260223 213100;209.191000;209.220000;209.181000;209.207000;0 +20260223 213200;209.207000;209.220000;209.203000;209.206000;0 +20260223 213300;209.208000;209.242000;209.208000;209.234000;0 +20260223 213400;209.231000;209.231000;209.197000;209.200000;0 +20260223 213500;209.199000;209.204000;209.184000;209.191000;0 +20260223 213600;209.192000;209.192000;209.159000;209.189000;0 +20260223 213700;209.187000;209.189000;209.182000;209.184000;0 +20260223 213800;209.185000;209.185000;209.172000;209.173000;0 +20260223 213900;209.175000;209.181000;209.169000;209.178000;0 +20260223 214000;209.179000;209.185000;209.167000;209.167000;0 +20260223 214100;209.168000;209.184000;209.167000;209.180000;0 +20260223 214200;209.179000;209.192000;209.171000;209.171000;0 +20260223 214300;209.171000;209.180000;209.163000;209.169000;0 +20260223 214400;209.167000;209.167000;209.147000;209.150000;0 +20260223 214500;209.151000;209.154000;209.125000;209.135000;0 +20260223 214600;209.133000;209.141000;209.124000;209.129000;0 +20260223 214700;209.132000;209.132000;209.085000;209.089000;0 +20260223 214800;209.087000;209.100000;209.085000;209.100000;0 +20260223 214900;209.094000;209.103000;209.077000;209.078000;0 +20260223 215000;209.079000;209.088000;209.079000;209.081000;0 +20260223 215100;209.083000;209.092000;209.075000;209.076000;0 +20260223 215200;209.073000;209.092000;209.056000;209.073000;0 +20260223 215300;209.075000;209.078000;209.059000;209.070000;0 +20260223 215400;209.070000;209.103000;209.056000;209.096000;0 +20260223 215500;209.097000;209.116000;209.097000;209.103000;0 +20260223 215600;209.098000;209.122000;209.092000;209.120000;0 +20260223 215700;209.121000;209.145000;209.111000;209.132000;0 +20260223 215800;209.133000;209.141000;209.112000;209.114000;0 +20260223 215900;209.117000;209.118000;209.098000;209.104000;0 +20260223 220000;209.103000;209.113000;209.091000;209.103000;0 +20260223 220100;209.102000;209.118000;209.084000;209.094000;0 +20260223 220200;209.093000;209.096000;209.080000;209.085000;0 +20260223 220300;209.085000;209.090000;209.073000;209.080000;0 +20260223 220400;209.079000;209.106000;209.075000;209.103000;0 +20260223 220500;209.105000;209.119000;209.100000;209.116000;0 +20260223 220600;209.121000;209.121000;209.107000;209.118000;0 +20260223 220700;209.120000;209.128000;209.112000;209.124000;0 +20260223 220800;209.122000;209.129000;209.104000;209.113000;0 +20260223 220900;209.112000;209.128000;209.098000;209.126000;0 +20260223 221000;209.124000;209.151000;209.123000;209.142000;0 +20260223 221100;209.146000;209.164000;209.123000;209.123000;0 +20260223 221200;209.124000;209.135000;209.112000;209.115000;0 +20260223 221300;209.116000;209.123000;209.115000;209.119000;0 +20260223 221400;209.125000;209.133000;209.125000;209.125000;0 +20260223 221500;209.124000;209.127000;209.104000;209.114000;0 +20260223 221600;209.115000;209.144000;209.114000;209.140000;0 +20260223 221700;209.138000;209.146000;209.132000;209.132000;0 +20260223 221800;209.130000;209.133000;209.127000;209.131000;0 +20260223 221900;209.135000;209.150000;209.133000;209.150000;0 +20260223 222000;209.148000;209.166000;209.146000;209.156000;0 +20260223 222100;209.156000;209.156000;209.136000;209.141000;0 +20260223 222200;209.143000;209.177000;209.142000;209.176000;0 +20260223 222300;209.177000;209.177000;209.166000;209.170000;0 +20260223 222400;209.175000;209.177000;209.159000;209.167000;0 +20260223 222500;209.168000;209.176000;209.151000;209.151000;0 +20260223 222600;209.152000;209.152000;209.132000;209.147000;0 +20260223 222700;209.148000;209.154000;209.140000;209.142000;0 +20260223 222800;209.142000;209.179000;209.141000;209.178000;0 +20260223 222900;209.177000;209.181000;209.172000;209.172000;0 +20260223 223000;209.171000;209.175000;209.151000;209.162000;0 +20260223 223100;209.162000;209.169000;209.149000;209.150000;0 +20260223 223200;209.151000;209.167000;209.147000;209.159000;0 +20260223 223300;209.166000;209.208000;209.159000;209.201000;0 +20260223 223400;209.201000;209.204000;209.177000;209.181000;0 +20260223 223500;209.182000;209.194000;209.182000;209.189000;0 +20260223 223600;209.190000;209.199000;209.187000;209.187000;0 +20260223 223700;209.187000;209.190000;209.178000;209.184000;0 +20260223 223800;209.183000;209.202000;209.180000;209.194000;0 +20260223 223900;209.194000;209.208000;209.193000;209.207000;0 +20260223 224000;209.208000;209.208000;209.173000;209.180000;0 +20260223 224100;209.182000;209.206000;209.180000;209.195000;0 +20260223 224200;209.195000;209.210000;209.191000;209.201000;0 +20260223 224300;209.198000;209.203000;209.177000;209.187000;0 +20260223 224400;209.190000;209.198000;209.173000;209.182000;0 +20260223 224500;209.183000;209.183000;209.171000;209.174000;0 +20260223 224600;209.176000;209.184000;209.171000;209.171000;0 +20260223 224700;209.174000;209.186000;209.151000;209.161000;0 +20260223 224800;209.157000;209.176000;209.157000;209.174000;0 +20260223 224900;209.175000;209.196000;209.175000;209.194000;0 +20260223 225000;209.195000;209.195000;209.183000;209.186000;0 +20260223 225100;209.182000;209.210000;209.182000;209.196000;0 +20260223 225200;209.197000;209.224000;209.197000;209.221000;0 +20260223 225300;209.215000;209.233000;209.209000;209.232000;0 +20260223 225400;209.236000;209.238000;209.214000;209.219000;0 +20260223 225500;209.219000;209.224000;209.209000;209.217000;0 +20260223 225600;209.212000;209.228000;209.208000;209.227000;0 +20260223 225700;209.229000;209.238000;209.217000;209.228000;0 +20260223 225800;209.234000;209.239000;209.193000;209.201000;0 +20260223 225900;209.200000;209.225000;209.200000;209.220000;0 +20260223 230000;209.222000;209.224000;209.182000;209.199000;0 +20260223 230100;209.206000;209.215000;209.195000;209.208000;0 +20260223 230200;209.211000;209.214000;209.177000;209.191000;0 +20260223 230300;209.186000;209.221000;209.183000;209.221000;0 +20260223 230400;209.216000;209.231000;209.211000;209.220000;0 +20260223 230500;209.219000;209.281000;209.219000;209.264000;0 +20260223 230600;209.263000;209.263000;209.234000;209.242000;0 +20260223 230700;209.241000;209.258000;209.233000;209.257000;0 +20260223 230800;209.257000;209.276000;209.255000;209.255000;0 +20260223 230900;209.254000;209.255000;209.231000;209.235000;0 +20260223 231000;209.231000;209.243000;209.231000;209.243000;0 +20260223 231100;209.241000;209.241000;209.229000;209.229000;0 +20260223 231200;209.230000;209.256000;209.214000;209.218000;0 +20260223 231300;209.218000;209.243000;209.217000;209.231000;0 +20260223 231400;209.226000;209.231000;209.217000;209.219000;0 +20260223 231500;209.220000;209.224000;209.216000;209.221000;0 +20260223 231600;209.220000;209.242000;209.220000;209.240000;0 +20260223 231700;209.239000;209.258000;209.238000;209.254000;0 +20260223 231800;209.255000;209.281000;209.254000;209.274000;0 +20260223 231900;209.273000;209.275000;209.263000;209.264000;0 +20260223 232000;209.265000;209.277000;209.265000;209.272000;0 +20260223 232100;209.270000;209.276000;209.261000;209.261000;0 +20260223 232200;209.264000;209.285000;209.263000;209.282000;0 +20260223 232300;209.289000;209.299000;209.279000;209.284000;0 +20260223 232400;209.284000;209.312000;209.274000;209.308000;0 +20260223 232500;209.310000;209.353000;209.301000;209.334000;0 +20260223 232600;209.334000;209.366000;209.330000;209.357000;0 +20260223 232700;209.356000;209.367000;209.334000;209.340000;0 +20260223 232800;209.340000;209.353000;209.338000;209.349000;0 +20260223 232900;209.348000;209.351000;209.340000;209.344000;0 +20260223 233000;209.342000;209.349000;209.326000;209.334000;0 +20260223 233100;209.336000;209.348000;209.313000;209.342000;0 +20260223 233200;209.343000;209.362000;209.343000;209.355000;0 +20260223 233300;209.357000;209.363000;209.346000;209.348000;0 +20260223 233400;209.352000;209.353000;209.335000;209.337000;0 +20260223 233500;209.335000;209.349000;209.327000;209.329000;0 +20260223 233600;209.331000;209.332000;209.321000;209.323000;0 +20260223 233700;209.330000;209.343000;209.316000;209.325000;0 +20260223 233800;209.327000;209.343000;209.325000;209.337000;0 +20260223 233900;209.340000;209.352000;209.325000;209.330000;0 +20260223 234000;209.327000;209.340000;209.322000;209.326000;0 +20260223 234100;209.324000;209.330000;209.317000;209.317000;0 +20260223 234200;209.321000;209.345000;209.311000;209.334000;0 +20260223 234300;209.331000;209.350000;209.326000;209.329000;0 +20260223 234400;209.331000;209.337000;209.317000;209.319000;0 +20260223 234500;209.320000;209.320000;209.283000;209.310000;0 +20260223 234600;209.308000;209.310000;209.286000;209.308000;0 +20260223 234700;209.310000;209.333000;209.304000;209.332000;0 +20260223 234800;209.329000;209.347000;209.329000;209.344000;0 +20260223 234900;209.340000;209.344000;209.311000;209.312000;0 +20260223 235000;209.314000;209.314000;209.298000;209.308000;0 +20260223 235100;209.310000;209.317000;209.295000;209.306000;0 +20260223 235200;209.309000;209.317000;209.297000;209.299000;0 +20260223 235300;209.301000;209.310000;209.287000;209.299000;0 +20260223 235400;209.307000;209.312000;209.300000;209.312000;0 +20260223 235500;209.314000;209.323000;209.307000;209.323000;0 +20260223 235600;209.322000;209.322000;209.293000;209.303000;0 +20260223 235700;209.306000;209.318000;209.289000;209.308000;0 +20260223 235800;209.308000;209.312000;209.307000;209.311000;0 +20260223 235900;209.313000;209.325000;209.300000;209.311000;0 +20260224 000000;209.310000;209.319000;209.277000;209.280000;0 +20260224 000100;209.284000;209.286000;209.254000;209.270000;0 +20260224 000200;209.271000;209.292000;209.268000;209.278000;0 +20260224 000300;209.276000;209.282000;209.265000;209.270000;0 +20260224 000400;209.272000;209.288000;209.267000;209.280000;0 +20260224 000500;209.282000;209.297000;209.267000;209.281000;0 +20260224 000600;209.283000;209.307000;209.278000;209.301000;0 +20260224 000700;209.298000;209.303000;209.281000;209.283000;0 +20260224 000800;209.281000;209.306000;209.280000;209.284000;0 +20260224 000900;209.289000;209.304000;209.286000;209.293000;0 +20260224 001000;209.295000;209.323000;209.290000;209.305000;0 +20260224 001100;209.304000;209.304000;209.257000;209.267000;0 +20260224 001200;209.270000;209.291000;209.261000;209.278000;0 +20260224 001300;209.277000;209.283000;209.275000;209.281000;0 +20260224 001400;209.284000;209.294000;209.274000;209.288000;0 +20260224 001500;209.290000;209.296000;209.282000;209.294000;0 +20260224 001600;209.296000;209.298000;209.286000;209.292000;0 +20260224 001700;209.291000;209.307000;209.288000;209.298000;0 +20260224 001800;209.299000;209.302000;209.281000;209.281000;0 +20260224 001900;209.283000;209.300000;209.277000;209.294000;0 +20260224 002000;209.292000;209.302000;209.287000;209.287000;0 +20260224 002100;209.292000;209.302000;209.285000;209.296000;0 +20260224 002200;209.300000;209.300000;209.265000;209.274000;0 +20260224 002300;209.275000;209.279000;209.272000;209.277000;0 +20260224 002400;209.277000;209.311000;209.268000;209.308000;0 +20260224 002500;209.316000;209.332000;209.309000;209.321000;0 +20260224 002600;209.321000;209.328000;209.309000;209.322000;0 +20260224 002700;209.320000;209.338000;209.311000;209.327000;0 +20260224 002800;209.328000;209.331000;209.317000;209.326000;0 +20260224 002900;209.327000;209.342000;209.323000;209.328000;0 +20260224 003000;209.327000;209.334000;209.306000;209.307000;0 +20260224 003100;209.308000;209.318000;209.302000;209.306000;0 +20260224 003200;209.304000;209.328000;209.303000;209.325000;0 +20260224 003300;209.330000;209.346000;209.329000;209.332000;0 +20260224 003400;209.331000;209.338000;209.309000;209.319000;0 +20260224 003500;209.316000;209.332000;209.308000;209.308000;0 +20260224 003600;209.311000;209.341000;209.301000;209.336000;0 +20260224 003700;209.338000;209.360000;209.325000;209.334000;0 +20260224 003800;209.334000;209.352000;209.334000;209.345000;0 +20260224 003900;209.341000;209.355000;209.339000;209.355000;0 +20260224 004000;209.353000;209.355000;209.323000;209.339000;0 +20260224 004100;209.341000;209.345000;209.338000;209.341000;0 +20260224 004200;209.341000;209.361000;209.341000;209.356000;0 +20260224 004300;209.357000;209.388000;209.353000;209.378000;0 +20260224 004400;209.380000;209.389000;209.367000;209.367000;0 +20260224 004500;209.369000;209.381000;209.362000;209.379000;0 +20260224 004600;209.380000;209.389000;209.377000;209.389000;0 +20260224 004700;209.390000;209.390000;209.367000;209.376000;0 +20260224 004800;209.375000;209.378000;209.359000;209.366000;0 +20260224 004900;209.365000;209.365000;209.342000;209.343000;0 +20260224 005000;209.338000;209.351000;209.327000;209.342000;0 +20260224 005100;209.343000;209.343000;209.322000;209.329000;0 +20260224 005200;209.329000;209.345000;209.329000;209.336000;0 +20260224 005300;209.342000;209.342000;209.308000;209.315000;0 +20260224 005400;209.316000;209.317000;209.298000;209.312000;0 +20260224 005500;209.320000;209.347000;209.299000;209.322000;0 +20260224 005600;209.317000;209.324000;209.302000;209.322000;0 +20260224 005700;209.328000;209.328000;209.287000;209.292000;0 +20260224 005800;209.293000;209.317000;209.293000;209.308000;0 +20260224 005900;209.308000;209.319000;209.288000;209.297000;0 +20260224 010000;209.294000;209.307000;209.285000;209.295000;0 +20260224 010100;209.295000;209.326000;209.295000;209.319000;0 +20260224 010200;209.321000;209.326000;209.297000;209.311000;0 +20260224 010300;209.313000;209.324000;209.289000;209.303000;0 +20260224 010400;209.304000;209.319000;209.294000;209.311000;0 +20260224 010500;209.313000;209.323000;209.287000;209.295000;0 +20260224 010600;209.295000;209.311000;209.288000;209.311000;0 +20260224 010700;209.312000;209.315000;209.297000;209.300000;0 +20260224 010800;209.296000;209.296000;209.259000;209.260000;0 +20260224 010900;209.259000;209.282000;209.241000;209.271000;0 +20260224 011000;209.274000;209.274000;209.261000;209.268000;0 +20260224 011100;209.263000;209.289000;209.252000;209.258000;0 +20260224 011200;209.250000;209.266000;209.238000;209.249000;0 +20260224 011300;209.248000;209.270000;209.245000;209.269000;0 +20260224 011400;209.269000;209.287000;209.267000;209.286000;0 +20260224 011500;209.289000;209.289000;209.246000;209.252000;0 +20260224 011600;209.251000;209.259000;209.211000;209.212000;0 +20260224 011700;209.213000;209.231000;209.213000;209.231000;0 +20260224 011800;209.229000;209.231000;209.192000;209.201000;0 +20260224 011900;209.198000;209.198000;209.170000;209.170000;0 +20260224 012000;209.171000;209.179000;209.159000;209.160000;0 +20260224 012100;209.159000;209.172000;209.146000;209.165000;0 +20260224 012200;209.164000;209.178000;209.154000;209.177000;0 +20260224 012300;209.176000;209.181000;209.164000;209.181000;0 +20260224 012400;209.178000;209.213000;209.176000;209.197000;0 +20260224 012500;209.196000;209.215000;209.194000;209.198000;0 +20260224 012600;209.193000;209.193000;209.166000;209.182000;0 +20260224 012700;209.181000;209.182000;209.153000;209.170000;0 +20260224 012800;209.169000;209.177000;209.147000;209.148000;0 +20260224 012900;209.149000;209.190000;209.142000;209.188000;0 +20260224 013000;209.185000;209.201000;209.168000;209.176000;0 +20260224 013100;209.177000;209.189000;209.161000;209.182000;0 +20260224 013200;209.181000;209.205000;209.176000;209.200000;0 +20260224 013300;209.200000;209.208000;209.195000;209.208000;0 +20260224 013400;209.202000;209.202000;209.164000;209.168000;0 +20260224 013500;209.174000;209.174000;209.152000;209.152000;0 +20260224 013600;209.144000;209.148000;209.116000;209.130000;0 +20260224 013700;209.132000;209.142000;209.127000;209.129000;0 +20260224 013800;209.129000;209.154000;209.129000;209.151000;0 +20260224 013900;209.151000;209.156000;209.150000;209.151000;0 +20260224 014000;209.154000;209.154000;209.142000;209.146000;0 +20260224 014100;209.146000;209.160000;209.137000;209.144000;0 +20260224 014200;209.143000;209.144000;209.137000;209.141000;0 +20260224 014300;209.141000;209.163000;209.141000;209.161000;0 +20260224 014400;209.160000;209.162000;209.142000;209.148000;0 +20260224 014500;209.150000;209.158000;209.142000;209.152000;0 +20260224 014600;209.150000;209.172000;209.150000;209.167000;0 +20260224 014700;209.167000;209.168000;209.150000;209.154000;0 +20260224 014800;209.148000;209.163000;209.148000;209.160000;0 +20260224 014900;209.149000;209.149000;209.126000;209.127000;0 +20260224 015000;209.126000;209.128000;209.115000;209.118000;0 +20260224 015100;209.116000;209.123000;209.098000;209.111000;0 +20260224 015200;209.112000;209.119000;209.102000;209.106000;0 +20260224 015300;209.105000;209.134000;209.103000;209.116000;0 +20260224 015400;209.118000;209.120000;209.096000;209.101000;0 +20260224 015500;209.099000;209.111000;209.063000;209.063000;0 +20260224 015600;209.057000;209.077000;209.054000;209.061000;0 +20260224 015700;209.064000;209.068000;209.027000;209.034000;0 +20260224 015800;209.036000;209.063000;209.034000;209.045000;0 +20260224 015900;209.042000;209.051000;209.015000;209.016000;0 +20260224 020000;209.018000;209.037000;209.002000;209.025000;0 +20260224 020100;209.027000;209.031000;208.995000;208.997000;0 +20260224 020200;208.996000;209.029000;208.975000;209.023000;0 +20260224 020300;209.022000;209.039000;209.017000;209.026000;0 +20260224 020400;209.028000;209.039000;209.020000;209.022000;0 +20260224 020500;209.022000;209.504000;209.019000;209.428000;0 +20260224 020600;209.429000;209.651000;209.419000;209.504000;0 +20260224 020700;209.505000;209.628000;209.495000;209.527000;0 +20260224 020800;209.520000;209.564000;209.476000;209.502000;0 +20260224 020900;209.500000;209.549000;209.484000;209.525000;0 +20260224 021000;209.529000;209.573000;209.478000;209.573000;0 +20260224 021100;209.571000;209.657000;209.564000;209.656000;0 +20260224 021200;209.657000;209.863000;209.651000;209.842000;0 +20260224 021300;209.843000;209.955000;209.839000;209.934000;0 +20260224 021400;209.936000;209.955000;209.878000;209.878000;0 +20260224 021500;209.878000;209.887000;209.783000;209.835000;0 +20260224 021600;209.840000;209.876000;209.817000;209.858000;0 +20260224 021700;209.870000;210.015000;209.842000;209.976000;0 +20260224 021800;209.957000;210.018000;209.945000;209.988000;0 +20260224 021900;209.990000;209.990000;209.901000;209.910000;0 +20260224 022000;209.908000;209.966000;209.906000;209.954000;0 +20260224 022100;209.949000;209.989000;209.920000;209.982000;0 +20260224 022200;209.987000;210.038000;209.972000;210.008000;0 +20260224 022300;210.010000;210.033000;209.988000;210.002000;0 +20260224 022400;210.011000;210.089000;210.010000;210.084000;0 +20260224 022500;210.093000;210.125000;210.038000;210.059000;0 +20260224 022600;210.072000;210.091000;210.041000;210.064000;0 +20260224 022700;210.067000;210.107000;210.039000;210.073000;0 +20260224 022800;210.075000;210.152000;210.073000;210.144000;0 +20260224 022900;210.142000;210.192000;210.139000;210.173000;0 +20260224 023000;210.172000;210.218000;210.163000;210.216000;0 +20260224 023100;210.216000;210.237000;210.211000;210.225000;0 +20260224 023200;210.227000;210.300000;210.221000;210.243000;0 +20260224 023300;210.243000;210.284000;210.128000;210.209000;0 +20260224 023400;210.205000;210.222000;210.153000;210.186000;0 +20260224 023500;210.183000;210.186000;210.102000;210.126000;0 +20260224 023600;210.135000;210.156000;210.097000;210.097000;0 +20260224 023700;210.102000;210.148000;210.074000;210.079000;0 +20260224 023800;210.081000;210.144000;210.075000;210.132000;0 +20260224 023900;210.135000;210.161000;210.108000;210.142000;0 +20260224 024000;210.141000;210.153000;210.116000;210.125000;0 +20260224 024100;210.123000;210.151000;210.111000;210.146000;0 +20260224 024200;210.148000;210.192000;210.146000;210.192000;0 +20260224 024300;210.189000;210.209000;210.175000;210.195000;0 +20260224 024400;210.194000;210.240000;210.191000;210.240000;0 +20260224 024500;210.238000;210.266000;210.225000;210.255000;0 +20260224 024600;210.252000;210.271000;210.218000;210.267000;0 +20260224 024700;210.270000;210.299000;210.263000;210.274000;0 +20260224 024800;210.282000;210.282000;210.228000;210.254000;0 +20260224 024900;210.247000;210.262000;210.221000;210.256000;0 +20260224 025000;210.256000;210.377000;210.218000;210.377000;0 +20260224 025100;210.379000;210.406000;210.330000;210.370000;0 +20260224 025200;210.357000;210.406000;210.343000;210.376000;0 +20260224 025300;210.377000;210.386000;210.351000;210.358000;0 +20260224 025400;210.358000;210.363000;210.303000;210.304000;0 +20260224 025500;210.302000;210.372000;210.302000;210.369000;0 +20260224 025600;210.372000;210.452000;210.369000;210.449000;0 +20260224 025700;210.447000;210.449000;210.418000;210.432000;0 +20260224 025800;210.435000;210.460000;210.423000;210.437000;0 +20260224 025900;210.437000;210.445000;210.370000;210.390000;0 +20260224 030000;210.393000;210.414000;210.269000;210.269000;0 +20260224 030100;210.262000;210.367000;210.226000;210.342000;0 +20260224 030200;210.339000;210.363000;210.311000;210.363000;0 +20260224 030300;210.365000;210.365000;210.299000;210.327000;0 +20260224 030400;210.325000;210.326000;210.260000;210.295000;0 +20260224 030500;210.295000;210.356000;210.294000;210.355000;0 +20260224 030600;210.355000;210.384000;210.328000;210.354000;0 +20260224 030700;210.356000;210.371000;210.327000;210.354000;0 +20260224 030800;210.354000;210.380000;210.307000;210.324000;0 +20260224 030900;210.316000;210.350000;210.315000;210.346000;0 +20260224 031000;210.345000;210.380000;210.317000;210.362000;0 +20260224 031100;210.365000;210.373000;210.340000;210.344000;0 +20260224 031200;210.345000;210.368000;210.318000;210.362000;0 +20260224 031300;210.361000;210.415000;210.335000;210.390000;0 +20260224 031400;210.390000;210.411000;210.381000;210.398000;0 +20260224 031500;210.395000;210.425000;210.366000;210.368000;0 +20260224 031600;210.368000;210.373000;210.261000;210.324000;0 +20260224 031700;210.325000;210.400000;210.325000;210.385000;0 +20260224 031800;210.385000;210.422000;210.358000;210.378000;0 +20260224 031900;210.381000;210.432000;210.356000;210.432000;0 +20260224 032000;210.431000;210.447000;210.403000;210.426000;0 +20260224 032100;210.427000;210.453000;210.420000;210.436000;0 +20260224 032200;210.437000;210.592000;210.437000;210.575000;0 +20260224 032300;210.574000;210.727000;210.570000;210.723000;0 +20260224 032400;210.718000;210.724000;210.652000;210.677000;0 +20260224 032500;210.673000;210.689000;210.629000;210.643000;0 +20260224 032600;210.641000;210.678000;210.599000;210.667000;0 +20260224 032700;210.671000;210.674000;210.634000;210.636000;0 +20260224 032800;210.642000;210.700000;210.642000;210.678000;0 +20260224 032900;210.678000;210.678000;210.627000;210.636000;0 +20260224 033000;210.638000;210.667000;210.591000;210.604000;0 +20260224 033100;210.607000;210.621000;210.563000;210.565000;0 +20260224 033200;210.565000;210.565000;210.504000;210.525000;0 +20260224 033300;210.526000;210.551000;210.467000;210.494000;0 +20260224 033400;210.483000;210.516000;210.466000;210.485000;0 +20260224 033500;210.484000;210.504000;210.412000;210.422000;0 +20260224 033600;210.422000;210.477000;210.383000;210.383000;0 +20260224 033700;210.383000;210.452000;210.375000;210.438000;0 +20260224 033800;210.440000;210.454000;210.413000;210.438000;0 +20260224 033900;210.441000;210.467000;210.392000;210.404000;0 +20260224 034000;210.400000;210.461000;210.345000;210.460000;0 +20260224 034100;210.459000;210.482000;210.444000;210.455000;0 +20260224 034200;210.455000;210.482000;210.440000;210.445000;0 +20260224 034300;210.441000;210.444000;210.396000;210.397000;0 +20260224 034400;210.400000;210.452000;210.372000;210.403000;0 +20260224 034500;210.405000;210.424000;210.371000;210.381000;0 +20260224 034600;210.378000;210.418000;210.364000;210.402000;0 +20260224 034700;210.401000;210.405000;210.350000;210.403000;0 +20260224 034800;210.404000;210.435000;210.381000;210.404000;0 +20260224 034900;210.404000;210.414000;210.319000;210.321000;0 +20260224 035000;210.325000;210.349000;210.300000;210.315000;0 +20260224 035100;210.314000;210.315000;210.261000;210.268000;0 +20260224 035200;210.275000;210.324000;210.275000;210.323000;0 +20260224 035300;210.325000;210.350000;210.312000;210.331000;0 +20260224 035400;210.329000;210.348000;210.327000;210.344000;0 +20260224 035500;210.347000;210.427000;210.345000;210.414000;0 +20260224 035600;210.416000;210.416000;210.308000;210.328000;0 +20260224 035700;210.327000;210.365000;210.294000;210.361000;0 +20260224 035800;210.359000;210.368000;210.301000;210.308000;0 +20260224 035900;210.302000;210.313000;210.286000;210.289000;0 +20260224 040000;210.290000;210.333000;210.266000;210.288000;0 +20260224 040100;210.285000;210.322000;210.264000;210.292000;0 +20260224 040200;210.292000;210.329000;210.265000;210.315000;0 +20260224 040300;210.312000;210.314000;210.292000;210.308000;0 +20260224 040400;210.309000;210.315000;210.276000;210.291000;0 +20260224 040500;210.291000;210.291000;210.258000;210.285000;0 +20260224 040600;210.285000;210.317000;210.283000;210.289000;0 +20260224 040700;210.291000;210.297000;210.264000;210.297000;0 +20260224 040800;210.297000;210.327000;210.289000;210.324000;0 +20260224 040900;210.324000;210.334000;210.309000;210.322000;0 +20260224 041000;210.322000;210.358000;210.317000;210.349000;0 +20260224 041100;210.352000;210.362000;210.295000;210.299000;0 +20260224 041200;210.299000;210.344000;210.297000;210.315000;0 +20260224 041300;210.315000;210.315000;210.254000;210.254000;0 +20260224 041400;210.254000;210.258000;210.216000;210.229000;0 +20260224 041500;210.237000;210.275000;210.222000;210.267000;0 +20260224 041600;210.267000;210.310000;210.261000;210.310000;0 +20260224 041700;210.311000;210.322000;210.294000;210.309000;0 +20260224 041800;210.310000;210.330000;210.299000;210.318000;0 +20260224 041900;210.315000;210.326000;210.279000;210.281000;0 +20260224 042000;210.287000;210.294000;210.272000;210.281000;0 +20260224 042100;210.276000;210.308000;210.272000;210.308000;0 +20260224 042200;210.311000;210.312000;210.292000;210.292000;0 +20260224 042300;210.292000;210.293000;210.218000;210.221000;0 +20260224 042400;210.223000;210.229000;210.151000;210.201000;0 +20260224 042500;210.205000;210.277000;210.202000;210.234000;0 +20260224 042600;210.232000;210.291000;210.228000;210.252000;0 +20260224 042700;210.253000;210.286000;210.247000;210.272000;0 +20260224 042800;210.271000;210.302000;210.264000;210.281000;0 +20260224 042900;210.278000;210.282000;210.254000;210.268000;0 +20260224 043000;210.269000;210.304000;210.268000;210.298000;0 +20260224 043100;210.295000;210.309000;210.278000;210.308000;0 +20260224 043200;210.305000;210.323000;210.292000;210.312000;0 +20260224 043300;210.313000;210.325000;210.273000;210.287000;0 +20260224 043400;210.289000;210.306000;210.288000;210.304000;0 +20260224 043500;210.302000;210.309000;210.277000;210.293000;0 +20260224 043600;210.295000;210.327000;210.268000;210.326000;0 +20260224 043700;210.320000;210.320000;210.295000;210.315000;0 +20260224 043800;210.327000;210.344000;210.325000;210.341000;0 +20260224 043900;210.342000;210.362000;210.335000;210.362000;0 +20260224 044000;210.363000;210.378000;210.348000;210.348000;0 +20260224 044100;210.348000;210.365000;210.336000;210.355000;0 +20260224 044200;210.356000;210.383000;210.356000;210.375000;0 +20260224 044300;210.375000;210.397000;210.375000;210.384000;0 +20260224 044400;210.385000;210.394000;210.375000;210.389000;0 +20260224 044500;210.393000;210.394000;210.363000;210.367000;0 +20260224 044600;210.367000;210.367000;210.342000;210.342000;0 +20260224 044700;210.339000;210.339000;210.326000;210.337000;0 +20260224 044800;210.333000;210.356000;210.328000;210.342000;0 +20260224 044900;210.342000;210.345000;210.330000;210.340000;0 +20260224 045000;210.349000;210.375000;210.348000;210.367000;0 +20260224 045100;210.370000;210.371000;210.355000;210.360000;0 +20260224 045200;210.355000;210.369000;210.336000;210.360000;0 +20260224 045300;210.358000;210.382000;210.358000;210.379000;0 +20260224 045400;210.378000;210.411000;210.366000;210.409000;0 +20260224 045500;210.410000;210.423000;210.407000;210.420000;0 +20260224 045600;210.420000;210.426000;210.409000;210.423000;0 +20260224 045700;210.420000;210.432000;210.409000;210.420000;0 +20260224 045800;210.411000;210.454000;210.411000;210.421000;0 +20260224 045900;210.422000;210.422000;210.390000;210.398000;0 +20260224 050000;210.398000;210.425000;210.384000;210.417000;0 +20260224 050100;210.418000;210.420000;210.387000;210.405000;0 +20260224 050200;210.407000;210.414000;210.386000;210.387000;0 +20260224 050300;210.390000;210.426000;210.390000;210.426000;0 +20260224 050400;210.428000;210.441000;210.417000;210.421000;0 +20260224 050500;210.420000;210.420000;210.388000;210.398000;0 +20260224 050600;210.399000;210.430000;210.399000;210.430000;0 +20260224 050700;210.432000;210.432000;210.376000;210.379000;0 +20260224 050800;210.382000;210.422000;210.369000;210.397000;0 +20260224 050900;210.398000;210.436000;210.398000;210.435000;0 +20260224 051000;210.435000;210.436000;210.360000;210.368000;0 +20260224 051100;210.364000;210.390000;210.356000;210.381000;0 +20260224 051200;210.380000;210.442000;210.380000;210.420000;0 +20260224 051300;210.416000;210.433000;210.414000;210.427000;0 +20260224 051400;210.424000;210.431000;210.412000;210.412000;0 +20260224 051500;210.413000;210.420000;210.387000;210.392000;0 +20260224 051600;210.390000;210.422000;210.390000;210.401000;0 +20260224 051700;210.394000;210.401000;210.345000;210.349000;0 +20260224 051800;210.352000;210.402000;210.352000;210.399000;0 +20260224 051900;210.397000;210.397000;210.375000;210.382000;0 +20260224 052000;210.380000;210.387000;210.366000;210.366000;0 +20260224 052100;210.368000;210.403000;210.368000;210.395000;0 +20260224 052200;210.394000;210.452000;210.392000;210.451000;0 +20260224 052300;210.452000;210.454000;210.414000;210.415000;0 +20260224 052400;210.419000;210.432000;210.401000;210.421000;0 +20260224 052500;210.418000;210.473000;210.415000;210.466000;0 +20260224 052600;210.465000;210.470000;210.450000;210.452000;0 +20260224 052700;210.451000;210.476000;210.449000;210.458000;0 +20260224 052800;210.455000;210.461000;210.440000;210.441000;0 +20260224 052900;210.440000;210.448000;210.432000;210.437000;0 +20260224 053000;210.439000;210.473000;210.436000;210.436000;0 +20260224 053100;210.436000;210.436000;210.391000;210.393000;0 +20260224 053200;210.396000;210.399000;210.382000;210.382000;0 +20260224 053300;210.382000;210.388000;210.375000;210.388000;0 +20260224 053400;210.386000;210.388000;210.337000;210.366000;0 +20260224 053500;210.367000;210.369000;210.331000;210.346000;0 +20260224 053600;210.347000;210.379000;210.330000;210.338000;0 +20260224 053700;210.339000;210.367000;210.325000;210.367000;0 +20260224 053800;210.370000;210.397000;210.353000;210.364000;0 +20260224 053900;210.365000;210.374000;210.357000;210.365000;0 +20260224 054000;210.364000;210.376000;210.357000;210.369000;0 +20260224 054100;210.367000;210.369000;210.335000;210.348000;0 +20260224 054200;210.350000;210.384000;210.340000;210.384000;0 +20260224 054300;210.387000;210.387000;210.350000;210.359000;0 +20260224 054400;210.361000;210.385000;210.360000;210.369000;0 +20260224 054500;210.368000;210.368000;210.332000;210.338000;0 +20260224 054600;210.339000;210.359000;210.332000;210.358000;0 +20260224 054700;210.359000;210.369000;210.351000;210.356000;0 +20260224 054800;210.350000;210.350000;210.329000;210.339000;0 +20260224 054900;210.341000;210.341000;210.290000;210.307000;0 +20260224 055000;210.309000;210.312000;210.283000;210.289000;0 +20260224 055100;210.291000;210.297000;210.275000;210.278000;0 +20260224 055200;210.272000;210.282000;210.257000;210.265000;0 +20260224 055300;210.268000;210.278000;210.245000;210.278000;0 +20260224 055400;210.280000;210.312000;210.280000;210.309000;0 +20260224 055500;210.311000;210.342000;210.307000;210.335000;0 +20260224 055600;210.333000;210.336000;210.317000;210.323000;0 +20260224 055700;210.323000;210.326000;210.306000;210.316000;0 +20260224 055800;210.309000;210.335000;210.301000;210.325000;0 +20260224 055900;210.332000;210.355000;210.323000;210.350000;0 +20260224 060000;210.344000;210.351000;210.266000;210.277000;0 +20260224 060100;210.276000;210.324000;210.274000;210.306000;0 +20260224 060200;210.309000;210.322000;210.305000;210.311000;0 +20260224 060300;210.312000;210.338000;210.306000;210.334000;0 +20260224 060400;210.332000;210.332000;210.290000;210.298000;0 +20260224 060500;210.297000;210.330000;210.265000;210.294000;0 +20260224 060600;210.294000;210.307000;210.278000;210.285000;0 +20260224 060700;210.283000;210.283000;210.237000;210.237000;0 +20260224 060800;210.239000;210.262000;210.236000;210.244000;0 +20260224 060900;210.247000;210.247000;210.202000;210.222000;0 +20260224 061000;210.222000;210.245000;210.215000;210.239000;0 +20260224 061100;210.237000;210.244000;210.215000;210.221000;0 +20260224 061200;210.219000;210.229000;210.201000;210.204000;0 +20260224 061300;210.205000;210.218000;210.202000;210.202000;0 +20260224 061400;210.201000;210.207000;210.187000;210.187000;0 +20260224 061500;210.188000;210.188000;210.154000;210.171000;0 +20260224 061600;210.175000;210.183000;210.160000;210.173000;0 +20260224 061700;210.174000;210.176000;210.144000;210.154000;0 +20260224 061800;210.149000;210.183000;210.147000;210.181000;0 +20260224 061900;210.180000;210.184000;210.114000;210.114000;0 +20260224 062000;210.118000;210.129000;210.110000;210.123000;0 +20260224 062100;210.120000;210.130000;210.107000;210.118000;0 +20260224 062200;210.119000;210.169000;210.112000;210.164000;0 +20260224 062300;210.162000;210.162000;210.127000;210.151000;0 +20260224 062400;210.152000;210.168000;210.146000;210.163000;0 +20260224 062500;210.164000;210.168000;210.141000;210.163000;0 +20260224 062600;210.156000;210.183000;210.156000;210.182000;0 +20260224 062700;210.182000;210.196000;210.163000;210.163000;0 +20260224 062800;210.163000;210.170000;210.142000;210.148000;0 +20260224 062900;210.141000;210.146000;210.116000;210.116000;0 +20260224 063000;210.110000;210.120000;210.082000;210.087000;0 +20260224 063100;210.091000;210.099000;210.070000;210.096000;0 +20260224 063200;210.098000;210.099000;210.066000;210.072000;0 +20260224 063300;210.074000;210.078000;210.055000;210.057000;0 +20260224 063400;210.055000;210.065000;210.035000;210.050000;0 +20260224 063500;210.049000;210.051000;210.034000;210.043000;0 +20260224 063600;210.044000;210.068000;210.044000;210.068000;0 +20260224 063700;210.068000;210.096000;210.066000;210.076000;0 +20260224 063800;210.074000;210.074000;210.033000;210.036000;0 +20260224 063900;210.038000;210.040000;210.021000;210.027000;0 +20260224 064000;210.028000;210.038000;210.017000;210.030000;0 +20260224 064100;210.034000;210.037000;209.999000;209.999000;0 +20260224 064200;210.007000;210.011000;209.988000;209.990000;0 +20260224 064300;209.991000;210.047000;209.990000;210.047000;0 +20260224 064400;210.048000;210.070000;210.048000;210.070000;0 +20260224 064500;210.068000;210.102000;210.060000;210.102000;0 +20260224 064600;210.099000;210.106000;210.076000;210.103000;0 +20260224 064700;210.103000;210.103000;210.088000;210.103000;0 +20260224 064800;210.102000;210.125000;210.094000;210.116000;0 +20260224 064900;210.110000;210.111000;210.100000;210.101000;0 +20260224 065000;210.101000;210.130000;210.101000;210.112000;0 +20260224 065100;210.113000;210.123000;210.083000;210.085000;0 +20260224 065200;210.083000;210.129000;210.083000;210.120000;0 +20260224 065300;210.121000;210.135000;210.113000;210.135000;0 +20260224 065400;210.133000;210.138000;210.120000;210.127000;0 +20260224 065500;210.123000;210.133000;210.111000;210.115000;0 +20260224 065600;210.113000;210.139000;210.102000;210.125000;0 +20260224 065700;210.128000;210.143000;210.100000;210.113000;0 +20260224 065800;210.114000;210.166000;210.114000;210.162000;0 +20260224 065900;210.160000;210.221000;210.160000;210.219000;0 +20260224 070000;210.219000;210.238000;210.183000;210.203000;0 +20260224 070100;210.203000;210.263000;210.203000;210.243000;0 +20260224 070200;210.239000;210.239000;210.209000;210.232000;0 +20260224 070300;210.232000;210.234000;210.207000;210.232000;0 +20260224 070400;210.228000;210.263000;210.225000;210.261000;0 +20260224 070500;210.260000;210.302000;210.255000;210.296000;0 +20260224 070600;210.297000;210.303000;210.283000;210.286000;0 +20260224 070700;210.285000;210.294000;210.270000;210.274000;0 +20260224 070800;210.273000;210.274000;210.238000;210.253000;0 +20260224 070900;210.252000;210.284000;210.252000;210.284000;0 +20260224 071000;210.282000;210.289000;210.228000;210.234000;0 +20260224 071100;210.234000;210.262000;210.227000;210.248000;0 +20260224 071200;210.253000;210.304000;210.245000;210.304000;0 +20260224 071300;210.303000;210.306000;210.272000;210.282000;0 +20260224 071400;210.284000;210.318000;210.280000;210.318000;0 +20260224 071500;210.316000;210.327000;210.312000;210.327000;0 +20260224 071600;210.325000;210.344000;210.310000;210.329000;0 +20260224 071700;210.324000;210.332000;210.302000;210.305000;0 +20260224 071800;210.306000;210.321000;210.300000;210.319000;0 +20260224 071900;210.324000;210.341000;210.324000;210.336000;0 +20260224 072000;210.334000;210.362000;210.319000;210.319000;0 +20260224 072100;210.326000;210.353000;210.319000;210.351000;0 +20260224 072200;210.350000;210.371000;210.322000;210.322000;0 +20260224 072300;210.325000;210.326000;210.300000;210.310000;0 +20260224 072400;210.313000;210.348000;210.307000;210.346000;0 +20260224 072500;210.349000;210.353000;210.322000;210.331000;0 +20260224 072600;210.331000;210.338000;210.317000;210.322000;0 +20260224 072700;210.326000;210.338000;210.320000;210.320000;0 +20260224 072800;210.322000;210.327000;210.304000;210.321000;0 +20260224 072900;210.322000;210.324000;210.299000;210.305000;0 +20260224 073000;210.301000;210.301000;210.285000;210.296000;0 +20260224 073100;210.296000;210.306000;210.288000;210.301000;0 +20260224 073200;210.304000;210.304000;210.247000;210.250000;0 +20260224 073300;210.247000;210.258000;210.221000;210.231000;0 +20260224 073400;210.232000;210.247000;210.220000;210.237000;0 +20260224 073500;210.238000;210.250000;210.229000;210.250000;0 +20260224 073600;210.251000;210.254000;210.231000;210.244000;0 +20260224 073700;210.245000;210.259000;210.245000;210.254000;0 +20260224 073800;210.256000;210.258000;210.245000;210.249000;0 +20260224 073900;210.247000;210.251000;210.221000;210.228000;0 +20260224 074000;210.226000;210.226000;210.156000;210.196000;0 +20260224 074100;210.197000;210.214000;210.163000;210.163000;0 +20260224 074200;210.162000;210.186000;210.162000;210.183000;0 +20260224 074300;210.183000;210.183000;210.117000;210.132000;0 +20260224 074400;210.133000;210.143000;210.120000;210.133000;0 +20260224 074500;210.134000;210.158000;210.133000;210.154000;0 +20260224 074600;210.154000;210.179000;210.149000;210.174000;0 +20260224 074700;210.172000;210.172000;210.147000;210.154000;0 +20260224 074800;210.154000;210.170000;210.146000;210.160000;0 +20260224 074900;210.163000;210.185000;210.152000;210.160000;0 +20260224 075000;210.162000;210.162000;210.133000;210.152000;0 +20260224 075100;210.154000;210.172000;210.154000;210.169000;0 +20260224 075200;210.169000;210.213000;210.167000;210.212000;0 +20260224 075300;210.215000;210.226000;210.208000;210.220000;0 +20260224 075400;210.221000;210.223000;210.186000;210.191000;0 +20260224 075500;210.190000;210.195000;210.173000;210.183000;0 +20260224 075600;210.185000;210.236000;210.184000;210.229000;0 +20260224 075700;210.227000;210.254000;210.222000;210.241000;0 +20260224 075800;210.237000;210.248000;210.233000;210.234000;0 +20260224 075900;210.236000;210.264000;210.233000;210.258000;0 +20260224 080000;210.259000;210.283000;210.208000;210.250000;0 +20260224 080100;210.251000;210.262000;210.227000;210.231000;0 +20260224 080200;210.232000;210.243000;210.195000;210.196000;0 +20260224 080300;210.194000;210.199000;210.160000;210.164000;0 +20260224 080400;210.165000;210.204000;210.163000;210.190000;0 +20260224 080500;210.190000;210.220000;210.172000;210.174000;0 +20260224 080600;210.173000;210.184000;210.154000;210.159000;0 +20260224 080700;210.158000;210.164000;210.143000;210.154000;0 +20260224 080800;210.158000;210.200000;210.158000;210.199000;0 +20260224 080900;210.199000;210.226000;210.197000;210.220000;0 +20260224 081000;210.217000;210.229000;210.192000;210.219000;0 +20260224 081100;210.216000;210.216000;210.189000;210.205000;0 +20260224 081200;210.205000;210.230000;210.197000;210.230000;0 +20260224 081300;210.230000;210.237000;210.189000;210.194000;0 +20260224 081400;210.193000;210.213000;210.181000;210.197000;0 +20260224 081500;210.196000;210.230000;210.195000;210.219000;0 +20260224 081600;210.225000;210.270000;210.224000;210.268000;0 +20260224 081700;210.268000;210.313000;210.254000;210.276000;0 +20260224 081800;210.283000;210.303000;210.268000;210.288000;0 +20260224 081900;210.290000;210.345000;210.282000;210.330000;0 +20260224 082000;210.337000;210.357000;210.305000;210.330000;0 +20260224 082100;210.328000;210.345000;210.305000;210.326000;0 +20260224 082200;210.328000;210.348000;210.325000;210.348000;0 +20260224 082300;210.348000;210.372000;210.346000;210.357000;0 +20260224 082400;210.356000;210.369000;210.340000;210.343000;0 +20260224 082500;210.344000;210.367000;210.339000;210.352000;0 +20260224 082600;210.352000;210.352000;210.315000;210.320000;0 +20260224 082700;210.322000;210.324000;210.281000;210.303000;0 +20260224 082800;210.301000;210.331000;210.298000;210.330000;0 +20260224 082900;210.330000;210.341000;210.324000;210.337000;0 +20260224 083000;210.338000;210.391000;210.327000;210.356000;0 +20260224 083100;210.352000;210.402000;210.352000;210.401000;0 +20260224 083200;210.401000;210.401000;210.373000;210.373000;0 +20260224 083300;210.372000;210.415000;210.366000;210.405000;0 +20260224 083400;210.407000;210.447000;210.400000;210.434000;0 +20260224 083500;210.434000;210.447000;210.417000;210.426000;0 +20260224 083600;210.427000;210.438000;210.399000;210.403000;0 +20260224 083700;210.403000;210.421000;210.393000;210.418000;0 +20260224 083800;210.418000;210.427000;210.394000;210.407000;0 +20260224 083900;210.408000;210.441000;210.403000;210.418000;0 +20260224 084000;210.419000;210.419000;210.397000;210.417000;0 +20260224 084100;210.419000;210.419000;210.391000;210.414000;0 +20260224 084200;210.413000;210.426000;210.400000;210.414000;0 +20260224 084300;210.413000;210.444000;210.406000;210.434000;0 +20260224 084400;210.438000;210.442000;210.393000;210.400000;0 +20260224 084500;210.398000;210.411000;210.385000;210.387000;0 +20260224 084600;210.385000;210.390000;210.358000;210.365000;0 +20260224 084700;210.366000;210.383000;210.340000;210.380000;0 +20260224 084800;210.377000;210.384000;210.355000;210.373000;0 +20260224 084900;210.376000;210.376000;210.355000;210.357000;0 +20260224 085000;210.354000;210.373000;210.347000;210.362000;0 +20260224 085100;210.363000;210.380000;210.354000;210.355000;0 +20260224 085200;210.353000;210.367000;210.327000;210.367000;0 +20260224 085300;210.370000;210.386000;210.368000;210.378000;0 +20260224 085400;210.380000;210.392000;210.351000;210.369000;0 +20260224 085500;210.370000;210.422000;210.370000;210.393000;0 +20260224 085600;210.391000;210.395000;210.343000;210.359000;0 +20260224 085700;210.361000;210.411000;210.357000;210.408000;0 +20260224 085800;210.410000;210.455000;210.398000;210.453000;0 +20260224 085900;210.453000;210.463000;210.442000;210.456000;0 +20260224 090000;210.455000;210.455000;210.398000;210.429000;0 +20260224 090100;210.430000;210.444000;210.411000;210.444000;0 +20260224 090200;210.446000;210.496000;210.442000;210.465000;0 +20260224 090300;210.467000;210.483000;210.456000;210.465000;0 +20260224 090400;210.469000;210.477000;210.443000;210.477000;0 +20260224 090500;210.478000;210.504000;210.470000;210.491000;0 +20260224 090600;210.489000;210.492000;210.455000;210.478000;0 +20260224 090700;210.477000;210.503000;210.460000;210.484000;0 +20260224 090800;210.488000;210.530000;210.473000;210.524000;0 +20260224 090900;210.522000;210.546000;210.496000;210.499000;0 +20260224 091000;210.495000;210.515000;210.485000;210.496000;0 +20260224 091100;210.497000;210.510000;210.485000;210.494000;0 +20260224 091200;210.495000;210.497000;210.446000;210.448000;0 +20260224 091300;210.452000;210.454000;210.424000;210.424000;0 +20260224 091400;210.424000;210.464000;210.421000;210.459000;0 +20260224 091500;210.459000;210.486000;210.457000;210.471000;0 +20260224 091600;210.473000;210.485000;210.469000;210.483000;0 +20260224 091700;210.483000;210.537000;210.471000;210.521000;0 +20260224 091800;210.527000;210.566000;210.520000;210.558000;0 +20260224 091900;210.557000;210.561000;210.544000;210.548000;0 +20260224 092000;210.551000;210.563000;210.537000;210.555000;0 +20260224 092100;210.555000;210.579000;210.550000;210.566000;0 +20260224 092200;210.564000;210.568000;210.546000;210.546000;0 +20260224 092300;210.548000;210.573000;210.523000;210.523000;0 +20260224 092400;210.522000;210.552000;210.516000;210.527000;0 +20260224 092500;210.531000;210.532000;210.493000;210.497000;0 +20260224 092600;210.496000;210.531000;210.485000;210.512000;0 +20260224 092700;210.526000;210.586000;210.526000;210.544000;0 +20260224 092800;210.541000;210.549000;210.521000;210.527000;0 +20260224 092900;210.526000;210.555000;210.518000;210.533000;0 +20260224 093000;210.532000;210.558000;210.478000;210.498000;0 +20260224 093100;210.496000;210.527000;210.484000;210.489000;0 +20260224 093200;210.492000;210.499000;210.457000;210.482000;0 +20260224 093300;210.481000;210.481000;210.430000;210.439000;0 +20260224 093400;210.436000;210.439000;210.374000;210.375000;0 +20260224 093500;210.374000;210.392000;210.344000;210.356000;0 +20260224 093600;210.358000;210.365000;210.320000;210.344000;0 +20260224 093700;210.339000;210.353000;210.309000;210.328000;0 +20260224 093800;210.327000;210.386000;210.327000;210.372000;0 +20260224 093900;210.373000;210.411000;210.358000;210.381000;0 +20260224 094000;210.389000;210.406000;210.363000;210.382000;0 +20260224 094100;210.382000;210.434000;210.378000;210.433000;0 +20260224 094200;210.440000;210.451000;210.419000;210.434000;0 +20260224 094300;210.433000;210.445000;210.420000;210.428000;0 +20260224 094400;210.429000;210.449000;210.416000;210.442000;0 +20260224 094500;210.442000;210.469000;210.437000;210.453000;0 +20260224 094600;210.454000;210.496000;210.436000;210.492000;0 +20260224 094700;210.501000;210.523000;210.498000;210.523000;0 +20260224 094800;210.521000;210.552000;210.458000;210.459000;0 +20260224 094900;210.462000;210.497000;210.458000;210.491000;0 +20260224 095000;210.494000;210.505000;210.464000;210.499000;0 +20260224 095100;210.495000;210.515000;210.489000;210.498000;0 +20260224 095200;210.500000;210.540000;210.491000;210.538000;0 +20260224 095300;210.536000;210.550000;210.468000;210.468000;0 +20260224 095400;210.468000;210.475000;210.383000;210.395000;0 +20260224 095500;210.397000;210.405000;210.364000;210.365000;0 +20260224 095600;210.364000;210.365000;210.317000;210.327000;0 +20260224 095700;210.326000;210.406000;210.316000;210.404000;0 +20260224 095800;210.405000;210.449000;210.403000;210.432000;0 +20260224 095900;210.430000;210.571000;210.426000;210.534000;0 +20260224 100000;210.532000;210.547000;210.467000;210.484000;0 +20260224 100100;210.481000;210.520000;210.464000;210.513000;0 +20260224 100200;210.517000;210.558000;210.503000;210.533000;0 +20260224 100300;210.531000;210.535000;210.455000;210.481000;0 +20260224 100400;210.481000;210.491000;210.438000;210.455000;0 +20260224 100500;210.454000;210.489000;210.449000;210.477000;0 +20260224 100600;210.476000;210.536000;210.476000;210.531000;0 +20260224 100700;210.529000;210.539000;210.504000;210.521000;0 +20260224 100800;210.520000;210.529000;210.504000;210.512000;0 +20260224 100900;210.512000;210.540000;210.512000;210.520000;0 +20260224 101000;210.520000;210.528000;210.469000;210.481000;0 +20260224 101100;210.482000;210.502000;210.466000;210.488000;0 +20260224 101200;210.489000;210.507000;210.482000;210.495000;0 +20260224 101300;210.493000;210.507000;210.478000;210.502000;0 +20260224 101400;210.505000;210.567000;210.505000;210.554000;0 +20260224 101500;210.559000;210.566000;210.536000;210.536000;0 +20260224 101600;210.540000;210.587000;210.536000;210.553000;0 +20260224 101700;210.551000;210.567000;210.514000;210.534000;0 +20260224 101800;210.534000;210.572000;210.520000;210.569000;0 +20260224 101900;210.570000;210.601000;210.551000;210.592000;0 +20260224 102000;210.589000;210.632000;210.589000;210.632000;0 +20260224 102100;210.633000;210.678000;210.630000;210.630000;0 +20260224 102200;210.630000;210.641000;210.568000;210.589000;0 +20260224 102300;210.591000;210.643000;210.570000;210.638000;0 +20260224 102400;210.642000;210.686000;210.630000;210.680000;0 +20260224 102500;210.681000;210.712000;210.679000;210.701000;0 +20260224 102600;210.694000;210.782000;210.693000;210.767000;0 +20260224 102700;210.766000;210.812000;210.760000;210.789000;0 +20260224 102800;210.790000;210.810000;210.775000;210.810000;0 +20260224 102900;210.811000;210.811000;210.716000;210.732000;0 +20260224 103000;210.733000;210.776000;210.733000;210.768000;0 +20260224 103100;210.770000;210.770000;210.718000;210.755000;0 +20260224 103200;210.751000;210.766000;210.715000;210.736000;0 +20260224 103300;210.732000;210.736000;210.694000;210.694000;0 +20260224 103400;210.694000;210.723000;210.684000;210.717000;0 +20260224 103500;210.719000;210.733000;210.685000;210.698000;0 +20260224 103600;210.697000;210.713000;210.658000;210.703000;0 +20260224 103700;210.708000;210.708000;210.669000;210.698000;0 +20260224 103800;210.696000;210.699000;210.653000;210.699000;0 +20260224 103900;210.699000;210.758000;210.699000;210.755000;0 +20260224 104000;210.755000;210.792000;210.751000;210.792000;0 +20260224 104100;210.792000;210.792000;210.752000;210.759000;0 +20260224 104200;210.759000;210.772000;210.714000;210.732000;0 +20260224 104300;210.741000;210.804000;210.738000;210.803000;0 +20260224 104400;210.806000;210.840000;210.777000;210.780000;0 +20260224 104500;210.780000;210.790000;210.754000;210.754000;0 +20260224 104600;210.756000;210.831000;210.755000;210.831000;0 +20260224 104700;210.831000;210.831000;210.790000;210.791000;0 +20260224 104800;210.789000;210.791000;210.738000;210.738000;0 +20260224 104900;210.738000;210.758000;210.709000;210.743000;0 +20260224 105000;210.738000;210.746000;210.701000;210.733000;0 +20260224 105100;210.731000;210.734000;210.687000;210.716000;0 +20260224 105200;210.716000;210.717000;210.664000;210.694000;0 +20260224 105300;210.695000;210.720000;210.684000;210.717000;0 +20260224 105400;210.715000;210.748000;210.709000;210.732000;0 +20260224 105500;210.734000;210.760000;210.715000;210.731000;0 +20260224 105600;210.732000;210.757000;210.713000;210.723000;0 +20260224 105700;210.723000;210.793000;210.706000;210.786000;0 +20260224 105800;210.787000;210.787000;210.727000;210.749000;0 +20260224 105900;210.750000;210.752000;210.698000;210.705000;0 +20260224 110000;210.707000;210.727000;210.658000;210.658000;0 +20260224 110100;210.659000;210.692000;210.658000;210.669000;0 +20260224 110200;210.667000;210.681000;210.643000;210.674000;0 +20260224 110300;210.670000;210.689000;210.655000;210.666000;0 +20260224 110400;210.664000;210.680000;210.629000;210.639000;0 +20260224 110500;210.640000;210.688000;210.639000;210.669000;0 +20260224 110600;210.673000;210.675000;210.652000;210.666000;0 +20260224 110700;210.667000;210.670000;210.635000;210.657000;0 +20260224 110800;210.657000;210.658000;210.614000;210.615000;0 +20260224 110900;210.613000;210.632000;210.611000;210.621000;0 +20260224 111000;210.623000;210.633000;210.613000;210.617000;0 +20260224 111100;210.614000;210.629000;210.599000;210.623000;0 +20260224 111200;210.622000;210.687000;210.617000;210.676000;0 +20260224 111300;210.683000;210.709000;210.670000;210.707000;0 +20260224 111400;210.708000;210.727000;210.651000;210.658000;0 +20260224 111500;210.658000;210.669000;210.641000;210.669000;0 +20260224 111600;210.670000;210.675000;210.658000;210.674000;0 +20260224 111700;210.672000;210.686000;210.642000;210.670000;0 +20260224 111800;210.672000;210.700000;210.666000;210.674000;0 +20260224 111900;210.668000;210.693000;210.668000;210.688000;0 +20260224 112000;210.690000;210.690000;210.651000;210.653000;0 +20260224 112100;210.655000;210.683000;210.640000;210.644000;0 +20260224 112200;210.642000;210.653000;210.629000;210.643000;0 +20260224 112300;210.640000;210.650000;210.629000;210.632000;0 +20260224 112400;210.632000;210.674000;210.616000;210.669000;0 +20260224 112500;210.667000;210.688000;210.667000;210.675000;0 +20260224 112600;210.672000;210.739000;210.668000;210.738000;0 +20260224 112700;210.736000;210.759000;210.736000;210.748000;0 +20260224 112800;210.749000;210.756000;210.710000;210.743000;0 +20260224 112900;210.743000;210.747000;210.729000;210.734000;0 +20260224 113000;210.733000;210.738000;210.713000;210.721000;0 +20260224 113100;210.719000;210.727000;210.702000;210.715000;0 +20260224 113200;210.716000;210.716000;210.677000;210.678000;0 +20260224 113300;210.677000;210.688000;210.617000;210.627000;0 +20260224 113400;210.625000;210.653000;210.615000;210.633000;0 +20260224 113500;210.632000;210.658000;210.623000;210.629000;0 +20260224 113600;210.630000;210.682000;210.623000;210.665000;0 +20260224 113700;210.660000;210.697000;210.640000;210.674000;0 +20260224 113800;210.673000;210.696000;210.659000;210.694000;0 +20260224 113900;210.692000;210.716000;210.671000;210.671000;0 +20260224 114000;210.672000;210.745000;210.659000;210.736000;0 +20260224 114100;210.735000;210.762000;210.730000;210.755000;0 +20260224 114200;210.754000;210.758000;210.720000;210.746000;0 +20260224 114300;210.744000;210.746000;210.650000;210.651000;0 +20260224 114400;210.652000;210.654000;210.619000;210.619000;0 +20260224 114500;210.621000;210.659000;210.617000;210.656000;0 +20260224 114600;210.658000;210.659000;210.626000;210.627000;0 +20260224 114700;210.630000;210.631000;210.600000;210.602000;0 +20260224 114800;210.603000;210.610000;210.585000;210.597000;0 +20260224 114900;210.595000;210.634000;210.591000;210.617000;0 +20260224 115000;210.615000;210.637000;210.601000;210.601000;0 +20260224 115100;210.602000;210.621000;210.581000;210.581000;0 +20260224 115200;210.580000;210.581000;210.553000;210.553000;0 +20260224 115300;210.551000;210.562000;210.523000;210.540000;0 +20260224 115400;210.536000;210.563000;210.529000;210.555000;0 +20260224 115500;210.555000;210.566000;210.553000;210.560000;0 +20260224 115600;210.556000;210.584000;210.550000;210.581000;0 +20260224 115700;210.579000;210.597000;210.573000;210.578000;0 +20260224 115800;210.578000;210.595000;210.565000;210.566000;0 +20260224 115900;210.569000;210.609000;210.569000;210.601000;0 +20260224 120000;210.605000;210.605000;210.567000;210.580000;0 +20260224 120100;210.583000;210.597000;210.570000;210.586000;0 +20260224 120200;210.585000;210.603000;210.565000;210.568000;0 +20260224 120300;210.568000;210.584000;210.561000;210.584000;0 +20260224 120400;210.588000;210.588000;210.541000;210.542000;0 +20260224 120500;210.543000;210.557000;210.525000;210.529000;0 +20260224 120600;210.526000;210.538000;210.505000;210.529000;0 +20260224 120700;210.542000;210.548000;210.535000;210.543000;0 +20260224 120800;210.542000;210.572000;210.541000;210.557000;0 +20260224 120900;210.555000;210.578000;210.553000;210.578000;0 +20260224 121000;210.579000;210.600000;210.570000;210.594000;0 +20260224 121100;210.592000;210.618000;210.581000;210.617000;0 +20260224 121200;210.622000;210.622000;210.594000;210.602000;0 +20260224 121300;210.603000;210.613000;210.596000;210.607000;0 +20260224 121400;210.607000;210.607000;210.581000;210.585000;0 +20260224 121500;210.582000;210.615000;210.576000;210.615000;0 +20260224 121600;210.615000;210.621000;210.595000;210.597000;0 +20260224 121700;210.594000;210.605000;210.554000;210.554000;0 +20260224 121800;210.561000;210.610000;210.561000;210.601000;0 +20260224 121900;210.602000;210.607000;210.582000;210.582000;0 +20260224 122000;210.582000;210.590000;210.568000;210.581000;0 +20260224 122100;210.577000;210.590000;210.565000;210.584000;0 +20260224 122200;210.587000;210.595000;210.551000;210.553000;0 +20260224 122300;210.554000;210.561000;210.533000;210.546000;0 +20260224 122400;210.546000;210.547000;210.525000;210.529000;0 +20260224 122500;210.530000;210.538000;210.520000;210.530000;0 +20260224 122600;210.533000;210.535000;210.492000;210.499000;0 +20260224 122700;210.498000;210.510000;210.483000;210.486000;0 +20260224 122800;210.487000;210.504000;210.485000;210.496000;0 +20260224 122900;210.498000;210.515000;210.488000;210.501000;0 +20260224 123000;210.500000;210.517000;210.493000;210.498000;0 +20260224 123100;210.499000;210.500000;210.476000;210.488000;0 +20260224 123200;210.488000;210.489000;210.468000;210.480000;0 +20260224 123300;210.480000;210.490000;210.476000;210.486000;0 +20260224 123400;210.482000;210.502000;210.479000;210.500000;0 +20260224 123500;210.498000;210.515000;210.495000;210.515000;0 +20260224 123600;210.513000;210.528000;210.511000;210.528000;0 +20260224 123700;210.528000;210.535000;210.521000;210.524000;0 +20260224 123800;210.521000;210.542000;210.521000;210.526000;0 +20260224 123900;210.525000;210.525000;210.503000;210.511000;0 +20260224 124000;210.512000;210.528000;210.505000;210.507000;0 +20260224 124100;210.506000;210.512000;210.502000;210.506000;0 +20260224 124200;210.506000;210.506000;210.482000;210.483000;0 +20260224 124300;210.484000;210.488000;210.458000;210.467000;0 +20260224 124400;210.471000;210.471000;210.459000;210.463000;0 +20260224 124500;210.462000;210.472000;210.444000;210.472000;0 +20260224 124600;210.472000;210.474000;210.455000;210.455000;0 +20260224 124700;210.452000;210.454000;210.439000;210.439000;0 +20260224 124800;210.439000;210.441000;210.413000;210.421000;0 +20260224 124900;210.423000;210.427000;210.409000;210.427000;0 +20260224 125000;210.425000;210.468000;210.423000;210.468000;0 +20260224 125100;210.465000;210.488000;210.465000;210.471000;0 +20260224 125200;210.472000;210.472000;210.459000;210.460000;0 +20260224 125300;210.461000;210.479000;210.458000;210.478000;0 +20260224 125400;210.480000;210.485000;210.464000;210.472000;0 +20260224 125500;210.472000;210.472000;210.457000;210.461000;0 +20260224 125600;210.463000;210.477000;210.456000;210.471000;0 +20260224 125700;210.472000;210.526000;210.472000;210.520000;0 +20260224 125800;210.522000;210.539000;210.521000;210.534000;0 +20260224 125900;210.533000;210.557000;210.533000;210.552000;0 +20260224 130000;210.554000;210.554000;210.515000;210.516000;0 +20260224 130100;210.516000;210.520000;210.503000;210.505000;0 +20260224 130200;210.506000;210.521000;210.501000;210.509000;0 +20260224 130300;210.508000;210.536000;210.508000;210.519000;0 +20260224 130400;210.519000;210.519000;210.467000;210.486000;0 +20260224 130500;210.484000;210.509000;210.482000;210.504000;0 +20260224 130600;210.506000;210.509000;210.486000;210.489000;0 +20260224 130700;210.483000;210.496000;210.468000;210.472000;0 +20260224 130800;210.468000;210.474000;210.453000;210.459000;0 +20260224 130900;210.452000;210.452000;210.439000;210.439000;0 +20260224 131000;210.439000;210.457000;210.438000;210.452000;0 +20260224 131100;210.448000;210.450000;210.440000;210.442000;0 +20260224 131200;210.441000;210.446000;210.431000;210.442000;0 +20260224 131300;210.443000;210.443000;210.424000;210.424000;0 +20260224 131400;210.428000;210.444000;210.420000;210.440000;0 +20260224 131500;210.438000;210.471000;210.437000;210.468000;0 +20260224 131600;210.470000;210.479000;210.461000;210.472000;0 +20260224 131700;210.472000;210.473000;210.456000;210.459000;0 +20260224 131800;210.460000;210.504000;210.459000;210.493000;0 +20260224 131900;210.493000;210.495000;210.472000;210.482000;0 +20260224 132000;210.482000;210.493000;210.475000;210.492000;0 +20260224 132100;210.493000;210.522000;210.490000;210.517000;0 +20260224 132200;210.518000;210.520000;210.488000;210.504000;0 +20260224 132300;210.506000;210.508000;210.491000;210.495000;0 +20260224 132400;210.494000;210.497000;210.484000;210.487000;0 +20260224 132500;210.487000;210.494000;210.483000;210.484000;0 +20260224 132600;210.486000;210.490000;210.476000;210.486000;0 +20260224 132700;210.485000;210.502000;210.469000;210.499000;0 +20260224 132800;210.502000;210.502000;210.484000;210.495000;0 +20260224 132900;210.494000;210.494000;210.488000;210.492000;0 +20260224 133000;210.495000;210.499000;210.480000;210.490000;0 +20260224 133100;210.493000;210.498000;210.480000;210.489000;0 +20260224 133200;210.484000;210.498000;210.471000;210.487000;0 +20260224 133300;210.487000;210.490000;210.473000;210.480000;0 +20260224 133400;210.480000;210.480000;210.450000;210.458000;0 +20260224 133500;210.454000;210.459000;210.438000;210.438000;0 +20260224 133600;210.437000;210.456000;210.437000;210.453000;0 +20260224 133700;210.456000;210.464000;210.442000;210.456000;0 +20260224 133800;210.454000;210.461000;210.438000;210.441000;0 +20260224 133900;210.448000;210.456000;210.445000;210.447000;0 +20260224 134000;210.443000;210.453000;210.443000;210.453000;0 +20260224 134100;210.451000;210.460000;210.442000;210.453000;0 +20260224 134200;210.455000;210.455000;210.435000;210.435000;0 +20260224 134300;210.443000;210.449000;210.435000;210.439000;0 +20260224 134400;210.443000;210.458000;210.441000;210.454000;0 +20260224 134500;210.454000;210.468000;210.450000;210.463000;0 +20260224 134600;210.457000;210.460000;210.450000;210.452000;0 +20260224 134700;210.454000;210.458000;210.448000;210.450000;0 +20260224 134800;210.452000;210.452000;210.433000;210.435000;0 +20260224 134900;210.439000;210.445000;210.437000;210.445000;0 +20260224 135000;210.435000;210.441000;210.432000;210.433000;0 +20260224 135100;210.432000;210.433000;210.426000;210.430000;0 +20260224 135200;210.431000;210.439000;210.430000;210.432000;0 +20260224 135300;210.434000;210.442000;210.429000;210.432000;0 +20260224 135400;210.427000;210.427000;210.411000;210.427000;0 +20260224 135500;210.427000;210.432000;210.418000;210.423000;0 +20260224 135600;210.421000;210.449000;210.421000;210.449000;0 +20260224 135700;210.447000;210.447000;210.414000;210.414000;0 +20260224 135800;210.412000;210.429000;210.405000;210.410000;0 +20260224 135900;210.410000;210.411000;210.401000;210.409000;0 +20260224 140000;210.415000;210.432000;210.411000;210.424000;0 +20260224 140100;210.422000;210.425000;210.415000;210.418000;0 +20260224 140200;210.416000;210.422000;210.404000;210.405000;0 +20260224 140300;210.404000;210.424000;210.404000;210.416000;0 +20260224 140400;210.418000;210.431000;210.411000;210.419000;0 +20260224 140500;210.421000;210.432000;210.412000;210.428000;0 +20260224 140600;210.433000;210.433000;210.424000;210.426000;0 +20260224 140700;210.427000;210.445000;210.422000;210.428000;0 +20260224 140800;210.428000;210.430000;210.390000;210.399000;0 +20260224 140900;210.397000;210.401000;210.391000;210.399000;0 +20260224 141000;210.398000;210.410000;210.387000;210.408000;0 +20260224 141100;210.403000;210.418000;210.400000;210.401000;0 +20260224 141200;210.401000;210.413000;210.399000;210.412000;0 +20260224 141300;210.409000;210.409000;210.402000;210.406000;0 +20260224 141400;210.404000;210.411000;210.401000;210.410000;0 +20260224 141500;210.412000;210.418000;210.406000;210.415000;0 +20260224 141600;210.416000;210.419000;210.411000;210.413000;0 +20260224 141700;210.412000;210.413000;210.401000;210.402000;0 +20260224 141800;210.403000;210.406000;210.387000;210.387000;0 +20260224 141900;210.391000;210.391000;210.377000;210.378000;0 +20260224 142000;210.379000;210.381000;210.365000;210.377000;0 +20260224 142100;210.381000;210.398000;210.379000;210.393000;0 +20260224 142200;210.395000;210.403000;210.384000;210.391000;0 +20260224 142300;210.391000;210.398000;210.371000;210.395000;0 +20260224 142400;210.392000;210.413000;210.387000;210.412000;0 +20260224 142500;210.412000;210.431000;210.412000;210.427000;0 +20260224 142600;210.426000;210.434000;210.420000;210.420000;0 +20260224 142700;210.419000;210.421000;210.396000;210.398000;0 +20260224 142800;210.395000;210.406000;210.388000;210.388000;0 +20260224 142900;210.389000;210.396000;210.388000;210.393000;0 +20260224 143000;210.390000;210.417000;210.387000;210.407000;0 +20260224 143100;210.410000;210.417000;210.410000;210.410000;0 +20260224 143200;210.405000;210.408000;210.388000;210.399000;0 +20260224 143300;210.403000;210.409000;210.392000;210.396000;0 +20260224 143400;210.400000;210.409000;210.395000;210.400000;0 +20260224 143500;210.405000;210.412000;210.397000;210.407000;0 +20260224 143600;210.404000;210.412000;210.382000;210.382000;0 +20260224 143700;210.387000;210.394000;210.379000;210.392000;0 +20260224 143800;210.389000;210.389000;210.375000;210.379000;0 +20260224 143900;210.376000;210.381000;210.376000;210.379000;0 +20260224 144000;210.379000;210.379000;210.379000;210.379000;0 +20260224 144100;210.379000;210.390000;210.377000;210.382000;0 +20260224 144200;210.386000;210.386000;210.379000;210.383000;0 +20260224 144300;210.381000;210.386000;210.371000;210.372000;0 +20260224 144400;210.371000;210.378000;210.361000;210.368000;0 +20260224 144500;210.363000;210.377000;210.363000;210.363000;0 +20260224 144600;210.368000;210.380000;210.364000;210.371000;0 +20260224 144700;210.371000;210.377000;210.367000;210.368000;0 +20260224 144800;210.367000;210.370000;210.354000;210.366000;0 +20260224 144900;210.368000;210.369000;210.354000;210.354000;0 +20260224 145000;210.357000;210.357000;210.351000;210.356000;0 +20260224 145100;210.355000;210.372000;210.355000;210.369000;0 +20260224 145200;210.368000;210.398000;210.361000;210.380000;0 +20260224 145300;210.378000;210.388000;210.359000;210.363000;0 +20260224 145400;210.367000;210.373000;210.337000;210.349000;0 +20260224 145500;210.351000;210.355000;210.343000;210.355000;0 +20260224 145600;210.355000;210.362000;210.340000;210.347000;0 +20260224 145700;210.348000;210.354000;210.329000;210.332000;0 +20260224 145800;210.331000;210.348000;210.319000;210.338000;0 +20260224 145900;210.341000;210.343000;210.323000;210.325000;0 +20260224 150000;210.323000;210.327000;210.307000;210.325000;0 +20260224 150100;210.326000;210.329000;210.309000;210.311000;0 +20260224 150200;210.314000;210.326000;210.308000;210.310000;0 +20260224 150300;210.308000;210.324000;210.307000;210.318000;0 +20260224 150400;210.317000;210.325000;210.295000;210.298000;0 +20260224 150500;210.301000;210.308000;210.288000;210.292000;0 +20260224 150600;210.288000;210.295000;210.280000;210.290000;0 +20260224 150700;210.291000;210.295000;210.288000;210.291000;0 +20260224 150800;210.293000;210.293000;210.279000;210.288000;0 +20260224 150900;210.290000;210.303000;210.285000;210.292000;0 +20260224 151000;210.294000;210.306000;210.288000;210.303000;0 +20260224 151100;210.302000;210.305000;210.293000;210.297000;0 +20260224 151200;210.297000;210.297000;210.288000;210.292000;0 +20260224 151300;210.289000;210.289000;210.282000;210.288000;0 +20260224 151400;210.286000;210.305000;210.286000;210.305000;0 +20260224 151500;210.305000;210.319000;210.304000;210.314000;0 +20260224 151600;210.316000;210.324000;210.309000;210.320000;0 +20260224 151700;210.321000;210.328000;210.320000;210.327000;0 +20260224 151800;210.326000;210.342000;210.326000;210.341000;0 +20260224 151900;210.341000;210.342000;210.325000;210.329000;0 +20260224 152000;210.326000;210.343000;210.320000;210.342000;0 +20260224 152100;210.344000;210.346000;210.330000;210.336000;0 +20260224 152200;210.335000;210.355000;210.335000;210.353000;0 +20260224 152300;210.353000;210.357000;210.345000;210.351000;0 +20260224 152400;210.352000;210.352000;210.339000;210.341000;0 +20260224 152500;210.341000;210.365000;210.341000;210.355000;0 +20260224 152600;210.354000;210.358000;210.341000;210.348000;0 +20260224 152700;210.344000;210.344000;210.317000;210.331000;0 +20260224 152800;210.331000;210.331000;210.305000;210.319000;0 +20260224 152900;210.322000;210.328000;210.312000;210.325000;0 +20260224 153000;210.320000;210.332000;210.320000;210.332000;0 +20260224 153100;210.329000;210.334000;210.323000;210.334000;0 +20260224 153200;210.333000;210.372000;210.332000;210.372000;0 +20260224 153300;210.375000;210.375000;210.370000;210.372000;0 +20260224 153400;210.369000;210.385000;210.361000;210.376000;0 +20260224 153500;210.375000;210.391000;210.374000;210.387000;0 +20260224 153600;210.389000;210.390000;210.365000;210.381000;0 +20260224 153700;210.380000;210.390000;210.380000;210.389000;0 +20260224 153800;210.387000;210.401000;210.380000;210.395000;0 +20260224 153900;210.397000;210.397000;210.370000;210.372000;0 +20260224 154000;210.374000;210.395000;210.372000;210.383000;0 +20260224 154100;210.384000;210.384000;210.371000;210.380000;0 +20260224 154200;210.382000;210.386000;210.369000;210.376000;0 +20260224 154300;210.376000;210.387000;210.374000;210.386000;0 +20260224 154400;210.387000;210.400000;210.377000;210.390000;0 +20260224 154500;210.389000;210.400000;210.383000;210.385000;0 +20260224 154600;210.384000;210.395000;210.381000;210.392000;0 +20260224 154700;210.394000;210.402000;210.390000;210.395000;0 +20260224 154800;210.394000;210.405000;210.389000;210.389000;0 +20260224 154900;210.390000;210.400000;210.383000;210.395000;0 +20260224 155000;210.396000;210.408000;210.392000;210.395000;0 +20260224 155100;210.394000;210.394000;210.367000;210.381000;0 +20260224 155200;210.380000;210.415000;210.372000;210.402000;0 +20260224 155300;210.400000;210.406000;210.374000;210.374000;0 +20260224 155400;210.372000;210.376000;210.323000;210.323000;0 +20260224 155500;210.324000;210.328000;210.297000;210.307000;0 +20260224 155600;210.317000;210.342000;210.317000;210.341000;0 +20260224 155700;210.339000;210.360000;210.335000;210.336000;0 +20260224 155800;210.335000;210.372000;210.335000;210.372000;0 +20260224 155900;210.371000;210.393000;210.360000;210.392000;0 +20260224 160000;210.392000;210.402000;210.375000;210.376000;0 +20260224 160100;210.376000;210.409000;210.373000;210.404000;0 +20260224 160200;210.407000;210.407000;210.372000;210.373000;0 +20260224 160300;210.376000;210.376000;210.354000;210.354000;0 +20260224 160400;210.351000;210.352000;210.341000;210.345000;0 +20260224 160500;210.349000;210.355000;210.298000;210.325000;0 +20260224 160600;210.321000;210.335000;210.321000;210.331000;0 +20260224 160700;210.327000;210.336000;210.319000;210.336000;0 +20260224 160800;210.339000;210.340000;210.335000;210.339000;0 +20260224 160900;210.341000;210.343000;210.328000;210.332000;0 +20260224 161000;210.337000;210.373000;210.337000;210.373000;0 +20260224 161100;210.372000;210.372000;210.355000;210.355000;0 +20260224 161200;210.357000;210.364000;210.351000;210.360000;0 +20260224 161300;210.359000;210.368000;210.359000;210.365000;0 +20260224 161400;210.367000;210.373000;210.362000;210.370000;0 +20260224 161500;210.371000;210.377000;210.358000;210.362000;0 +20260224 161600;210.361000;210.378000;210.354000;210.363000;0 +20260224 161700;210.361000;210.363000;210.360000;210.362000;0 +20260224 161800;210.363000;210.366000;210.361000;210.361000;0 +20260224 161900;210.365000;210.374000;210.363000;210.374000;0 +20260224 162000;210.373000;210.376000;210.356000;210.361000;0 +20260224 162100;210.357000;210.372000;210.351000;210.362000;0 +20260224 162200;210.361000;210.369000;210.355000;210.369000;0 +20260224 162300;210.369000;210.369000;210.366000;210.367000;0 +20260224 162400;210.366000;210.367000;210.361000;210.361000;0 +20260224 162500;210.357000;210.367000;210.352000;210.363000;0 +20260224 162600;210.369000;210.389000;210.369000;210.387000;0 +20260224 162700;210.387000;210.392000;210.382000;210.385000;0 +20260224 162800;210.385000;210.388000;210.382000;210.384000;0 +20260224 162900;210.384000;210.390000;210.377000;210.387000;0 +20260224 163000;210.386000;210.407000;210.386000;210.402000;0 +20260224 163100;210.401000;210.402000;210.395000;210.401000;0 +20260224 163200;210.401000;210.410000;210.389000;210.390000;0 +20260224 163300;210.392000;210.396000;210.390000;210.394000;0 +20260224 163400;210.398000;210.403000;210.387000;210.396000;0 +20260224 163500;210.397000;210.402000;210.394000;210.397000;0 +20260224 163600;210.396000;210.397000;210.396000;210.396000;0 +20260224 163700;210.397000;210.427000;210.395000;210.422000;0 +20260224 163800;210.429000;210.429000;210.426000;210.428000;0 +20260224 163900;210.427000;210.428000;210.424000;210.428000;0 +20260224 164000;210.426000;210.439000;210.425000;210.437000;0 +20260224 164100;210.435000;210.435000;210.412000;210.414000;0 +20260224 164200;210.413000;210.413000;210.411000;210.413000;0 +20260224 164300;210.411000;210.411000;210.381000;210.381000;0 +20260224 164400;210.382000;210.387000;210.379000;210.384000;0 +20260224 164500;210.384000;210.397000;210.378000;210.384000;0 +20260224 164600;210.382000;210.388000;210.378000;210.387000;0 +20260224 164700;210.398000;210.403000;210.386000;210.390000;0 +20260224 164800;210.386000;210.387000;210.374000;210.376000;0 +20260224 164900;210.372000;210.380000;210.372000;210.380000;0 +20260224 165000;210.377000;210.385000;210.367000;210.368000;0 +20260224 165100;210.369000;210.382000;210.369000;210.371000;0 +20260224 165200;210.373000;210.378000;210.358000;210.360000;0 +20260224 165300;210.359000;210.363000;210.343000;210.349000;0 +20260224 165400;210.348000;210.351000;210.348000;210.350000;0 +20260224 165500;210.358000;210.361000;210.331000;210.332000;0 +20260224 165600;210.334000;210.334000;210.312000;210.324000;0 +20260224 165700;210.323000;210.323000;210.282000;210.301000;0 +20260224 165800;210.296000;210.301000;210.267000;210.271000;0 +20260224 165900;210.276000;210.278000;210.245000;210.247000;0 +20260224 170400;210.070000;210.070000;210.070000;210.070000;0 +20260224 170500;210.136000;210.155000;210.070000;210.153000;0 +20260224 170600;210.175000;210.228000;210.153000;210.180000;0 +20260224 170700;210.181000;210.186000;210.147000;210.147000;0 +20260224 170800;210.147000;210.156000;210.146000;210.156000;0 +20260224 170900;210.155000;210.156000;210.155000;210.155000;0 +20260224 171000;210.155000;210.156000;210.152000;210.152000;0 +20260224 171100;210.154000;210.156000;210.154000;210.156000;0 +20260224 171200;210.155000;210.160000;210.146000;210.155000;0 +20260224 171300;210.158000;210.200000;210.155000;210.199000;0 +20260224 171400;210.191000;210.197000;210.191000;210.197000;0 +20260224 171500;210.195000;210.302000;210.195000;210.301000;0 +20260224 171600;210.292000;210.302000;210.291000;210.292000;0 +20260224 171700;210.292000;210.320000;210.291000;210.320000;0 +20260224 171800;210.318000;210.318000;210.304000;210.307000;0 +20260224 171900;210.309000;210.318000;210.304000;210.310000;0 +20260224 172000;210.311000;210.316000;210.310000;210.316000;0 +20260224 172100;210.317000;210.323000;210.317000;210.321000;0 +20260224 172200;210.320000;210.320000;210.320000;210.320000;0 +20260224 172300;210.324000;210.324000;210.320000;210.320000;0 +20260224 172400;210.318000;210.323000;210.317000;210.317000;0 +20260224 172500;210.316000;210.326000;210.294000;210.294000;0 +20260224 172600;210.294000;210.307000;210.287000;210.298000;0 +20260224 172700;210.296000;210.311000;210.292000;210.301000;0 +20260224 172800;210.308000;210.308000;210.298000;210.298000;0 +20260224 172900;210.307000;210.310000;210.299000;210.309000;0 +20260224 173000;210.311000;210.311000;210.289000;210.289000;0 +20260224 173100;210.290000;210.301000;210.268000;210.270000;0 +20260224 173200;210.267000;210.272000;210.264000;210.271000;0 +20260224 173300;210.271000;210.271000;210.266000;210.267000;0 +20260224 173400;210.267000;210.268000;210.238000;210.246000;0 +20260224 173500;210.246000;210.264000;210.244000;210.261000;0 +20260224 173600;210.258000;210.263000;210.247000;210.254000;0 +20260224 173700;210.258000;210.260000;210.247000;210.254000;0 +20260224 173800;210.257000;210.265000;210.247000;210.257000;0 +20260224 173900;210.257000;210.261000;210.249000;210.260000;0 +20260224 174000;210.261000;210.262000;210.246000;210.258000;0 +20260224 174100;210.261000;210.265000;210.241000;210.265000;0 +20260224 174200;210.265000;210.265000;210.237000;210.244000;0 +20260224 174300;210.241000;210.247000;210.240000;210.240000;0 +20260224 174400;210.243000;210.247000;210.240000;210.245000;0 +20260224 174500;210.243000;210.246000;210.240000;210.240000;0 +20260224 174600;210.244000;210.247000;210.239000;210.241000;0 +20260224 174700;210.243000;210.251000;210.240000;210.251000;0 +20260224 174800;210.251000;210.266000;210.211000;210.240000;0 +20260224 174900;210.239000;210.244000;210.220000;210.243000;0 +20260224 175000;210.243000;210.247000;210.237000;210.239000;0 +20260224 175100;210.236000;210.248000;210.210000;210.224000;0 +20260224 175200;210.217000;210.218000;210.208000;210.215000;0 +20260224 175300;210.217000;210.219000;210.188000;210.202000;0 +20260224 175400;210.208000;210.213000;210.207000;210.213000;0 +20260224 175500;210.214000;210.235000;210.199000;210.209000;0 +20260224 175600;210.206000;210.214000;210.200000;210.200000;0 +20260224 175700;210.201000;210.216000;210.194000;210.195000;0 +20260224 175800;210.195000;210.252000;210.193000;210.222000;0 +20260224 175900;210.226000;210.228000;210.223000;210.224000;0 +20260224 180000;210.224000;210.253000;210.187000;210.230000;0 +20260224 180100;210.230000;210.256000;210.182000;210.199000;0 +20260224 180200;210.207000;210.230000;210.207000;210.221000;0 +20260224 180300;210.223000;210.242000;210.201000;210.238000;0 +20260224 180400;210.232000;210.240000;210.232000;210.238000;0 +20260224 180500;210.241000;210.259000;210.238000;210.252000;0 +20260224 180600;210.258000;210.269000;210.235000;210.244000;0 +20260224 180700;210.237000;210.282000;210.232000;210.271000;0 +20260224 180800;210.283000;210.283000;210.269000;210.270000;0 +20260224 180900;210.261000;210.318000;210.248000;210.318000;0 +20260224 181000;210.314000;210.334000;210.309000;210.323000;0 +20260224 181100;210.327000;210.331000;210.318000;210.318000;0 +20260224 181200;210.319000;210.348000;210.319000;210.341000;0 +20260224 181300;210.346000;210.356000;210.346000;210.354000;0 +20260224 181400;210.352000;210.381000;210.352000;210.377000;0 +20260224 181500;210.376000;210.400000;210.368000;210.394000;0 +20260224 181600;210.392000;210.395000;210.378000;210.384000;0 +20260224 181700;210.378000;210.389000;210.358000;210.361000;0 +20260224 181800;210.361000;210.362000;210.361000;210.362000;0 +20260224 181900;210.368000;210.368000;210.359000;210.364000;0 +20260224 182000;210.363000;210.366000;210.355000;210.360000;0 +20260224 182100;210.362000;210.370000;210.360000;210.365000;0 +20260224 182200;210.365000;210.367000;210.364000;210.366000;0 +20260224 182300;210.367000;210.373000;210.366000;210.370000;0 +20260224 182400;210.371000;210.377000;210.368000;210.371000;0 +20260224 182500;210.369000;210.372000;210.358000;210.359000;0 +20260224 182600;210.354000;210.366000;210.349000;210.363000;0 +20260224 182700;210.363000;210.374000;210.361000;210.371000;0 +20260224 182800;210.372000;210.374000;210.364000;210.368000;0 +20260224 182900;210.368000;210.378000;210.366000;210.378000;0 +20260224 183000;210.375000;210.385000;210.368000;210.368000;0 +20260224 183100;210.368000;210.369000;210.336000;210.337000;0 +20260224 183200;210.338000;210.349000;210.336000;210.338000;0 +20260224 183300;210.336000;210.336000;210.319000;210.322000;0 +20260224 183400;210.322000;210.326000;210.320000;210.321000;0 +20260224 183500;210.325000;210.331000;210.321000;210.328000;0 +20260224 183600;210.332000;210.352000;210.332000;210.351000;0 +20260224 183700;210.352000;210.372000;210.350000;210.370000;0 +20260224 183800;210.371000;210.382000;210.371000;210.381000;0 +20260224 183900;210.380000;210.386000;210.380000;210.381000;0 +20260224 184000;210.380000;210.420000;210.380000;210.402000;0 +20260224 184100;210.401000;210.401000;210.376000;210.385000;0 +20260224 184200;210.387000;210.388000;210.369000;210.383000;0 +20260224 184300;210.381000;210.386000;210.377000;210.377000;0 +20260224 184400;210.376000;210.377000;210.351000;210.362000;0 +20260224 184500;210.365000;210.367000;210.340000;210.350000;0 +20260224 184600;210.349000;210.349000;210.316000;210.326000;0 +20260224 184700;210.324000;210.337000;210.304000;210.329000;0 +20260224 184800;210.330000;210.348000;210.328000;210.346000;0 +20260224 184900;210.347000;210.347000;210.302000;210.305000;0 +20260224 185000;210.303000;210.334000;210.303000;210.324000;0 +20260224 185100;210.320000;210.347000;210.309000;210.325000;0 +20260224 185200;210.335000;210.345000;210.327000;210.344000;0 +20260224 185300;210.342000;210.346000;210.327000;210.333000;0 +20260224 185400;210.330000;210.353000;210.326000;210.341000;0 +20260224 185500;210.337000;210.339000;210.333000;210.337000;0 +20260224 185600;210.338000;210.368000;210.338000;210.363000;0 +20260224 185700;210.361000;210.387000;210.361000;210.386000;0 +20260224 185800;210.383000;210.388000;210.372000;210.387000;0 +20260224 185900;210.388000;210.404000;210.381000;210.401000;0 +20260224 190000;210.401000;210.429000;210.389000;210.429000;0 +20260224 190100;210.427000;210.438000;210.408000;210.408000;0 +20260224 190200;210.407000;210.422000;210.387000;210.404000;0 +20260224 190300;210.403000;210.429000;210.383000;210.426000;0 +20260224 190400;210.424000;210.439000;210.412000;210.429000;0 +20260224 190500;210.425000;210.452000;210.422000;210.442000;0 +20260224 190600;210.440000;210.452000;210.425000;210.427000;0 +20260224 190700;210.430000;210.442000;210.426000;210.440000;0 +20260224 190800;210.438000;210.455000;210.433000;210.455000;0 +20260224 190900;210.456000;210.456000;210.447000;210.448000;0 +20260224 191000;210.453000;210.471000;210.453000;210.456000;0 +20260224 191100;210.445000;210.462000;210.439000;210.445000;0 +20260224 191200;210.444000;210.459000;210.426000;210.451000;0 +20260224 191300;210.450000;210.450000;210.417000;210.439000;0 +20260224 191400;210.438000;210.465000;210.427000;210.453000;0 +20260224 191500;210.454000;210.458000;210.435000;210.443000;0 +20260224 191600;210.440000;210.440000;210.406000;210.410000;0 +20260224 191700;210.414000;210.414000;210.354000;210.364000;0 +20260224 191800;210.363000;210.364000;210.333000;210.340000;0 +20260224 191900;210.342000;210.374000;210.342000;210.363000;0 +20260224 192000;210.364000;210.367000;210.342000;210.356000;0 +20260224 192100;210.356000;210.360000;210.313000;210.323000;0 +20260224 192200;210.324000;210.333000;210.304000;210.326000;0 +20260224 192300;210.327000;210.331000;210.313000;210.316000;0 +20260224 192400;210.323000;210.356000;210.320000;210.356000;0 +20260224 192500;210.363000;210.375000;210.352000;210.375000;0 +20260224 192600;210.372000;210.394000;210.372000;210.393000;0 +20260224 192700;210.394000;210.394000;210.365000;210.372000;0 +20260224 192800;210.371000;210.416000;210.368000;210.400000;0 +20260224 192900;210.400000;210.426000;210.393000;210.422000;0 +20260224 193000;210.422000;210.483000;210.403000;210.483000;0 +20260224 193100;210.481000;210.505000;210.434000;210.444000;0 +20260224 193200;210.444000;210.447000;210.421000;210.431000;0 +20260224 193300;210.435000;210.450000;210.420000;210.432000;0 +20260224 193400;210.425000;210.476000;210.425000;210.470000;0 +20260224 193500;210.471000;210.478000;210.440000;210.448000;0 +20260224 193600;210.449000;210.460000;210.425000;210.432000;0 +20260224 193700;210.437000;210.439000;210.417000;210.419000;0 +20260224 193800;210.423000;210.447000;210.410000;210.415000;0 +20260224 193900;210.416000;210.426000;210.401000;210.408000;0 +20260224 194000;210.409000;210.409000;210.382000;210.397000;0 +20260224 194100;210.397000;210.418000;210.387000;210.407000;0 +20260224 194200;210.409000;210.409000;210.372000;210.409000;0 +20260224 194300;210.408000;210.436000;210.396000;210.432000;0 +20260224 194400;210.441000;210.470000;210.438000;210.448000;0 +20260224 194500;210.449000;210.468000;210.394000;210.401000;0 +20260224 194600;210.397000;210.420000;210.386000;210.410000;0 +20260224 194700;210.410000;210.412000;210.380000;210.392000;0 +20260224 194800;210.392000;210.403000;210.374000;210.396000;0 +20260224 194900;210.396000;210.399000;210.294000;210.299000;0 +20260224 195000;210.290000;210.309000;210.246000;210.295000;0 +20260224 195100;210.302000;210.340000;210.292000;210.327000;0 +20260224 195200;210.325000;210.337000;210.271000;210.321000;0 +20260224 195300;210.323000;210.365000;210.295000;210.335000;0 +20260224 195400;210.334000;210.346000;210.242000;210.323000;0 +20260224 195500;210.319000;210.337000;210.290000;210.334000;0 +20260224 195600;210.338000;210.351000;210.285000;210.301000;0 +20260224 195700;210.302000;210.305000;210.219000;210.240000;0 +20260224 195800;210.240000;210.266000;210.219000;210.264000;0 +20260224 195900;210.262000;210.263000;210.193000;210.206000;0 +20260224 200000;210.204000;210.249000;210.189000;210.237000;0 +20260224 200100;210.235000;210.289000;210.233000;210.287000;0 +20260224 200200;210.285000;210.285000;210.240000;210.241000;0 +20260224 200300;210.241000;210.295000;210.241000;210.294000;0 +20260224 200400;210.296000;210.296000;210.275000;210.287000;0 +20260224 200500;210.286000;210.294000;210.257000;210.265000;0 +20260224 200600;210.264000;210.287000;210.257000;210.275000;0 +20260224 200700;210.277000;210.288000;210.260000;210.262000;0 +20260224 200800;210.260000;210.260000;210.213000;210.224000;0 +20260224 200900;210.220000;210.220000;210.169000;210.170000;0 +20260224 201000;210.168000;210.235000;210.165000;210.207000;0 +20260224 201100;210.209000;210.211000;210.169000;210.205000;0 +20260224 201200;210.209000;210.219000;210.172000;210.175000;0 +20260224 201300;210.174000;210.187000;210.168000;210.186000;0 +20260224 201400;210.184000;210.209000;210.173000;210.209000;0 +20260224 201500;210.216000;210.253000;210.214000;210.250000;0 +20260224 201600;210.242000;210.279000;210.232000;210.274000;0 +20260224 201700;210.278000;210.318000;210.274000;210.305000;0 +20260224 201800;210.305000;210.307000;210.280000;210.280000;0 +20260224 201900;210.282000;210.300000;210.281000;210.292000;0 +20260224 202000;210.291000;210.313000;210.286000;210.304000;0 +20260224 202100;210.299000;210.325000;210.299000;210.324000;0 +20260224 202200;210.322000;210.345000;210.314000;210.326000;0 +20260224 202300;210.322000;210.331000;210.311000;210.323000;0 +20260224 202400;210.318000;210.340000;210.297000;210.316000;0 +20260224 202500;210.313000;210.334000;210.310000;210.322000;0 +20260224 202600;210.327000;210.344000;210.310000;210.322000;0 +20260224 202700;210.322000;210.339000;210.309000;210.309000;0 +20260224 202800;210.308000;210.324000;210.299000;210.322000;0 +20260224 202900;210.318000;210.344000;210.318000;210.337000;0 +20260224 203000;210.334000;210.344000;210.310000;210.319000;0 +20260224 203100;210.318000;210.326000;210.287000;210.295000;0 +20260224 203200;210.294000;210.306000;210.281000;210.299000;0 +20260224 203300;210.293000;210.300000;210.262000;210.262000;0 +20260224 203400;210.265000;210.274000;210.240000;210.246000;0 +20260224 203500;210.250000;210.254000;210.206000;210.245000;0 +20260224 203600;210.243000;210.251000;210.179000;210.203000;0 +20260224 203700;210.204000;210.212000;210.183000;210.208000;0 +20260224 203800;210.207000;210.213000;210.181000;210.208000;0 +20260224 203900;210.208000;210.246000;210.185000;210.237000;0 +20260224 204000;210.238000;210.249000;210.230000;210.240000;0 +20260224 204100;210.242000;210.242000;210.219000;210.220000;0 +20260224 204200;210.219000;210.236000;210.214000;210.227000;0 +20260224 204300;210.225000;210.249000;210.213000;210.242000;0 +20260224 204400;210.240000;210.249000;210.232000;210.237000;0 +20260224 204500;210.238000;210.240000;210.212000;210.238000;0 +20260224 204600;210.239000;210.314000;210.237000;210.311000;0 +20260224 204700;210.309000;210.331000;210.298000;210.309000;0 +20260224 204800;210.316000;210.316000;210.290000;210.314000;0 +20260224 204900;210.318000;210.339000;210.318000;210.324000;0 +20260224 205000;210.322000;210.372000;210.322000;210.372000;0 +20260224 205100;210.370000;210.383000;210.358000;210.374000;0 +20260224 205200;210.368000;210.391000;210.352000;210.389000;0 +20260224 205300;210.393000;210.398000;210.356000;210.356000;0 +20260224 205400;210.356000;210.385000;210.351000;210.381000;0 +20260224 205500;210.383000;210.383000;210.363000;210.382000;0 +20260224 205600;210.380000;210.389000;210.359000;210.359000;0 +20260224 205700;210.359000;210.369000;210.345000;210.364000;0 +20260224 205800;210.365000;210.366000;210.348000;210.358000;0 +20260224 205900;210.360000;210.360000;210.330000;210.338000;0 +20260224 210000;210.338000;210.340000;210.319000;210.325000;0 +20260224 210100;210.327000;210.343000;210.309000;210.329000;0 +20260224 210200;210.325000;210.334000;210.316000;210.330000;0 +20260224 210300;210.333000;210.380000;210.327000;210.377000;0 +20260224 210400;210.378000;210.394000;210.366000;210.391000;0 +20260224 210500;210.390000;210.406000;210.385000;210.388000;0 +20260224 210600;210.388000;210.399000;210.382000;210.398000;0 +20260224 210700;210.396000;210.403000;210.382000;210.387000;0 +20260224 210800;210.388000;210.389000;210.352000;210.376000;0 +20260224 210900;210.377000;210.383000;210.344000;210.346000;0 +20260224 211000;210.346000;210.350000;210.321000;210.325000;0 +20260224 211100;210.324000;210.334000;210.273000;210.281000;0 +20260224 211200;210.270000;210.285000;210.263000;210.285000;0 +20260224 211300;210.286000;210.307000;210.286000;210.294000;0 +20260224 211400;210.293000;210.309000;210.289000;210.292000;0 +20260224 211500;210.294000;210.297000;210.262000;210.267000;0 +20260224 211600;210.265000;210.265000;210.215000;210.232000;0 +20260224 211700;210.235000;210.268000;210.235000;210.264000;0 +20260224 211800;210.266000;210.276000;210.248000;210.263000;0 +20260224 211900;210.261000;210.265000;210.220000;210.243000;0 +20260224 212000;210.241000;210.266000;210.222000;210.255000;0 +20260224 212100;210.255000;210.273000;210.248000;210.271000;0 +20260224 212200;210.268000;210.279000;210.261000;210.264000;0 +20260224 212300;210.266000;210.293000;210.259000;210.275000;0 +20260224 212400;210.274000;210.313000;210.274000;210.302000;0 +20260224 212500;210.301000;210.316000;210.298000;210.309000;0 +20260224 212600;210.302000;210.325000;210.302000;210.322000;0 +20260224 212700;210.324000;210.338000;210.303000;210.314000;0 +20260224 212800;210.313000;210.317000;210.264000;210.271000;0 +20260224 212900;210.270000;210.276000;210.249000;210.266000;0 +20260224 213000;210.270000;210.315000;210.270000;210.307000;0 +20260224 213100;210.308000;210.375000;210.308000;210.339000;0 +20260224 213200;210.337000;210.355000;210.320000;210.326000;0 +20260224 213300;210.326000;210.370000;210.319000;210.356000;0 +20260224 213400;210.356000;210.376000;210.105000;210.118000;0 +20260224 213500;210.108000;210.220000;210.071000;210.143000;0 +20260224 213600;210.141000;210.200000;210.108000;210.169000;0 +20260224 213700;210.170000;210.227000;210.120000;210.167000;0 +20260224 213800;210.164000;210.173000;210.095000;210.132000;0 +20260224 213900;210.130000;210.141000;210.109000;210.122000;0 +20260224 214000;210.122000;210.179000;210.102000;210.179000;0 +20260224 214100;210.172000;210.174000;210.144000;210.173000;0 +20260224 214200;210.176000;210.284000;210.176000;210.251000;0 +20260224 214300;210.255000;210.340000;210.255000;210.332000;0 +20260224 214400;210.332000;210.341000;210.260000;210.276000;0 +20260224 214500;210.274000;210.297000;210.252000;210.293000;0 +20260224 214600;210.286000;210.288000;210.270000;210.275000;0 +20260224 214700;210.274000;210.274000;210.214000;210.234000;0 +20260224 214800;210.234000;210.258000;210.232000;210.248000;0 +20260224 214900;210.246000;210.334000;210.242000;210.321000;0 +20260224 215000;210.323000;210.332000;210.252000;210.252000;0 +20260224 215100;210.252000;210.267000;210.239000;210.254000;0 +20260224 215200;210.254000;210.257000;210.224000;210.239000;0 +20260224 215300;210.237000;210.244000;210.219000;210.244000;0 +20260224 215400;210.242000;210.247000;210.182000;210.183000;0 +20260224 215500;210.186000;210.241000;210.183000;210.241000;0 +20260224 215600;210.241000;210.269000;210.217000;210.225000;0 +20260224 215700;210.227000;210.239000;210.194000;210.225000;0 +20260224 215800;210.224000;210.236000;210.203000;210.203000;0 +20260224 215900;210.203000;210.206000;210.155000;210.155000;0 +20260224 220000;210.154000;210.187000;210.139000;210.149000;0 +20260224 220100;210.148000;210.160000;210.147000;210.158000;0 +20260224 220200;210.160000;210.195000;210.147000;210.171000;0 +20260224 220300;210.172000;210.183000;210.157000;210.176000;0 +20260224 220400;210.175000;210.177000;210.153000;210.160000;0 +20260224 220500;210.158000;210.169000;210.134000;210.149000;0 +20260224 220600;210.150000;210.173000;210.132000;210.168000;0 +20260224 220700;210.171000;210.172000;210.084000;210.102000;0 +20260224 220800;210.102000;210.177000;209.999000;210.158000;0 +20260224 220900;210.157000;210.241000;210.121000;210.165000;0 +20260224 221000;210.165000;210.345000;210.165000;210.329000;0 +20260224 221100;210.326000;210.343000;210.250000;210.255000;0 +20260224 221200;210.254000;210.489000;210.251000;210.448000;0 +20260224 221300;210.448000;210.458000;210.393000;210.437000;0 +20260224 221400;210.437000;210.660000;210.437000;210.590000;0 +20260224 221500;210.584000;210.617000;210.535000;210.538000;0 +20260224 221600;210.538000;210.573000;210.515000;210.548000;0 +20260224 221700;210.546000;210.577000;210.533000;210.566000;0 +20260224 221800;210.567000;210.626000;210.551000;210.610000;0 +20260224 221900;210.610000;210.637000;210.592000;210.627000;0 +20260224 222000;210.626000;210.678000;210.620000;210.626000;0 +20260224 222100;210.626000;210.670000;210.626000;210.646000;0 +20260224 222200;210.650000;210.657000;210.636000;210.639000;0 +20260224 222300;210.638000;210.658000;210.629000;210.633000;0 +20260224 222400;210.633000;210.661000;210.630000;210.652000;0 +20260224 222500;210.655000;210.681000;210.651000;210.677000;0 +20260224 222600;210.677000;210.768000;210.672000;210.740000;0 +20260224 222700;210.740000;210.785000;210.735000;210.767000;0 +20260224 222800;210.767000;210.785000;210.743000;210.746000;0 +20260224 222900;210.741000;210.741000;210.638000;210.642000;0 +20260224 223000;210.643000;210.668000;210.615000;210.637000;0 +20260224 223100;210.635000;210.638000;210.574000;210.574000;0 +20260224 223200;210.577000;210.617000;210.575000;210.595000;0 +20260224 223300;210.596000;210.606000;210.565000;210.570000;0 +20260224 223400;210.569000;210.579000;210.530000;210.544000;0 +20260224 223500;210.543000;210.565000;210.515000;210.555000;0 +20260224 223600;210.553000;210.566000;210.521000;210.565000;0 +20260224 223700;210.563000;210.569000;210.537000;210.543000;0 +20260224 223800;210.545000;210.575000;210.542000;210.575000;0 +20260224 223900;210.574000;210.612000;210.565000;210.610000;0 +20260224 224000;210.611000;210.641000;210.602000;210.625000;0 +20260224 224100;210.624000;210.629000;210.588000;210.596000;0 +20260224 224200;210.596000;210.603000;210.578000;210.596000;0 +20260224 224300;210.592000;210.626000;210.586000;210.616000;0 +20260224 224400;210.615000;210.634000;210.613000;210.615000;0 +20260224 224500;210.612000;210.693000;210.609000;210.660000;0 +20260224 224600;210.658000;210.689000;210.658000;210.666000;0 +20260224 224700;210.667000;210.676000;210.638000;210.675000;0 +20260224 224800;210.673000;210.720000;210.673000;210.699000;0 +20260224 224900;210.699000;210.700000;210.635000;210.635000;0 +20260224 225000;210.635000;210.646000;210.623000;210.637000;0 +20260224 225100;210.638000;210.640000;210.604000;210.607000;0 +20260224 225200;210.605000;210.623000;210.605000;210.613000;0 +20260224 225300;210.611000;210.617000;210.561000;210.566000;0 +20260224 225400;210.567000;210.622000;210.564000;210.620000;0 +20260224 225500;210.615000;210.629000;210.599000;210.616000;0 +20260224 225600;210.618000;210.633000;210.587000;210.588000;0 +20260224 225700;210.591000;210.605000;210.557000;210.567000;0 +20260224 225800;210.569000;210.570000;210.550000;210.552000;0 +20260224 225900;210.557000;210.561000;210.541000;210.558000;0 +20260224 230000;210.558000;210.605000;210.549000;210.601000;0 +20260224 230100;210.601000;210.632000;210.595000;210.632000;0 +20260224 230200;210.633000;210.665000;210.631000;210.663000;0 +20260224 230300;210.663000;210.697000;210.640000;210.697000;0 +20260224 230400;210.695000;210.697000;210.669000;210.678000;0 +20260224 230500;210.676000;210.676000;210.646000;210.656000;0 +20260224 230600;210.654000;210.667000;210.654000;210.661000;0 +20260224 230700;210.670000;210.688000;210.668000;210.668000;0 +20260224 230800;210.667000;210.667000;210.647000;210.653000;0 +20260224 230900;210.654000;210.689000;210.643000;210.689000;0 +20260224 231000;210.687000;210.750000;210.666000;210.749000;0 +20260224 231100;210.744000;210.756000;210.711000;210.736000;0 +20260224 231200;210.735000;210.778000;210.726000;210.773000;0 +20260224 231300;210.775000;210.831000;210.774000;210.822000;0 +20260224 231400;210.820000;210.837000;210.795000;210.815000;0 +20260224 231500;210.816000;210.817000;210.769000;210.769000;0 +20260224 231600;210.771000;210.786000;210.726000;210.730000;0 +20260224 231700;210.728000;210.733000;210.691000;210.702000;0 +20260224 231800;210.704000;210.741000;210.684000;210.730000;0 +20260224 231900;210.736000;210.748000;210.692000;210.712000;0 +20260224 232000;210.714000;210.719000;210.700000;210.706000;0 +20260224 232100;210.704000;210.719000;210.698000;210.705000;0 +20260224 232200;210.706000;210.706000;210.671000;210.678000;0 +20260224 232300;210.681000;210.692000;210.669000;210.675000;0 +20260224 232400;210.676000;210.700000;210.673000;210.690000;0 +20260224 232500;210.687000;210.689000;210.657000;210.677000;0 +20260224 232600;210.675000;210.682000;210.656000;210.680000;0 +20260224 232700;210.682000;210.719000;210.664000;210.718000;0 +20260224 232800;210.718000;210.739000;210.717000;210.731000;0 +20260224 232900;210.730000;210.742000;210.723000;210.739000;0 +20260224 233000;210.738000;210.739000;210.725000;210.727000;0 +20260224 233100;210.728000;210.752000;210.701000;210.730000;0 +20260224 233200;210.731000;210.736000;210.704000;210.704000;0 +20260224 233300;210.705000;210.714000;210.659000;210.663000;0 +20260224 233400;210.660000;210.681000;210.636000;210.670000;0 +20260224 233500;210.671000;210.701000;210.669000;210.699000;0 +20260224 233600;210.699000;210.723000;210.693000;210.710000;0 +20260224 233700;210.710000;210.712000;210.694000;210.707000;0 +20260224 233800;210.706000;210.717000;210.692000;210.711000;0 +20260224 233900;210.708000;210.712000;210.686000;210.698000;0 +20260224 234000;210.694000;210.696000;210.685000;210.696000;0 +20260224 234100;210.698000;210.700000;210.684000;210.684000;0 +20260224 234200;210.684000;210.685000;210.669000;210.675000;0 +20260224 234300;210.677000;210.687000;210.664000;210.664000;0 +20260224 234400;210.670000;210.689000;210.670000;210.675000;0 +20260224 234500;210.674000;210.682000;210.659000;210.680000;0 +20260224 234600;210.680000;210.680000;210.617000;210.620000;0 +20260224 234700;210.619000;210.621000;210.607000;210.615000;0 +20260224 234800;210.613000;210.614000;210.599000;210.608000;0 +20260224 234900;210.609000;210.610000;210.595000;210.601000;0 +20260224 235000;210.609000;210.628000;210.602000;210.622000;0 +20260224 235100;210.623000;210.623000;210.583000;210.589000;0 +20260224 235200;210.587000;210.589000;210.555000;210.565000;0 +20260224 235300;210.566000;210.569000;210.550000;210.553000;0 +20260224 235400;210.555000;210.560000;210.542000;210.548000;0 +20260224 235500;210.547000;210.547000;210.512000;210.512000;0 +20260224 235600;210.512000;210.522000;210.502000;210.511000;0 +20260224 235700;210.510000;210.512000;210.478000;210.487000;0 +20260224 235800;210.495000;210.528000;210.494000;210.516000;0 +20260224 235900;210.517000;210.517000;210.493000;210.497000;0 +20260225 000000;210.498000;210.530000;210.498000;210.517000;0 +20260225 000100;210.517000;210.557000;210.517000;210.540000;0 +20260225 000200;210.545000;210.554000;210.501000;210.503000;0 +20260225 000300;210.502000;210.545000;210.502000;210.542000;0 +20260225 000400;210.545000;210.605000;210.539000;210.587000;0 +20260225 000500;210.587000;210.608000;210.579000;210.598000;0 +20260225 000600;210.595000;210.604000;210.584000;210.591000;0 +20260225 000700;210.593000;210.605000;210.560000;210.560000;0 +20260225 000800;210.561000;210.577000;210.549000;210.562000;0 +20260225 000900;210.562000;210.591000;210.561000;210.564000;0 +20260225 001000;210.565000;210.572000;210.549000;210.564000;0 +20260225 001100;210.565000;210.565000;210.529000;210.558000;0 +20260225 001200;210.557000;210.591000;210.554000;210.569000;0 +20260225 001300;210.567000;210.569000;210.546000;210.554000;0 +20260225 001400;210.552000;210.569000;210.533000;210.534000;0 +20260225 001500;210.534000;210.542000;210.524000;210.530000;0 +20260225 001600;210.529000;210.532000;210.508000;210.509000;0 +20260225 001700;210.508000;210.515000;210.496000;210.510000;0 +20260225 001800;210.510000;210.537000;210.510000;210.515000;0 +20260225 001900;210.514000;210.529000;210.514000;210.526000;0 +20260225 002000;210.529000;210.535000;210.515000;210.527000;0 +20260225 002100;210.523000;210.553000;210.522000;210.534000;0 +20260225 002200;210.533000;210.561000;210.533000;210.543000;0 +20260225 002300;210.549000;210.549000;210.510000;210.522000;0 +20260225 002400;210.523000;210.538000;210.519000;210.534000;0 +20260225 002500;210.532000;210.540000;210.527000;210.534000;0 +20260225 002600;210.536000;210.553000;210.531000;210.540000;0 +20260225 002700;210.539000;210.567000;210.534000;210.566000;0 +20260225 002800;210.567000;210.574000;210.556000;210.567000;0 +20260225 002900;210.567000;210.567000;210.545000;210.547000;0 +20260225 003000;210.548000;210.557000;210.542000;210.544000;0 +20260225 003100;210.542000;210.572000;210.518000;210.556000;0 +20260225 003200;210.561000;210.589000;210.555000;210.566000;0 +20260225 003300;210.567000;210.609000;210.563000;210.600000;0 +20260225 003400;210.599000;210.599000;210.562000;210.564000;0 +20260225 003500;210.565000;210.577000;210.545000;210.545000;0 +20260225 003600;210.546000;210.547000;210.515000;210.515000;0 +20260225 003700;210.515000;210.534000;210.509000;210.532000;0 +20260225 003800;210.530000;210.567000;210.529000;210.567000;0 +20260225 003900;210.569000;210.600000;210.569000;210.590000;0 +20260225 004000;210.590000;210.592000;210.572000;210.582000;0 +20260225 004100;210.584000;210.599000;210.574000;210.587000;0 +20260225 004200;210.587000;210.590000;210.558000;210.560000;0 +20260225 004300;210.560000;210.588000;210.556000;210.558000;0 +20260225 004400;210.559000;210.570000;210.549000;210.550000;0 +20260225 004500;210.551000;210.577000;210.546000;210.551000;0 +20260225 004600;210.560000;210.592000;210.560000;210.584000;0 +20260225 004700;210.588000;210.599000;210.582000;210.594000;0 +20260225 004800;210.594000;210.594000;210.553000;210.556000;0 +20260225 004900;210.555000;210.555000;210.531000;210.548000;0 +20260225 005000;210.546000;210.554000;210.544000;210.554000;0 +20260225 005100;210.561000;210.573000;210.555000;210.559000;0 +20260225 005200;210.552000;210.552000;210.535000;210.547000;0 +20260225 005300;210.547000;210.547000;210.530000;210.533000;0 +20260225 005400;210.532000;210.532000;210.522000;210.523000;0 +20260225 005500;210.520000;210.520000;210.396000;210.396000;0 +20260225 005600;210.396000;210.411000;210.371000;210.380000;0 +20260225 005700;210.385000;210.399000;210.370000;210.383000;0 +20260225 005800;210.388000;210.390000;210.365000;210.377000;0 +20260225 005900;210.377000;210.402000;210.373000;210.386000;0 +20260225 010000;210.385000;210.443000;210.370000;210.424000;0 +20260225 010100;210.421000;210.430000;210.394000;210.411000;0 +20260225 010200;210.412000;210.434000;210.387000;210.433000;0 +20260225 010300;210.431000;210.441000;210.382000;210.429000;0 +20260225 010400;210.429000;210.447000;210.423000;210.430000;0 +20260225 010500;210.432000;210.464000;210.426000;210.463000;0 +20260225 010600;210.461000;210.470000;210.447000;210.467000;0 +20260225 010700;210.463000;210.468000;210.442000;210.457000;0 +20260225 010800;210.457000;210.457000;210.354000;210.354000;0 +20260225 010900;210.352000;210.355000;210.309000;210.330000;0 +20260225 011000;210.329000;210.365000;210.322000;210.349000;0 +20260225 011100;210.347000;210.376000;210.345000;210.367000;0 +20260225 011200;210.368000;210.375000;210.353000;210.366000;0 +20260225 011300;210.365000;210.369000;210.353000;210.358000;0 +20260225 011400;210.358000;210.392000;210.358000;210.384000;0 +20260225 011500;210.383000;210.392000;210.348000;210.351000;0 +20260225 011600;210.348000;210.361000;210.339000;210.339000;0 +20260225 011700;210.340000;210.350000;210.326000;210.345000;0 +20260225 011800;210.346000;210.383000;210.344000;210.380000;0 +20260225 011900;210.383000;210.416000;210.383000;210.415000;0 +20260225 012000;210.413000;210.434000;210.405000;210.434000;0 +20260225 012100;210.433000;210.453000;210.429000;210.452000;0 +20260225 012200;210.452000;210.489000;210.446000;210.463000;0 +20260225 012300;210.466000;210.479000;210.442000;210.446000;0 +20260225 012400;210.448000;210.461000;210.447000;210.460000;0 +20260225 012500;210.458000;210.499000;210.458000;210.497000;0 +20260225 012600;210.491000;210.507000;210.482000;210.494000;0 +20260225 012700;210.493000;210.498000;210.473000;210.496000;0 +20260225 012800;210.492000;210.502000;210.465000;210.467000;0 +20260225 012900;210.472000;210.497000;210.468000;210.473000;0 +20260225 013000;210.469000;210.473000;210.451000;210.461000;0 +20260225 013100;210.459000;210.470000;210.417000;210.469000;0 +20260225 013200;210.469000;210.511000;210.469000;210.496000;0 +20260225 013300;210.498000;210.531000;210.498000;210.505000;0 +20260225 013400;210.503000;210.525000;210.494000;210.524000;0 +20260225 013500;210.526000;210.540000;210.515000;210.540000;0 +20260225 013600;210.536000;210.545000;210.528000;210.533000;0 +20260225 013700;210.538000;210.554000;210.518000;210.518000;0 +20260225 013800;210.518000;210.578000;210.518000;210.571000;0 +20260225 013900;210.571000;210.592000;210.553000;210.575000;0 +20260225 014000;210.576000;210.576000;210.528000;210.532000;0 +20260225 014100;210.531000;210.547000;210.527000;210.540000;0 +20260225 014200;210.548000;210.567000;210.548000;210.556000;0 +20260225 014300;210.556000;210.607000;210.555000;210.607000;0 +20260225 014400;210.609000;210.635000;210.603000;210.624000;0 +20260225 014500;210.625000;210.654000;210.624000;210.646000;0 +20260225 014600;210.645000;210.669000;210.642000;210.642000;0 +20260225 014700;210.642000;210.671000;210.642000;210.657000;0 +20260225 014800;210.653000;210.657000;210.642000;210.650000;0 +20260225 014900;210.649000;210.660000;210.641000;210.659000;0 +20260225 015000;210.658000;210.660000;210.629000;210.651000;0 +20260225 015100;210.668000;210.673000;210.642000;210.645000;0 +20260225 015200;210.645000;210.667000;210.641000;210.667000;0 +20260225 015300;210.664000;210.676000;210.657000;210.657000;0 +20260225 015400;210.657000;210.661000;210.588000;210.589000;0 +20260225 015500;210.589000;210.608000;210.589000;210.600000;0 +20260225 015600;210.596000;210.620000;210.596000;210.612000;0 +20260225 015700;210.622000;210.624000;210.615000;210.620000;0 +20260225 015800;210.619000;210.626000;210.591000;210.595000;0 +20260225 015900;210.594000;210.603000;210.585000;210.603000;0 +20260225 020000;210.609000;210.663000;210.585000;210.655000;0 +20260225 020100;210.657000;210.713000;210.653000;210.713000;0 +20260225 020200;210.714000;210.727000;210.693000;210.707000;0 +20260225 020300;210.709000;210.717000;210.669000;210.673000;0 +20260225 020400;210.676000;210.697000;210.671000;210.691000;0 +20260225 020500;210.691000;210.768000;210.690000;210.765000;0 +20260225 020600;210.762000;210.766000;210.739000;210.760000;0 +20260225 020700;210.760000;210.772000;210.744000;210.769000;0 +20260225 020800;210.766000;210.783000;210.739000;210.779000;0 +20260225 020900;210.779000;210.780000;210.725000;210.727000;0 +20260225 021000;210.729000;210.745000;210.729000;210.742000;0 +20260225 021100;210.744000;210.766000;210.724000;210.727000;0 +20260225 021200;210.723000;210.723000;210.644000;210.675000;0 +20260225 021300;210.675000;210.680000;210.602000;210.614000;0 +20260225 021400;210.613000;210.618000;210.579000;210.592000;0 +20260225 021500;210.592000;210.640000;210.575000;210.640000;0 +20260225 021600;210.639000;210.644000;210.592000;210.602000;0 +20260225 021700;210.603000;210.614000;210.595000;210.609000;0 +20260225 021800;210.618000;210.622000;210.590000;210.591000;0 +20260225 021900;210.592000;210.617000;210.592000;210.615000;0 +20260225 022000;210.617000;210.640000;210.612000;210.640000;0 +20260225 022100;210.642000;210.676000;210.634000;210.649000;0 +20260225 022200;210.649000;210.662000;210.606000;210.626000;0 +20260225 022300;210.625000;210.643000;210.617000;210.623000;0 +20260225 022400;210.628000;210.637000;210.601000;210.626000;0 +20260225 022500;210.633000;210.648000;210.627000;210.647000;0 +20260225 022600;210.648000;210.648000;210.608000;210.608000;0 +20260225 022700;210.613000;210.614000;210.590000;210.609000;0 +20260225 022800;210.609000;210.648000;210.608000;210.618000;0 +20260225 022900;210.619000;210.642000;210.614000;210.641000;0 +20260225 023000;210.641000;210.672000;210.639000;210.645000;0 +20260225 023100;210.642000;210.672000;210.638000;210.666000;0 +20260225 023200;210.666000;210.680000;210.638000;210.647000;0 +20260225 023300;210.636000;210.647000;210.582000;210.585000;0 +20260225 023400;210.586000;210.586000;210.556000;210.568000;0 +20260225 023500;210.567000;210.576000;210.534000;210.542000;0 +20260225 023600;210.538000;210.567000;210.527000;210.567000;0 +20260225 023700;210.567000;210.576000;210.545000;210.563000;0 +20260225 023800;210.565000;210.609000;210.564000;210.602000;0 +20260225 023900;210.600000;210.642000;210.585000;210.637000;0 +20260225 024000;210.638000;210.676000;210.631000;210.669000;0 +20260225 024100;210.667000;210.676000;210.642000;210.671000;0 +20260225 024200;210.671000;210.676000;210.638000;210.642000;0 +20260225 024300;210.644000;210.657000;210.607000;210.633000;0 +20260225 024400;210.634000;210.671000;210.632000;210.644000;0 +20260225 024500;210.640000;210.658000;210.638000;210.653000;0 +20260225 024600;210.655000;210.691000;210.640000;210.680000;0 +20260225 024700;210.676000;210.679000;210.627000;210.629000;0 +20260225 024800;210.631000;210.642000;210.609000;210.611000;0 +20260225 024900;210.615000;210.648000;210.600000;210.641000;0 +20260225 025000;210.646000;210.699000;210.646000;210.694000;0 +20260225 025100;210.695000;210.782000;210.693000;210.726000;0 +20260225 025200;210.722000;210.739000;210.709000;210.711000;0 +20260225 025300;210.710000;210.730000;210.696000;210.725000;0 +20260225 025400;210.726000;210.754000;210.724000;210.736000;0 +20260225 025500;210.742000;210.799000;210.742000;210.799000;0 +20260225 025600;210.798000;210.811000;210.780000;210.807000;0 +20260225 025700;210.803000;210.862000;210.797000;210.859000;0 +20260225 025800;210.858000;210.928000;210.844000;210.903000;0 +20260225 025900;210.902000;210.927000;210.890000;210.899000;0 +20260225 030000;210.901000;211.031000;210.895000;211.029000;0 +20260225 030100;211.028000;211.052000;211.003000;211.017000;0 +20260225 030200;211.012000;211.044000;210.996000;210.999000;0 +20260225 030300;210.996000;210.999000;210.940000;210.968000;0 +20260225 030400;210.966000;210.982000;210.939000;210.959000;0 +20260225 030500;210.967000;210.982000;210.956000;210.971000;0 +20260225 030600;210.969000;210.996000;210.941000;210.947000;0 +20260225 030700;210.947000;210.965000;210.909000;210.922000;0 +20260225 030800;210.922000;210.936000;210.914000;210.919000;0 +20260225 030900;210.922000;210.941000;210.881000;210.917000;0 +20260225 031000;210.917000;210.942000;210.865000;210.877000;0 +20260225 031100;210.874000;210.889000;210.853000;210.880000;0 +20260225 031200;210.881000;210.915000;210.871000;210.893000;0 +20260225 031300;210.895000;210.977000;210.892000;210.960000;0 +20260225 031400;210.958000;211.002000;210.949000;210.951000;0 +20260225 031500;210.952000;210.953000;210.918000;210.929000;0 +20260225 031600;210.929000;210.969000;210.926000;210.956000;0 +20260225 031700;210.955000;210.982000;210.944000;210.982000;0 +20260225 031800;210.981000;211.036000;210.974000;211.019000;0 +20260225 031900;211.030000;211.040000;210.971000;210.981000;0 +20260225 032000;210.983000;211.038000;210.983000;211.035000;0 +20260225 032100;211.036000;211.048000;210.980000;210.982000;0 +20260225 032200;210.984000;211.010000;210.981000;211.002000;0 +20260225 032300;211.003000;211.022000;210.997000;211.022000;0 +20260225 032400;211.023000;211.030000;210.986000;210.992000;0 +20260225 032500;210.991000;211.028000;210.978000;211.028000;0 +20260225 032600;211.025000;211.026000;210.967000;210.975000;0 +20260225 032700;210.978000;211.010000;210.971000;211.002000;0 +20260225 032800;211.011000;211.011000;210.968000;210.969000;0 +20260225 032900;210.971000;210.991000;210.967000;210.968000;0 +20260225 033000;210.972000;211.028000;210.967000;211.019000;0 +20260225 033100;211.021000;211.041000;210.998000;211.032000;0 +20260225 033200;211.034000;211.086000;211.034000;211.077000;0 +20260225 033300;211.080000;211.095000;211.079000;211.092000;0 +20260225 033400;211.094000;211.104000;211.062000;211.064000;0 +20260225 033500;211.063000;211.083000;211.043000;211.083000;0 +20260225 033600;211.072000;211.078000;211.053000;211.063000;0 +20260225 033700;211.067000;211.087000;211.055000;211.069000;0 +20260225 033800;211.070000;211.156000;211.066000;211.156000;0 +20260225 033900;211.159000;211.169000;211.146000;211.152000;0 +20260225 034000;211.153000;211.188000;211.142000;211.153000;0 +20260225 034100;211.152000;211.181000;211.150000;211.181000;0 +20260225 034200;211.183000;211.192000;211.149000;211.192000;0 +20260225 034300;211.191000;211.210000;211.188000;211.188000;0 +20260225 034400;211.186000;211.193000;211.119000;211.119000;0 +20260225 034500;211.117000;211.125000;211.097000;211.100000;0 +20260225 034600;211.101000;211.139000;211.094000;211.127000;0 +20260225 034700;211.126000;211.183000;211.126000;211.183000;0 +20260225 034800;211.182000;211.183000;211.143000;211.143000;0 +20260225 034900;211.143000;211.151000;211.117000;211.149000;0 +20260225 035000;211.151000;211.167000;211.145000;211.164000;0 +20260225 035100;211.165000;211.171000;211.151000;211.170000;0 +20260225 035200;211.168000;211.173000;211.133000;211.137000;0 +20260225 035300;211.129000;211.155000;211.125000;211.144000;0 +20260225 035400;211.145000;211.168000;211.137000;211.155000;0 +20260225 035500;211.153000;211.196000;211.144000;211.181000;0 +20260225 035600;211.176000;211.221000;211.176000;211.219000;0 +20260225 035700;211.221000;211.228000;211.180000;211.201000;0 +20260225 035800;211.202000;211.227000;211.199000;211.214000;0 +20260225 035900;211.212000;211.269000;211.208000;211.269000;0 +20260225 040000;211.270000;211.298000;211.244000;211.298000;0 +20260225 040100;211.300000;211.325000;211.279000;211.314000;0 +20260225 040200;211.315000;211.349000;211.306000;211.326000;0 +20260225 040300;211.337000;211.367000;211.336000;211.354000;0 +20260225 040400;211.352000;211.375000;211.344000;211.348000;0 +20260225 040500;211.355000;211.393000;211.351000;211.385000;0 +20260225 040600;211.385000;211.420000;211.381000;211.416000;0 +20260225 040700;211.416000;211.421000;211.370000;211.378000;0 +20260225 040800;211.379000;211.425000;211.375000;211.420000;0 +20260225 040900;211.418000;211.464000;211.418000;211.460000;0 +20260225 041000;211.459000;211.482000;211.451000;211.455000;0 +20260225 041100;211.457000;211.463000;211.424000;211.425000;0 +20260225 041200;211.424000;211.424000;211.363000;211.389000;0 +20260225 041300;211.393000;211.416000;211.380000;211.395000;0 +20260225 041400;211.395000;211.444000;211.360000;211.360000;0 +20260225 041500;211.363000;211.363000;211.325000;211.347000;0 +20260225 041600;211.350000;211.421000;211.343000;211.420000;0 +20260225 041700;211.420000;211.481000;211.413000;211.480000;0 +20260225 041800;211.484000;211.488000;211.465000;211.483000;0 +20260225 041900;211.485000;211.535000;211.472000;211.525000;0 +20260225 042000;211.518000;211.685000;211.512000;211.685000;0 +20260225 042100;211.688000;211.690000;211.623000;211.627000;0 +20260225 042200;211.629000;211.693000;211.627000;211.666000;0 +20260225 042300;211.668000;211.698000;211.667000;211.681000;0 +20260225 042400;211.679000;211.680000;211.653000;211.654000;0 +20260225 042500;211.656000;211.660000;211.590000;211.640000;0 +20260225 042600;211.642000;211.686000;211.640000;211.682000;0 +20260225 042700;211.685000;211.686000;211.658000;211.683000;0 +20260225 042800;211.685000;211.701000;211.636000;211.648000;0 +20260225 042900;211.649000;211.656000;211.620000;211.620000;0 +20260225 043000;211.620000;211.664000;211.619000;211.622000;0 +20260225 043100;211.623000;211.624000;211.585000;211.589000;0 +20260225 043200;211.593000;211.594000;211.528000;211.533000;0 +20260225 043300;211.532000;211.537000;211.333000;211.428000;0 +20260225 043400;211.425000;211.546000;211.421000;211.521000;0 +20260225 043500;211.522000;211.564000;211.500000;211.542000;0 +20260225 043600;211.539000;211.539000;211.285000;211.365000;0 +20260225 043700;211.366000;211.423000;211.299000;211.300000;0 +20260225 043800;211.295000;211.400000;211.290000;211.320000;0 +20260225 043900;211.321000;211.379000;211.321000;211.377000;0 +20260225 044000;211.377000;211.423000;211.376000;211.392000;0 +20260225 044100;211.395000;211.400000;211.350000;211.382000;0 +20260225 044200;211.382000;211.432000;211.381000;211.420000;0 +20260225 044300;211.424000;211.428000;211.385000;211.410000;0 +20260225 044400;211.411000;211.436000;211.397000;211.427000;0 +20260225 044500;211.426000;211.450000;211.412000;211.450000;0 +20260225 044600;211.449000;211.486000;211.444000;211.470000;0 +20260225 044700;211.469000;211.470000;211.406000;211.436000;0 +20260225 044800;211.432000;211.459000;211.429000;211.434000;0 +20260225 044900;211.435000;211.442000;211.353000;211.356000;0 +20260225 045000;211.357000;211.405000;211.341000;211.397000;0 +20260225 045100;211.397000;211.399000;211.350000;211.357000;0 +20260225 045200;211.366000;211.438000;211.366000;211.438000;0 +20260225 045300;211.435000;211.486000;211.435000;211.482000;0 +20260225 045400;211.483000;211.521000;211.453000;211.513000;0 +20260225 045500;211.513000;211.601000;211.513000;211.599000;0 +20260225 045600;211.596000;211.639000;211.586000;211.619000;0 +20260225 045700;211.618000;211.659000;211.618000;211.642000;0 +20260225 045800;211.642000;211.651000;211.608000;211.649000;0 +20260225 045900;211.651000;211.652000;211.625000;211.625000;0 +20260225 050000;211.627000;211.696000;211.599000;211.689000;0 +20260225 050100;211.689000;211.720000;211.682000;211.711000;0 +20260225 050200;211.711000;211.718000;211.685000;211.705000;0 +20260225 050300;211.704000;211.734000;211.701000;211.720000;0 +20260225 050400;211.720000;211.745000;211.718000;211.743000;0 +20260225 050500;211.743000;211.743000;211.709000;211.725000;0 +20260225 050600;211.726000;211.738000;211.707000;211.734000;0 +20260225 050700;211.732000;211.740000;211.698000;211.704000;0 +20260225 050800;211.708000;211.711000;211.662000;211.701000;0 +20260225 050900;211.700000;211.720000;211.700000;211.716000;0 +20260225 051000;211.713000;211.744000;211.690000;211.744000;0 +20260225 051100;211.745000;211.756000;211.718000;211.736000;0 +20260225 051200;211.735000;211.735000;211.704000;211.730000;0 +20260225 051300;211.726000;211.741000;211.713000;211.718000;0 +20260225 051400;211.720000;211.728000;211.705000;211.727000;0 +20260225 051500;211.730000;211.738000;211.706000;211.719000;0 +20260225 051600;211.724000;211.725000;211.678000;211.678000;0 +20260225 051700;211.681000;211.707000;211.665000;211.677000;0 +20260225 051800;211.677000;211.686000;211.666000;211.681000;0 +20260225 051900;211.677000;211.700000;211.656000;211.658000;0 +20260225 052000;211.656000;211.659000;211.613000;211.618000;0 +20260225 052100;211.621000;211.631000;211.601000;211.601000;0 +20260225 052200;211.601000;211.651000;211.600000;211.644000;0 +20260225 052300;211.643000;211.643000;211.608000;211.638000;0 +20260225 052400;211.639000;211.651000;211.634000;211.639000;0 +20260225 052500;211.636000;211.653000;211.626000;211.636000;0 +20260225 052600;211.635000;211.649000;211.609000;211.641000;0 +20260225 052700;211.642000;211.661000;211.637000;211.651000;0 +20260225 052800;211.652000;211.683000;211.645000;211.657000;0 +20260225 052900;211.663000;211.668000;211.634000;211.634000;0 +20260225 053000;211.638000;211.695000;211.629000;211.673000;0 +20260225 053100;211.668000;211.699000;211.658000;211.687000;0 +20260225 053200;211.689000;211.708000;211.684000;211.704000;0 +20260225 053300;211.699000;211.707000;211.681000;211.683000;0 +20260225 053400;211.683000;211.692000;211.665000;211.674000;0 +20260225 053500;211.674000;211.686000;211.644000;211.686000;0 +20260225 053600;211.687000;211.744000;211.684000;211.733000;0 +20260225 053700;211.734000;211.739000;211.713000;211.723000;0 +20260225 053800;211.723000;211.723000;211.672000;211.700000;0 +20260225 053900;211.701000;211.749000;211.701000;211.712000;0 +20260225 054000;211.711000;211.722000;211.676000;211.679000;0 +20260225 054100;211.678000;211.703000;211.669000;211.696000;0 +20260225 054200;211.697000;211.745000;211.697000;211.725000;0 +20260225 054300;211.722000;211.742000;211.713000;211.734000;0 +20260225 054400;211.733000;211.743000;211.702000;211.726000;0 +20260225 054500;211.726000;211.749000;211.724000;211.732000;0 +20260225 054600;211.729000;211.765000;211.729000;211.764000;0 +20260225 054700;211.764000;211.806000;211.764000;211.797000;0 +20260225 054800;211.798000;211.801000;211.774000;211.791000;0 +20260225 054900;211.791000;211.804000;211.788000;211.795000;0 +20260225 055000;211.796000;211.825000;211.785000;211.813000;0 +20260225 055100;211.816000;211.829000;211.796000;211.804000;0 +20260225 055200;211.804000;211.834000;211.797000;211.834000;0 +20260225 055300;211.837000;211.838000;211.821000;211.833000;0 +20260225 055400;211.835000;211.845000;211.784000;211.797000;0 +20260225 055500;211.798000;211.836000;211.787000;211.806000;0 +20260225 055600;211.806000;211.810000;211.784000;211.803000;0 +20260225 055700;211.806000;211.826000;211.796000;211.822000;0 +20260225 055800;211.815000;211.823000;211.810000;211.810000;0 +20260225 055900;211.809000;211.820000;211.800000;211.813000;0 +20260225 060000;211.815000;211.825000;211.788000;211.808000;0 +20260225 060100;211.810000;211.811000;211.785000;211.791000;0 +20260225 060200;211.790000;211.793000;211.740000;211.741000;0 +20260225 060300;211.741000;211.751000;211.709000;211.723000;0 +20260225 060400;211.722000;211.740000;211.715000;211.727000;0 +20260225 060500;211.727000;211.750000;211.727000;211.744000;0 +20260225 060600;211.752000;211.758000;211.738000;211.750000;0 +20260225 060700;211.750000;211.758000;211.708000;211.708000;0 +20260225 060800;211.710000;211.712000;211.696000;211.704000;0 +20260225 060900;211.706000;211.722000;211.703000;211.705000;0 +20260225 061000;211.709000;211.713000;211.674000;211.685000;0 +20260225 061100;211.687000;211.711000;211.675000;211.709000;0 +20260225 061200;211.710000;211.721000;211.697000;211.697000;0 +20260225 061300;211.696000;211.699000;211.690000;211.693000;0 +20260225 061400;211.693000;211.696000;211.673000;211.677000;0 +20260225 061500;211.678000;211.701000;211.640000;211.642000;0 +20260225 061600;211.642000;211.643000;211.591000;211.610000;0 +20260225 061700;211.613000;211.620000;211.576000;211.576000;0 +20260225 061800;211.576000;211.587000;211.552000;211.575000;0 +20260225 061900;211.576000;211.580000;211.555000;211.560000;0 +20260225 062000;211.558000;211.561000;211.530000;211.545000;0 +20260225 062100;211.543000;211.557000;211.523000;211.553000;0 +20260225 062200;211.550000;211.572000;211.540000;211.553000;0 +20260225 062300;211.550000;211.579000;211.539000;211.563000;0 +20260225 062400;211.565000;211.619000;211.565000;211.594000;0 +20260225 062500;211.594000;211.594000;211.559000;211.565000;0 +20260225 062600;211.571000;211.573000;211.537000;211.538000;0 +20260225 062700;211.537000;211.552000;211.524000;211.524000;0 +20260225 062800;211.522000;211.547000;211.515000;211.540000;0 +20260225 062900;211.541000;211.550000;211.530000;211.540000;0 +20260225 063000;211.545000;211.562000;211.523000;211.538000;0 +20260225 063100;211.536000;211.549000;211.526000;211.530000;0 +20260225 063200;211.537000;211.554000;211.505000;211.553000;0 +20260225 063300;211.575000;211.603000;211.567000;211.573000;0 +20260225 063400;211.575000;211.593000;211.552000;211.562000;0 +20260225 063500;211.563000;211.565000;211.534000;211.543000;0 +20260225 063600;211.541000;211.555000;211.536000;211.551000;0 +20260225 063700;211.554000;211.615000;211.554000;211.600000;0 +20260225 063800;211.602000;211.614000;211.591000;211.602000;0 +20260225 063900;211.604000;211.608000;211.589000;211.600000;0 +20260225 064000;211.595000;211.604000;211.585000;211.603000;0 +20260225 064100;211.602000;211.615000;211.583000;211.584000;0 +20260225 064200;211.584000;211.604000;211.583000;211.603000;0 +20260225 064300;211.601000;211.623000;211.573000;211.622000;0 +20260225 064400;211.625000;211.625000;211.612000;211.623000;0 +20260225 064500;211.623000;211.634000;211.606000;211.611000;0 +20260225 064600;211.610000;211.637000;211.603000;211.609000;0 +20260225 064700;211.610000;211.653000;211.608000;211.640000;0 +20260225 064800;211.641000;211.662000;211.639000;211.661000;0 +20260225 064900;211.662000;211.674000;211.634000;211.634000;0 +20260225 065000;211.635000;211.664000;211.635000;211.656000;0 +20260225 065100;211.657000;211.664000;211.638000;211.646000;0 +20260225 065200;211.644000;211.653000;211.634000;211.640000;0 +20260225 065300;211.641000;211.662000;211.636000;211.653000;0 +20260225 065400;211.653000;211.695000;211.653000;211.670000;0 +20260225 065500;211.674000;211.697000;211.666000;211.691000;0 +20260225 065600;211.690000;211.706000;211.681000;211.706000;0 +20260225 065700;211.707000;211.749000;211.704000;211.733000;0 +20260225 065800;211.734000;211.761000;211.734000;211.752000;0 +20260225 065900;211.755000;211.759000;211.741000;211.752000;0 +20260225 070000;211.758000;211.758000;211.703000;211.732000;0 +20260225 070100;211.730000;211.740000;211.711000;211.715000;0 +20260225 070200;211.713000;211.714000;211.676000;211.680000;0 +20260225 070300;211.680000;211.709000;211.671000;211.699000;0 +20260225 070400;211.699000;211.706000;211.673000;211.683000;0 +20260225 070500;211.683000;211.703000;211.682000;211.695000;0 +20260225 070600;211.689000;211.689000;211.649000;211.658000;0 +20260225 070700;211.659000;211.668000;211.635000;211.658000;0 +20260225 070800;211.668000;211.681000;211.632000;211.636000;0 +20260225 070900;211.634000;211.638000;211.584000;211.598000;0 +20260225 071000;211.600000;211.620000;211.584000;211.588000;0 +20260225 071100;211.585000;211.688000;211.585000;211.688000;0 +20260225 071200;211.689000;211.706000;211.670000;211.706000;0 +20260225 071300;211.706000;211.735000;211.701000;211.722000;0 +20260225 071400;211.720000;211.763000;211.720000;211.761000;0 +20260225 071500;211.764000;211.766000;211.705000;211.726000;0 +20260225 071600;211.725000;211.743000;211.720000;211.724000;0 +20260225 071700;211.724000;211.735000;211.716000;211.716000;0 +20260225 071800;211.716000;211.716000;211.653000;211.660000;0 +20260225 071900;211.667000;211.681000;211.652000;211.653000;0 +20260225 072000;211.652000;211.658000;211.612000;211.643000;0 +20260225 072100;211.646000;211.682000;211.641000;211.676000;0 +20260225 072200;211.680000;211.708000;211.667000;211.692000;0 +20260225 072300;211.698000;211.700000;211.684000;211.685000;0 +20260225 072400;211.685000;211.703000;211.682000;211.699000;0 +20260225 072500;211.702000;211.706000;211.671000;211.689000;0 +20260225 072600;211.687000;211.693000;211.667000;211.687000;0 +20260225 072700;211.688000;211.712000;211.688000;211.698000;0 +20260225 072800;211.698000;211.701000;211.682000;211.691000;0 +20260225 072900;211.692000;211.696000;211.655000;211.668000;0 +20260225 073000;211.664000;211.694000;211.655000;211.693000;0 +20260225 073100;211.691000;211.691000;211.651000;211.682000;0 +20260225 073200;211.686000;211.713000;211.686000;211.710000;0 +20260225 073300;211.710000;211.710000;211.683000;211.694000;0 +20260225 073400;211.696000;211.705000;211.687000;211.687000;0 +20260225 073500;211.687000;211.690000;211.673000;211.674000;0 +20260225 073600;211.674000;211.713000;211.668000;211.706000;0 +20260225 073700;211.713000;211.749000;211.713000;211.745000;0 +20260225 073800;211.744000;211.756000;211.737000;211.746000;0 +20260225 073900;211.747000;211.773000;211.743000;211.771000;0 +20260225 074000;211.770000;211.775000;211.738000;211.754000;0 +20260225 074100;211.754000;211.777000;211.753000;211.775000;0 +20260225 074200;211.775000;211.803000;211.767000;211.801000;0 +20260225 074300;211.801000;211.801000;211.758000;211.788000;0 +20260225 074400;211.788000;211.839000;211.781000;211.831000;0 +20260225 074500;211.831000;211.840000;211.811000;211.817000;0 +20260225 074600;211.817000;211.842000;211.817000;211.842000;0 +20260225 074700;211.842000;211.896000;211.834000;211.892000;0 +20260225 074800;211.888000;211.901000;211.877000;211.897000;0 +20260225 074900;211.896000;211.906000;211.877000;211.904000;0 +20260225 075000;211.904000;211.907000;211.885000;211.888000;0 +20260225 075100;211.887000;211.911000;211.887000;211.891000;0 +20260225 075200;211.890000;211.890000;211.865000;211.871000;0 +20260225 075300;211.875000;211.903000;211.874000;211.901000;0 +20260225 075400;211.900000;211.901000;211.876000;211.891000;0 +20260225 075500;211.892000;211.899000;211.868000;211.882000;0 +20260225 075600;211.881000;211.913000;211.858000;211.913000;0 +20260225 075700;211.911000;211.923000;211.900000;211.908000;0 +20260225 075800;211.907000;211.907000;211.846000;211.852000;0 +20260225 075900;211.856000;211.875000;211.851000;211.872000;0 +20260225 080000;211.873000;211.905000;211.869000;211.893000;0 +20260225 080100;211.893000;211.903000;211.875000;211.893000;0 +20260225 080200;211.892000;211.914000;211.878000;211.911000;0 +20260225 080300;211.911000;211.927000;211.902000;211.920000;0 +20260225 080400;211.921000;211.923000;211.886000;211.895000;0 +20260225 080500;211.896000;211.912000;211.882000;211.909000;0 +20260225 080600;211.910000;211.912000;211.880000;211.904000;0 +20260225 080700;211.904000;211.926000;211.894000;211.926000;0 +20260225 080800;211.931000;211.945000;211.924000;211.945000;0 +20260225 080900;211.945000;211.946000;211.914000;211.937000;0 +20260225 081000;211.937000;211.951000;211.931000;211.941000;0 +20260225 081100;211.945000;211.974000;211.937000;211.962000;0 +20260225 081200;211.963000;211.986000;211.952000;211.983000;0 +20260225 081300;211.973000;211.977000;211.948000;211.966000;0 +20260225 081400;211.966000;211.974000;211.939000;211.943000;0 +20260225 081500;211.942000;212.025000;211.941000;212.017000;0 +20260225 081600;212.016000;212.024000;211.968000;211.999000;0 +20260225 081700;212.000000;212.004000;211.985000;211.999000;0 +20260225 081800;212.000000;212.016000;211.983000;211.985000;0 +20260225 081900;211.989000;211.998000;211.967000;211.967000;0 +20260225 082000;211.969000;211.977000;211.931000;211.949000;0 +20260225 082100;211.951000;211.971000;211.936000;211.938000;0 +20260225 082200;211.937000;211.938000;211.909000;211.927000;0 +20260225 082300;211.930000;211.950000;211.930000;211.948000;0 +20260225 082400;211.947000;211.952000;211.927000;211.937000;0 +20260225 082500;211.938000;211.984000;211.936000;211.983000;0 +20260225 082600;211.980000;211.985000;211.962000;211.969000;0 +20260225 082700;211.965000;211.970000;211.930000;211.936000;0 +20260225 082800;211.938000;211.945000;211.914000;211.916000;0 +20260225 082900;211.917000;211.920000;211.894000;211.903000;0 +20260225 083000;211.904000;211.914000;211.892000;211.901000;0 +20260225 083100;211.902000;211.902000;211.870000;211.874000;0 +20260225 083200;211.868000;211.884000;211.854000;211.855000;0 +20260225 083300;211.855000;211.862000;211.802000;211.802000;0 +20260225 083400;211.798000;211.836000;211.795000;211.833000;0 +20260225 083500;211.835000;211.838000;211.811000;211.811000;0 +20260225 083600;211.810000;211.815000;211.795000;211.795000;0 +20260225 083700;211.796000;211.807000;211.779000;211.781000;0 +20260225 083800;211.780000;211.785000;211.764000;211.783000;0 +20260225 083900;211.784000;211.792000;211.758000;211.763000;0 +20260225 084000;211.768000;211.791000;211.763000;211.785000;0 +20260225 084100;211.784000;211.799000;211.763000;211.773000;0 +20260225 084200;211.773000;211.788000;211.736000;211.738000;0 +20260225 084300;211.743000;211.772000;211.742000;211.772000;0 +20260225 084400;211.773000;211.776000;211.708000;211.736000;0 +20260225 084500;211.734000;211.740000;211.723000;211.725000;0 +20260225 084600;211.726000;211.759000;211.717000;211.744000;0 +20260225 084700;211.742000;211.744000;211.708000;211.708000;0 +20260225 084800;211.703000;211.726000;211.691000;211.721000;0 +20260225 084900;211.719000;211.729000;211.700000;211.723000;0 +20260225 085000;211.721000;211.734000;211.688000;211.688000;0 +20260225 085100;211.686000;211.687000;211.662000;211.684000;0 +20260225 085200;211.685000;211.704000;211.673000;211.693000;0 +20260225 085300;211.696000;211.712000;211.687000;211.711000;0 +20260225 085400;211.717000;211.717000;211.665000;211.674000;0 +20260225 085500;211.673000;211.673000;211.647000;211.647000;0 +20260225 085600;211.642000;211.691000;211.637000;211.674000;0 +20260225 085700;211.675000;211.682000;211.645000;211.658000;0 +20260225 085800;211.660000;211.691000;211.651000;211.657000;0 +20260225 085900;211.658000;211.685000;211.655000;211.660000;0 +20260225 090000;211.659000;211.672000;211.641000;211.648000;0 +20260225 090100;211.650000;211.681000;211.650000;211.670000;0 +20260225 090200;211.669000;211.674000;211.644000;211.651000;0 +20260225 090300;211.648000;211.648000;211.590000;211.612000;0 +20260225 090400;211.619000;211.662000;211.619000;211.662000;0 +20260225 090500;211.661000;211.665000;211.631000;211.657000;0 +20260225 090600;211.655000;211.694000;211.646000;211.693000;0 +20260225 090700;211.693000;211.716000;211.693000;211.712000;0 +20260225 090800;211.711000;211.720000;211.674000;211.710000;0 +20260225 090900;211.720000;211.724000;211.691000;211.715000;0 +20260225 091000;211.716000;211.721000;211.698000;211.713000;0 +20260225 091100;211.713000;211.777000;211.697000;211.769000;0 +20260225 091200;211.770000;211.778000;211.753000;211.757000;0 +20260225 091300;211.754000;211.800000;211.754000;211.778000;0 +20260225 091400;211.778000;211.808000;211.777000;211.800000;0 +20260225 091500;211.804000;211.804000;211.766000;211.772000;0 +20260225 091600;211.770000;211.791000;211.749000;211.770000;0 +20260225 091700;211.769000;211.806000;211.769000;211.803000;0 +20260225 091800;211.804000;211.805000;211.753000;211.756000;0 +20260225 091900;211.754000;211.788000;211.753000;211.785000;0 +20260225 092000;211.784000;211.789000;211.745000;211.745000;0 +20260225 092100;211.743000;211.777000;211.743000;211.761000;0 +20260225 092200;211.765000;211.778000;211.720000;211.768000;0 +20260225 092300;211.771000;211.779000;211.713000;211.720000;0 +20260225 092400;211.716000;211.750000;211.708000;211.750000;0 +20260225 092500;211.748000;211.765000;211.705000;211.714000;0 +20260225 092600;211.713000;211.714000;211.689000;211.703000;0 +20260225 092700;211.696000;211.713000;211.693000;211.705000;0 +20260225 092800;211.704000;211.742000;211.704000;211.740000;0 +20260225 092900;211.739000;211.739000;211.694000;211.706000;0 +20260225 093000;211.705000;211.712000;211.671000;211.674000;0 +20260225 093100;211.673000;211.677000;211.651000;211.658000;0 +20260225 093200;211.659000;211.695000;211.657000;211.659000;0 +20260225 093300;211.656000;211.657000;211.620000;211.633000;0 +20260225 093400;211.632000;211.637000;211.585000;211.592000;0 +20260225 093500;211.591000;211.609000;211.579000;211.589000;0 +20260225 093600;211.596000;211.612000;211.582000;211.589000;0 +20260225 093700;211.593000;211.628000;211.578000;211.626000;0 +20260225 093800;211.629000;211.652000;211.616000;211.647000;0 +20260225 093900;211.645000;211.647000;211.630000;211.645000;0 +20260225 094000;211.647000;211.649000;211.617000;211.621000;0 +20260225 094100;211.618000;211.624000;211.557000;211.559000;0 +20260225 094200;211.556000;211.556000;211.536000;211.543000;0 +20260225 094300;211.544000;211.560000;211.509000;211.509000;0 +20260225 094400;211.511000;211.513000;211.477000;211.477000;0 +20260225 094500;211.476000;211.514000;211.470000;211.481000;0 +20260225 094600;211.481000;211.502000;211.471000;211.480000;0 +20260225 094700;211.473000;211.516000;211.471000;211.512000;0 +20260225 094800;211.512000;211.544000;211.507000;211.543000;0 +20260225 094900;211.543000;211.615000;211.543000;211.613000;0 +20260225 095000;211.616000;211.626000;211.599000;211.607000;0 +20260225 095100;211.607000;211.643000;211.585000;211.634000;0 +20260225 095200;211.634000;211.641000;211.598000;211.615000;0 +20260225 095300;211.622000;211.635000;211.611000;211.614000;0 +20260225 095400;211.610000;211.630000;211.605000;211.610000;0 +20260225 095500;211.614000;211.632000;211.599000;211.632000;0 +20260225 095600;211.631000;211.686000;211.631000;211.670000;0 +20260225 095700;211.671000;211.722000;211.671000;211.712000;0 +20260225 095800;211.711000;211.752000;211.705000;211.752000;0 +20260225 095900;211.751000;211.763000;211.727000;211.754000;0 +20260225 100000;211.755000;211.755000;211.637000;211.646000;0 +20260225 100100;211.648000;211.683000;211.627000;211.675000;0 +20260225 100200;211.671000;211.671000;211.637000;211.645000;0 +20260225 100300;211.647000;211.650000;211.616000;211.630000;0 +20260225 100400;211.630000;211.648000;211.613000;211.635000;0 +20260225 100500;211.632000;211.662000;211.631000;211.658000;0 +20260225 100600;211.659000;211.677000;211.634000;211.659000;0 +20260225 100700;211.658000;211.678000;211.648000;211.658000;0 +20260225 100800;211.656000;211.669000;211.643000;211.652000;0 +20260225 100900;211.655000;211.668000;211.627000;211.632000;0 +20260225 101000;211.630000;211.633000;211.602000;211.609000;0 +20260225 101100;211.611000;211.647000;211.603000;211.646000;0 +20260225 101200;211.646000;211.682000;211.644000;211.653000;0 +20260225 101300;211.654000;211.678000;211.647000;211.673000;0 +20260225 101400;211.672000;211.688000;211.659000;211.670000;0 +20260225 101500;211.671000;211.678000;211.657000;211.667000;0 +20260225 101600;211.664000;211.671000;211.640000;211.667000;0 +20260225 101700;211.662000;211.690000;211.658000;211.674000;0 +20260225 101800;211.674000;211.699000;211.657000;211.694000;0 +20260225 101900;211.692000;211.699000;211.672000;211.691000;0 +20260225 102000;211.694000;211.701000;211.670000;211.670000;0 +20260225 102100;211.673000;211.673000;211.630000;211.640000;0 +20260225 102200;211.644000;211.663000;211.636000;211.649000;0 +20260225 102300;211.650000;211.652000;211.625000;211.637000;0 +20260225 102400;211.640000;211.669000;211.635000;211.639000;0 +20260225 102500;211.641000;211.643000;211.612000;211.612000;0 +20260225 102600;211.612000;211.651000;211.610000;211.630000;0 +20260225 102700;211.630000;211.677000;211.627000;211.675000;0 +20260225 102800;211.675000;211.695000;211.644000;211.684000;0 +20260225 102900;211.685000;211.718000;211.676000;211.717000;0 +20260225 103000;211.717000;211.719000;211.608000;211.632000;0 +20260225 103100;211.625000;211.665000;211.625000;211.632000;0 +20260225 103200;211.634000;211.649000;211.627000;211.645000;0 +20260225 103300;211.648000;211.648000;211.610000;211.619000;0 +20260225 103400;211.620000;211.631000;211.569000;211.569000;0 +20260225 103500;211.571000;211.579000;211.529000;211.529000;0 +20260225 103600;211.534000;211.574000;211.533000;211.568000;0 +20260225 103700;211.567000;211.583000;211.561000;211.571000;0 +20260225 103800;211.570000;211.586000;211.545000;211.569000;0 +20260225 103900;211.571000;211.613000;211.564000;211.603000;0 +20260225 104000;211.603000;211.624000;211.577000;211.592000;0 +20260225 104100;211.590000;211.604000;211.567000;211.575000;0 +20260225 104200;211.573000;211.575000;211.538000;211.551000;0 +20260225 104300;211.544000;211.546000;211.514000;211.520000;0 +20260225 104400;211.519000;211.554000;211.502000;211.525000;0 +20260225 104500;211.529000;211.557000;211.488000;211.490000;0 +20260225 104600;211.493000;211.556000;211.493000;211.543000;0 +20260225 104700;211.543000;211.565000;211.506000;211.506000;0 +20260225 104800;211.508000;211.572000;211.506000;211.542000;0 +20260225 104900;211.541000;211.541000;211.509000;211.526000;0 +20260225 105000;211.533000;211.552000;211.479000;211.480000;0 +20260225 105100;211.479000;211.535000;211.471000;211.523000;0 +20260225 105200;211.525000;211.555000;211.504000;211.516000;0 +20260225 105300;211.521000;211.540000;211.494000;211.502000;0 +20260225 105400;211.504000;211.517000;211.477000;211.514000;0 +20260225 105500;211.523000;211.574000;211.510000;211.570000;0 +20260225 105600;211.566000;211.621000;211.561000;211.598000;0 +20260225 105700;211.594000;211.703000;211.594000;211.647000;0 +20260225 105800;211.648000;211.679000;211.631000;211.653000;0 +20260225 105900;211.651000;211.663000;211.617000;211.624000;0 +20260225 110000;211.622000;211.647000;211.606000;211.640000;0 +20260225 110100;211.642000;211.653000;211.617000;211.643000;0 +20260225 110200;211.642000;211.669000;211.626000;211.638000;0 +20260225 110300;211.639000;211.698000;211.637000;211.669000;0 +20260225 110400;211.670000;211.696000;211.647000;211.680000;0 +20260225 110500;211.683000;211.719000;211.663000;211.716000;0 +20260225 110600;211.717000;211.722000;211.680000;211.681000;0 +20260225 110700;211.679000;211.695000;211.674000;211.686000;0 +20260225 110800;211.691000;211.723000;211.681000;211.718000;0 +20260225 110900;211.724000;211.768000;211.714000;211.735000;0 +20260225 111000;211.742000;211.816000;211.742000;211.812000;0 +20260225 111100;211.810000;211.835000;211.793000;211.835000;0 +20260225 111200;211.839000;211.845000;211.766000;211.792000;0 +20260225 111300;211.793000;211.796000;211.757000;211.792000;0 +20260225 111400;211.799000;211.817000;211.780000;211.810000;0 +20260225 111500;211.811000;211.811000;211.777000;211.778000;0 +20260225 111600;211.779000;211.780000;211.728000;211.731000;0 +20260225 111700;211.734000;211.755000;211.731000;211.731000;0 +20260225 111800;211.730000;211.745000;211.706000;211.706000;0 +20260225 111900;211.705000;211.727000;211.682000;211.693000;0 +20260225 112000;211.695000;211.719000;211.692000;211.719000;0 +20260225 112100;211.717000;211.724000;211.705000;211.705000;0 +20260225 112200;211.706000;211.721000;211.690000;211.691000;0 +20260225 112300;211.690000;211.701000;211.682000;211.692000;0 +20260225 112400;211.690000;211.690000;211.656000;211.672000;0 +20260225 112500;211.676000;211.741000;211.676000;211.730000;0 +20260225 112600;211.733000;211.750000;211.722000;211.733000;0 +20260225 112700;211.732000;211.741000;211.712000;211.724000;0 +20260225 112800;211.722000;211.740000;211.713000;211.728000;0 +20260225 112900;211.726000;211.752000;211.726000;211.741000;0 +20260225 113000;211.741000;211.782000;211.741000;211.753000;0 +20260225 113100;211.748000;211.764000;211.740000;211.762000;0 +20260225 113200;211.759000;211.778000;211.746000;211.766000;0 +20260225 113300;211.764000;211.806000;211.761000;211.789000;0 +20260225 113400;211.790000;211.811000;211.767000;211.775000;0 +20260225 113500;211.776000;211.787000;211.773000;211.777000;0 +20260225 113600;211.777000;211.790000;211.770000;211.784000;0 +20260225 113700;211.783000;211.831000;211.782000;211.830000;0 +20260225 113800;211.829000;211.853000;211.829000;211.851000;0 +20260225 113900;211.850000;211.855000;211.839000;211.841000;0 +20260225 114000;211.840000;211.857000;211.828000;211.830000;0 +20260225 114100;211.834000;211.861000;211.834000;211.850000;0 +20260225 114200;211.849000;211.857000;211.820000;211.822000;0 +20260225 114300;211.824000;211.838000;211.803000;211.818000;0 +20260225 114400;211.820000;211.821000;211.785000;211.787000;0 +20260225 114500;211.785000;211.800000;211.745000;211.776000;0 +20260225 114600;211.775000;211.791000;211.759000;211.781000;0 +20260225 114700;211.781000;211.853000;211.763000;211.850000;0 +20260225 114800;211.853000;211.867000;211.822000;211.835000;0 +20260225 114900;211.836000;211.836000;211.804000;211.823000;0 +20260225 115000;211.815000;211.823000;211.809000;211.815000;0 +20260225 115100;211.818000;211.849000;211.814000;211.844000;0 +20260225 115200;211.842000;211.859000;211.829000;211.841000;0 +20260225 115300;211.844000;211.848000;211.814000;211.814000;0 +20260225 115400;211.811000;211.831000;211.809000;211.831000;0 +20260225 115500;211.833000;211.845000;211.816000;211.816000;0 +20260225 115600;211.815000;211.847000;211.813000;211.845000;0 +20260225 115700;211.847000;211.848000;211.823000;211.832000;0 +20260225 115800;211.832000;211.841000;211.811000;211.812000;0 +20260225 115900;211.813000;211.822000;211.789000;211.789000;0 +20260225 120000;211.792000;211.813000;211.788000;211.808000;0 +20260225 120100;211.810000;211.824000;211.805000;211.819000;0 +20260225 120200;211.820000;211.836000;211.810000;211.815000;0 +20260225 120300;211.815000;211.822000;211.806000;211.817000;0 +20260225 120400;211.816000;211.835000;211.807000;211.818000;0 +20260225 120500;211.820000;211.840000;211.809000;211.832000;0 +20260225 120600;211.835000;211.844000;211.816000;211.843000;0 +20260225 120700;211.843000;211.860000;211.823000;211.852000;0 +20260225 120800;211.851000;211.869000;211.837000;211.863000;0 +20260225 120900;211.861000;211.878000;211.849000;211.869000;0 +20260225 121000;211.871000;211.871000;211.844000;211.857000;0 +20260225 121100;211.862000;211.887000;211.851000;211.877000;0 +20260225 121200;211.879000;211.893000;211.875000;211.893000;0 +20260225 121300;211.891000;211.913000;211.886000;211.899000;0 +20260225 121400;211.898000;211.908000;211.884000;211.906000;0 +20260225 121500;211.904000;211.920000;211.899000;211.919000;0 +20260225 121600;211.918000;211.931000;211.903000;211.931000;0 +20260225 121700;211.930000;211.951000;211.928000;211.931000;0 +20260225 121800;211.933000;211.942000;211.922000;211.940000;0 +20260225 121900;211.938000;211.950000;211.932000;211.948000;0 +20260225 122000;211.946000;211.955000;211.935000;211.947000;0 +20260225 122100;211.946000;211.952000;211.944000;211.951000;0 +20260225 122200;211.949000;211.959000;211.944000;211.948000;0 +20260225 122300;211.946000;211.950000;211.930000;211.947000;0 +20260225 122400;211.948000;211.957000;211.945000;211.948000;0 +20260225 122500;211.946000;211.955000;211.929000;211.948000;0 +20260225 122600;211.949000;211.991000;211.945000;211.981000;0 +20260225 122700;211.980000;211.980000;211.955000;211.972000;0 +20260225 122800;211.975000;211.983000;211.954000;211.954000;0 +20260225 122900;211.961000;211.961000;211.940000;211.946000;0 +20260225 123000;211.951000;211.952000;211.915000;211.922000;0 +20260225 123100;211.920000;211.933000;211.915000;211.915000;0 +20260225 123200;211.915000;211.932000;211.913000;211.927000;0 +20260225 123300;211.934000;211.940000;211.909000;211.917000;0 +20260225 123400;211.917000;211.920000;211.901000;211.920000;0 +20260225 123500;211.921000;211.939000;211.918000;211.938000;0 +20260225 123600;211.939000;211.951000;211.936000;211.940000;0 +20260225 123700;211.942000;211.945000;211.926000;211.939000;0 +20260225 123800;211.938000;211.946000;211.928000;211.942000;0 +20260225 123900;211.942000;211.955000;211.938000;211.945000;0 +20260225 124000;211.946000;211.949000;211.920000;211.939000;0 +20260225 124100;211.939000;211.955000;211.934000;211.943000;0 +20260225 124200;211.943000;211.976000;211.943000;211.971000;0 +20260225 124300;211.968000;211.976000;211.961000;211.968000;0 +20260225 124400;211.969000;211.977000;211.961000;211.972000;0 +20260225 124500;211.973000;211.987000;211.965000;211.987000;0 +20260225 124600;211.987000;211.990000;211.970000;211.982000;0 +20260225 124700;211.981000;211.999000;211.981000;211.988000;0 +20260225 124800;211.991000;211.998000;211.977000;211.981000;0 +20260225 124900;211.981000;211.996000;211.975000;211.994000;0 +20260225 125000;211.996000;211.999000;211.965000;211.974000;0 +20260225 125100;211.974000;211.996000;211.969000;211.984000;0 +20260225 125200;211.989000;211.998000;211.972000;211.975000;0 +20260225 125300;211.974000;212.023000;211.974000;212.012000;0 +20260225 125400;212.011000;212.016000;212.000000;212.007000;0 +20260225 125500;212.003000;212.005000;211.968000;211.978000;0 +20260225 125600;211.975000;211.977000;211.920000;211.928000;0 +20260225 125700;211.931000;211.944000;211.916000;211.917000;0 +20260225 125800;211.920000;211.932000;211.914000;211.926000;0 +20260225 125900;211.928000;211.928000;211.900000;211.905000;0 +20260225 130000;211.908000;211.942000;211.901000;211.940000;0 +20260225 130100;211.944000;211.960000;211.937000;211.960000;0 +20260225 130200;211.962000;211.977000;211.941000;211.974000;0 +20260225 130300;211.969000;211.982000;211.956000;211.961000;0 +20260225 130400;211.960000;211.964000;211.947000;211.951000;0 +20260225 130500;211.952000;211.982000;211.944000;211.979000;0 +20260225 130600;211.982000;212.026000;211.971000;212.025000;0 +20260225 130700;212.027000;212.042000;212.020000;212.024000;0 +20260225 130800;212.024000;212.034000;212.015000;212.022000;0 +20260225 130900;212.025000;212.025000;211.999000;212.008000;0 +20260225 131000;212.010000;212.010000;211.961000;211.965000;0 +20260225 131100;211.966000;211.978000;211.962000;211.972000;0 +20260225 131200;211.974000;211.989000;211.958000;211.967000;0 +20260225 131300;211.967000;211.982000;211.961000;211.961000;0 +20260225 131400;211.972000;211.974000;211.960000;211.964000;0 +20260225 131500;211.962000;211.962000;211.927000;211.927000;0 +20260225 131600;211.927000;211.928000;211.901000;211.904000;0 +20260225 131700;211.904000;211.923000;211.892000;211.894000;0 +20260225 131800;211.896000;211.917000;211.896000;211.908000;0 +20260225 131900;211.904000;211.911000;211.862000;211.863000;0 +20260225 132000;211.862000;211.889000;211.861000;211.885000;0 +20260225 132100;211.885000;211.896000;211.877000;211.888000;0 +20260225 132200;211.888000;211.899000;211.885000;211.898000;0 +20260225 132300;211.903000;211.923000;211.901000;211.922000;0 +20260225 132400;211.922000;211.934000;211.900000;211.915000;0 +20260225 132500;211.917000;211.919000;211.905000;211.918000;0 +20260225 132600;211.912000;211.925000;211.901000;211.903000;0 +20260225 132700;211.904000;211.912000;211.903000;211.912000;0 +20260225 132800;211.915000;211.915000;211.903000;211.908000;0 +20260225 132900;211.912000;211.912000;211.900000;211.905000;0 +20260225 133000;211.906000;211.917000;211.898000;211.911000;0 +20260225 133100;211.912000;211.926000;211.896000;211.900000;0 +20260225 133200;211.898000;211.928000;211.895000;211.918000;0 +20260225 133300;211.915000;211.920000;211.904000;211.920000;0 +20260225 133400;211.917000;211.919000;211.902000;211.915000;0 +20260225 133500;211.917000;211.931000;211.905000;211.908000;0 +20260225 133600;211.909000;211.913000;211.906000;211.910000;0 +20260225 133700;211.911000;211.917000;211.896000;211.901000;0 +20260225 133800;211.902000;211.902000;211.862000;211.863000;0 +20260225 133900;211.861000;211.873000;211.855000;211.859000;0 +20260225 134000;211.857000;211.864000;211.850000;211.852000;0 +20260225 134100;211.853000;211.863000;211.852000;211.853000;0 +20260225 134200;211.852000;211.859000;211.848000;211.848000;0 +20260225 134300;211.847000;211.850000;211.846000;211.846000;0 +20260225 134400;211.847000;211.849000;211.838000;211.839000;0 +20260225 134500;211.840000;211.867000;211.840000;211.867000;0 +20260225 134600;211.862000;211.869000;211.862000;211.864000;0 +20260225 134700;211.865000;211.881000;211.865000;211.874000;0 +20260225 134800;211.872000;211.872000;211.857000;211.865000;0 +20260225 134900;211.864000;211.888000;211.864000;211.888000;0 +20260225 135000;211.883000;211.884000;211.871000;211.873000;0 +20260225 135100;211.872000;211.872000;211.858000;211.868000;0 +20260225 135200;211.869000;211.873000;211.864000;211.864000;0 +20260225 135300;211.864000;211.885000;211.864000;211.879000;0 +20260225 135400;211.875000;211.901000;211.872000;211.889000;0 +20260225 135500;211.887000;211.889000;211.871000;211.882000;0 +20260225 135600;211.878000;211.896000;211.871000;211.871000;0 +20260225 135700;211.874000;211.904000;211.870000;211.904000;0 +20260225 135800;211.909000;211.925000;211.900000;211.925000;0 +20260225 135900;211.927000;211.967000;211.925000;211.953000;0 +20260225 140000;211.953000;211.956000;211.931000;211.938000;0 +20260225 140100;211.938000;211.946000;211.920000;211.932000;0 +20260225 140200;211.930000;211.948000;211.927000;211.948000;0 +20260225 140300;211.947000;211.954000;211.942000;211.944000;0 +20260225 140400;211.946000;211.952000;211.918000;211.921000;0 +20260225 140500;211.918000;211.921000;211.901000;211.919000;0 +20260225 140600;211.918000;211.925000;211.907000;211.922000;0 +20260225 140700;211.929000;211.937000;211.913000;211.935000;0 +20260225 140800;211.934000;211.949000;211.925000;211.939000;0 +20260225 140900;211.943000;211.943000;211.921000;211.933000;0 +20260225 141000;211.930000;211.953000;211.926000;211.953000;0 +20260225 141100;211.948000;211.974000;211.940000;211.972000;0 +20260225 141200;211.983000;211.983000;211.965000;211.966000;0 +20260225 141300;211.968000;211.968000;211.954000;211.967000;0 +20260225 141400;211.965000;211.971000;211.964000;211.968000;0 +20260225 141500;211.963000;211.969000;211.945000;211.956000;0 +20260225 141600;211.956000;211.973000;211.953000;211.973000;0 +20260225 141700;211.973000;211.982000;211.971000;211.980000;0 +20260225 141800;211.982000;211.991000;211.976000;211.991000;0 +20260225 141900;211.993000;211.997000;211.983000;211.985000;0 +20260225 142000;211.986000;211.988000;211.970000;211.975000;0 +20260225 142100;211.981000;211.990000;211.981000;211.988000;0 +20260225 142200;211.986000;211.986000;211.978000;211.979000;0 +20260225 142300;211.977000;211.989000;211.967000;211.989000;0 +20260225 142400;211.990000;211.997000;211.973000;211.974000;0 +20260225 142500;211.976000;211.985000;211.963000;211.980000;0 +20260225 142600;211.978000;211.983000;211.970000;211.979000;0 +20260225 142700;211.983000;211.983000;211.968000;211.971000;0 +20260225 142800;211.967000;212.005000;211.965000;212.004000;0 +20260225 142900;212.004000;212.021000;212.003000;212.021000;0 +20260225 143000;212.022000;212.044000;212.015000;212.043000;0 +20260225 143100;212.044000;212.051000;212.026000;212.040000;0 +20260225 143200;212.039000;212.068000;212.038000;212.068000;0 +20260225 143300;212.069000;212.078000;212.053000;212.053000;0 +20260225 143400;212.052000;212.071000;212.046000;212.069000;0 +20260225 143500;212.071000;212.089000;212.069000;212.086000;0 +20260225 143600;212.086000;212.103000;212.079000;212.086000;0 +20260225 143700;212.084000;212.086000;212.076000;212.082000;0 +20260225 143800;212.083000;212.105000;212.074000;212.105000;0 +20260225 143900;212.104000;212.108000;212.088000;212.088000;0 +20260225 144000;212.085000;212.100000;212.080000;212.100000;0 +20260225 144100;212.101000;212.116000;212.083000;212.085000;0 +20260225 144200;212.088000;212.090000;212.031000;212.031000;0 +20260225 144300;212.030000;212.047000;212.030000;212.034000;0 +20260225 144400;212.033000;212.042000;212.018000;212.023000;0 +20260225 144500;212.027000;212.032000;212.014000;212.031000;0 +20260225 144600;212.025000;212.034000;212.016000;212.026000;0 +20260225 144700;212.025000;212.026000;212.003000;212.009000;0 +20260225 144800;212.006000;212.011000;211.999000;212.009000;0 +20260225 144900;212.009000;212.009000;211.993000;211.996000;0 +20260225 145000;211.999000;212.003000;211.987000;212.000000;0 +20260225 145100;211.996000;212.004000;211.984000;211.996000;0 +20260225 145200;211.998000;212.010000;211.990000;211.998000;0 +20260225 145300;211.997000;212.002000;211.988000;211.993000;0 +20260225 145400;211.990000;211.999000;211.985000;211.995000;0 +20260225 145500;211.988000;211.989000;211.981000;211.981000;0 +20260225 145600;211.982000;211.985000;211.978000;211.983000;0 +20260225 145700;211.981000;211.999000;211.981000;211.989000;0 +20260225 145800;211.989000;212.001000;211.981000;211.991000;0 +20260225 145900;211.992000;211.997000;211.982000;211.987000;0 +20260225 150000;211.986000;211.994000;211.969000;211.989000;0 +20260225 150100;211.988000;211.988000;211.967000;211.972000;0 +20260225 150200;211.975000;211.986000;211.968000;211.972000;0 +20260225 150300;211.970000;211.975000;211.964000;211.964000;0 +20260225 150400;211.965000;211.984000;211.948000;211.957000;0 +20260225 150500;211.957000;211.961000;211.950000;211.950000;0 +20260225 150600;211.948000;211.951000;211.942000;211.949000;0 +20260225 150700;211.948000;211.957000;211.947000;211.952000;0 +20260225 150800;211.952000;211.958000;211.943000;211.947000;0 +20260225 150900;211.948000;211.948000;211.906000;211.925000;0 +20260225 151000;211.926000;211.929000;211.925000;211.929000;0 +20260225 151100;211.930000;211.936000;211.916000;211.932000;0 +20260225 151200;211.930000;211.933000;211.917000;211.932000;0 +20260225 151300;211.933000;211.934000;211.929000;211.931000;0 +20260225 151400;211.930000;211.931000;211.919000;211.919000;0 +20260225 151500;211.919000;211.923000;211.912000;211.923000;0 +20260225 151600;211.921000;211.921000;211.911000;211.913000;0 +20260225 151700;211.912000;211.931000;211.900000;211.925000;0 +20260225 151800;211.927000;211.934000;211.920000;211.923000;0 +20260225 151900;211.921000;211.951000;211.921000;211.949000;0 +20260225 152000;211.946000;211.949000;211.934000;211.941000;0 +20260225 152100;211.941000;211.954000;211.935000;211.947000;0 +20260225 152200;211.947000;211.963000;211.945000;211.959000;0 +20260225 152300;211.959000;211.963000;211.953000;211.959000;0 +20260225 152400;211.957000;211.961000;211.942000;211.943000;0 +20260225 152500;211.945000;211.952000;211.929000;211.952000;0 +20260225 152600;211.949000;211.992000;211.947000;211.976000;0 +20260225 152700;211.978000;211.983000;211.964000;211.973000;0 +20260225 152800;211.975000;211.975000;211.954000;211.968000;0 +20260225 152900;211.968000;211.980000;211.967000;211.978000;0 +20260225 153000;211.972000;211.995000;211.963000;211.965000;0 +20260225 153100;211.965000;211.967000;211.931000;211.931000;0 +20260225 153200;211.931000;211.941000;211.925000;211.933000;0 +20260225 153300;211.932000;211.944000;211.928000;211.938000;0 +20260225 153400;211.937000;211.938000;211.929000;211.929000;0 +20260225 153500;211.929000;211.963000;211.927000;211.954000;0 +20260225 153600;211.954000;211.964000;211.945000;211.951000;0 +20260225 153700;211.954000;211.954000;211.948000;211.949000;0 +20260225 153800;211.949000;211.956000;211.944000;211.947000;0 +20260225 153900;211.948000;211.959000;211.946000;211.951000;0 +20260225 154000;211.949000;211.958000;211.942000;211.952000;0 +20260225 154100;211.952000;211.955000;211.946000;211.950000;0 +20260225 154200;211.950000;211.963000;211.945000;211.963000;0 +20260225 154300;211.963000;211.972000;211.954000;211.958000;0 +20260225 154400;211.962000;211.965000;211.958000;211.958000;0 +20260225 154500;211.958000;212.007000;211.958000;211.999000;0 +20260225 154600;211.998000;212.016000;211.995000;211.997000;0 +20260225 154700;211.994000;212.004000;211.983000;211.990000;0 +20260225 154800;211.987000;211.996000;211.982000;211.987000;0 +20260225 154900;211.984000;211.984000;211.980000;211.980000;0 +20260225 155000;211.984000;212.004000;211.981000;211.989000;0 +20260225 155100;211.987000;211.993000;211.979000;211.993000;0 +20260225 155200;211.991000;212.008000;211.991000;212.006000;0 +20260225 155300;212.006000;212.029000;212.000000;212.017000;0 +20260225 155400;212.027000;212.038000;212.021000;212.036000;0 +20260225 155500;212.035000;212.047000;212.027000;212.037000;0 +20260225 155600;212.037000;212.044000;212.021000;212.021000;0 +20260225 155700;212.020000;212.042000;212.019000;212.039000;0 +20260225 155800;212.038000;212.046000;212.005000;212.020000;0 +20260225 155900;212.016000;212.035000;211.923000;212.031000;0 +20260225 160000;212.032000;212.083000;212.032000;212.050000;0 +20260225 160100;212.050000;212.057000;212.039000;212.055000;0 +20260225 160200;212.059000;212.069000;212.054000;212.062000;0 +20260225 160300;212.061000;212.066000;212.055000;212.061000;0 +20260225 160400;212.063000;212.065000;212.034000;212.039000;0 +20260225 160500;212.042000;212.057000;212.038000;212.051000;0 +20260225 160600;212.055000;212.064000;212.055000;212.060000;0 +20260225 160700;212.063000;212.063000;212.057000;212.060000;0 +20260225 160800;212.060000;212.061000;212.047000;212.050000;0 +20260225 160900;212.052000;212.055000;212.045000;212.055000;0 +20260225 161000;212.048000;212.060000;212.020000;212.020000;0 +20260225 161100;212.023000;212.062000;212.023000;212.053000;0 +20260225 161200;212.051000;212.068000;212.051000;212.063000;0 +20260225 161300;212.059000;212.076000;212.059000;212.066000;0 +20260225 161400;212.066000;212.067000;212.052000;212.053000;0 +20260225 161500;212.053000;212.053000;212.042000;212.042000;0 +20260225 161600;212.043000;212.052000;212.040000;212.052000;0 +20260225 161700;212.050000;212.050000;212.039000;212.040000;0 +20260225 161800;212.034000;212.039000;212.034000;212.034000;0 +20260225 161900;212.033000;212.041000;212.028000;212.028000;0 +20260225 162000;212.029000;212.032000;212.015000;212.024000;0 +20260225 162100;212.024000;212.032000;212.024000;212.028000;0 +20260225 162200;212.032000;212.040000;212.025000;212.025000;0 +20260225 162300;212.022000;212.034000;212.022000;212.026000;0 +20260225 162400;212.026000;212.032000;212.024000;212.030000;0 +20260225 162500;212.032000;212.032000;212.015000;212.016000;0 +20260225 162600;212.015000;212.036000;212.015000;212.032000;0 +20260225 162700;212.028000;212.031000;212.010000;212.012000;0 +20260225 162800;212.011000;212.016000;212.011000;212.016000;0 +20260225 162900;212.020000;212.027000;211.997000;212.009000;0 +20260225 163000;212.011000;212.011000;211.996000;211.999000;0 +20260225 163100;211.995000;212.030000;211.995000;212.024000;0 +20260225 163200;212.023000;212.042000;212.018000;212.038000;0 +20260225 163300;212.039000;212.049000;212.033000;212.045000;0 +20260225 163400;212.047000;212.057000;212.046000;212.056000;0 +20260225 163500;212.052000;212.052000;212.015000;212.017000;0 +20260225 163600;212.016000;212.051000;212.016000;212.046000;0 +20260225 163700;212.045000;212.054000;212.045000;212.053000;0 +20260225 163800;212.052000;212.057000;212.047000;212.050000;0 +20260225 163900;212.052000;212.065000;212.050000;212.065000;0 +20260225 164000;212.065000;212.065000;212.034000;212.046000;0 +20260225 164100;212.046000;212.057000;212.044000;212.044000;0 +20260225 164200;212.049000;212.054000;212.045000;212.050000;0 +20260225 164300;212.051000;212.052000;212.044000;212.048000;0 +20260225 164400;212.047000;212.050000;212.020000;212.037000;0 +20260225 164500;212.037000;212.037000;211.999000;212.021000;0 +20260225 164600;212.011000;212.040000;212.010000;212.034000;0 +20260225 164700;212.044000;212.054000;212.039000;212.050000;0 +20260225 164800;212.050000;212.054000;212.042000;212.047000;0 +20260225 164900;212.048000;212.070000;212.048000;212.069000;0 +20260225 165000;212.069000;212.069000;212.042000;212.043000;0 +20260225 165100;212.044000;212.053000;212.038000;212.048000;0 +20260225 165200;212.049000;212.050000;212.024000;212.024000;0 +20260225 165300;212.022000;212.035000;212.017000;212.028000;0 +20260225 165400;212.029000;212.034000;212.020000;212.027000;0 +20260225 165500;212.028000;212.029000;212.021000;212.025000;0 +20260225 165600;212.005000;212.019000;211.990000;212.018000;0 +20260225 165700;211.997000;212.024000;211.995000;212.016000;0 +20260225 165800;212.018000;212.026000;211.990000;211.993000;0 +20260225 165900;211.989000;212.002000;211.955000;211.955000;0 +20260225 170000;211.948000;211.948000;211.948000;211.948000;0 +20260225 170400;211.702000;211.816000;211.702000;211.816000;0 +20260225 170500;211.725000;211.815000;211.725000;211.814000;0 +20260225 170600;211.808000;211.843000;211.808000;211.830000;0 +20260225 170700;211.829000;211.858000;211.827000;211.828000;0 +20260225 170800;211.827000;211.879000;211.827000;211.860000;0 +20260225 170900;211.871000;211.871000;211.858000;211.862000;0 +20260225 171000;211.871000;211.963000;211.871000;211.944000;0 +20260225 171100;211.942000;211.968000;211.782000;211.857000;0 +20260225 171200;211.951000;211.951000;211.844000;211.863000;0 +20260225 171300;211.863000;211.864000;211.850000;211.853000;0 +20260225 171400;211.853000;211.859000;211.853000;211.858000;0 +20260225 171500;211.858000;211.885000;211.858000;211.879000;0 +20260225 171600;211.878000;211.880000;211.854000;211.869000;0 +20260225 171700;211.867000;211.872000;211.864000;211.867000;0 +20260225 171800;211.865000;211.869000;211.864000;211.866000;0 +20260225 171900;211.856000;211.856000;211.843000;211.851000;0 +20260225 172000;211.852000;211.858000;211.848000;211.858000;0 +20260225 172100;211.859000;211.879000;211.854000;211.859000;0 +20260225 172200;211.860000;211.861000;211.848000;211.859000;0 +20260225 172300;211.861000;211.888000;211.824000;211.853000;0 +20260225 172400;211.812000;211.865000;211.810000;211.828000;0 +20260225 172500;211.832000;211.866000;211.785000;211.822000;0 +20260225 172600;211.830000;211.830000;211.752000;211.775000;0 +20260225 172700;211.776000;211.777000;211.687000;211.723000;0 +20260225 172800;211.728000;211.772000;211.688000;211.728000;0 +20260225 172900;211.723000;211.748000;211.661000;211.747000;0 +20260225 173000;211.744000;211.763000;211.701000;211.763000;0 +20260225 173100;211.764000;211.768000;211.764000;211.766000;0 +20260225 173200;211.766000;211.792000;211.713000;211.770000;0 +20260225 173300;211.762000;211.777000;211.717000;211.765000;0 +20260225 173400;211.766000;211.770000;211.761000;211.766000;0 +20260225 173500;211.766000;211.785000;211.766000;211.777000;0 +20260225 173600;211.777000;211.919000;211.775000;211.876000;0 +20260225 173700;211.875000;211.938000;211.866000;211.929000;0 +20260225 173800;211.927000;211.940000;211.801000;211.838000;0 +20260225 173900;211.837000;211.838000;211.805000;211.825000;0 +20260225 174000;211.824000;211.848000;211.815000;211.845000;0 +20260225 174100;211.846000;211.854000;211.807000;211.825000;0 +20260225 174200;211.825000;211.832000;211.819000;211.827000;0 +20260225 174300;211.824000;211.835000;211.814000;211.835000;0 +20260225 174400;211.835000;211.880000;211.834000;211.868000;0 +20260225 174500;211.867000;211.893000;211.843000;211.859000;0 +20260225 174600;211.857000;211.866000;211.838000;211.843000;0 +20260225 174700;211.843000;211.844000;211.836000;211.838000;0 +20260225 174800;211.838000;211.859000;211.836000;211.856000;0 +20260225 174900;211.855000;211.857000;211.844000;211.848000;0 +20260225 175000;211.848000;211.856000;211.844000;211.856000;0 +20260225 175100;211.856000;211.873000;211.844000;211.873000;0 +20260225 175200;211.870000;211.889000;211.843000;211.889000;0 +20260225 175300;211.889000;211.924000;211.871000;211.900000;0 +20260225 175400;211.902000;211.924000;211.901000;211.917000;0 +20260225 175500;211.917000;211.920000;211.875000;211.896000;0 +20260225 175600;211.898000;211.898000;211.871000;211.874000;0 +20260225 175700;211.878000;211.886000;211.850000;211.865000;0 +20260225 175800;211.867000;211.875000;211.845000;211.863000;0 +20260225 175900;211.863000;211.888000;211.856000;211.860000;0 +20260225 180000;211.860000;211.917000;211.849000;211.889000;0 +20260225 180100;211.876000;211.941000;211.876000;211.901000;0 +20260225 180200;211.899000;211.903000;211.874000;211.879000;0 +20260225 180300;211.878000;211.892000;211.847000;211.868000;0 +20260225 180400;211.863000;211.864000;211.812000;211.861000;0 +20260225 180500;211.859000;211.896000;211.850000;211.896000;0 +20260225 180600;211.893000;211.910000;211.855000;211.900000;0 +20260225 180700;211.898000;211.918000;211.878000;211.913000;0 +20260225 180800;211.914000;211.917000;211.866000;211.910000;0 +20260225 180900;211.902000;211.908000;211.876000;211.876000;0 +20260225 181000;211.877000;211.897000;211.874000;211.883000;0 +20260225 181100;211.882000;211.887000;211.871000;211.878000;0 +20260225 181200;211.882000;211.887000;211.866000;211.869000;0 +20260225 181300;211.868000;211.890000;211.867000;211.889000;0 +20260225 181400;211.889000;211.892000;211.888000;211.890000;0 +20260225 181500;211.889000;211.891000;211.881000;211.889000;0 +20260225 181600;211.890000;211.901000;211.881000;211.885000;0 +20260225 181700;211.885000;211.885000;211.859000;211.861000;0 +20260225 181800;211.861000;211.871000;211.849000;211.861000;0 +20260225 181900;211.862000;211.868000;211.858000;211.866000;0 +20260225 182000;211.868000;211.878000;211.854000;211.861000;0 +20260225 182100;211.862000;211.871000;211.847000;211.847000;0 +20260225 182200;211.848000;211.860000;211.808000;211.810000;0 +20260225 182300;211.804000;211.809000;211.789000;211.802000;0 +20260225 182400;211.798000;211.815000;211.790000;211.796000;0 +20260225 182500;211.794000;211.798000;211.758000;211.775000;0 +20260225 182600;211.775000;211.793000;211.774000;211.781000;0 +20260225 182700;211.782000;211.796000;211.778000;211.782000;0 +20260225 182800;211.783000;211.811000;211.781000;211.798000;0 +20260225 182900;211.800000;211.827000;211.798000;211.824000;0 +20260225 183000;211.821000;211.830000;211.816000;211.824000;0 +20260225 183100;211.826000;211.854000;211.823000;211.823000;0 +20260225 183200;211.825000;211.833000;211.793000;211.801000;0 +20260225 183300;211.800000;211.821000;211.800000;211.810000;0 +20260225 183400;211.818000;211.850000;211.813000;211.847000;0 +20260225 183500;211.854000;211.854000;211.829000;211.840000;0 +20260225 183600;211.845000;211.848000;211.826000;211.827000;0 +20260225 183700;211.829000;211.831000;211.810000;211.810000;0 +20260225 183800;211.804000;211.810000;211.804000;211.809000;0 +20260225 183900;211.810000;211.829000;211.801000;211.815000;0 +20260225 184000;211.815000;211.816000;211.784000;211.786000;0 +20260225 184100;211.780000;211.782000;211.765000;211.772000;0 +20260225 184200;211.768000;211.777000;211.727000;211.746000;0 +20260225 184300;211.749000;211.755000;211.725000;211.738000;0 +20260225 184400;211.738000;211.738000;211.714000;211.725000;0 +20260225 184500;211.725000;211.740000;211.708000;211.723000;0 +20260225 184600;211.722000;211.732000;211.704000;211.727000;0 +20260225 184700;211.729000;211.741000;211.724000;211.741000;0 +20260225 184800;211.740000;211.756000;211.720000;211.720000;0 +20260225 184900;211.725000;211.734000;211.711000;211.716000;0 +20260225 185000;211.716000;211.716000;211.682000;211.682000;0 +20260225 185100;211.682000;211.701000;211.654000;211.665000;0 +20260225 185200;211.668000;211.684000;211.663000;211.671000;0 +20260225 185300;211.671000;211.696000;211.671000;211.685000;0 +20260225 185400;211.684000;211.703000;211.684000;211.701000;0 +20260225 185500;211.701000;211.749000;211.689000;211.732000;0 +20260225 185600;211.731000;211.759000;211.731000;211.755000;0 +20260225 185700;211.755000;211.798000;211.755000;211.773000;0 +20260225 185800;211.773000;211.777000;211.742000;211.745000;0 +20260225 185900;211.745000;211.749000;211.714000;211.724000;0 +20260225 190000;211.722000;211.746000;211.652000;211.657000;0 +20260225 190100;211.657000;211.721000;211.645000;211.705000;0 +20260225 190200;211.706000;211.734000;211.699000;211.715000;0 +20260225 190300;211.716000;211.781000;211.715000;211.775000;0 +20260225 190400;211.774000;211.780000;211.736000;211.749000;0 +20260225 190500;211.747000;211.747000;211.711000;211.732000;0 +20260225 190600;211.722000;211.722000;211.688000;211.698000;0 +20260225 190700;211.691000;211.704000;211.675000;211.694000;0 +20260225 190800;211.693000;211.693000;211.647000;211.675000;0 +20260225 190900;211.671000;211.672000;211.640000;211.663000;0 +20260225 191000;211.661000;211.682000;211.657000;211.659000;0 +20260225 191100;211.666000;211.667000;211.636000;211.651000;0 +20260225 191200;211.651000;211.651000;211.634000;211.640000;0 +20260225 191300;211.642000;211.648000;211.594000;211.646000;0 +20260225 191400;211.647000;211.658000;211.646000;211.649000;0 +20260225 191500;211.653000;211.653000;211.613000;211.615000;0 +20260225 191600;211.616000;211.648000;211.610000;211.630000;0 +20260225 191700;211.629000;211.631000;211.590000;211.605000;0 +20260225 191800;211.607000;211.608000;211.578000;211.590000;0 +20260225 191900;211.590000;211.598000;211.567000;211.577000;0 +20260225 192000;211.574000;211.591000;211.563000;211.569000;0 +20260225 192100;211.566000;211.568000;211.538000;211.538000;0 +20260225 192200;211.540000;211.560000;211.537000;211.560000;0 +20260225 192300;211.566000;211.569000;211.535000;211.542000;0 +20260225 192400;211.543000;211.559000;211.533000;211.550000;0 +20260225 192500;211.550000;211.576000;211.548000;211.572000;0 +20260225 192600;211.570000;211.580000;211.545000;211.579000;0 +20260225 192700;211.580000;211.582000;211.562000;211.575000;0 +20260225 192800;211.575000;211.577000;211.556000;211.562000;0 +20260225 192900;211.560000;211.566000;211.538000;211.566000;0 +20260225 193000;211.575000;211.608000;211.575000;211.604000;0 +20260225 193100;211.600000;211.630000;211.598000;211.616000;0 +20260225 193200;211.615000;211.627000;211.559000;211.562000;0 +20260225 193300;211.563000;211.603000;211.560000;211.603000;0 +20260225 193400;211.602000;211.602000;211.560000;211.566000;0 +20260225 193500;211.569000;211.571000;211.541000;211.541000;0 +20260225 193600;211.540000;211.563000;211.538000;211.556000;0 +20260225 193700;211.559000;211.573000;211.548000;211.569000;0 +20260225 193800;211.571000;211.580000;211.564000;211.572000;0 +20260225 193900;211.570000;211.592000;211.564000;211.568000;0 +20260225 194000;211.566000;211.577000;211.553000;211.575000;0 +20260225 194100;211.574000;211.602000;211.564000;211.584000;0 +20260225 194200;211.582000;211.590000;211.554000;211.585000;0 +20260225 194300;211.581000;211.601000;211.574000;211.586000;0 +20260225 194400;211.586000;211.625000;211.584000;211.620000;0 +20260225 194500;211.617000;211.618000;211.580000;211.580000;0 +20260225 194600;211.580000;211.584000;211.543000;211.555000;0 +20260225 194700;211.558000;211.564000;211.527000;211.553000;0 +20260225 194800;211.550000;211.574000;211.549000;211.572000;0 +20260225 194900;211.570000;211.592000;211.551000;211.583000;0 +20260225 195000;211.584000;211.584000;211.548000;211.563000;0 +20260225 195100;211.565000;211.595000;211.554000;211.567000;0 +20260225 195200;211.565000;211.611000;211.550000;211.610000;0 +20260225 195300;211.603000;211.614000;211.575000;211.583000;0 +20260225 195400;211.585000;211.672000;211.573000;211.656000;0 +20260225 195500;211.647000;211.653000;211.595000;211.602000;0 +20260225 195600;211.602000;211.610000;211.542000;211.547000;0 +20260225 195700;211.546000;211.631000;211.546000;211.619000;0 +20260225 195800;211.619000;211.629000;211.586000;211.589000;0 +20260225 195900;211.589000;211.602000;211.573000;211.576000;0 +20260225 200000;211.580000;211.583000;211.539000;211.558000;0 +20260225 200100;211.560000;211.585000;211.545000;211.558000;0 +20260225 200200;211.558000;211.558000;211.510000;211.524000;0 +20260225 200300;211.512000;211.512000;211.467000;211.484000;0 +20260225 200400;211.482000;211.529000;211.481000;211.507000;0 +20260225 200500;211.511000;211.544000;211.500000;211.522000;0 +20260225 200600;211.512000;211.551000;211.512000;211.544000;0 +20260225 200700;211.549000;211.568000;211.541000;211.556000;0 +20260225 200800;211.554000;211.580000;211.543000;211.567000;0 +20260225 200900;211.566000;211.594000;211.551000;211.589000;0 +20260225 201000;211.590000;211.633000;211.574000;211.630000;0 +20260225 201100;211.631000;211.661000;211.630000;211.658000;0 +20260225 201200;211.658000;211.664000;211.626000;211.631000;0 +20260225 201300;211.627000;211.655000;211.622000;211.654000;0 +20260225 201400;211.658000;211.704000;211.650000;211.690000;0 +20260225 201500;211.691000;211.700000;211.678000;211.683000;0 +20260225 201600;211.683000;211.685000;211.663000;211.664000;0 +20260225 201700;211.664000;211.670000;211.639000;211.639000;0 +20260225 201800;211.641000;211.675000;211.639000;211.672000;0 +20260225 201900;211.673000;211.691000;211.663000;211.667000;0 +20260225 202000;211.663000;211.676000;211.643000;211.659000;0 +20260225 202100;211.661000;211.679000;211.650000;211.655000;0 +20260225 202200;211.658000;211.669000;211.628000;211.646000;0 +20260225 202300;211.646000;211.647000;211.608000;211.611000;0 +20260225 202400;211.609000;211.621000;211.525000;211.534000;0 +20260225 202500;211.534000;211.575000;211.534000;211.568000;0 +20260225 202600;211.566000;211.571000;211.550000;211.553000;0 +20260225 202700;211.553000;211.562000;211.540000;211.551000;0 +20260225 202800;211.553000;211.567000;211.538000;211.563000;0 +20260225 202900;211.561000;211.579000;211.519000;211.522000;0 +20260225 203000;211.519000;211.576000;211.447000;211.573000;0 +20260225 203100;211.572000;211.599000;211.535000;211.599000;0 +20260225 203200;211.594000;211.607000;211.572000;211.575000;0 +20260225 203300;211.575000;211.616000;211.553000;211.594000;0 +20260225 203400;211.594000;211.634000;211.594000;211.612000;0 +20260225 203500;211.612000;211.638000;211.610000;211.631000;0 +20260225 203600;211.633000;211.635000;211.595000;211.596000;0 +20260225 203700;211.595000;211.622000;211.595000;211.614000;0 +20260225 203800;211.615000;211.615000;211.540000;211.549000;0 +20260225 203900;211.548000;211.563000;211.537000;211.551000;0 +20260225 204000;211.547000;211.587000;211.543000;211.586000;0 +20260225 204100;211.586000;211.586000;211.551000;211.570000;0 +20260225 204200;211.564000;211.564000;211.524000;211.524000;0 +20260225 204300;211.522000;211.561000;211.522000;211.543000;0 +20260225 204400;211.545000;211.561000;211.542000;211.551000;0 +20260225 204500;211.550000;211.578000;211.516000;211.567000;0 +20260225 204600;211.566000;211.578000;211.550000;211.550000;0 +20260225 204700;211.546000;211.571000;211.530000;211.569000;0 +20260225 204800;211.567000;211.591000;211.567000;211.587000;0 +20260225 204900;211.585000;211.601000;211.580000;211.586000;0 +20260225 205000;211.585000;211.591000;211.561000;211.591000;0 +20260225 205100;211.591000;211.594000;211.550000;211.557000;0 +20260225 205200;211.557000;211.590000;211.553000;211.584000;0 +20260225 205300;211.585000;211.600000;211.564000;211.570000;0 +20260225 205400;211.570000;211.571000;211.534000;211.536000;0 +20260225 205500;211.537000;211.553000;211.516000;211.553000;0 +20260225 205600;211.552000;211.571000;211.543000;211.543000;0 +20260225 205700;211.545000;211.554000;211.511000;211.521000;0 +20260225 205800;211.519000;211.527000;211.486000;211.488000;0 +20260225 205900;211.491000;211.517000;211.487000;211.511000;0 +20260225 210000;211.517000;211.518000;211.457000;211.481000;0 +20260225 210100;211.478000;211.494000;211.470000;211.483000;0 +20260225 210200;211.481000;211.498000;211.461000;211.461000;0 +20260225 210300;211.460000;211.470000;211.451000;211.453000;0 +20260225 210400;211.454000;211.461000;211.441000;211.457000;0 +20260225 210500;211.459000;211.466000;211.439000;211.446000;0 +20260225 210600;211.446000;211.452000;211.391000;211.397000;0 +20260225 210700;211.399000;211.428000;211.390000;211.420000;0 +20260225 210800;211.423000;211.433000;211.411000;211.423000;0 +20260225 210900;211.423000;211.427000;211.398000;211.419000;0 +20260225 211000;211.418000;211.424000;211.404000;211.407000;0 +20260225 211100;211.409000;211.417000;211.396000;211.416000;0 +20260225 211200;211.416000;211.419000;211.400000;211.408000;0 +20260225 211300;211.406000;211.420000;211.406000;211.410000;0 +20260225 211400;211.408000;211.413000;211.376000;211.388000;0 +20260225 211500;211.389000;211.448000;211.382000;211.448000;0 +20260225 211600;211.447000;211.483000;211.442000;211.469000;0 +20260225 211700;211.470000;211.479000;211.469000;211.470000;0 +20260225 211800;211.469000;211.487000;211.457000;211.470000;0 +20260225 211900;211.470000;211.472000;211.453000;211.453000;0 +20260225 212000;211.454000;211.489000;211.451000;211.473000;0 +20260225 212100;211.474000;211.491000;211.466000;211.473000;0 +20260225 212200;211.472000;211.503000;211.470000;211.502000;0 +20260225 212300;211.498000;211.515000;211.487000;211.510000;0 +20260225 212400;211.509000;211.515000;211.486000;211.498000;0 +20260225 212500;211.497000;211.509000;211.491000;211.497000;0 +20260225 212600;211.498000;211.498000;211.477000;211.484000;0 +20260225 212700;211.483000;211.499000;211.469000;211.492000;0 +20260225 212800;211.490000;211.496000;211.475000;211.488000;0 +20260225 212900;211.491000;211.520000;211.490000;211.506000;0 +20260225 213000;211.506000;211.506000;211.480000;211.495000;0 +20260225 213100;211.498000;211.508000;211.488000;211.502000;0 +20260225 213200;211.501000;211.505000;211.484000;211.492000;0 +20260225 213300;211.488000;211.502000;211.482000;211.485000;0 +20260225 213400;211.484000;211.490000;211.473000;211.473000;0 +20260225 213500;211.474000;211.474000;211.434000;211.446000;0 +20260225 213600;211.447000;211.454000;211.441000;211.449000;0 +20260225 213700;211.446000;211.494000;211.444000;211.482000;0 +20260225 213800;211.479000;211.484000;211.471000;211.481000;0 +20260225 213900;211.480000;211.499000;211.472000;211.485000;0 +20260225 214000;211.484000;211.505000;211.479000;211.503000;0 +20260225 214100;211.500000;211.509000;211.484000;211.498000;0 +20260225 214200;211.497000;211.535000;211.488000;211.528000;0 +20260225 214300;211.529000;211.550000;211.529000;211.535000;0 +20260225 214400;211.537000;211.537000;211.508000;211.525000;0 +20260225 214500;211.528000;211.550000;211.512000;211.526000;0 +20260225 214600;211.526000;211.543000;211.526000;211.539000;0 +20260225 214700;211.540000;211.540000;211.517000;211.522000;0 +20260225 214800;211.519000;211.519000;211.507000;211.508000;0 +20260225 214900;211.508000;211.530000;211.505000;211.525000;0 +20260225 215000;211.523000;211.528000;211.512000;211.515000;0 +20260225 215100;211.512000;211.523000;211.506000;211.519000;0 +20260225 215200;211.517000;211.533000;211.517000;211.530000;0 +20260225 215300;211.529000;211.533000;211.521000;211.529000;0 +20260225 215400;211.528000;211.547000;211.519000;211.525000;0 +20260225 215500;211.524000;211.527000;211.511000;211.521000;0 +20260225 215600;211.520000;211.522000;211.507000;211.508000;0 +20260225 215700;211.504000;211.504000;211.472000;211.483000;0 +20260225 215800;211.483000;211.506000;211.472000;211.487000;0 +20260225 215900;211.490000;211.514000;211.474000;211.503000;0 +20260225 220000;211.506000;211.516000;211.479000;211.481000;0 +20260225 220100;211.483000;211.489000;211.475000;211.477000;0 +20260225 220200;211.476000;211.480000;211.455000;211.471000;0 +20260225 220300;211.475000;211.475000;211.452000;211.457000;0 +20260225 220400;211.456000;211.471000;211.452000;211.470000;0 +20260225 220500;211.467000;211.480000;211.461000;211.476000;0 +20260225 220600;211.482000;211.491000;211.467000;211.467000;0 +20260225 220700;211.469000;211.496000;211.469000;211.493000;0 +20260225 220800;211.493000;211.506000;211.484000;211.498000;0 +20260225 220900;211.500000;211.500000;211.475000;211.480000;0 +20260225 221000;211.484000;211.499000;211.463000;211.499000;0 +20260225 221100;211.497000;211.500000;211.491000;211.493000;0 +20260225 221200;211.495000;211.511000;211.491000;211.503000;0 +20260225 221300;211.501000;211.512000;211.486000;211.486000;0 +20260225 221400;211.485000;211.485000;211.456000;211.456000;0 +20260225 221500;211.456000;211.457000;211.371000;211.377000;0 +20260225 221600;211.377000;211.398000;211.355000;211.367000;0 +20260225 221700;211.368000;211.401000;211.366000;211.383000;0 +20260225 221800;211.385000;211.392000;211.338000;211.352000;0 +20260225 221900;211.354000;211.372000;211.339000;211.372000;0 +20260225 222000;211.370000;211.371000;211.346000;211.361000;0 +20260225 222100;211.356000;211.359000;211.342000;211.345000;0 +20260225 222200;211.349000;211.355000;211.328000;211.344000;0 +20260225 222300;211.343000;211.367000;211.338000;211.366000;0 +20260225 222400;211.367000;211.375000;211.339000;211.348000;0 +20260225 222500;211.349000;211.350000;211.339000;211.339000;0 +20260225 222600;211.341000;211.344000;211.335000;211.337000;0 +20260225 222700;211.336000;211.342000;211.325000;211.331000;0 +20260225 222800;211.336000;211.410000;211.335000;211.410000;0 +20260225 222900;211.409000;211.417000;211.400000;211.404000;0 +20260225 223000;211.407000;211.408000;211.368000;211.368000;0 +20260225 223100;211.364000;211.364000;211.337000;211.350000;0 +20260225 223200;211.351000;211.353000;211.332000;211.347000;0 +20260225 223300;211.349000;211.361000;211.339000;211.361000;0 +20260225 223400;211.358000;211.362000;211.353000;211.360000;0 +20260225 223500;211.358000;211.358000;211.335000;211.346000;0 +20260225 223600;211.348000;211.358000;211.340000;211.349000;0 +20260225 223700;211.347000;211.380000;211.346000;211.374000;0 +20260225 223800;211.375000;211.384000;211.373000;211.373000;0 +20260225 223900;211.374000;211.382000;211.354000;211.355000;0 +20260225 224000;211.353000;211.380000;211.352000;211.368000;0 +20260225 224100;211.370000;211.378000;211.368000;211.372000;0 +20260225 224200;211.370000;211.382000;211.369000;211.369000;0 +20260225 224300;211.370000;211.375000;211.365000;211.373000;0 +20260225 224400;211.377000;211.401000;211.361000;211.401000;0 +20260225 224500;211.402000;211.439000;211.402000;211.429000;0 +20260225 224600;211.430000;211.433000;211.411000;211.411000;0 +20260225 224700;211.419000;211.422000;211.404000;211.420000;0 +20260225 224800;211.419000;211.433000;211.414000;211.432000;0 +20260225 224900;211.433000;211.442000;211.425000;211.440000;0 +20260225 225000;211.441000;211.469000;211.441000;211.455000;0 +20260225 225100;211.456000;211.462000;211.443000;211.449000;0 +20260225 225200;211.449000;211.458000;211.422000;211.426000;0 +20260225 225300;211.424000;211.447000;211.423000;211.445000;0 +20260225 225400;211.445000;211.446000;211.421000;211.427000;0 +20260225 225500;211.423000;211.426000;211.399000;211.406000;0 +20260225 225600;211.407000;211.424000;211.403000;211.413000;0 +20260225 225700;211.413000;211.413000;211.398000;211.403000;0 +20260225 225800;211.401000;211.405000;211.379000;211.379000;0 +20260225 225900;211.372000;211.398000;211.371000;211.387000;0 +20260225 230000;211.385000;211.400000;211.371000;211.379000;0 +20260225 230100;211.381000;211.419000;211.379000;211.413000;0 +20260225 230200;211.412000;211.414000;211.385000;211.389000;0 +20260225 230300;211.387000;211.400000;211.386000;211.397000;0 +20260225 230400;211.399000;211.399000;211.368000;211.372000;0 +20260225 230500;211.369000;211.369000;211.345000;211.349000;0 +20260225 230600;211.351000;211.361000;211.339000;211.350000;0 +20260225 230700;211.349000;211.366000;211.339000;211.366000;0 +20260225 230800;211.366000;211.380000;211.339000;211.351000;0 +20260225 230900;211.353000;211.359000;211.343000;211.356000;0 +20260225 231000;211.357000;211.429000;211.353000;211.427000;0 +20260225 231100;211.428000;211.440000;211.415000;211.439000;0 +20260225 231200;211.438000;211.450000;211.430000;211.435000;0 +20260225 231300;211.436000;211.439000;211.413000;211.414000;0 +20260225 231400;211.416000;211.420000;211.409000;211.418000;0 +20260225 231500;211.419000;211.435000;211.416000;211.421000;0 +20260225 231600;211.422000;211.440000;211.409000;211.439000;0 +20260225 231700;211.442000;211.442000;211.422000;211.440000;0 +20260225 231800;211.437000;211.458000;211.437000;211.456000;0 +20260225 231900;211.456000;211.456000;211.426000;211.434000;0 +20260225 232000;211.433000;211.443000;211.413000;211.414000;0 +20260225 232100;211.409000;211.440000;211.403000;211.427000;0 +20260225 232200;211.426000;211.436000;211.419000;211.434000;0 +20260225 232300;211.425000;211.434000;211.424000;211.427000;0 +20260225 232400;211.429000;211.436000;211.419000;211.419000;0 +20260225 232500;211.421000;211.421000;211.396000;211.406000;0 +20260225 232600;211.405000;211.411000;211.395000;211.411000;0 +20260225 232700;211.405000;211.414000;211.405000;211.414000;0 +20260225 232800;211.422000;211.423000;211.405000;211.422000;0 +20260225 232900;211.423000;211.456000;211.418000;211.456000;0 +20260225 233000;211.461000;211.506000;211.449000;211.506000;0 +20260225 233100;211.504000;211.538000;211.501000;211.501000;0 +20260225 233200;211.501000;211.532000;211.499000;211.516000;0 +20260225 233300;211.516000;211.534000;211.510000;211.511000;0 +20260225 233400;211.511000;211.513000;211.465000;211.481000;0 +20260225 233500;211.482000;211.510000;211.481000;211.506000;0 +20260225 233600;211.507000;211.541000;211.507000;211.537000;0 +20260225 233700;211.538000;211.557000;211.533000;211.549000;0 +20260225 233800;211.552000;211.552000;211.522000;211.527000;0 +20260225 233900;211.529000;211.547000;211.529000;211.546000;0 +20260225 234000;211.546000;211.563000;211.520000;211.527000;0 +20260225 234100;211.525000;211.535000;211.505000;211.514000;0 +20260225 234200;211.516000;211.549000;211.514000;211.532000;0 +20260225 234300;211.533000;211.534000;211.515000;211.516000;0 +20260225 234400;211.516000;211.520000;211.502000;211.503000;0 +20260225 234500;211.503000;211.525000;211.502000;211.506000;0 +20260225 234600;211.504000;211.508000;211.469000;211.476000;0 +20260225 234700;211.474000;211.484000;211.465000;211.472000;0 +20260225 234800;211.474000;211.502000;211.472000;211.502000;0 +20260225 234900;211.507000;211.507000;211.479000;211.500000;0 +20260225 235000;211.498000;211.499000;211.480000;211.487000;0 +20260225 235100;211.488000;211.507000;211.488000;211.496000;0 +20260225 235200;211.495000;211.500000;211.488000;211.491000;0 +20260225 235300;211.490000;211.491000;211.470000;211.475000;0 +20260225 235400;211.472000;211.476000;211.461000;211.464000;0 +20260225 235500;211.465000;211.466000;211.405000;211.422000;0 +20260225 235600;211.419000;211.421000;211.396000;211.401000;0 +20260225 235700;211.402000;211.411000;211.395000;211.402000;0 +20260225 235800;211.400000;211.407000;211.374000;211.374000;0 +20260225 235900;211.379000;211.383000;211.358000;211.366000;0 +20260226 000000;211.367000;211.371000;211.325000;211.325000;0 +20260226 000100;211.327000;211.338000;211.319000;211.321000;0 +20260226 000200;211.322000;211.322000;211.303000;211.310000;0 +20260226 000300;211.307000;211.307000;211.275000;211.298000;0 +20260226 000400;211.298000;211.331000;211.294000;211.326000;0 +20260226 000500;211.327000;211.341000;211.314000;211.340000;0 +20260226 000600;211.340000;211.358000;211.339000;211.357000;0 +20260226 000700;211.356000;211.357000;211.319000;211.325000;0 +20260226 000800;211.321000;211.348000;211.300000;211.317000;0 +20260226 000900;211.319000;211.332000;211.292000;211.319000;0 +20260226 001000;211.321000;211.360000;211.315000;211.332000;0 +20260226 001100;211.332000;211.332000;211.296000;211.322000;0 +20260226 001200;211.324000;211.355000;211.322000;211.346000;0 +20260226 001300;211.346000;211.362000;211.332000;211.353000;0 +20260226 001400;211.354000;211.375000;211.342000;211.364000;0 +20260226 001500;211.365000;211.380000;211.356000;211.363000;0 +20260226 001600;211.359000;211.359000;211.332000;211.342000;0 +20260226 001700;211.350000;211.361000;211.316000;211.341000;0 +20260226 001800;211.343000;211.348000;211.315000;211.316000;0 +20260226 001900;211.315000;211.328000;211.306000;211.322000;0 +20260226 002000;211.325000;211.345000;211.324000;211.337000;0 +20260226 002100;211.334000;211.344000;211.310000;211.343000;0 +20260226 002200;211.348000;211.380000;211.344000;211.380000;0 +20260226 002300;211.379000;211.389000;211.367000;211.378000;0 +20260226 002400;211.379000;211.398000;211.366000;211.393000;0 +20260226 002500;211.393000;211.396000;211.365000;211.385000;0 +20260226 002600;211.385000;211.408000;211.383000;211.407000;0 +20260226 002700;211.406000;211.410000;211.360000;211.361000;0 +20260226 002800;211.363000;211.387000;211.361000;211.385000;0 +20260226 002900;211.384000;211.393000;211.378000;211.381000;0 +20260226 003000;211.383000;211.420000;211.380000;211.417000;0 +20260226 003100;211.415000;211.436000;211.402000;211.407000;0 +20260226 003200;211.411000;211.416000;211.403000;211.416000;0 +20260226 003300;211.413000;211.424000;211.411000;211.418000;0 +20260226 003400;211.417000;211.430000;211.417000;211.427000;0 +20260226 003500;211.423000;211.426000;211.358000;211.358000;0 +20260226 003600;211.359000;211.381000;211.339000;211.343000;0 +20260226 003700;211.346000;211.362000;211.331000;211.338000;0 +20260226 003800;211.339000;211.359000;211.339000;211.355000;0 +20260226 003900;211.357000;211.357000;211.330000;211.339000;0 +20260226 004000;211.338000;211.338000;211.320000;211.328000;0 +20260226 004100;211.329000;211.345000;211.317000;211.341000;0 +20260226 004200;211.342000;211.346000;211.323000;211.330000;0 +20260226 004300;211.327000;211.333000;211.317000;211.326000;0 +20260226 004400;211.324000;211.339000;211.323000;211.330000;0 +20260226 004500;211.335000;211.362000;211.335000;211.354000;0 +20260226 004600;211.357000;211.357000;211.339000;211.355000;0 +20260226 004700;211.356000;211.396000;211.354000;211.393000;0 +20260226 004800;211.393000;211.397000;211.382000;211.385000;0 +20260226 004900;211.390000;211.412000;211.323000;211.364000;0 +20260226 005000;211.365000;211.384000;211.356000;211.376000;0 +20260226 005100;211.376000;211.376000;211.211000;211.211000;0 +20260226 005200;211.203000;211.289000;211.165000;211.288000;0 +20260226 005300;211.281000;211.327000;211.232000;211.326000;0 +20260226 005400;211.324000;211.344000;211.315000;211.341000;0 +20260226 005500;211.342000;211.367000;211.319000;211.326000;0 +20260226 005600;211.324000;211.379000;211.322000;211.360000;0 +20260226 005700;211.350000;211.374000;211.336000;211.336000;0 +20260226 005800;211.339000;211.391000;211.339000;211.391000;0 +20260226 005900;211.397000;211.462000;211.397000;211.459000;0 +20260226 010000;211.448000;211.477000;211.448000;211.457000;0 +20260226 010100;211.457000;211.457000;211.408000;211.418000;0 +20260226 010200;211.417000;211.482000;211.415000;211.481000;0 +20260226 010300;211.481000;211.485000;211.440000;211.461000;0 +20260226 010400;211.461000;211.518000;211.447000;211.513000;0 +20260226 010500;211.514000;211.517000;211.481000;211.497000;0 +20260226 010600;211.498000;211.533000;211.492000;211.532000;0 +20260226 010700;211.531000;211.558000;211.528000;211.538000;0 +20260226 010800;211.538000;211.540000;211.510000;211.540000;0 +20260226 010900;211.540000;211.545000;211.499000;211.501000;0 +20260226 011000;211.499000;211.522000;211.494000;211.497000;0 +20260226 011100;211.499000;211.507000;211.493000;211.506000;0 +20260226 011200;211.506000;211.506000;211.461000;211.462000;0 +20260226 011300;211.467000;211.475000;211.451000;211.475000;0 +20260226 011400;211.475000;211.480000;211.467000;211.478000;0 +20260226 011500;211.481000;211.511000;211.481000;211.511000;0 +20260226 011600;211.511000;211.528000;211.509000;211.509000;0 +20260226 011700;211.509000;211.542000;211.509000;211.542000;0 +20260226 011800;211.543000;211.553000;211.517000;211.525000;0 +20260226 011900;211.526000;211.545000;211.511000;211.541000;0 +20260226 012000;211.542000;211.548000;211.498000;211.504000;0 +20260226 012100;211.507000;211.510000;211.480000;211.498000;0 +20260226 012200;211.499000;211.501000;211.475000;211.477000;0 +20260226 012300;211.476000;211.480000;211.466000;211.471000;0 +20260226 012400;211.471000;211.475000;211.454000;211.457000;0 +20260226 012500;211.459000;211.471000;211.452000;211.453000;0 +20260226 012600;211.452000;211.469000;211.442000;211.467000;0 +20260226 012700;211.466000;211.473000;211.458000;211.466000;0 +20260226 012800;211.466000;211.486000;211.457000;211.483000;0 +20260226 012900;211.477000;211.503000;211.464000;211.503000;0 +20260226 013000;211.504000;211.518000;211.485000;211.498000;0 +20260226 013100;211.499000;211.499000;211.471000;211.473000;0 +20260226 013200;211.472000;211.491000;211.471000;211.491000;0 +20260226 013300;211.496000;211.508000;211.453000;211.491000;0 +20260226 013400;211.491000;211.495000;211.457000;211.469000;0 +20260226 013500;211.467000;211.468000;211.413000;211.420000;0 +20260226 013600;211.416000;211.435000;211.402000;211.434000;0 +20260226 013700;211.434000;211.517000;211.434000;211.515000;0 +20260226 013800;211.516000;211.544000;211.512000;211.513000;0 +20260226 013900;211.512000;211.531000;211.492000;211.494000;0 +20260226 014000;211.495000;211.507000;211.482000;211.494000;0 +20260226 014100;211.495000;211.514000;211.491000;211.507000;0 +20260226 014200;211.508000;211.516000;211.478000;211.478000;0 +20260226 014300;211.478000;211.492000;211.478000;211.480000;0 +20260226 014400;211.479000;211.492000;211.466000;211.475000;0 +20260226 014500;211.476000;211.480000;211.448000;211.448000;0 +20260226 014600;211.450000;211.464000;211.442000;211.459000;0 +20260226 014700;211.460000;211.476000;211.457000;211.475000;0 +20260226 014800;211.474000;211.490000;211.469000;211.482000;0 +20260226 014900;211.483000;211.499000;211.473000;211.475000;0 +20260226 015000;211.475000;211.478000;211.454000;211.456000;0 +20260226 015100;211.455000;211.456000;211.435000;211.448000;0 +20260226 015200;211.451000;211.464000;211.437000;211.460000;0 +20260226 015300;211.458000;211.484000;211.456000;211.480000;0 +20260226 015400;211.481000;211.514000;211.476000;211.502000;0 +20260226 015500;211.507000;211.507000;211.452000;211.464000;0 +20260226 015600;211.461000;211.462000;211.440000;211.445000;0 +20260226 015700;211.445000;211.451000;211.433000;211.444000;0 +20260226 015800;211.444000;211.473000;211.444000;211.459000;0 +20260226 015900;211.456000;211.457000;211.432000;211.435000;0 +20260226 020000;211.448000;211.500000;211.448000;211.485000;0 +20260226 020100;211.483000;211.496000;211.462000;211.473000;0 +20260226 020200;211.473000;211.481000;211.437000;211.442000;0 +20260226 020300;211.440000;211.465000;211.434000;211.453000;0 +20260226 020400;211.453000;211.487000;211.451000;211.477000;0 +20260226 020500;211.478000;211.496000;211.459000;211.482000;0 +20260226 020600;211.485000;211.512000;211.479000;211.508000;0 +20260226 020700;211.510000;211.522000;211.497000;211.502000;0 +20260226 020800;211.504000;211.504000;211.475000;211.498000;0 +20260226 020900;211.497000;211.556000;211.488000;211.556000;0 +20260226 021000;211.558000;211.570000;211.534000;211.569000;0 +20260226 021100;211.569000;211.583000;211.563000;211.577000;0 +20260226 021200;211.577000;211.581000;211.543000;211.545000;0 +20260226 021300;211.545000;211.562000;211.533000;211.539000;0 +20260226 021400;211.541000;211.569000;211.533000;211.551000;0 +20260226 021500;211.551000;211.556000;211.527000;211.536000;0 +20260226 021600;211.535000;211.545000;211.526000;211.545000;0 +20260226 021700;211.546000;211.552000;211.505000;211.541000;0 +20260226 021800;211.541000;211.548000;211.512000;211.525000;0 +20260226 021900;211.534000;211.569000;211.525000;211.562000;0 +20260226 022000;211.562000;211.570000;211.544000;211.557000;0 +20260226 022100;211.557000;211.606000;211.557000;211.599000;0 +20260226 022200;211.598000;211.601000;211.577000;211.580000;0 +20260226 022300;211.580000;211.624000;211.575000;211.593000;0 +20260226 022400;211.596000;211.607000;211.572000;211.573000;0 +20260226 022500;211.577000;211.583000;211.543000;211.545000;0 +20260226 022600;211.544000;211.545000;211.484000;211.516000;0 +20260226 022700;211.517000;211.544000;211.506000;211.532000;0 +20260226 022800;211.531000;211.566000;211.531000;211.556000;0 +20260226 022900;211.560000;211.567000;211.542000;211.562000;0 +20260226 023000;211.563000;211.573000;211.549000;211.553000;0 +20260226 023100;211.552000;211.553000;211.520000;211.537000;0 +20260226 023200;211.538000;211.545000;211.524000;211.524000;0 +20260226 023300;211.525000;211.550000;211.521000;211.524000;0 +20260226 023400;211.520000;211.524000;211.503000;211.504000;0 +20260226 023500;211.505000;211.534000;211.505000;211.531000;0 +20260226 023600;211.532000;211.534000;211.520000;211.529000;0 +20260226 023700;211.527000;211.543000;211.516000;211.541000;0 +20260226 023800;211.541000;211.551000;211.526000;211.540000;0 +20260226 023900;211.536000;211.537000;211.502000;211.507000;0 +20260226 024000;211.508000;211.544000;211.508000;211.526000;0 +20260226 024100;211.525000;211.547000;211.519000;211.540000;0 +20260226 024200;211.537000;211.543000;211.528000;211.535000;0 +20260226 024300;211.533000;211.540000;211.500000;211.528000;0 +20260226 024400;211.524000;211.540000;211.516000;211.516000;0 +20260226 024500;211.518000;211.523000;211.507000;211.516000;0 +20260226 024600;211.513000;211.515000;211.497000;211.502000;0 +20260226 024700;211.511000;211.511000;211.464000;211.480000;0 +20260226 024800;211.482000;211.484000;211.444000;211.446000;0 +20260226 024900;211.448000;211.465000;211.442000;211.446000;0 +20260226 025000;211.447000;211.447000;211.377000;211.377000;0 +20260226 025100;211.368000;211.372000;211.342000;211.349000;0 +20260226 025200;211.349000;211.392000;211.320000;211.383000;0 +20260226 025300;211.385000;211.391000;211.358000;211.368000;0 +20260226 025400;211.367000;211.397000;211.365000;211.373000;0 +20260226 025500;211.374000;211.395000;211.361000;211.395000;0 +20260226 025600;211.394000;211.430000;211.377000;211.419000;0 +20260226 025700;211.419000;211.452000;211.404000;211.448000;0 +20260226 025800;211.448000;211.456000;211.424000;211.455000;0 +20260226 025900;211.456000;211.456000;211.385000;211.386000;0 +20260226 030000;211.382000;211.386000;211.296000;211.298000;0 +20260226 030100;211.296000;211.371000;211.286000;211.342000;0 +20260226 030200;211.345000;211.361000;211.318000;211.326000;0 +20260226 030300;211.328000;211.362000;211.315000;211.340000;0 +20260226 030400;211.343000;211.372000;211.285000;211.315000;0 +20260226 030500;211.318000;211.363000;211.316000;211.363000;0 +20260226 030600;211.364000;211.378000;211.341000;211.343000;0 +20260226 030700;211.346000;211.353000;211.326000;211.336000;0 +20260226 030800;211.335000;211.339000;211.297000;211.302000;0 +20260226 030900;211.297000;211.332000;211.294000;211.321000;0 +20260226 031000;211.327000;211.327000;211.263000;211.265000;0 +20260226 031100;211.265000;211.266000;211.230000;211.233000;0 +20260226 031200;211.232000;211.236000;211.198000;211.207000;0 +20260226 031300;211.206000;211.206000;211.167000;211.174000;0 +20260226 031400;211.176000;211.193000;211.171000;211.174000;0 +20260226 031500;211.175000;211.177000;211.141000;211.168000;0 +20260226 031600;211.165000;211.169000;211.127000;211.152000;0 +20260226 031700;211.153000;211.153000;211.110000;211.137000;0 +20260226 031800;211.137000;211.155000;211.133000;211.148000;0 +20260226 031900;211.148000;211.167000;211.142000;211.161000;0 +20260226 032000;211.160000;211.161000;211.120000;211.146000;0 +20260226 032100;211.145000;211.145000;211.107000;211.121000;0 +20260226 032200;211.118000;211.142000;211.105000;211.116000;0 +20260226 032300;211.121000;211.123000;211.037000;211.044000;0 +20260226 032400;211.044000;211.049000;211.026000;211.043000;0 +20260226 032500;211.044000;211.072000;211.001000;211.064000;0 +20260226 032600;211.063000;211.081000;211.045000;211.071000;0 +20260226 032700;211.072000;211.097000;211.064000;211.083000;0 +20260226 032800;211.083000;211.117000;211.081000;211.098000;0 +20260226 032900;211.098000;211.146000;211.097000;211.144000;0 +20260226 033000;211.146000;211.163000;211.119000;211.149000;0 +20260226 033100;211.150000;211.166000;211.122000;211.126000;0 +20260226 033200;211.127000;211.132000;211.060000;211.069000;0 +20260226 033300;211.076000;211.085000;211.060000;211.062000;0 +20260226 033400;211.059000;211.078000;211.054000;211.074000;0 +20260226 033500;211.075000;211.085000;211.068000;211.075000;0 +20260226 033600;211.074000;211.087000;211.070000;211.079000;0 +20260226 033700;211.079000;211.079000;211.059000;211.076000;0 +20260226 033800;211.075000;211.075000;211.027000;211.039000;0 +20260226 033900;211.038000;211.038000;211.003000;211.018000;0 +20260226 034000;211.018000;211.021000;210.987000;210.999000;0 +20260226 034100;211.006000;211.068000;211.001000;211.019000;0 +20260226 034200;211.020000;211.024000;210.965000;210.968000;0 +20260226 034300;210.977000;210.997000;210.941000;210.941000;0 +20260226 034400;210.939000;210.963000;210.930000;210.961000;0 +20260226 034500;210.962000;210.995000;210.949000;210.983000;0 +20260226 034600;210.980000;210.994000;210.959000;210.959000;0 +20260226 034700;210.959000;210.959000;210.930000;210.937000;0 +20260226 034800;210.936000;210.945000;210.922000;210.933000;0 +20260226 034900;210.937000;210.943000;210.908000;210.910000;0 +20260226 035000;210.908000;210.913000;210.881000;210.885000;0 +20260226 035100;210.890000;210.932000;210.887000;210.912000;0 +20260226 035200;210.910000;210.914000;210.890000;210.895000;0 +20260226 035300;210.898000;210.923000;210.886000;210.920000;0 +20260226 035400;210.922000;210.955000;210.911000;210.911000;0 +20260226 035500;210.909000;210.915000;210.899000;210.903000;0 +20260226 035600;210.895000;210.924000;210.873000;210.919000;0 +20260226 035700;210.920000;210.938000;210.901000;210.902000;0 +20260226 035800;210.904000;210.939000;210.900000;210.933000;0 +20260226 035900;210.932000;210.968000;210.927000;210.966000;0 +20260226 040000;210.971000;210.983000;210.945000;210.969000;0 +20260226 040100;210.969000;210.969000;210.915000;210.920000;0 +20260226 040200;210.921000;210.921000;210.893000;210.906000;0 +20260226 040300;210.908000;210.920000;210.904000;210.908000;0 +20260226 040400;210.904000;210.907000;210.873000;210.883000;0 +20260226 040500;210.885000;210.897000;210.849000;210.850000;0 +20260226 040600;210.851000;210.875000;210.827000;210.871000;0 +20260226 040700;210.862000;210.923000;210.862000;210.921000;0 +20260226 040800;210.923000;210.976000;210.922000;210.968000;0 +20260226 040900;210.962000;210.969000;210.953000;210.968000;0 +20260226 041000;210.963000;210.963000;210.938000;210.950000;0 +20260226 041100;210.951000;210.954000;210.932000;210.954000;0 +20260226 041200;210.952000;210.956000;210.938000;210.942000;0 +20260226 041300;210.940000;210.941000;210.918000;210.936000;0 +20260226 041400;210.933000;210.947000;210.897000;210.908000;0 +20260226 041500;210.912000;210.953000;210.909000;210.950000;0 +20260226 041600;210.950000;210.969000;210.929000;210.952000;0 +20260226 041700;210.954000;210.957000;210.929000;210.936000;0 +20260226 041800;210.937000;210.962000;210.934000;210.955000;0 +20260226 041900;210.952000;210.967000;210.943000;210.967000;0 +20260226 042000;210.965000;210.979000;210.953000;210.958000;0 +20260226 042100;210.960000;210.970000;210.943000;210.953000;0 +20260226 042200;210.954000;210.967000;210.952000;210.967000;0 +20260226 042300;210.967000;210.967000;210.940000;210.959000;0 +20260226 042400;210.962000;210.978000;210.959000;210.968000;0 +20260226 042500;210.972000;210.998000;210.960000;210.960000;0 +20260226 042600;210.961000;210.998000;210.961000;210.996000;0 +20260226 042700;210.993000;211.026000;210.990000;211.026000;0 +20260226 042800;211.027000;211.029000;211.001000;211.019000;0 +20260226 042900;211.019000;211.040000;211.013000;211.038000;0 +20260226 043000;211.036000;211.053000;211.022000;211.049000;0 +20260226 043100;211.048000;211.052000;211.030000;211.040000;0 +20260226 043200;211.037000;211.043000;211.021000;211.032000;0 +20260226 043300;211.031000;211.045000;211.022000;211.025000;0 +20260226 043400;211.021000;211.043000;211.019000;211.024000;0 +20260226 043500;211.023000;211.066000;211.017000;211.066000;0 +20260226 043600;211.064000;211.097000;211.044000;211.092000;0 +20260226 043700;211.091000;211.102000;211.080000;211.102000;0 +20260226 043800;211.102000;211.108000;211.074000;211.088000;0 +20260226 043900;211.086000;211.101000;211.085000;211.098000;0 +20260226 044000;211.097000;211.125000;211.092000;211.121000;0 +20260226 044100;211.122000;211.129000;211.106000;211.123000;0 +20260226 044200;211.126000;211.145000;211.126000;211.137000;0 +20260226 044300;211.135000;211.140000;211.087000;211.088000;0 +20260226 044400;211.091000;211.091000;211.036000;211.043000;0 +20260226 044500;211.046000;211.081000;211.040000;211.074000;0 +20260226 044600;211.078000;211.084000;211.060000;211.073000;0 +20260226 044700;211.074000;211.096000;211.070000;211.088000;0 +20260226 044800;211.086000;211.117000;211.077000;211.114000;0 +20260226 044900;211.113000;211.150000;211.108000;211.145000;0 +20260226 045000;211.149000;211.162000;211.145000;211.159000;0 +20260226 045100;211.158000;211.167000;211.142000;211.142000;0 +20260226 045200;211.141000;211.142000;211.125000;211.126000;0 +20260226 045300;211.129000;211.158000;211.129000;211.140000;0 +20260226 045400;211.144000;211.148000;211.109000;211.117000;0 +20260226 045500;211.115000;211.118000;211.107000;211.110000;0 +20260226 045600;211.112000;211.116000;211.096000;211.098000;0 +20260226 045700;211.100000;211.110000;211.089000;211.095000;0 +20260226 045800;211.092000;211.125000;211.092000;211.121000;0 +20260226 045900;211.122000;211.122000;211.107000;211.114000;0 +20260226 050000;211.116000;211.135000;211.104000;211.104000;0 +20260226 050100;211.103000;211.114000;211.103000;211.105000;0 +20260226 050200;211.105000;211.110000;211.097000;211.099000;0 +20260226 050300;211.098000;211.110000;211.098000;211.104000;0 +20260226 050400;211.105000;211.115000;211.091000;211.091000;0 +20260226 050500;211.092000;211.111000;211.086000;211.087000;0 +20260226 050600;211.084000;211.095000;211.075000;211.089000;0 +20260226 050700;211.086000;211.086000;211.072000;211.081000;0 +20260226 050800;211.079000;211.085000;211.045000;211.045000;0 +20260226 050900;211.043000;211.059000;211.041000;211.055000;0 +20260226 051000;211.055000;211.109000;211.055000;211.097000;0 +20260226 051100;211.107000;211.114000;211.094000;211.095000;0 +20260226 051200;211.096000;211.123000;211.096000;211.123000;0 +20260226 051300;211.123000;211.123000;211.108000;211.120000;0 +20260226 051400;211.119000;211.124000;211.106000;211.108000;0 +20260226 051500;211.110000;211.111000;211.086000;211.109000;0 +20260226 051600;211.106000;211.108000;211.079000;211.079000;0 +20260226 051700;211.079000;211.091000;211.078000;211.081000;0 +20260226 051800;211.077000;211.090000;211.070000;211.088000;0 +20260226 051900;211.086000;211.094000;211.082000;211.092000;0 +20260226 052000;211.081000;211.081000;211.067000;211.073000;0 +20260226 052100;211.075000;211.133000;211.075000;211.122000;0 +20260226 052200;211.120000;211.131000;211.109000;211.113000;0 +20260226 052300;211.123000;211.141000;211.121000;211.130000;0 +20260226 052400;211.127000;211.159000;211.127000;211.159000;0 +20260226 052500;211.156000;211.167000;211.145000;211.153000;0 +20260226 052600;211.152000;211.179000;211.143000;211.176000;0 +20260226 052700;211.174000;211.188000;211.159000;211.160000;0 +20260226 052800;211.161000;211.170000;211.160000;211.163000;0 +20260226 052900;211.166000;211.166000;211.148000;211.155000;0 +20260226 053000;211.152000;211.153000;211.114000;211.119000;0 +20260226 053100;211.121000;211.124000;211.108000;211.118000;0 +20260226 053200;211.115000;211.133000;211.111000;211.126000;0 +20260226 053300;211.127000;211.152000;211.126000;211.141000;0 +20260226 053400;211.140000;211.144000;211.104000;211.105000;0 +20260226 053500;211.108000;211.120000;211.094000;211.116000;0 +20260226 053600;211.116000;211.133000;211.113000;211.124000;0 +20260226 053700;211.124000;211.139000;211.108000;211.118000;0 +20260226 053800;211.116000;211.151000;211.107000;211.151000;0 +20260226 053900;211.145000;211.187000;211.141000;211.181000;0 +20260226 054000;211.178000;211.178000;211.137000;211.147000;0 +20260226 054100;211.145000;211.148000;211.123000;211.135000;0 +20260226 054200;211.134000;211.134000;211.103000;211.114000;0 +20260226 054300;211.113000;211.120000;211.105000;211.117000;0 +20260226 054400;211.118000;211.133000;211.103000;211.106000;0 +20260226 054500;211.105000;211.131000;211.100000;211.116000;0 +20260226 054600;211.116000;211.125000;211.111000;211.119000;0 +20260226 054700;211.117000;211.121000;211.106000;211.118000;0 +20260226 054800;211.116000;211.137000;211.111000;211.133000;0 +20260226 054900;211.132000;211.137000;211.117000;211.117000;0 +20260226 055000;211.117000;211.124000;211.103000;211.108000;0 +20260226 055100;211.108000;211.117000;211.086000;211.086000;0 +20260226 055200;211.090000;211.112000;211.086000;211.102000;0 +20260226 055300;211.102000;211.110000;211.084000;211.088000;0 +20260226 055400;211.088000;211.091000;211.066000;211.087000;0 +20260226 055500;211.084000;211.106000;211.083000;211.106000;0 +20260226 055600;211.106000;211.119000;211.082000;211.082000;0 +20260226 055700;211.085000;211.095000;211.080000;211.090000;0 +20260226 055800;211.088000;211.103000;211.082000;211.101000;0 +20260226 055900;211.101000;211.104000;211.085000;211.090000;0 +20260226 060000;211.090000;211.103000;211.079000;211.093000;0 +20260226 060100;211.093000;211.111000;211.085000;211.088000;0 +20260226 060200;211.089000;211.101000;211.078000;211.101000;0 +20260226 060300;211.101000;211.111000;211.084000;211.090000;0 +20260226 060400;211.089000;211.089000;211.081000;211.082000;0 +20260226 060500;211.080000;211.133000;211.080000;211.132000;0 +20260226 060600;211.130000;211.137000;211.114000;211.136000;0 +20260226 060700;211.136000;211.158000;211.134000;211.154000;0 +20260226 060800;211.152000;211.226000;211.150000;211.222000;0 +20260226 060900;211.218000;211.222000;211.183000;211.187000;0 +20260226 061000;211.187000;211.198000;211.169000;211.189000;0 +20260226 061100;211.187000;211.187000;211.152000;211.157000;0 +20260226 061200;211.156000;211.159000;211.148000;211.150000;0 +20260226 061300;211.152000;211.160000;211.145000;211.153000;0 +20260226 061400;211.154000;211.162000;211.146000;211.151000;0 +20260226 061500;211.151000;211.192000;211.149000;211.187000;0 +20260226 061600;211.189000;211.191000;211.172000;211.187000;0 +20260226 061700;211.187000;211.220000;211.181000;211.217000;0 +20260226 061800;211.217000;211.251000;211.216000;211.245000;0 +20260226 061900;211.244000;211.245000;211.212000;211.212000;0 +20260226 062000;211.213000;211.220000;211.200000;211.200000;0 +20260226 062100;211.200000;211.211000;211.200000;211.209000;0 +20260226 062200;211.211000;211.211000;211.196000;211.197000;0 +20260226 062300;211.196000;211.204000;211.180000;211.191000;0 +20260226 062400;211.193000;211.211000;211.192000;211.210000;0 +20260226 062500;211.210000;211.213000;211.210000;211.211000;0 +20260226 062600;211.212000;211.224000;211.209000;211.221000;0 +20260226 062700;211.218000;211.229000;211.205000;211.209000;0 +20260226 062800;211.208000;211.217000;211.207000;211.210000;0 +20260226 062900;211.211000;211.256000;211.210000;211.251000;0 +20260226 063000;211.247000;211.249000;211.226000;211.227000;0 +20260226 063100;211.223000;211.270000;211.223000;211.258000;0 +20260226 063200;211.257000;211.265000;211.243000;211.243000;0 +20260226 063300;211.244000;211.246000;211.236000;211.245000;0 +20260226 063400;211.245000;211.270000;211.242000;211.266000;0 +20260226 063500;211.266000;211.283000;211.257000;211.257000;0 +20260226 063600;211.258000;211.258000;211.221000;211.250000;0 +20260226 063700;211.249000;211.265000;211.249000;211.261000;0 +20260226 063800;211.264000;211.274000;211.254000;211.268000;0 +20260226 063900;211.270000;211.273000;211.247000;211.251000;0 +20260226 064000;211.248000;211.249000;211.233000;211.247000;0 +20260226 064100;211.248000;211.260000;211.215000;211.215000;0 +20260226 064200;211.215000;211.223000;211.211000;211.215000;0 +20260226 064300;211.214000;211.223000;211.213000;211.219000;0 +20260226 064400;211.218000;211.237000;211.216000;211.217000;0 +20260226 064500;211.213000;211.229000;211.199000;211.229000;0 +20260226 064600;211.226000;211.228000;211.208000;211.223000;0 +20260226 064700;211.225000;211.260000;211.225000;211.241000;0 +20260226 064800;211.253000;211.264000;211.239000;211.243000;0 +20260226 064900;211.244000;211.258000;211.243000;211.244000;0 +20260226 065000;211.244000;211.262000;211.244000;211.251000;0 +20260226 065100;211.250000;211.259000;211.228000;211.232000;0 +20260226 065200;211.229000;211.230000;211.219000;211.227000;0 +20260226 065300;211.225000;211.227000;211.210000;211.219000;0 +20260226 065400;211.224000;211.233000;211.181000;211.195000;0 +20260226 065500;211.196000;211.196000;211.164000;211.164000;0 +20260226 065600;211.161000;211.175000;211.155000;211.169000;0 +20260226 065700;211.169000;211.188000;211.145000;211.146000;0 +20260226 065800;211.145000;211.166000;211.145000;211.154000;0 +20260226 065900;211.156000;211.160000;211.147000;211.152000;0 +20260226 070000;211.155000;211.166000;211.124000;211.147000;0 +20260226 070100;211.144000;211.174000;211.143000;211.169000;0 +20260226 070200;211.170000;211.184000;211.152000;211.174000;0 +20260226 070300;211.170000;211.186000;211.162000;211.163000;0 +20260226 070400;211.164000;211.179000;211.155000;211.155000;0 +20260226 070500;211.155000;211.179000;211.150000;211.150000;0 +20260226 070600;211.151000;211.166000;211.146000;211.162000;0 +20260226 070700;211.166000;211.196000;211.166000;211.185000;0 +20260226 070800;211.188000;211.208000;211.182000;211.201000;0 +20260226 070900;211.201000;211.213000;211.184000;211.212000;0 +20260226 071000;211.209000;211.222000;211.178000;211.179000;0 +20260226 071100;211.176000;211.189000;211.158000;211.183000;0 +20260226 071200;211.183000;211.183000;211.162000;211.164000;0 +20260226 071300;211.164000;211.224000;211.163000;211.224000;0 +20260226 071400;211.225000;211.229000;211.202000;211.229000;0 +20260226 071500;211.228000;211.272000;211.228000;211.271000;0 +20260226 071600;211.270000;211.272000;211.219000;211.221000;0 +20260226 071700;211.222000;211.228000;211.215000;211.215000;0 +20260226 071800;211.215000;211.234000;211.212000;211.216000;0 +20260226 071900;211.219000;211.238000;211.210000;211.230000;0 +20260226 072000;211.233000;211.237000;211.204000;211.215000;0 +20260226 072100;211.215000;211.221000;211.207000;211.210000;0 +20260226 072200;211.209000;211.214000;211.198000;211.212000;0 +20260226 072300;211.212000;211.245000;211.212000;211.244000;0 +20260226 072400;211.244000;211.245000;211.228000;211.228000;0 +20260226 072500;211.228000;211.229000;211.195000;211.220000;0 +20260226 072600;211.220000;211.225000;211.205000;211.224000;0 +20260226 072700;211.225000;211.225000;211.199000;211.203000;0 +20260226 072800;211.199000;211.205000;211.186000;211.190000;0 +20260226 072900;211.188000;211.211000;211.188000;211.203000;0 +20260226 073000;211.204000;211.229000;211.194000;211.227000;0 +20260226 073100;211.228000;211.238000;211.217000;211.222000;0 +20260226 073200;211.222000;211.227000;211.214000;211.216000;0 +20260226 073300;211.216000;211.216000;211.189000;211.197000;0 +20260226 073400;211.197000;211.205000;211.197000;211.201000;0 +20260226 073500;211.202000;211.221000;211.199000;211.218000;0 +20260226 073600;211.221000;211.226000;211.212000;211.217000;0 +20260226 073700;211.216000;211.232000;211.202000;211.209000;0 +20260226 073800;211.205000;211.244000;211.201000;211.243000;0 +20260226 073900;211.246000;211.269000;211.246000;211.268000;0 +20260226 074000;211.268000;211.281000;211.266000;211.272000;0 +20260226 074100;211.273000;211.282000;211.271000;211.272000;0 +20260226 074200;211.274000;211.295000;211.260000;211.290000;0 +20260226 074300;211.291000;211.298000;211.264000;211.267000;0 +20260226 074400;211.266000;211.280000;211.264000;211.276000;0 +20260226 074500;211.277000;211.331000;211.277000;211.327000;0 +20260226 074600;211.327000;211.384000;211.327000;211.372000;0 +20260226 074700;211.372000;211.403000;211.357000;211.361000;0 +20260226 074800;211.357000;211.394000;211.344000;211.373000;0 +20260226 074900;211.375000;211.389000;211.365000;211.367000;0 +20260226 075000;211.375000;211.418000;211.375000;211.413000;0 +20260226 075100;211.409000;211.445000;211.399000;211.442000;0 +20260226 075200;211.443000;211.449000;211.427000;211.430000;0 +20260226 075300;211.430000;211.444000;211.420000;211.421000;0 +20260226 075400;211.423000;211.435000;211.414000;211.434000;0 +20260226 075500;211.435000;211.436000;211.399000;211.421000;0 +20260226 075600;211.418000;211.499000;211.415000;211.494000;0 +20260226 075700;211.494000;211.497000;211.472000;211.495000;0 +20260226 075800;211.495000;211.499000;211.447000;211.452000;0 +20260226 075900;211.451000;211.458000;211.436000;211.454000;0 +20260226 080000;211.453000;211.453000;211.407000;211.407000;0 +20260226 080100;211.407000;211.448000;211.373000;211.436000;0 +20260226 080200;211.437000;211.463000;211.420000;211.462000;0 +20260226 080300;211.463000;211.475000;211.454000;211.455000;0 +20260226 080400;211.454000;211.463000;211.445000;211.447000;0 +20260226 080500;211.448000;211.470000;211.447000;211.447000;0 +20260226 080600;211.447000;211.454000;211.408000;211.417000;0 +20260226 080700;211.409000;211.452000;211.406000;211.452000;0 +20260226 080800;211.451000;211.468000;211.448000;211.457000;0 +20260226 080900;211.456000;211.472000;211.450000;211.464000;0 +20260226 081000;211.465000;211.511000;211.447000;211.511000;0 +20260226 081100;211.512000;211.560000;211.492000;211.560000;0 +20260226 081200;211.559000;211.560000;211.525000;211.531000;0 +20260226 081300;211.532000;211.549000;211.515000;211.522000;0 +20260226 081400;211.523000;211.525000;211.502000;211.508000;0 +20260226 081500;211.509000;211.546000;211.489000;211.504000;0 +20260226 081600;211.504000;211.519000;211.462000;211.475000;0 +20260226 081700;211.474000;211.484000;211.462000;211.467000;0 +20260226 081800;211.467000;211.471000;211.449000;211.468000;0 +20260226 081900;211.468000;211.508000;211.465000;211.488000;0 +20260226 082000;211.488000;211.503000;211.472000;211.476000;0 +20260226 082100;211.479000;211.497000;211.463000;211.463000;0 +20260226 082200;211.463000;211.468000;211.447000;211.449000;0 +20260226 082300;211.453000;211.461000;211.397000;211.404000;0 +20260226 082400;211.406000;211.424000;211.401000;211.415000;0 +20260226 082500;211.415000;211.446000;211.395000;211.438000;0 +20260226 082600;211.436000;211.440000;211.412000;211.427000;0 +20260226 082700;211.427000;211.432000;211.353000;211.397000;0 +20260226 082800;211.397000;211.398000;211.364000;211.376000;0 +20260226 082900;211.376000;211.396000;211.368000;211.379000;0 +20260226 083000;211.373000;211.414000;211.359000;211.411000;0 +20260226 083100;211.406000;211.431000;211.398000;211.405000;0 +20260226 083200;211.404000;211.423000;211.388000;211.397000;0 +20260226 083300;211.399000;211.404000;211.362000;211.373000;0 +20260226 083400;211.370000;211.399000;211.362000;211.396000;0 +20260226 083500;211.398000;211.399000;211.364000;211.364000;0 +20260226 083600;211.362000;211.389000;211.361000;211.387000;0 +20260226 083700;211.383000;211.396000;211.352000;211.371000;0 +20260226 083800;211.372000;211.385000;211.370000;211.372000;0 +20260226 083900;211.370000;211.401000;211.341000;211.400000;0 +20260226 084000;211.401000;211.401000;211.345000;211.376000;0 +20260226 084100;211.373000;211.377000;211.322000;211.323000;0 +20260226 084200;211.325000;211.348000;211.296000;211.305000;0 +20260226 084300;211.305000;211.315000;211.293000;211.294000;0 +20260226 084400;211.294000;211.321000;211.281000;211.321000;0 +20260226 084500;211.319000;211.346000;211.310000;211.339000;0 +20260226 084600;211.340000;211.391000;211.340000;211.383000;0 +20260226 084700;211.381000;211.391000;211.367000;211.376000;0 +20260226 084800;211.376000;211.387000;211.352000;211.357000;0 +20260226 084900;211.355000;211.383000;211.352000;211.380000;0 +20260226 085000;211.379000;211.379000;211.356000;211.372000;0 +20260226 085100;211.375000;211.382000;211.351000;211.351000;0 +20260226 085200;211.351000;211.381000;211.347000;211.380000;0 +20260226 085300;211.384000;211.390000;211.358000;211.361000;0 +20260226 085400;211.360000;211.396000;211.360000;211.395000;0 +20260226 085500;211.395000;211.400000;211.367000;211.375000;0 +20260226 085600;211.374000;211.376000;211.345000;211.358000;0 +20260226 085700;211.360000;211.388000;211.353000;211.365000;0 +20260226 085800;211.367000;211.400000;211.367000;211.399000;0 +20260226 085900;211.398000;211.401000;211.373000;211.386000;0 +20260226 090000;211.383000;211.393000;211.347000;211.362000;0 +20260226 090100;211.362000;211.386000;211.357000;211.363000;0 +20260226 090200;211.364000;211.397000;211.363000;211.392000;0 +20260226 090300;211.399000;211.411000;211.368000;211.375000;0 +20260226 090400;211.376000;211.427000;211.376000;211.421000;0 +20260226 090500;211.421000;211.443000;211.413000;211.443000;0 +20260226 090600;211.436000;211.437000;211.421000;211.428000;0 +20260226 090700;211.428000;211.449000;211.424000;211.432000;0 +20260226 090800;211.432000;211.454000;211.425000;211.428000;0 +20260226 090900;211.429000;211.447000;211.420000;211.438000;0 +20260226 091000;211.439000;211.448000;211.431000;211.443000;0 +20260226 091100;211.442000;211.481000;211.441000;211.481000;0 +20260226 091200;211.480000;211.494000;211.477000;211.487000;0 +20260226 091300;211.488000;211.511000;211.485000;211.508000;0 +20260226 091400;211.510000;211.510000;211.478000;211.500000;0 +20260226 091500;211.502000;211.511000;211.492000;211.509000;0 +20260226 091600;211.509000;211.511000;211.488000;211.488000;0 +20260226 091700;211.487000;211.520000;211.477000;211.518000;0 +20260226 091800;211.518000;211.541000;211.518000;211.524000;0 +20260226 091900;211.524000;211.531000;211.510000;211.514000;0 +20260226 092000;211.512000;211.531000;211.512000;211.523000;0 +20260226 092100;211.519000;211.535000;211.510000;211.519000;0 +20260226 092200;211.521000;211.551000;211.517000;211.517000;0 +20260226 092300;211.516000;211.524000;211.499000;211.502000;0 +20260226 092400;211.504000;211.519000;211.487000;211.519000;0 +20260226 092500;211.517000;211.518000;211.463000;211.463000;0 +20260226 092600;211.463000;211.465000;211.428000;211.436000;0 +20260226 092700;211.433000;211.467000;211.431000;211.447000;0 +20260226 092800;211.449000;211.465000;211.444000;211.465000;0 +20260226 092900;211.465000;211.466000;211.443000;211.453000;0 +20260226 093000;211.450000;211.452000;211.350000;211.378000;0 +20260226 093100;211.378000;211.449000;211.368000;211.446000;0 +20260226 093200;211.446000;211.465000;211.427000;211.429000;0 +20260226 093300;211.428000;211.457000;211.421000;211.435000;0 +20260226 093400;211.436000;211.451000;211.416000;211.448000;0 +20260226 093500;211.450000;211.486000;211.450000;211.480000;0 +20260226 093600;211.480000;211.493000;211.448000;211.458000;0 +20260226 093700;211.459000;211.485000;211.457000;211.473000;0 +20260226 093800;211.473000;211.519000;211.458000;211.486000;0 +20260226 093900;211.485000;211.502000;211.476000;211.493000;0 +20260226 094000;211.490000;211.490000;211.419000;211.447000;0 +20260226 094100;211.450000;211.452000;211.401000;211.433000;0 +20260226 094200;211.431000;211.443000;211.412000;211.423000;0 +20260226 094300;211.421000;211.422000;211.333000;211.333000;0 +20260226 094400;211.334000;211.360000;211.301000;211.308000;0 +20260226 094500;211.307000;211.319000;211.247000;211.254000;0 +20260226 094600;211.251000;211.276000;211.202000;211.234000;0 +20260226 094700;211.229000;211.248000;211.196000;211.236000;0 +20260226 094800;211.235000;211.235000;211.199000;211.204000;0 +20260226 094900;211.208000;211.248000;211.195000;211.230000;0 +20260226 095000;211.230000;211.259000;211.226000;211.241000;0 +20260226 095100;211.241000;211.265000;211.225000;211.256000;0 +20260226 095200;211.259000;211.259000;211.212000;211.216000;0 +20260226 095300;211.218000;211.223000;211.165000;211.172000;0 +20260226 095400;211.173000;211.176000;211.117000;211.169000;0 +20260226 095500;211.174000;211.237000;211.174000;211.217000;0 +20260226 095600;211.218000;211.234000;211.183000;211.212000;0 +20260226 095700;211.212000;211.255000;211.197000;211.248000;0 +20260226 095800;211.248000;211.251000;211.207000;211.237000;0 +20260226 095900;211.236000;211.264000;211.200000;211.207000;0 +20260226 100000;211.211000;211.235000;211.134000;211.136000;0 +20260226 100100;211.143000;211.154000;211.052000;211.078000;0 +20260226 100200;211.081000;211.145000;211.081000;211.142000;0 +20260226 100300;211.140000;211.213000;211.131000;211.205000;0 +20260226 100400;211.208000;211.257000;211.181000;211.249000;0 +20260226 100500;211.248000;211.279000;211.224000;211.267000;0 +20260226 100600;211.267000;211.311000;211.259000;211.298000;0 +20260226 100700;211.296000;211.328000;211.280000;211.323000;0 +20260226 100800;211.322000;211.337000;211.274000;211.296000;0 +20260226 100900;211.292000;211.314000;211.261000;211.284000;0 +20260226 101000;211.284000;211.352000;211.284000;211.339000;0 +20260226 101100;211.340000;211.365000;211.322000;211.322000;0 +20260226 101200;211.322000;211.326000;211.199000;211.212000;0 +20260226 101300;211.213000;211.233000;211.078000;211.124000;0 +20260226 101400;211.124000;211.152000;211.019000;211.019000;0 +20260226 101500;211.019000;211.026000;210.983000;210.998000;0 +20260226 101600;210.995000;211.008000;210.954000;210.963000;0 +20260226 101700;210.962000;210.985000;210.913000;210.926000;0 +20260226 101800;210.928000;210.954000;210.916000;210.951000;0 +20260226 101900;210.949000;210.984000;210.936000;210.943000;0 +20260226 102000;210.945000;210.977000;210.882000;210.905000;0 +20260226 102100;210.909000;210.912000;210.809000;210.810000;0 +20260226 102200;210.821000;210.847000;210.815000;210.841000;0 +20260226 102300;210.845000;210.849000;210.793000;210.795000;0 +20260226 102400;210.801000;210.808000;210.716000;210.730000;0 +20260226 102500;210.737000;210.747000;210.685000;210.714000;0 +20260226 102600;210.721000;210.869000;210.719000;210.821000;0 +20260226 102700;210.826000;210.865000;210.753000;210.753000;0 +20260226 102800;210.757000;210.767000;210.625000;210.631000;0 +20260226 102900;210.633000;210.788000;210.633000;210.777000;0 +20260226 103000;210.774000;210.782000;210.702000;210.717000;0 +20260226 103100;210.718000;210.763000;210.675000;210.755000;0 +20260226 103200;210.757000;210.817000;210.739000;210.742000;0 +20260226 103300;210.743000;210.795000;210.720000;210.787000;0 +20260226 103400;210.784000;210.787000;210.719000;210.737000;0 +20260226 103500;210.737000;210.808000;210.737000;210.797000;0 +20260226 103600;210.793000;210.811000;210.777000;210.810000;0 +20260226 103700;210.807000;210.827000;210.778000;210.814000;0 +20260226 103800;210.812000;210.909000;210.810000;210.908000;0 +20260226 103900;210.909000;210.932000;210.879000;210.928000;0 +20260226 104000;210.929000;210.978000;210.903000;210.918000;0 +20260226 104100;210.920000;210.931000;210.894000;210.918000;0 +20260226 104200;210.918000;210.935000;210.885000;210.907000;0 +20260226 104300;210.906000;211.010000;210.904000;210.991000;0 +20260226 104400;210.991000;210.991000;210.952000;210.961000;0 +20260226 104500;210.962000;211.023000;210.962000;210.996000;0 +20260226 104600;210.996000;211.007000;210.922000;210.931000;0 +20260226 104700;210.936000;210.941000;210.846000;210.849000;0 +20260226 104800;210.851000;210.886000;210.847000;210.863000;0 +20260226 104900;210.863000;210.894000;210.843000;210.873000;0 +20260226 105000;210.870000;210.880000;210.827000;210.848000;0 +20260226 105100;210.845000;210.860000;210.800000;210.834000;0 +20260226 105200;210.835000;210.843000;210.771000;210.803000;0 +20260226 105300;210.798000;210.850000;210.793000;210.825000;0 +20260226 105400;210.827000;210.850000;210.821000;210.830000;0 +20260226 105500;210.831000;210.899000;210.818000;210.887000;0 +20260226 105600;210.889000;210.908000;210.871000;210.881000;0 +20260226 105700;210.884000;210.895000;210.796000;210.838000;0 +20260226 105800;210.836000;210.860000;210.800000;210.803000;0 +20260226 105900;210.803000;210.874000;210.803000;210.872000;0 +20260226 110000;210.871000;210.897000;210.871000;210.897000;0 +20260226 110100;210.897000;210.904000;210.882000;210.899000;0 +20260226 110200;210.900000;210.905000;210.858000;210.859000;0 +20260226 110300;210.858000;210.917000;210.858000;210.867000;0 +20260226 110400;210.868000;210.910000;210.865000;210.910000;0 +20260226 110500;210.911000;210.922000;210.892000;210.906000;0 +20260226 110600;210.903000;210.908000;210.852000;210.895000;0 +20260226 110700;210.895000;210.913000;210.885000;210.906000;0 +20260226 110800;210.906000;210.906000;210.877000;210.885000;0 +20260226 110900;210.883000;210.916000;210.882000;210.888000;0 +20260226 111000;210.892000;210.896000;210.876000;210.890000;0 +20260226 111100;210.892000;210.908000;210.888000;210.905000;0 +20260226 111200;210.902000;210.942000;210.898000;210.941000;0 +20260226 111300;210.938000;210.951000;210.928000;210.950000;0 +20260226 111400;210.951000;210.975000;210.938000;210.972000;0 +20260226 111500;210.969000;211.020000;210.966000;211.014000;0 +20260226 111600;211.014000;211.014000;210.995000;211.009000;0 +20260226 111700;211.010000;211.016000;210.974000;210.989000;0 +20260226 111800;210.992000;211.043000;210.992000;211.011000;0 +20260226 111900;211.010000;211.039000;211.001000;211.035000;0 +20260226 112000;211.035000;211.040000;210.977000;210.983000;0 +20260226 112100;210.982000;211.010000;210.982000;211.003000;0 +20260226 112200;211.001000;211.038000;211.001000;211.029000;0 +20260226 112300;211.030000;211.039000;211.009000;211.021000;0 +20260226 112400;211.020000;211.046000;211.013000;211.024000;0 +20260226 112500;211.027000;211.080000;211.019000;211.078000;0 +20260226 112600;211.079000;211.088000;211.052000;211.078000;0 +20260226 112700;211.075000;211.079000;211.021000;211.033000;0 +20260226 112800;211.036000;211.045000;211.020000;211.037000;0 +20260226 112900;211.035000;211.044000;211.031000;211.037000;0 +20260226 113000;211.035000;211.056000;211.030000;211.043000;0 +20260226 113100;211.043000;211.076000;211.041000;211.075000;0 +20260226 113200;211.075000;211.085000;211.058000;211.063000;0 +20260226 113300;211.063000;211.067000;211.030000;211.030000;0 +20260226 113400;211.030000;211.038000;211.002000;211.025000;0 +20260226 113500;211.025000;211.036000;210.985000;210.985000;0 +20260226 113600;210.982000;210.997000;210.927000;210.928000;0 +20260226 113700;210.928000;210.928000;210.877000;210.908000;0 +20260226 113800;210.903000;210.920000;210.883000;210.918000;0 +20260226 113900;210.919000;210.936000;210.906000;210.930000;0 +20260226 114000;210.933000;210.934000;210.919000;210.929000;0 +20260226 114100;210.933000;210.954000;210.914000;210.946000;0 +20260226 114200;210.943000;210.959000;210.924000;210.957000;0 +20260226 114300;210.952000;210.952000;210.881000;210.885000;0 +20260226 114400;210.892000;210.897000;210.859000;210.864000;0 +20260226 114500;210.863000;210.864000;210.840000;210.859000;0 +20260226 114600;210.861000;210.862000;210.793000;210.797000;0 +20260226 114700;210.800000;210.825000;210.790000;210.796000;0 +20260226 114800;210.794000;210.824000;210.792000;210.821000;0 +20260226 114900;210.819000;210.829000;210.785000;210.825000;0 +20260226 115000;210.824000;210.877000;210.822000;210.822000;0 +20260226 115100;210.819000;210.853000;210.819000;210.840000;0 +20260226 115200;210.842000;210.859000;210.841000;210.846000;0 +20260226 115300;210.847000;210.850000;210.816000;210.819000;0 +20260226 115400;210.818000;210.842000;210.812000;210.836000;0 +20260226 115500;210.838000;210.844000;210.824000;210.828000;0 +20260226 115600;210.832000;210.843000;210.820000;210.827000;0 +20260226 115700;210.825000;210.832000;210.796000;210.803000;0 +20260226 115800;210.804000;210.817000;210.787000;210.788000;0 +20260226 115900;210.787000;210.815000;210.778000;210.811000;0 +20260226 120000;210.811000;210.834000;210.811000;210.830000;0 +20260226 120100;210.830000;210.834000;210.803000;210.813000;0 +20260226 120200;210.813000;210.833000;210.809000;210.817000;0 +20260226 120300;210.815000;210.867000;210.815000;210.862000;0 +20260226 120400;210.862000;210.897000;210.853000;210.887000;0 +20260226 120500;210.887000;210.888000;210.843000;210.855000;0 +20260226 120600;210.856000;210.867000;210.823000;210.825000;0 +20260226 120700;210.826000;210.843000;210.802000;210.819000;0 +20260226 120800;210.818000;210.845000;210.812000;210.842000;0 +20260226 120900;210.841000;210.861000;210.836000;210.838000;0 +20260226 121000;210.839000;210.843000;210.827000;210.830000;0 +20260226 121100;210.824000;210.832000;210.815000;210.817000;0 +20260226 121200;210.817000;210.818000;210.790000;210.793000;0 +20260226 121300;210.795000;210.820000;210.791000;210.812000;0 +20260226 121400;210.812000;210.824000;210.790000;210.793000;0 +20260226 121500;210.791000;210.804000;210.774000;210.775000;0 +20260226 121600;210.776000;210.786000;210.762000;210.774000;0 +20260226 121700;210.772000;210.776000;210.744000;210.744000;0 +20260226 121800;210.746000;210.746000;210.722000;210.730000;0 +20260226 121900;210.728000;210.730000;210.645000;210.658000;0 +20260226 122000;210.655000;210.672000;210.624000;210.657000;0 +20260226 122100;210.660000;210.664000;210.641000;210.641000;0 +20260226 122200;210.637000;210.656000;210.621000;210.625000;0 +20260226 122300;210.623000;210.642000;210.619000;210.621000;0 +20260226 122400;210.620000;210.648000;210.620000;210.645000;0 +20260226 122500;210.647000;210.650000;210.599000;210.606000;0 +20260226 122600;210.607000;210.671000;210.606000;210.650000;0 +20260226 122700;210.650000;210.660000;210.634000;210.654000;0 +20260226 122800;210.652000;210.669000;210.626000;210.655000;0 +20260226 122900;210.657000;210.662000;210.637000;210.641000;0 +20260226 123000;210.639000;210.673000;210.639000;210.654000;0 +20260226 123100;210.652000;210.664000;210.606000;210.614000;0 +20260226 123200;210.614000;210.661000;210.600000;210.609000;0 +20260226 123300;210.609000;210.656000;210.609000;210.647000;0 +20260226 123400;210.641000;210.644000;210.580000;210.580000;0 +20260226 123500;210.580000;210.633000;210.568000;210.616000;0 +20260226 123600;210.615000;210.640000;210.605000;210.638000;0 +20260226 123700;210.637000;210.639000;210.605000;210.612000;0 +20260226 123800;210.617000;210.622000;210.581000;210.581000;0 +20260226 123900;210.581000;210.613000;210.581000;210.591000;0 +20260226 124000;210.589000;210.610000;210.589000;210.601000;0 +20260226 124100;210.602000;210.608000;210.585000;210.599000;0 +20260226 124200;210.599000;210.605000;210.570000;210.570000;0 +20260226 124300;210.574000;210.574000;210.546000;210.548000;0 +20260226 124400;210.548000;210.554000;210.531000;210.531000;0 +20260226 124500;210.531000;210.532000;210.480000;210.482000;0 +20260226 124600;210.485000;210.497000;210.443000;210.444000;0 +20260226 124700;210.443000;210.467000;210.409000;210.415000;0 +20260226 124800;210.416000;210.430000;210.400000;210.416000;0 +20260226 124900;210.415000;210.425000;210.320000;210.372000;0 +20260226 125000;210.373000;210.417000;210.299000;210.333000;0 +20260226 125100;210.333000;210.406000;210.331000;210.355000;0 +20260226 125200;210.354000;210.386000;210.332000;210.337000;0 +20260226 125300;210.338000;210.403000;210.336000;210.373000;0 +20260226 125400;210.370000;210.400000;210.370000;210.378000;0 +20260226 125500;210.370000;210.383000;210.355000;210.368000;0 +20260226 125600;210.369000;210.384000;210.369000;210.380000;0 +20260226 125700;210.383000;210.393000;210.360000;210.374000;0 +20260226 125800;210.373000;210.383000;210.351000;210.361000;0 +20260226 125900;210.360000;210.369000;210.334000;210.355000;0 +20260226 130000;210.354000;210.375000;210.259000;210.269000;0 +20260226 130100;210.268000;210.307000;210.262000;210.305000;0 +20260226 130200;210.309000;210.343000;210.299000;210.316000;0 +20260226 130300;210.315000;210.324000;210.269000;210.269000;0 +20260226 130400;210.270000;210.319000;210.270000;210.300000;0 +20260226 130500;210.299000;210.332000;210.299000;210.324000;0 +20260226 130600;210.322000;210.336000;210.298000;210.310000;0 +20260226 130700;210.314000;210.337000;210.295000;210.305000;0 +20260226 130800;210.305000;210.324000;210.285000;210.292000;0 +20260226 130900;210.292000;210.316000;210.292000;210.309000;0 +20260226 131000;210.307000;210.370000;210.304000;210.352000;0 +20260226 131100;210.351000;210.383000;210.351000;210.368000;0 +20260226 131200;210.369000;210.391000;210.367000;210.373000;0 +20260226 131300;210.373000;210.382000;210.325000;210.329000;0 +20260226 131400;210.329000;210.360000;210.312000;210.317000;0 +20260226 131500;210.319000;210.338000;210.315000;210.323000;0 +20260226 131600;210.322000;210.336000;210.302000;210.308000;0 +20260226 131700;210.311000;210.362000;210.309000;210.361000;0 +20260226 131800;210.357000;210.357000;210.331000;210.352000;0 +20260226 131900;210.344000;210.365000;210.340000;210.348000;0 +20260226 132000;210.345000;210.347000;210.340000;210.347000;0 +20260226 132100;210.346000;210.362000;210.328000;210.334000;0 +20260226 132200;210.334000;210.380000;210.333000;210.376000;0 +20260226 132300;210.379000;210.400000;210.363000;210.392000;0 +20260226 132400;210.393000;210.406000;210.376000;210.393000;0 +20260226 132500;210.392000;210.397000;210.375000;210.379000;0 +20260226 132600;210.380000;210.397000;210.375000;210.395000;0 +20260226 132700;210.392000;210.428000;210.389000;210.428000;0 +20260226 132800;210.429000;210.456000;210.429000;210.449000;0 +20260226 132900;210.449000;210.456000;210.411000;210.415000;0 +20260226 133000;210.416000;210.417000;210.386000;210.395000;0 +20260226 133100;210.398000;210.413000;210.379000;210.379000;0 +20260226 133200;210.382000;210.392000;210.352000;210.385000;0 +20260226 133300;210.386000;210.434000;210.383000;210.431000;0 +20260226 133400;210.431000;210.463000;210.422000;210.455000;0 +20260226 133500;210.456000;210.460000;210.421000;210.428000;0 +20260226 133600;210.428000;210.466000;210.418000;210.464000;0 +20260226 133700;210.464000;210.470000;210.436000;210.468000;0 +20260226 133800;210.469000;210.472000;210.436000;210.445000;0 +20260226 133900;210.445000;210.490000;210.445000;210.490000;0 +20260226 134000;210.484000;210.534000;210.473000;210.511000;0 +20260226 134100;210.508000;210.516000;210.482000;210.511000;0 +20260226 134200;210.511000;210.520000;210.483000;210.490000;0 +20260226 134300;210.490000;210.502000;210.477000;210.481000;0 +20260226 134400;210.479000;210.480000;210.420000;210.424000;0 +20260226 134500;210.424000;210.461000;210.416000;210.447000;0 +20260226 134600;210.445000;210.458000;210.432000;210.453000;0 +20260226 134700;210.458000;210.467000;210.421000;210.432000;0 +20260226 134800;210.434000;210.502000;210.433000;210.499000;0 +20260226 134900;210.497000;210.537000;210.491000;210.531000;0 +20260226 135000;210.531000;210.552000;210.508000;210.523000;0 +20260226 135100;210.524000;210.537000;210.508000;210.532000;0 +20260226 135200;210.531000;210.555000;210.528000;210.552000;0 +20260226 135300;210.548000;210.552000;210.537000;210.542000;0 +20260226 135400;210.541000;210.544000;210.534000;210.535000;0 +20260226 135500;210.536000;210.555000;210.534000;210.535000;0 +20260226 135600;210.535000;210.548000;210.524000;210.541000;0 +20260226 135700;210.540000;210.556000;210.533000;210.555000;0 +20260226 135800;210.554000;210.572000;210.537000;210.567000;0 +20260226 135900;210.568000;210.570000;210.553000;210.568000;0 +20260226 140000;210.572000;210.574000;210.536000;210.553000;0 +20260226 140100;210.553000;210.581000;210.545000;210.576000;0 +20260226 140200;210.579000;210.590000;210.556000;210.556000;0 +20260226 140300;210.558000;210.590000;210.556000;210.580000;0 +20260226 140400;210.581000;210.587000;210.561000;210.572000;0 +20260226 140500;210.570000;210.608000;210.567000;210.603000;0 +20260226 140600;210.603000;210.608000;210.591000;210.606000;0 +20260226 140700;210.605000;210.605000;210.570000;210.583000;0 +20260226 140800;210.584000;210.600000;210.582000;210.596000;0 +20260226 140900;210.595000;210.613000;210.590000;210.612000;0 +20260226 141000;210.614000;210.633000;210.614000;210.633000;0 +20260226 141100;210.634000;210.645000;210.622000;210.645000;0 +20260226 141200;210.645000;210.650000;210.635000;210.648000;0 +20260226 141300;210.650000;210.650000;210.617000;210.627000;0 +20260226 141400;210.629000;210.647000;210.622000;210.638000;0 +20260226 141500;210.641000;210.644000;210.617000;210.631000;0 +20260226 141600;210.629000;210.629000;210.594000;210.609000;0 +20260226 141700;210.607000;210.609000;210.594000;210.598000;0 +20260226 141800;210.599000;210.612000;210.578000;210.578000;0 +20260226 141900;210.576000;210.636000;210.576000;210.631000;0 +20260226 142000;210.627000;210.628000;210.607000;210.614000;0 +20260226 142100;210.613000;210.636000;210.607000;210.621000;0 +20260226 142200;210.616000;210.626000;210.610000;210.623000;0 +20260226 142300;210.622000;210.640000;210.622000;210.633000;0 +20260226 142400;210.636000;210.640000;210.630000;210.637000;0 +20260226 142500;210.638000;210.643000;210.630000;210.632000;0 +20260226 142600;210.630000;210.635000;210.609000;210.635000;0 +20260226 142700;210.638000;210.651000;210.632000;210.650000;0 +20260226 142800;210.649000;210.655000;210.643000;210.648000;0 +20260226 142900;210.650000;210.650000;210.620000;210.622000;0 +20260226 143000;210.622000;210.636000;210.615000;210.632000;0 +20260226 143100;210.627000;210.641000;210.625000;210.627000;0 +20260226 143200;210.628000;210.680000;210.628000;210.674000;0 +20260226 143300;210.673000;210.681000;210.671000;210.681000;0 +20260226 143400;210.682000;210.686000;210.666000;210.666000;0 +20260226 143500;210.668000;210.681000;210.661000;210.677000;0 +20260226 143600;210.679000;210.679000;210.655000;210.663000;0 +20260226 143700;210.664000;210.664000;210.647000;210.649000;0 +20260226 143800;210.649000;210.649000;210.622000;210.632000;0 +20260226 143900;210.632000;210.641000;210.622000;210.637000;0 +20260226 144000;210.634000;210.635000;210.619000;210.631000;0 +20260226 144100;210.626000;210.626000;210.615000;210.618000;0 +20260226 144200;210.620000;210.630000;210.615000;210.617000;0 +20260226 144300;210.620000;210.633000;210.606000;210.632000;0 +20260226 144400;210.634000;210.652000;210.634000;210.636000;0 +20260226 144500;210.644000;210.666000;210.642000;210.666000;0 +20260226 144600;210.663000;210.664000;210.646000;210.660000;0 +20260226 144700;210.659000;210.676000;210.650000;210.674000;0 +20260226 144800;210.677000;210.681000;210.657000;210.663000;0 +20260226 144900;210.664000;210.668000;210.660000;210.665000;0 +20260226 145000;210.668000;210.668000;210.627000;210.632000;0 +20260226 145100;210.640000;210.648000;210.633000;210.635000;0 +20260226 145200;210.636000;210.644000;210.629000;210.633000;0 +20260226 145300;210.632000;210.640000;210.622000;210.632000;0 +20260226 145400;210.632000;210.646000;210.621000;210.624000;0 +20260226 145500;210.624000;210.630000;210.571000;210.578000;0 +20260226 145600;210.579000;210.593000;210.567000;210.583000;0 +20260226 145700;210.587000;210.621000;210.585000;210.605000;0 +20260226 145800;210.605000;210.610000;210.571000;210.586000;0 +20260226 145900;210.587000;210.596000;210.571000;210.575000;0 +20260226 150000;210.574000;210.574000;210.545000;210.567000;0 +20260226 150100;210.564000;210.592000;210.560000;210.591000;0 +20260226 150200;210.591000;210.596000;210.590000;210.594000;0 +20260226 150300;210.595000;210.608000;210.590000;210.598000;0 +20260226 150400;210.595000;210.601000;210.577000;210.586000;0 +20260226 150500;210.587000;210.597000;210.582000;210.582000;0 +20260226 150600;210.583000;210.587000;210.570000;210.573000;0 +20260226 150700;210.575000;210.575000;210.554000;210.554000;0 +20260226 150800;210.558000;210.573000;210.558000;210.562000;0 +20260226 150900;210.558000;210.561000;210.545000;210.553000;0 +20260226 151000;210.554000;210.559000;210.546000;210.552000;0 +20260226 151100;210.553000;210.557000;210.548000;210.555000;0 +20260226 151200;210.556000;210.566000;210.543000;210.562000;0 +20260226 151300;210.562000;210.562000;210.555000;210.557000;0 +20260226 151400;210.555000;210.556000;210.538000;210.542000;0 +20260226 151500;210.541000;210.554000;210.531000;210.546000;0 +20260226 151600;210.548000;210.552000;210.544000;210.551000;0 +20260226 151700;210.551000;210.556000;210.545000;210.550000;0 +20260226 151800;210.547000;210.573000;210.543000;210.568000;0 +20260226 151900;210.572000;210.572000;210.559000;210.564000;0 +20260226 152000;210.564000;210.578000;210.563000;210.563000;0 +20260226 152100;210.562000;210.562000;210.544000;210.544000;0 +20260226 152200;210.544000;210.553000;210.543000;210.543000;0 +20260226 152300;210.543000;210.549000;210.541000;210.546000;0 +20260226 152400;210.541000;210.549000;210.539000;210.541000;0 +20260226 152500;210.540000;210.540000;210.528000;210.528000;0 +20260226 152600;210.528000;210.537000;210.528000;210.536000;0 +20260226 152700;210.535000;210.550000;210.535000;210.547000;0 +20260226 152800;210.545000;210.551000;210.536000;210.542000;0 +20260226 152900;210.536000;210.547000;210.536000;210.542000;0 +20260226 153000;210.540000;210.559000;210.538000;210.547000;0 +20260226 153100;210.545000;210.565000;210.545000;210.562000;0 +20260226 153200;210.562000;210.573000;210.556000;210.560000;0 +20260226 153300;210.560000;210.566000;210.559000;210.561000;0 +20260226 153400;210.574000;210.583000;210.562000;210.583000;0 +20260226 153500;210.586000;210.595000;210.582000;210.586000;0 +20260226 153600;210.588000;210.588000;210.576000;210.583000;0 +20260226 153700;210.580000;210.580000;210.555000;210.557000;0 +20260226 153800;210.559000;210.584000;210.559000;210.581000;0 +20260226 153900;210.580000;210.588000;210.569000;210.569000;0 +20260226 154000;210.569000;210.579000;210.559000;210.570000;0 +20260226 154100;210.570000;210.570000;210.551000;210.552000;0 +20260226 154200;210.551000;210.563000;210.551000;210.559000;0 +20260226 154300;210.561000;210.580000;210.555000;210.574000;0 +20260226 154400;210.575000;210.575000;210.563000;210.565000;0 +20260226 154500;210.566000;210.566000;210.548000;210.550000;0 +20260226 154600;210.550000;210.565000;210.549000;210.562000;0 +20260226 154700;210.564000;210.592000;210.564000;210.581000;0 +20260226 154800;210.579000;210.582000;210.556000;210.556000;0 +20260226 154900;210.557000;210.574000;210.552000;210.568000;0 +20260226 155000;210.566000;210.575000;210.549000;210.561000;0 +20260226 155100;210.563000;210.565000;210.552000;210.555000;0 +20260226 155200;210.554000;210.560000;210.542000;210.550000;0 +20260226 155300;210.548000;210.559000;210.547000;210.549000;0 +20260226 155400;210.550000;210.550000;210.538000;210.549000;0 +20260226 155500;210.550000;210.558000;210.539000;210.545000;0 +20260226 155600;210.543000;210.579000;210.535000;210.559000;0 +20260226 155700;210.559000;210.586000;210.556000;210.582000;0 +20260226 155800;210.583000;210.606000;210.582000;210.587000;0 +20260226 155900;210.584000;210.638000;210.579000;210.637000;0 +20260226 160000;210.639000;210.659000;210.630000;210.638000;0 +20260226 160100;210.633000;210.633000;210.620000;210.629000;0 +20260226 160200;210.631000;210.641000;210.625000;210.634000;0 +20260226 160300;210.632000;210.634000;210.618000;210.627000;0 +20260226 160400;210.626000;210.628000;210.622000;210.628000;0 +20260226 160500;210.629000;210.634000;210.603000;210.631000;0 +20260226 160600;210.632000;210.646000;210.627000;210.643000;0 +20260226 160700;210.641000;210.663000;210.625000;210.633000;0 +20260226 160800;210.636000;210.636000;210.629000;210.635000;0 +20260226 160900;210.633000;210.636000;210.627000;210.633000;0 +20260226 161000;210.634000;210.642000;210.633000;210.635000;0 +20260226 161100;210.632000;210.632000;210.620000;210.620000;0 +20260226 161200;210.623000;210.630000;210.621000;210.630000;0 +20260226 161300;210.626000;210.626000;210.619000;210.625000;0 +20260226 161400;210.629000;210.631000;210.624000;210.629000;0 +20260226 161500;210.628000;210.632000;210.601000;210.606000;0 +20260226 161600;210.602000;210.602000;210.578000;210.582000;0 +20260226 161700;210.577000;210.581000;210.577000;210.580000;0 +20260226 161800;210.578000;210.586000;210.571000;210.586000;0 +20260226 161900;210.582000;210.582000;210.564000;210.567000;0 +20260226 162000;210.569000;210.574000;210.564000;210.571000;0 +20260226 162100;210.573000;210.577000;210.568000;210.568000;0 +20260226 162200;210.568000;210.579000;210.565000;210.579000;0 +20260226 162300;210.579000;210.579000;210.559000;210.559000;0 +20260226 162400;210.561000;210.561000;210.558000;210.560000;0 +20260226 162500;210.563000;210.563000;210.550000;210.551000;0 +20260226 162600;210.550000;210.553000;210.526000;210.531000;0 +20260226 162700;210.535000;210.538000;210.529000;210.533000;0 +20260226 162800;210.533000;210.537000;210.530000;210.535000;0 +20260226 162900;210.531000;210.540000;210.528000;210.540000;0 +20260226 163000;210.544000;210.546000;210.540000;210.544000;0 +20260226 163100;210.542000;210.547000;210.524000;210.526000;0 +20260226 163200;210.522000;210.522000;210.508000;210.508000;0 +20260226 163300;210.506000;210.509000;210.505000;210.508000;0 +20260226 163400;210.506000;210.506000;210.496000;210.500000;0 +20260226 163500;210.501000;210.501000;210.479000;210.480000;0 +20260226 163600;210.481000;210.486000;210.477000;210.478000;0 +20260226 163700;210.481000;210.486000;210.472000;210.472000;0 +20260226 163800;210.473000;210.473000;210.447000;210.448000;0 +20260226 163900;210.446000;210.448000;210.437000;210.437000;0 +20260226 164000;210.436000;210.437000;210.429000;210.429000;0 +20260226 164100;210.429000;210.433000;210.429000;210.430000;0 +20260226 164200;210.433000;210.433000;210.429000;210.431000;0 +20260226 164300;210.426000;210.427000;210.400000;210.400000;0 +20260226 164400;210.403000;210.435000;210.403000;210.435000;0 +20260226 164500;210.435000;210.435000;210.426000;210.432000;0 +20260226 164600;210.428000;210.452000;210.405000;210.452000;0 +20260226 164700;210.453000;210.468000;210.452000;210.467000;0 +20260226 164800;210.467000;210.478000;210.467000;210.473000;0 +20260226 164900;210.474000;210.484000;210.458000;210.481000;0 +20260226 165000;210.482000;210.482000;210.467000;210.480000;0 +20260226 165100;210.480000;210.489000;210.469000;210.481000;0 +20260226 165200;210.482000;210.484000;210.479000;210.481000;0 +20260226 165300;210.482000;210.490000;210.479000;210.490000;0 +20260226 165400;210.490000;210.493000;210.487000;210.487000;0 +20260226 165500;210.486000;210.487000;210.474000;210.483000;0 +20260226 165600;210.481000;210.484000;210.469000;210.469000;0 +20260226 165700;210.467000;210.481000;210.457000;210.475000;0 +20260226 165800;210.474000;210.517000;210.460000;210.499000;0 +20260226 165900;210.499000;210.502000;210.434000;210.440000;0 +20260226 170000;210.440000;210.440000;210.440000;210.440000;0 +20260226 170400;210.368000;210.390000;210.368000;210.390000;0 +20260226 170500;210.444000;210.444000;210.444000;210.444000;0 +20260226 170600;210.407000;210.407000;210.378000;210.386000;0 +20260226 170700;210.432000;210.432000;210.432000;210.432000;0 +20260226 170800;210.395000;210.403000;210.395000;210.402000;0 +20260226 170900;210.433000;210.433000;210.433000;210.433000;0 +20260226 171000;210.406000;210.434000;210.406000;210.433000;0 +20260226 171100;210.433000;210.433000;210.413000;210.413000;0 +20260226 171200;210.409000;210.409000;210.406000;210.406000;0 +20260226 171300;210.404000;210.404000;210.404000;210.404000;0 +20260226 171400;210.404000;210.404000;210.342000;210.372000;0 +20260226 171500;210.372000;210.421000;210.372000;210.420000;0 +20260226 171600;210.422000;210.422000;210.330000;210.347000;0 +20260226 171700;210.347000;210.347000;210.340000;210.340000;0 +20260226 171800;210.342000;210.376000;210.340000;210.375000;0 +20260226 171900;210.376000;210.379000;210.342000;210.370000;0 +20260226 172000;210.350000;210.382000;210.329000;210.371000;0 +20260226 172100;210.373000;210.373000;210.344000;210.344000;0 +20260226 172200;210.344000;210.348000;210.344000;210.348000;0 +20260226 172300;210.350000;210.350000;210.348000;210.348000;0 +20260226 172400;210.348000;210.367000;210.337000;210.367000;0 +20260226 172500;210.369000;210.369000;210.347000;210.350000;0 +20260226 172600;210.350000;210.370000;210.346000;210.367000;0 +20260226 172700;210.353000;210.368000;210.352000;210.357000;0 +20260226 172800;210.369000;210.380000;210.352000;210.352000;0 +20260226 172900;210.353000;210.353000;210.340000;210.347000;0 +20260226 173000;210.348000;210.391000;210.339000;210.388000;0 +20260226 173100;210.388000;210.398000;210.372000;210.396000;0 +20260226 173200;210.397000;210.398000;210.390000;210.391000;0 +20260226 173300;210.391000;210.391000;210.311000;210.340000;0 +20260226 173400;210.339000;210.353000;210.321000;210.351000;0 +20260226 173500;210.349000;210.362000;210.322000;210.358000;0 +20260226 173600;210.361000;210.368000;210.335000;210.348000;0 +20260226 173700;210.347000;210.354000;210.302000;210.335000;0 +20260226 173800;210.335000;210.399000;210.322000;210.378000;0 +20260226 173900;210.358000;210.409000;210.336000;210.404000;0 +20260226 174000;210.404000;210.409000;210.345000;210.380000;0 +20260226 174100;210.378000;210.380000;210.378000;210.380000;0 +20260226 174200;210.380000;210.389000;210.340000;210.372000;0 +20260226 174300;210.372000;210.384000;210.363000;210.380000;0 +20260226 174400;210.381000;210.388000;210.360000;210.382000;0 +20260226 174500;210.383000;210.390000;210.371000;210.385000;0 +20260226 174600;210.384000;210.391000;210.367000;210.379000;0 +20260226 174700;210.383000;210.388000;210.371000;210.371000;0 +20260226 174800;210.370000;210.382000;210.351000;210.382000;0 +20260226 174900;210.382000;210.412000;210.366000;210.384000;0 +20260226 175000;210.383000;210.391000;210.382000;210.387000;0 +20260226 175100;210.386000;210.390000;210.383000;210.384000;0 +20260226 175200;210.383000;210.401000;210.381000;210.397000;0 +20260226 175300;210.397000;210.406000;210.392000;210.402000;0 +20260226 175400;210.403000;210.409000;210.390000;210.409000;0 +20260226 175500;210.410000;210.416000;210.399000;210.406000;0 +20260226 175600;210.405000;210.412000;210.402000;210.411000;0 +20260226 175700;210.412000;210.412000;210.402000;210.406000;0 +20260226 175800;210.401000;210.411000;210.399000;210.404000;0 +20260226 175900;210.403000;210.413000;210.403000;210.410000;0 +20260226 180000;210.388000;210.416000;210.376000;210.398000;0 +20260226 180100;210.397000;210.422000;210.376000;210.398000;0 +20260226 180200;210.393000;210.402000;210.344000;210.344000;0 +20260226 180300;210.341000;210.341000;210.291000;210.294000;0 +20260226 180400;210.290000;210.296000;210.285000;210.289000;0 +20260226 180500;210.294000;210.298000;210.237000;210.291000;0 +20260226 180600;210.290000;210.293000;210.272000;210.282000;0 +20260226 180700;210.287000;210.298000;210.281000;210.294000;0 +20260226 180800;210.287000;210.290000;210.263000;210.278000;0 +20260226 180900;210.279000;210.279000;210.245000;210.249000;0 +20260226 181000;210.249000;210.280000;210.244000;210.263000;0 +20260226 181100;210.263000;210.282000;210.253000;210.282000;0 +20260226 181200;210.282000;210.294000;210.268000;210.287000;0 +20260226 181300;210.288000;210.292000;210.272000;210.273000;0 +20260226 181400;210.273000;210.345000;210.260000;210.334000;0 +20260226 181500;210.333000;210.350000;210.331000;210.335000;0 +20260226 181600;210.335000;210.358000;210.335000;210.355000;0 +20260226 181700;210.356000;210.367000;210.353000;210.356000;0 +20260226 181800;210.355000;210.364000;210.337000;210.358000;0 +20260226 181900;210.357000;210.359000;210.353000;210.357000;0 +20260226 182000;210.358000;210.364000;210.345000;210.350000;0 +20260226 182100;210.351000;210.369000;210.342000;210.363000;0 +20260226 182200;210.362000;210.363000;210.356000;210.356000;0 +20260226 182300;210.355000;210.380000;210.352000;210.375000;0 +20260226 182400;210.378000;210.403000;210.364000;210.401000;0 +20260226 182500;210.401000;210.402000;210.380000;210.381000;0 +20260226 182600;210.382000;210.399000;210.376000;210.392000;0 +20260226 182700;210.392000;210.392000;210.387000;210.388000;0 +20260226 182800;210.387000;210.392000;210.376000;210.379000;0 +20260226 182900;210.379000;210.383000;210.375000;210.378000;0 +20260226 183000;210.378000;210.388000;210.266000;210.300000;0 +20260226 183100;210.308000;210.338000;210.268000;210.268000;0 +20260226 183200;210.268000;210.338000;210.268000;210.338000;0 +20260226 183300;210.337000;210.346000;210.309000;210.328000;0 +20260226 183400;210.328000;210.335000;210.328000;210.335000;0 +20260226 183500;210.336000;210.345000;210.331000;210.342000;0 +20260226 183600;210.341000;210.347000;210.283000;210.292000;0 +20260226 183700;210.291000;210.309000;210.267000;210.289000;0 +20260226 183800;210.290000;210.303000;210.264000;210.276000;0 +20260226 183900;210.279000;210.281000;210.233000;210.235000;0 +20260226 184000;210.238000;210.267000;210.235000;210.264000;0 +20260226 184100;210.267000;210.269000;210.250000;210.255000;0 +20260226 184200;210.255000;210.265000;210.253000;210.265000;0 +20260226 184300;210.265000;210.272000;210.250000;210.268000;0 +20260226 184400;210.264000;210.265000;210.238000;210.245000;0 +20260226 184500;210.245000;210.280000;210.238000;210.280000;0 +20260226 184600;210.278000;210.348000;210.278000;210.295000;0 +20260226 184700;210.296000;210.318000;210.269000;210.271000;0 +20260226 184800;210.265000;210.265000;210.237000;210.259000;0 +20260226 184900;210.257000;210.258000;210.233000;210.233000;0 +20260226 185000;210.235000;210.259000;210.226000;210.255000;0 +20260226 185100;210.255000;210.282000;210.250000;210.282000;0 +20260226 185200;210.282000;210.298000;210.265000;210.281000;0 +20260226 185300;210.280000;210.282000;210.226000;210.232000;0 +20260226 185400;210.232000;210.265000;210.229000;210.265000;0 +20260226 185500;210.263000;210.263000;210.245000;210.248000;0 +20260226 185600;210.248000;210.252000;210.218000;210.218000;0 +20260226 185700;210.218000;210.253000;210.214000;210.253000;0 +20260226 185800;210.253000;210.282000;210.245000;210.281000;0 +20260226 185900;210.282000;210.287000;210.256000;210.264000;0 +20260226 190000;210.265000;210.326000;210.262000;210.292000;0 +20260226 190100;210.291000;210.349000;210.290000;210.349000;0 +20260226 190200;210.350000;210.350000;210.283000;210.285000;0 +20260226 190300;210.286000;210.321000;210.280000;210.321000;0 +20260226 190400;210.320000;210.320000;210.265000;210.294000;0 +20260226 190500;210.295000;210.334000;210.287000;210.329000;0 +20260226 190600;210.330000;210.357000;210.327000;210.357000;0 +20260226 190700;210.358000;210.367000;210.344000;210.344000;0 +20260226 190800;210.346000;210.373000;210.342000;210.354000;0 +20260226 190900;210.357000;210.366000;210.341000;210.366000;0 +20260226 191000;210.366000;210.376000;210.329000;210.332000;0 +20260226 191100;210.335000;210.347000;210.323000;210.346000;0 +20260226 191200;210.344000;210.356000;210.331000;210.341000;0 +20260226 191300;210.339000;210.355000;210.296000;210.298000;0 +20260226 191400;210.293000;210.293000;210.268000;210.278000;0 +20260226 191500;210.278000;210.292000;210.254000;210.281000;0 +20260226 191600;210.281000;210.281000;210.253000;210.264000;0 +20260226 191700;210.263000;210.265000;210.216000;210.224000;0 +20260226 191800;210.223000;210.244000;210.209000;210.231000;0 +20260226 191900;210.232000;210.245000;210.229000;210.242000;0 +20260226 192000;210.242000;210.264000;210.223000;210.225000;0 +20260226 192100;210.224000;210.238000;210.198000;210.203000;0 +20260226 192200;210.204000;210.209000;210.170000;210.170000;0 +20260226 192300;210.170000;210.204000;210.168000;210.198000;0 +20260226 192400;210.198000;210.201000;210.178000;210.192000;0 +20260226 192500;210.193000;210.193000;210.152000;210.155000;0 +20260226 192600;210.155000;210.159000;210.147000;210.151000;0 +20260226 192700;210.152000;210.167000;210.151000;210.162000;0 +20260226 192800;210.166000;210.179000;210.162000;210.176000;0 +20260226 192900;210.177000;210.200000;210.177000;210.191000;0 +20260226 193000;210.191000;210.192000;210.127000;210.127000;0 +20260226 193100;210.128000;210.130000;210.075000;210.086000;0 +20260226 193200;210.088000;210.123000;210.076000;210.103000;0 +20260226 193300;210.102000;210.109000;210.043000;210.084000;0 +20260226 193400;210.083000;210.086000;210.049000;210.080000;0 +20260226 193500;210.080000;210.080000;210.044000;210.055000;0 +20260226 193600;210.056000;210.099000;210.054000;210.091000;0 +20260226 193700;210.087000;210.104000;210.070000;210.096000;0 +20260226 193800;210.096000;210.121000;210.085000;210.114000;0 +20260226 193900;210.119000;210.119000;210.066000;210.068000;0 +20260226 194000;210.068000;210.082000;210.030000;210.036000;0 +20260226 194100;210.036000;210.038000;209.977000;209.988000;0 +20260226 194200;209.989000;210.049000;209.983000;210.026000;0 +20260226 194300;210.026000;210.046000;210.022000;210.039000;0 +20260226 194400;210.035000;210.061000;210.030000;210.035000;0 +20260226 194500;210.031000;210.083000;210.031000;210.072000;0 +20260226 194600;210.073000;210.076000;210.023000;210.035000;0 +20260226 194700;210.034000;210.110000;210.034000;210.105000;0 +20260226 194800;210.108000;210.148000;210.075000;210.087000;0 +20260226 194900;210.086000;210.090000;210.054000;210.054000;0 +20260226 195000;210.057000;210.123000;210.057000;210.116000;0 +20260226 195100;210.116000;210.149000;210.101000;210.138000;0 +20260226 195200;210.139000;210.175000;210.128000;210.156000;0 +20260226 195300;210.155000;210.173000;210.135000;210.139000;0 +20260226 195400;210.140000;210.176000;210.029000;210.043000;0 +20260226 195500;210.044000;210.098000;210.026000;210.034000;0 +20260226 195600;210.037000;210.085000;209.996000;210.085000;0 +20260226 195700;210.088000;210.123000;210.067000;210.109000;0 +20260226 195800;210.107000;210.184000;210.073000;210.177000;0 +20260226 195900;210.182000;210.227000;210.170000;210.220000;0 +20260226 200000;210.220000;210.240000;210.184000;210.184000;0 +20260226 200100;210.183000;210.232000;210.165000;210.200000;0 +20260226 200200;210.202000;210.211000;210.182000;210.198000;0 +20260226 200300;210.194000;210.196000;210.138000;210.185000;0 +20260226 200400;210.185000;210.185000;210.139000;210.140000;0 +20260226 200500;210.139000;210.170000;210.128000;210.163000;0 +20260226 200600;210.162000;210.162000;210.097000;210.097000;0 +20260226 200700;210.098000;210.138000;210.084000;210.131000;0 +20260226 200800;210.126000;210.154000;210.100000;210.141000;0 +20260226 200900;210.141000;210.152000;210.110000;210.113000;0 +20260226 201000;210.114000;210.116000;210.061000;210.061000;0 +20260226 201100;210.064000;210.078000;210.058000;210.067000;0 +20260226 201200;210.069000;210.075000;210.051000;210.058000;0 +20260226 201300;210.054000;210.112000;210.054000;210.103000;0 +20260226 201400;210.105000;210.143000;210.104000;210.133000;0 +20260226 201500;210.130000;210.184000;210.121000;210.184000;0 +20260226 201600;210.183000;210.295000;210.164000;210.242000;0 +20260226 201700;210.239000;210.262000;210.213000;210.221000;0 +20260226 201800;210.223000;210.233000;210.189000;210.199000;0 +20260226 201900;210.195000;210.205000;210.156000;210.180000;0 +20260226 202000;210.190000;210.203000;210.180000;210.197000;0 +20260226 202100;210.197000;210.197000;210.157000;210.157000;0 +20260226 202200;210.153000;210.165000;210.120000;210.126000;0 +20260226 202300;210.125000;210.191000;210.116000;210.180000;0 +20260226 202400;210.181000;210.215000;210.159000;210.201000;0 +20260226 202500;210.203000;210.232000;210.203000;210.232000;0 +20260226 202600;210.224000;210.238000;210.207000;210.226000;0 +20260226 202700;210.223000;210.246000;210.208000;210.222000;0 +20260226 202800;210.223000;210.232000;210.144000;210.165000;0 +20260226 202900;210.165000;210.211000;210.161000;210.211000;0 +20260226 203000;210.214000;210.256000;210.192000;210.204000;0 +20260226 203100;210.205000;210.226000;210.186000;210.226000;0 +20260226 203200;210.228000;210.234000;210.194000;210.212000;0 +20260226 203300;210.211000;210.214000;210.175000;210.175000;0 +20260226 203400;210.175000;210.207000;210.175000;210.199000;0 +20260226 203500;210.192000;210.216000;210.181000;210.205000;0 +20260226 203600;210.203000;210.214000;210.181000;210.190000;0 +20260226 203700;210.190000;210.207000;210.181000;210.206000;0 +20260226 203800;210.207000;210.216000;210.193000;210.207000;0 +20260226 203900;210.211000;210.213000;210.180000;210.208000;0 +20260226 204000;210.205000;210.229000;210.196000;210.219000;0 +20260226 204100;210.220000;210.233000;210.195000;210.195000;0 +20260226 204200;210.197000;210.220000;210.197000;210.211000;0 +20260226 204300;210.214000;210.215000;210.194000;210.204000;0 +20260226 204400;210.200000;210.214000;210.197000;210.203000;0 +20260226 204500;210.204000;210.215000;210.192000;210.197000;0 +20260226 204600;210.201000;210.221000;210.201000;210.211000;0 +20260226 204700;210.208000;210.250000;210.205000;210.237000;0 +20260226 204800;210.238000;210.253000;210.225000;210.236000;0 +20260226 204900;210.235000;210.247000;210.206000;210.210000;0 +20260226 205000;210.210000;210.247000;210.206000;210.241000;0 +20260226 205100;210.240000;210.252000;210.236000;210.236000;0 +20260226 205200;210.239000;210.270000;210.239000;210.266000;0 +20260226 205300;210.263000;210.297000;210.251000;210.284000;0 +20260226 205400;210.286000;210.289000;210.264000;210.273000;0 +20260226 205500;210.275000;210.296000;210.229000;210.234000;0 +20260226 205600;210.236000;210.253000;210.203000;210.226000;0 +20260226 205700;210.228000;210.238000;210.213000;210.218000;0 +20260226 205800;210.218000;210.221000;210.195000;210.207000;0 +20260226 205900;210.209000;210.228000;210.198000;210.206000;0 +20260226 210000;210.204000;210.217000;210.189000;210.189000;0 +20260226 210100;210.188000;210.203000;210.179000;210.199000;0 +20260226 210200;210.203000;210.232000;210.200000;210.202000;0 +20260226 210300;210.202000;210.215000;210.192000;210.208000;0 +20260226 210400;210.209000;210.227000;210.204000;210.211000;0 +20260226 210500;210.212000;210.249000;210.212000;210.234000;0 +20260226 210600;210.233000;210.268000;210.233000;210.258000;0 +20260226 210700;210.259000;210.261000;210.216000;210.226000;0 +20260226 210800;210.226000;210.244000;210.210000;210.210000;0 +20260226 210900;210.215000;210.221000;210.190000;210.191000;0 +20260226 211000;210.190000;210.205000;210.164000;210.169000;0 +20260226 211100;210.169000;210.178000;210.150000;210.178000;0 +20260226 211200;210.180000;210.186000;210.173000;210.178000;0 +20260226 211300;210.179000;210.183000;210.149000;210.152000;0 +20260226 211400;210.149000;210.153000;210.133000;210.143000;0 +20260226 211500;210.145000;210.161000;210.124000;210.158000;0 +20260226 211600;210.162000;210.189000;210.161000;210.182000;0 +20260226 211700;210.184000;210.187000;210.168000;210.185000;0 +20260226 211800;210.186000;210.204000;210.182000;210.204000;0 +20260226 211900;210.210000;210.220000;210.188000;210.197000;0 +20260226 212000;210.196000;210.206000;210.171000;210.178000;0 +20260226 212100;210.185000;210.185000;210.154000;210.154000;0 +20260226 212200;210.155000;210.166000;210.152000;210.157000;0 +20260226 212300;210.159000;210.169000;210.152000;210.157000;0 +20260226 212400;210.156000;210.158000;210.140000;210.147000;0 +20260226 212500;210.145000;210.152000;210.128000;210.135000;0 +20260226 212600;210.138000;210.144000;210.131000;210.140000;0 +20260226 212700;210.140000;210.146000;210.126000;210.126000;0 +20260226 212800;210.121000;210.129000;210.100000;210.112000;0 +20260226 212900;210.111000;210.124000;210.109000;210.120000;0 +20260226 213000;210.120000;210.138000;210.105000;210.120000;0 +20260226 213100;210.120000;210.127000;210.094000;210.101000;0 +20260226 213200;210.097000;210.106000;210.094000;210.105000;0 +20260226 213300;210.107000;210.113000;210.100000;210.100000;0 +20260226 213400;210.102000;210.111000;210.097000;210.105000;0 +20260226 213500;210.107000;210.110000;210.074000;210.076000;0 +20260226 213600;210.080000;210.080000;210.044000;210.044000;0 +20260226 213700;210.044000;210.059000;210.034000;210.057000;0 +20260226 213800;210.057000;210.072000;210.042000;210.045000;0 +20260226 213900;210.043000;210.073000;210.043000;210.068000;0 +20260226 214000;210.068000;210.119000;210.059000;210.103000;0 +20260226 214100;210.103000;210.117000;210.089000;210.109000;0 +20260226 214200;210.111000;210.132000;210.105000;210.108000;0 +20260226 214300;210.109000;210.123000;210.101000;210.123000;0 +20260226 214400;210.122000;210.128000;210.111000;210.111000;0 +20260226 214500;210.115000;210.135000;210.103000;210.113000;0 +20260226 214600;210.114000;210.147000;210.114000;210.127000;0 +20260226 214700;210.126000;210.133000;210.079000;210.079000;0 +20260226 214800;210.079000;210.109000;210.079000;210.109000;0 +20260226 214900;210.110000;210.122000;210.109000;210.115000;0 +20260226 215000;210.113000;210.113000;210.083000;210.090000;0 +20260226 215100;210.089000;210.094000;210.077000;210.086000;0 +20260226 215200;210.081000;210.092000;210.077000;210.092000;0 +20260226 215300;210.101000;210.101000;210.056000;210.069000;0 +20260226 215400;210.071000;210.075000;210.057000;210.075000;0 +20260226 215500;210.077000;210.077000;210.052000;210.061000;0 +20260226 215600;210.064000;210.086000;210.063000;210.068000;0 +20260226 215700;210.073000;210.077000;210.061000;210.074000;0 +20260226 215800;210.077000;210.077000;210.046000;210.069000;0 +20260226 215900;210.071000;210.078000;210.045000;210.053000;0 +20260226 220000;210.053000;210.083000;210.050000;210.069000;0 +20260226 220100;210.079000;210.134000;210.079000;210.131000;0 +20260226 220200;210.132000;210.165000;210.126000;210.142000;0 +20260226 220300;210.142000;210.145000;210.127000;210.144000;0 +20260226 220400;210.145000;210.171000;210.143000;210.144000;0 +20260226 220500;210.144000;210.158000;210.138000;210.147000;0 +20260226 220600;210.148000;210.157000;210.141000;210.143000;0 +20260226 220700;210.143000;210.161000;210.142000;210.157000;0 +20260226 220800;210.156000;210.162000;210.142000;210.144000;0 +20260226 220900;210.141000;210.149000;210.138000;210.146000;0 +20260226 221000;210.145000;210.151000;210.133000;210.139000;0 +20260226 221100;210.140000;210.140000;210.092000;210.092000;0 +20260226 221200;210.091000;210.102000;210.087000;210.099000;0 +20260226 221300;210.099000;210.106000;210.087000;210.105000;0 +20260226 221400;210.104000;210.133000;210.104000;210.133000;0 +20260226 221500;210.133000;210.143000;210.130000;210.141000;0 +20260226 221600;210.141000;210.175000;210.129000;210.173000;0 +20260226 221700;210.171000;210.177000;210.131000;210.141000;0 +20260226 221800;210.140000;210.164000;210.135000;210.162000;0 +20260226 221900;210.163000;210.192000;210.161000;210.181000;0 +20260226 222000;210.181000;210.181000;210.133000;210.141000;0 +20260226 222100;210.140000;210.167000;210.134000;210.161000;0 +20260226 222200;210.158000;210.161000;210.134000;210.153000;0 +20260226 222300;210.154000;210.157000;210.142000;210.151000;0 +20260226 222400;210.152000;210.152000;210.110000;210.110000;0 +20260226 222500;210.110000;210.123000;210.092000;210.116000;0 +20260226 222600;210.120000;210.148000;210.119000;210.147000;0 +20260226 222700;210.146000;210.194000;210.139000;210.189000;0 +20260226 222800;210.194000;210.194000;210.150000;210.188000;0 +20260226 222900;210.188000;210.193000;210.162000;210.163000;0 +20260226 223000;210.162000;210.167000;210.109000;210.111000;0 +20260226 223100;210.110000;210.125000;210.107000;210.113000;0 +20260226 223200;210.111000;210.136000;210.111000;210.134000;0 +20260226 223300;210.134000;210.146000;210.123000;210.146000;0 +20260226 223400;210.148000;210.153000;210.121000;210.125000;0 +20260226 223500;210.123000;210.123000;210.100000;210.109000;0 +20260226 223600;210.106000;210.152000;210.102000;210.151000;0 +20260226 223700;210.147000;210.152000;210.130000;210.137000;0 +20260226 223800;210.134000;210.147000;210.134000;210.138000;0 +20260226 223900;210.138000;210.138000;210.108000;210.116000;0 +20260226 224000;210.118000;210.128000;210.118000;210.126000;0 +20260226 224100;210.127000;210.152000;210.127000;210.151000;0 +20260226 224200;210.153000;210.155000;210.138000;210.138000;0 +20260226 224300;210.146000;210.161000;210.143000;210.161000;0 +20260226 224400;210.162000;210.194000;210.162000;210.194000;0 +20260226 224500;210.195000;210.204000;210.187000;210.198000;0 +20260226 224600;210.198000;210.229000;210.189000;210.194000;0 +20260226 224700;210.193000;210.193000;210.161000;210.161000;0 +20260226 224800;210.161000;210.212000;210.161000;210.200000;0 +20260226 224900;210.200000;210.206000;210.184000;210.195000;0 +20260226 225000;210.198000;210.198000;210.192000;210.197000;0 +20260226 225100;210.196000;210.197000;210.167000;210.191000;0 +20260226 225200;210.191000;210.191000;210.178000;210.184000;0 +20260226 225300;210.185000;210.191000;210.171000;210.171000;0 +20260226 225400;210.173000;210.180000;210.167000;210.172000;0 +20260226 225500;210.172000;210.185000;210.170000;210.181000;0 +20260226 225600;210.183000;210.185000;210.174000;210.181000;0 +20260226 225700;210.180000;210.180000;210.159000;210.163000;0 +20260226 225800;210.160000;210.161000;210.141000;210.142000;0 +20260226 225900;210.140000;210.163000;210.140000;210.158000;0 +20260226 230000;210.160000;210.160000;210.143000;210.151000;0 +20260226 230100;210.149000;210.152000;210.113000;210.127000;0 +20260226 230200;210.128000;210.131000;210.120000;210.121000;0 +20260226 230300;210.120000;210.133000;210.120000;210.131000;0 +20260226 230400;210.129000;210.143000;210.129000;210.140000;0 +20260226 230500;210.139000;210.147000;210.137000;210.137000;0 +20260226 230600;210.140000;210.148000;210.130000;210.141000;0 +20260226 230700;210.142000;210.150000;210.138000;210.148000;0 +20260226 230800;210.147000;210.157000;210.140000;210.144000;0 +20260226 230900;210.146000;210.159000;210.144000;210.156000;0 +20260226 231000;210.160000;210.169000;210.148000;210.154000;0 +20260226 231100;210.155000;210.170000;210.151000;210.169000;0 +20260226 231200;210.170000;210.184000;210.168000;210.184000;0 +20260226 231300;210.183000;210.195000;210.183000;210.193000;0 +20260226 231400;210.196000;210.231000;210.192000;210.223000;0 +20260226 231500;210.226000;210.229000;210.192000;210.203000;0 +20260226 231600;210.200000;210.200000;210.153000;210.153000;0 +20260226 231700;210.150000;210.154000;210.137000;210.144000;0 +20260226 231800;210.142000;210.174000;210.141000;210.172000;0 +20260226 231900;210.173000;210.177000;210.151000;210.165000;0 +20260226 232000;210.167000;210.195000;210.163000;210.194000;0 +20260226 232100;210.190000;210.250000;210.178000;210.178000;0 +20260226 232200;210.175000;210.176000;210.137000;210.143000;0 +20260226 232300;210.142000;210.142000;210.098000;210.130000;0 +20260226 232400;210.130000;210.134000;210.117000;210.119000;0 +20260226 232500;210.115000;210.118000;210.033000;210.062000;0 +20260226 232600;210.058000;210.070000;210.047000;210.048000;0 +20260226 232700;210.051000;210.055000;210.034000;210.037000;0 +20260226 232800;210.037000;210.059000;210.037000;210.052000;0 +20260226 232900;210.052000;210.054000;210.036000;210.036000;0 +20260226 233000;210.035000;210.082000;210.029000;210.077000;0 +20260226 233100;210.078000;210.088000;210.069000;210.073000;0 +20260226 233200;210.072000;210.088000;210.060000;210.084000;0 +20260226 233300;210.079000;210.082000;210.026000;210.027000;0 +20260226 233400;210.026000;210.046000;210.026000;210.044000;0 +20260226 233500;210.050000;210.050000;210.017000;210.024000;0 +20260226 233600;210.028000;210.050000;210.026000;210.043000;0 +20260226 233700;210.043000;210.057000;210.023000;210.050000;0 +20260226 233800;210.047000;210.055000;210.005000;210.006000;0 +20260226 233900;210.006000;210.020000;209.999000;210.020000;0 +20260226 234000;210.020000;210.020000;209.985000;210.003000;0 +20260226 234100;210.003000;210.031000;210.002000;210.030000;0 +20260226 234200;210.032000;210.035000;210.004000;210.007000;0 +20260226 234300;210.007000;210.018000;209.994000;210.017000;0 +20260226 234400;210.016000;210.019000;210.007000;210.011000;0 +20260226 234500;210.011000;210.026000;210.006000;210.011000;0 +20260226 234600;210.011000;210.019000;209.977000;209.977000;0 +20260226 234700;209.979000;209.997000;209.943000;209.943000;0 +20260226 234800;209.945000;209.963000;209.938000;209.960000;0 +20260226 234900;209.961000;209.980000;209.960000;209.969000;0 +20260226 235000;209.970000;209.994000;209.963000;209.991000;0 +20260226 235100;209.991000;209.993000;209.982000;209.982000;0 +20260226 235200;209.982000;209.983000;209.961000;209.963000;0 +20260226 235300;209.963000;209.978000;209.952000;209.964000;0 +20260226 235400;209.960000;210.007000;209.959000;210.004000;0 +20260226 235500;210.004000;210.005000;209.972000;209.996000;0 +20260226 235600;209.991000;209.995000;209.982000;209.987000;0 +20260226 235700;209.986000;209.989000;209.959000;209.959000;0 +20260226 235800;209.958000;209.974000;209.947000;209.962000;0 +20260226 235900;209.963000;209.983000;209.961000;209.975000;0 +20260227 000000;209.976000;210.008000;209.958000;210.003000;0 +20260227 000100;210.001000;210.026000;210.001000;210.004000;0 +20260227 000200;210.004000;210.012000;209.988000;210.002000;0 +20260227 000300;210.000000;210.006000;209.980000;209.981000;0 +20260227 000400;209.980000;209.980000;209.933000;209.955000;0 +20260227 000500;209.955000;210.002000;209.948000;209.984000;0 +20260227 000600;209.984000;209.996000;209.979000;209.993000;0 +20260227 000700;209.991000;210.014000;209.991000;209.995000;0 +20260227 000800;209.996000;210.018000;209.983000;210.007000;0 +20260227 000900;210.006000;210.010000;209.992000;209.992000;0 +20260227 001000;209.988000;210.004000;209.988000;209.992000;0 +20260227 001100;209.992000;210.001000;209.966000;209.998000;0 +20260227 001200;209.994000;210.004000;209.981000;209.989000;0 +20260227 001300;209.993000;210.003000;209.990000;210.001000;0 +20260227 001400;210.003000;210.039000;210.001000;210.037000;0 +20260227 001500;210.038000;210.050000;210.022000;210.024000;0 +20260227 001600;210.025000;210.025000;209.999000;210.024000;0 +20260227 001700;210.025000;210.026000;210.007000;210.020000;0 +20260227 001800;210.019000;210.028000;210.017000;210.024000;0 +20260227 001900;210.024000;210.045000;210.022000;210.042000;0 +20260227 002000;210.044000;210.083000;210.044000;210.076000;0 +20260227 002100;210.078000;210.079000;210.041000;210.052000;0 +20260227 002200;210.054000;210.081000;210.052000;210.081000;0 +20260227 002300;210.078000;210.084000;210.067000;210.084000;0 +20260227 002400;210.086000;210.104000;210.083000;210.104000;0 +20260227 002500;210.105000;210.159000;210.103000;210.156000;0 +20260227 002600;210.158000;210.166000;210.149000;210.153000;0 +20260227 002700;210.153000;210.154000;210.122000;210.145000;0 +20260227 002800;210.145000;210.167000;210.144000;210.157000;0 +20260227 002900;210.158000;210.177000;210.158000;210.177000;0 +20260227 003000;210.176000;210.211000;210.171000;210.202000;0 +20260227 003100;210.202000;210.204000;210.182000;210.196000;0 +20260227 003200;210.197000;210.208000;210.183000;210.200000;0 +20260227 003300;210.198000;210.198000;210.180000;210.188000;0 +20260227 003400;210.188000;210.190000;210.180000;210.184000;0 +20260227 003500;210.184000;210.199000;210.167000;210.182000;0 +20260227 003600;210.182000;210.203000;210.174000;210.183000;0 +20260227 003700;210.184000;210.207000;210.182000;210.207000;0 +20260227 003800;210.200000;210.206000;210.175000;210.179000;0 +20260227 003900;210.176000;210.176000;210.156000;210.163000;0 +20260227 004000;210.160000;210.185000;210.160000;210.179000;0 +20260227 004100;210.182000;210.187000;210.161000;210.164000;0 +20260227 004200;210.166000;210.173000;210.155000;210.161000;0 +20260227 004300;210.162000;210.178000;210.151000;210.178000;0 +20260227 004400;210.178000;210.179000;210.149000;210.150000;0 +20260227 004500;210.153000;210.178000;210.152000;210.171000;0 +20260227 004600;210.174000;210.197000;210.174000;210.192000;0 +20260227 004700;210.192000;210.208000;210.192000;210.199000;0 +20260227 004800;210.200000;210.206000;210.196000;210.198000;0 +20260227 004900;210.198000;210.201000;210.165000;210.168000;0 +20260227 005000;210.169000;210.195000;210.152000;210.194000;0 +20260227 005100;210.195000;210.201000;210.178000;210.181000;0 +20260227 005200;210.182000;210.187000;210.159000;210.159000;0 +20260227 005300;210.155000;210.158000;210.123000;210.153000;0 +20260227 005400;210.152000;210.160000;210.135000;210.148000;0 +20260227 005500;210.147000;210.171000;210.147000;210.153000;0 +20260227 005600;210.162000;210.185000;210.144000;210.159000;0 +20260227 005700;210.166000;210.195000;210.155000;210.193000;0 +20260227 005800;210.194000;210.206000;210.177000;210.188000;0 +20260227 005900;210.188000;210.207000;210.180000;210.204000;0 +20260227 010000;210.207000;210.225000;210.164000;210.175000;0 +20260227 010100;210.177000;210.189000;210.144000;210.146000;0 +20260227 010200;210.157000;210.185000;210.153000;210.176000;0 +20260227 010300;210.177000;210.217000;210.153000;210.216000;0 +20260227 010400;210.216000;210.218000;210.197000;210.204000;0 +20260227 010500;210.204000;210.218000;210.196000;210.201000;0 +20260227 010600;210.201000;210.220000;210.166000;210.168000;0 +20260227 010700;210.169000;210.187000;210.163000;210.170000;0 +20260227 010800;210.171000;210.180000;210.164000;210.165000;0 +20260227 010900;210.167000;210.175000;210.148000;210.148000;0 +20260227 011000;210.148000;210.152000;210.113000;210.125000;0 +20260227 011100;210.125000;210.149000;210.121000;210.127000;0 +20260227 011200;210.126000;210.132000;210.107000;210.107000;0 +20260227 011300;210.107000;210.114000;210.079000;210.081000;0 +20260227 011400;210.077000;210.100000;210.077000;210.093000;0 +20260227 011500;210.090000;210.103000;210.087000;210.090000;0 +20260227 011600;210.090000;210.109000;210.090000;210.105000;0 +20260227 011700;210.106000;210.106000;210.083000;210.093000;0 +20260227 011800;210.093000;210.095000;210.034000;210.049000;0 +20260227 011900;210.060000;210.076000;210.054000;210.072000;0 +20260227 012000;210.075000;210.099000;210.069000;210.098000;0 +20260227 012100;210.099000;210.101000;210.045000;210.046000;0 +20260227 012200;210.047000;210.049000;210.020000;210.031000;0 +20260227 012300;210.032000;210.037000;210.017000;210.021000;0 +20260227 012400;210.020000;210.033000;209.976000;209.983000;0 +20260227 012500;209.983000;209.992000;209.956000;209.983000;0 +20260227 012600;209.984000;210.021000;209.984000;210.004000;0 +20260227 012700;210.004000;210.035000;209.988000;209.999000;0 +20260227 012800;210.000000;210.000000;209.969000;209.975000;0 +20260227 012900;209.977000;210.020000;209.977000;210.017000;0 +20260227 013000;210.017000;210.053000;210.014000;210.035000;0 +20260227 013100;210.035000;210.064000;210.004000;210.005000;0 +20260227 013200;210.005000;210.034000;210.000000;210.000000;0 +20260227 013300;210.000000;210.007000;209.969000;209.980000;0 +20260227 013400;209.981000;210.030000;209.981000;210.027000;0 +20260227 013500;210.023000;210.059000;210.007000;210.056000;0 +20260227 013600;210.056000;210.069000;210.041000;210.066000;0 +20260227 013700;210.066000;210.086000;210.044000;210.054000;0 +20260227 013800;210.051000;210.054000;209.997000;209.998000;0 +20260227 013900;209.998000;210.053000;209.998000;210.053000;0 +20260227 014000;210.053000;210.056000;210.021000;210.031000;0 +20260227 014100;210.031000;210.035000;210.017000;210.023000;0 +20260227 014200;210.019000;210.060000;210.015000;210.049000;0 +20260227 014300;210.053000;210.055000;210.040000;210.046000;0 +20260227 014400;210.047000;210.055000;210.046000;210.051000;0 +20260227 014500;210.058000;210.066000;210.031000;210.048000;0 +20260227 014600;210.047000;210.058000;210.029000;210.029000;0 +20260227 014700;210.030000;210.046000;210.027000;210.036000;0 +20260227 014800;210.036000;210.036000;209.991000;209.994000;0 +20260227 014900;209.996000;210.001000;209.977000;209.981000;0 +20260227 015000;209.981000;209.991000;209.958000;209.959000;0 +20260227 015100;209.959000;209.981000;209.932000;209.971000;0 +20260227 015200;209.977000;209.993000;209.969000;209.970000;0 +20260227 015300;209.972000;209.998000;209.969000;209.980000;0 +20260227 015400;209.978000;209.987000;209.941000;209.949000;0 +20260227 015500;209.951000;209.963000;209.923000;209.924000;0 +20260227 015600;209.923000;209.945000;209.923000;209.930000;0 +20260227 015700;209.930000;209.944000;209.923000;209.934000;0 +20260227 015800;209.934000;209.949000;209.930000;209.947000;0 +20260227 015900;209.947000;209.969000;209.947000;209.953000;0 +20260227 020000;209.952000;210.021000;209.952000;210.018000;0 +20260227 020100;210.021000;210.066000;210.017000;210.054000;0 +20260227 020200;210.055000;210.074000;210.022000;210.022000;0 +20260227 020300;210.023000;210.054000;210.023000;210.036000;0 +20260227 020400;210.035000;210.045000;210.017000;210.018000;0 +20260227 020500;210.016000;210.026000;209.996000;209.996000;0 +20260227 020600;209.998000;210.018000;209.994000;209.995000;0 +20260227 020700;209.995000;210.020000;209.990000;210.016000;0 +20260227 020800;210.021000;210.039000;209.991000;209.994000;0 +20260227 020900;209.995000;210.012000;209.981000;210.011000;0 +20260227 021000;210.013000;210.013000;209.983000;209.992000;0 +20260227 021100;209.993000;210.005000;209.985000;209.993000;0 +20260227 021200;209.992000;210.019000;209.971000;209.986000;0 +20260227 021300;209.975000;209.990000;209.963000;209.972000;0 +20260227 021400;209.968000;209.986000;209.968000;209.977000;0 +20260227 021500;209.975000;210.051000;209.975000;210.050000;0 +20260227 021600;210.053000;210.067000;210.046000;210.063000;0 +20260227 021700;210.064000;210.098000;210.042000;210.046000;0 +20260227 021800;210.048000;210.109000;210.048000;210.107000;0 +20260227 021900;210.108000;210.117000;210.085000;210.108000;0 +20260227 022000;210.104000;210.126000;210.099000;210.122000;0 +20260227 022100;210.118000;210.133000;210.116000;210.123000;0 +20260227 022200;210.126000;210.144000;210.122000;210.144000;0 +20260227 022300;210.151000;210.162000;210.149000;210.151000;0 +20260227 022400;210.151000;210.181000;210.151000;210.158000;0 +20260227 022500;210.159000;210.189000;210.133000;210.186000;0 +20260227 022600;210.186000;210.206000;210.170000;210.195000;0 +20260227 022700;210.195000;210.349000;210.195000;210.341000;0 +20260227 022800;210.343000;210.370000;210.339000;210.365000;0 +20260227 022900;210.363000;210.376000;210.350000;210.372000;0 +20260227 023000;210.372000;210.377000;210.347000;210.357000;0 +20260227 023100;210.358000;210.358000;210.310000;210.325000;0 +20260227 023200;210.327000;210.342000;210.310000;210.319000;0 +20260227 023300;210.318000;210.319000;210.295000;210.295000;0 +20260227 023400;210.295000;210.321000;210.290000;210.303000;0 +20260227 023500;210.302000;210.305000;210.271000;210.271000;0 +20260227 023600;210.267000;210.267000;210.226000;210.233000;0 +20260227 023700;210.234000;210.284000;210.230000;210.282000;0 +20260227 023800;210.282000;210.351000;210.276000;210.336000;0 +20260227 023900;210.340000;210.372000;210.340000;210.363000;0 +20260227 024000;210.358000;210.360000;210.322000;210.348000;0 +20260227 024100;210.349000;210.353000;210.309000;210.322000;0 +20260227 024200;210.322000;210.340000;210.315000;210.335000;0 +20260227 024300;210.337000;210.375000;210.336000;210.375000;0 +20260227 024400;210.375000;210.394000;210.362000;210.382000;0 +20260227 024500;210.388000;210.447000;210.385000;210.438000;0 +20260227 024600;210.436000;210.508000;210.420000;210.483000;0 +20260227 024700;210.484000;210.494000;210.448000;210.472000;0 +20260227 024800;210.473000;210.510000;210.471000;210.493000;0 +20260227 024900;210.492000;210.509000;210.454000;210.471000;0 +20260227 025000;210.466000;210.499000;210.447000;210.486000;0 +20260227 025100;210.482000;210.539000;210.482000;210.526000;0 +20260227 025200;210.527000;210.556000;210.527000;210.547000;0 +20260227 025300;210.547000;210.558000;210.530000;210.539000;0 +20260227 025400;210.543000;210.548000;210.504000;210.517000;0 +20260227 025500;210.519000;210.533000;210.503000;210.515000;0 +20260227 025600;210.512000;210.563000;210.512000;210.551000;0 +20260227 025700;210.551000;210.552000;210.502000;210.529000;0 +20260227 025800;210.531000;210.570000;210.528000;210.562000;0 +20260227 025900;210.563000;210.564000;210.510000;210.514000;0 +20260227 030000;210.511000;210.600000;210.511000;210.574000;0 +20260227 030100;210.573000;210.605000;210.529000;210.532000;0 +20260227 030200;210.536000;210.568000;210.536000;210.567000;0 +20260227 030300;210.567000;210.583000;210.544000;210.558000;0 +20260227 030400;210.557000;210.579000;210.551000;210.553000;0 +20260227 030500;210.549000;210.618000;210.541000;210.613000;0 +20260227 030600;210.609000;210.690000;210.607000;210.688000;0 +20260227 030700;210.694000;210.700000;210.643000;210.648000;0 +20260227 030800;210.648000;210.677000;210.640000;210.646000;0 +20260227 030900;210.648000;210.662000;210.631000;210.658000;0 +20260227 031000;210.658000;210.676000;210.611000;210.616000;0 +20260227 031100;210.618000;210.640000;210.610000;210.630000;0 +20260227 031200;210.630000;210.656000;210.601000;210.622000;0 +20260227 031300;210.622000;210.624000;210.581000;210.581000;0 +20260227 031400;210.579000;210.592000;210.538000;210.538000;0 +20260227 031500;210.541000;210.562000;210.532000;210.555000;0 +20260227 031600;210.558000;210.590000;210.555000;210.566000;0 +20260227 031700;210.565000;210.592000;210.561000;210.587000;0 +20260227 031800;210.587000;210.605000;210.580000;210.591000;0 +20260227 031900;210.595000;210.627000;210.584000;210.585000;0 +20260227 032000;210.576000;210.613000;210.572000;210.599000;0 +20260227 032100;210.597000;210.601000;210.546000;210.546000;0 +20260227 032200;210.545000;210.557000;210.524000;210.525000;0 +20260227 032300;210.525000;210.548000;210.524000;210.546000;0 +20260227 032400;210.548000;210.572000;210.515000;210.516000;0 +20260227 032500;210.516000;210.529000;210.506000;210.518000;0 +20260227 032600;210.522000;210.522000;210.475000;210.475000;0 +20260227 032700;210.477000;210.538000;210.474000;210.535000;0 +20260227 032800;210.537000;210.554000;210.505000;210.551000;0 +20260227 032900;210.552000;210.571000;210.533000;210.536000;0 +20260227 033000;210.536000;210.586000;210.536000;210.578000;0 +20260227 033100;210.578000;210.578000;210.561000;210.568000;0 +20260227 033200;210.572000;210.574000;210.527000;210.533000;0 +20260227 033300;210.531000;210.557000;210.528000;210.531000;0 +20260227 033400;210.535000;210.541000;210.509000;210.515000;0 +20260227 033500;210.512000;210.512000;210.481000;210.487000;0 +20260227 033600;210.486000;210.498000;210.460000;210.482000;0 +20260227 033700;210.481000;210.536000;210.480000;210.533000;0 +20260227 033800;210.533000;210.533000;210.505000;210.531000;0 +20260227 033900;210.533000;210.544000;210.521000;210.544000;0 +20260227 034000;210.540000;210.546000;210.528000;210.543000;0 +20260227 034100;210.543000;210.601000;210.543000;210.583000;0 +20260227 034200;210.583000;210.607000;210.572000;210.594000;0 +20260227 034300;210.594000;210.618000;210.589000;210.591000;0 +20260227 034400;210.592000;210.615000;210.592000;210.608000;0 +20260227 034500;210.612000;210.644000;210.605000;210.643000;0 +20260227 034600;210.644000;210.656000;210.619000;210.619000;0 +20260227 034700;210.622000;210.699000;210.622000;210.674000;0 +20260227 034800;210.678000;210.724000;210.676000;210.724000;0 +20260227 034900;210.723000;210.731000;210.678000;210.678000;0 +20260227 035000;210.680000;210.739000;210.674000;210.693000;0 +20260227 035100;210.691000;210.702000;210.657000;210.676000;0 +20260227 035200;210.676000;210.709000;210.670000;210.705000;0 +20260227 035300;210.705000;210.771000;210.705000;210.770000;0 +20260227 035400;210.777000;210.793000;210.766000;210.782000;0 +20260227 035500;210.783000;210.785000;210.769000;210.772000;0 +20260227 035600;210.770000;210.803000;210.765000;210.784000;0 +20260227 035700;210.786000;210.786000;210.742000;210.756000;0 +20260227 035800;210.754000;210.756000;210.711000;210.752000;0 +20260227 035900;210.754000;210.755000;210.706000;210.717000;0 +20260227 040000;210.716000;210.719000;210.661000;210.697000;0 +20260227 040100;210.695000;210.719000;210.676000;210.677000;0 +20260227 040200;210.678000;210.716000;210.674000;210.692000;0 +20260227 040300;210.695000;210.700000;210.678000;210.699000;0 +20260227 040400;210.700000;210.715000;210.698000;210.712000;0 +20260227 040500;210.710000;210.736000;210.697000;210.735000;0 +20260227 040600;210.740000;210.757000;210.732000;210.752000;0 +20260227 040700;210.753000;210.756000;210.726000;210.728000;0 +20260227 040800;210.727000;210.745000;210.713000;210.741000;0 +20260227 040900;210.741000;210.776000;210.741000;210.773000;0 +20260227 041000;210.775000;210.792000;210.752000;210.778000;0 +20260227 041100;210.778000;210.785000;210.760000;210.772000;0 +20260227 041200;210.773000;210.803000;210.759000;210.791000;0 +20260227 041300;210.791000;210.791000;210.765000;210.770000;0 +20260227 041400;210.770000;210.774000;210.748000;210.768000;0 +20260227 041500;210.767000;210.768000;210.741000;210.753000;0 +20260227 041600;210.755000;210.755000;210.740000;210.754000;0 +20260227 041700;210.752000;210.803000;210.752000;210.784000;0 +20260227 041800;210.785000;210.799000;210.773000;210.794000;0 +20260227 041900;210.795000;210.826000;210.789000;210.806000;0 +20260227 042000;210.813000;210.815000;210.787000;210.804000;0 +20260227 042100;210.801000;210.809000;210.743000;210.767000;0 +20260227 042200;210.766000;210.793000;210.764000;210.768000;0 +20260227 042300;210.769000;210.791000;210.738000;210.741000;0 +20260227 042400;210.740000;210.750000;210.715000;210.715000;0 +20260227 042500;210.711000;210.713000;210.684000;210.707000;0 +20260227 042600;210.707000;210.707000;210.684000;210.696000;0 +20260227 042700;210.697000;210.713000;210.679000;210.694000;0 +20260227 042800;210.693000;210.693000;210.675000;210.693000;0 +20260227 042900;210.690000;210.698000;210.681000;210.682000;0 +20260227 043000;210.677000;210.704000;210.672000;210.680000;0 +20260227 043100;210.680000;210.697000;210.672000;210.697000;0 +20260227 043200;210.697000;210.715000;210.693000;210.710000;0 +20260227 043300;210.707000;210.720000;210.706000;210.714000;0 +20260227 043400;210.714000;210.714000;210.684000;210.701000;0 +20260227 043500;210.700000;210.717000;210.697000;210.715000;0 +20260227 043600;210.716000;210.733000;210.708000;210.710000;0 +20260227 043700;210.713000;210.720000;210.657000;210.657000;0 +20260227 043800;210.655000;210.671000;210.647000;210.663000;0 +20260227 043900;210.662000;210.678000;210.660000;210.676000;0 +20260227 044000;210.676000;210.676000;210.630000;210.631000;0 +20260227 044100;210.631000;210.639000;210.613000;210.613000;0 +20260227 044200;210.616000;210.616000;210.562000;210.564000;0 +20260227 044300;210.568000;210.575000;210.547000;210.551000;0 +20260227 044400;210.551000;210.572000;210.533000;210.544000;0 +20260227 044500;210.539000;210.569000;210.537000;210.569000;0 +20260227 044600;210.569000;210.578000;210.535000;210.540000;0 +20260227 044700;210.541000;210.558000;210.539000;210.549000;0 +20260227 044800;210.550000;210.556000;210.533000;210.547000;0 +20260227 044900;210.546000;210.552000;210.518000;210.521000;0 +20260227 045000;210.510000;210.522000;210.482000;210.518000;0 +20260227 045100;210.517000;210.520000;210.464000;210.499000;0 +20260227 045200;210.497000;210.525000;210.482000;210.524000;0 +20260227 045300;210.524000;210.525000;210.492000;210.517000;0 +20260227 045400;210.518000;210.530000;210.497000;210.504000;0 +20260227 045500;210.505000;210.529000;210.505000;210.511000;0 +20260227 045600;210.510000;210.512000;210.472000;210.477000;0 +20260227 045700;210.476000;210.498000;210.453000;210.453000;0 +20260227 045800;210.454000;210.471000;210.446000;210.447000;0 +20260227 045900;210.447000;210.466000;210.440000;210.449000;0 +20260227 050000;210.449000;210.484000;210.445000;210.460000;0 +20260227 050100;210.460000;210.470000;210.437000;210.456000;0 +20260227 050200;210.452000;210.452000;210.378000;210.378000;0 +20260227 050300;210.381000;210.399000;210.381000;210.385000;0 +20260227 050400;210.380000;210.382000;210.298000;210.305000;0 +20260227 050500;210.303000;210.319000;210.286000;210.290000;0 +20260227 050600;210.289000;210.324000;210.287000;210.321000;0 +20260227 050700;210.334000;210.355000;210.334000;210.355000;0 +20260227 050800;210.355000;210.368000;210.355000;210.368000;0 +20260227 050900;210.368000;210.387000;210.351000;210.384000;0 +20260227 051000;210.384000;210.384000;210.356000;210.360000;0 +20260227 051100;210.361000;210.361000;210.297000;210.297000;0 +20260227 051200;210.293000;210.307000;210.264000;210.272000;0 +20260227 051300;210.274000;210.276000;210.259000;210.263000;0 +20260227 051400;210.264000;210.292000;210.259000;210.274000;0 +20260227 051500;210.276000;210.303000;210.272000;210.303000;0 +20260227 051600;210.304000;210.314000;210.286000;210.289000;0 +20260227 051700;210.289000;210.298000;210.277000;210.292000;0 +20260227 051800;210.292000;210.303000;210.269000;210.282000;0 +20260227 051900;210.281000;210.286000;210.262000;210.269000;0 +20260227 052000;210.273000;210.287000;210.243000;210.253000;0 +20260227 052100;210.252000;210.276000;210.245000;210.261000;0 +20260227 052200;210.259000;210.265000;210.236000;210.254000;0 +20260227 052300;210.257000;210.279000;210.242000;210.253000;0 +20260227 052400;210.256000;210.270000;210.241000;210.258000;0 +20260227 052500;210.259000;210.273000;210.250000;210.273000;0 +20260227 052600;210.274000;210.278000;210.270000;210.270000;0 +20260227 052700;210.270000;210.271000;210.257000;210.265000;0 +20260227 052800;210.258000;210.259000;210.240000;210.242000;0 +20260227 052900;210.239000;210.253000;210.233000;210.253000;0 +20260227 053000;210.253000;210.291000;210.248000;210.286000;0 +20260227 053100;210.286000;210.287000;210.266000;210.285000;0 +20260227 053200;210.283000;210.294000;210.254000;210.268000;0 +20260227 053300;210.270000;210.278000;210.227000;210.255000;0 +20260227 053400;210.260000;210.272000;210.244000;210.244000;0 +20260227 053500;210.245000;210.245000;210.218000;210.221000;0 +20260227 053600;210.222000;210.244000;210.221000;210.244000;0 +20260227 053700;210.246000;210.254000;210.239000;210.252000;0 +20260227 053800;210.252000;210.257000;210.223000;210.230000;0 +20260227 053900;210.231000;210.231000;210.195000;210.205000;0 +20260227 054000;210.205000;210.230000;210.205000;210.227000;0 +20260227 054100;210.228000;210.228000;210.176000;210.179000;0 +20260227 054200;210.178000;210.196000;210.145000;210.195000;0 +20260227 054300;210.196000;210.217000;210.190000;210.193000;0 +20260227 054400;210.193000;210.199000;210.176000;210.189000;0 +20260227 054500;210.183000;210.190000;210.172000;210.186000;0 +20260227 054600;210.187000;210.201000;210.174000;210.196000;0 +20260227 054700;210.197000;210.197000;210.180000;210.194000;0 +20260227 054800;210.196000;210.205000;210.190000;210.192000;0 +20260227 054900;210.191000;210.206000;210.189000;210.195000;0 +20260227 055000;210.195000;210.195000;210.172000;210.176000;0 +20260227 055100;210.177000;210.198000;210.176000;210.194000;0 +20260227 055200;210.196000;210.211000;210.194000;210.207000;0 +20260227 055300;210.207000;210.212000;210.168000;210.168000;0 +20260227 055400;210.167000;210.191000;210.163000;210.187000;0 +20260227 055500;210.186000;210.200000;210.171000;210.193000;0 +20260227 055600;210.194000;210.199000;210.182000;210.195000;0 +20260227 055700;210.192000;210.197000;210.175000;210.186000;0 +20260227 055800;210.184000;210.205000;210.184000;210.193000;0 +20260227 055900;210.191000;210.194000;210.180000;210.182000;0 +20260227 060000;210.182000;210.184000;210.170000;210.176000;0 +20260227 060100;210.175000;210.192000;210.166000;210.168000;0 +20260227 060200;210.165000;210.165000;210.142000;210.142000;0 +20260227 060300;210.145000;210.148000;210.097000;210.127000;0 +20260227 060400;210.125000;210.130000;210.113000;210.130000;0 +20260227 060500;210.132000;210.136000;210.117000;210.134000;0 +20260227 060600;210.126000;210.126000;210.083000;210.083000;0 +20260227 060700;210.084000;210.093000;210.077000;210.084000;0 +20260227 060800;210.081000;210.118000;210.081000;210.105000;0 +20260227 060900;210.106000;210.124000;210.098000;210.122000;0 +20260227 061000;210.123000;210.135000;210.117000;210.135000;0 +20260227 061100;210.135000;210.140000;210.124000;210.139000;0 +20260227 061200;210.143000;210.160000;210.132000;210.132000;0 +20260227 061300;210.132000;210.145000;210.116000;210.116000;0 +20260227 061400;210.115000;210.122000;210.100000;210.107000;0 +20260227 061500;210.104000;210.108000;210.070000;210.072000;0 +20260227 061600;210.075000;210.100000;210.072000;210.098000;0 +20260227 061700;210.097000;210.098000;210.082000;210.085000;0 +20260227 061800;210.089000;210.091000;210.062000;210.082000;0 +20260227 061900;210.083000;210.098000;210.076000;210.087000;0 +20260227 062000;210.100000;210.106000;210.043000;210.052000;0 +20260227 062100;210.051000;210.052000;210.031000;210.036000;0 +20260227 062200;210.037000;210.073000;210.037000;210.073000;0 +20260227 062300;210.074000;210.118000;210.074000;210.118000;0 +20260227 062400;210.120000;210.123000;210.095000;210.123000;0 +20260227 062500;210.125000;210.125000;210.093000;210.117000;0 +20260227 062600;210.117000;210.117000;210.074000;210.085000;0 +20260227 062700;210.083000;210.100000;210.078000;210.097000;0 +20260227 062800;210.097000;210.112000;210.092000;210.096000;0 +20260227 062900;210.095000;210.120000;210.090000;210.108000;0 +20260227 063000;210.110000;210.110000;210.095000;210.098000;0 +20260227 063100;210.095000;210.104000;210.084000;210.094000;0 +20260227 063200;210.091000;210.112000;210.082000;210.111000;0 +20260227 063300;210.112000;210.120000;210.106000;210.120000;0 +20260227 063400;210.130000;210.131000;210.111000;210.125000;0 +20260227 063500;210.126000;210.135000;210.114000;210.114000;0 +20260227 063600;210.116000;210.118000;210.087000;210.106000;0 +20260227 063700;210.107000;210.119000;210.093000;210.105000;0 +20260227 063800;210.105000;210.137000;210.105000;210.120000;0 +20260227 063900;210.120000;210.136000;210.120000;210.124000;0 +20260227 064000;210.127000;210.144000;210.122000;210.131000;0 +20260227 064100;210.130000;210.166000;210.130000;210.161000;0 +20260227 064200;210.161000;210.167000;210.131000;210.153000;0 +20260227 064300;210.154000;210.159000;210.138000;210.149000;0 +20260227 064400;210.150000;210.163000;210.150000;210.160000;0 +20260227 064500;210.159000;210.166000;210.135000;210.135000;0 +20260227 064600;210.135000;210.143000;210.116000;210.127000;0 +20260227 064700;210.125000;210.134000;210.112000;210.133000;0 +20260227 064800;210.133000;210.154000;210.111000;210.112000;0 +20260227 064900;210.105000;210.111000;210.067000;210.067000;0 +20260227 065000;210.068000;210.101000;210.058000;210.084000;0 +20260227 065100;210.080000;210.093000;210.067000;210.091000;0 +20260227 065200;210.094000;210.094000;210.083000;210.083000;0 +20260227 065300;210.083000;210.111000;210.079000;210.100000;0 +20260227 065400;210.100000;210.135000;210.100000;210.106000;0 +20260227 065500;210.107000;210.108000;210.051000;210.066000;0 +20260227 065600;210.062000;210.065000;210.029000;210.056000;0 +20260227 065700;210.054000;210.061000;210.013000;210.013000;0 +20260227 065800;210.013000;210.021000;209.947000;209.950000;0 +20260227 065900;209.948000;209.974000;209.942000;209.945000;0 +20260227 070000;209.944000;209.991000;209.934000;209.986000;0 +20260227 070100;209.989000;210.069000;209.974000;210.057000;0 +20260227 070200;210.053000;210.072000;210.032000;210.071000;0 +20260227 070300;210.075000;210.099000;210.071000;210.087000;0 +20260227 070400;210.089000;210.101000;210.068000;210.068000;0 +20260227 070500;210.069000;210.069000;210.014000;210.035000;0 +20260227 070600;210.034000;210.054000;210.014000;210.032000;0 +20260227 070700;210.034000;210.043000;210.025000;210.032000;0 +20260227 070800;210.028000;210.033000;210.005000;210.032000;0 +20260227 070900;210.032000;210.037000;209.998000;210.037000;0 +20260227 071000;210.039000;210.048000;210.021000;210.037000;0 +20260227 071100;210.037000;210.038000;210.002000;210.004000;0 +20260227 071200;210.004000;210.022000;209.988000;209.996000;0 +20260227 071300;209.995000;210.004000;209.972000;209.998000;0 +20260227 071400;209.999000;209.999000;209.983000;209.990000;0 +20260227 071500;209.993000;210.021000;209.985000;210.015000;0 +20260227 071600;210.017000;210.021000;210.000000;210.004000;0 +20260227 071700;210.005000;210.008000;209.986000;209.993000;0 +20260227 071800;209.994000;210.005000;209.993000;210.002000;0 +20260227 071900;210.002000;210.017000;209.988000;210.017000;0 +20260227 072000;210.020000;210.038000;210.019000;210.038000;0 +20260227 072100;210.038000;210.048000;210.017000;210.032000;0 +20260227 072200;210.032000;210.055000;210.032000;210.049000;0 +20260227 072300;210.047000;210.048000;209.995000;210.015000;0 +20260227 072400;210.013000;210.043000;209.979000;210.043000;0 +20260227 072500;210.043000;210.044000;210.024000;210.026000;0 +20260227 072600;210.023000;210.058000;210.000000;210.004000;0 +20260227 072700;209.997000;210.033000;209.997000;210.027000;0 +20260227 072800;210.029000;210.046000;210.017000;210.042000;0 +20260227 072900;210.053000;210.057000;210.020000;210.030000;0 +20260227 073000;210.029000;210.066000;210.027000;210.065000;0 +20260227 073100;210.063000;210.071000;210.054000;210.057000;0 +20260227 073200;210.058000;210.095000;210.056000;210.092000;0 +20260227 073300;210.088000;210.119000;210.088000;210.113000;0 +20260227 073400;210.114000;210.132000;210.111000;210.131000;0 +20260227 073500;210.129000;210.147000;210.119000;210.120000;0 +20260227 073600;210.123000;210.125000;210.083000;210.095000;0 +20260227 073700;210.092000;210.098000;210.086000;210.098000;0 +20260227 073800;210.094000;210.096000;210.038000;210.042000;0 +20260227 073900;210.040000;210.050000;210.026000;210.033000;0 +20260227 074000;210.033000;210.049000;210.028000;210.041000;0 +20260227 074100;210.045000;210.067000;210.039000;210.065000;0 +20260227 074200;210.070000;210.099000;210.064000;210.072000;0 +20260227 074300;210.072000;210.078000;210.058000;210.058000;0 +20260227 074400;210.062000;210.073000;210.049000;210.055000;0 +20260227 074500;210.055000;210.076000;210.042000;210.061000;0 +20260227 074600;210.063000;210.063000;210.040000;210.041000;0 +20260227 074700;210.042000;210.042000;209.999000;210.014000;0 +20260227 074800;210.016000;210.037000;210.014000;210.036000;0 +20260227 074900;210.035000;210.035000;209.996000;209.996000;0 +20260227 075000;209.996000;210.014000;209.970000;209.995000;0 +20260227 075100;209.995000;210.019000;209.988000;209.995000;0 +20260227 075200;209.993000;209.998000;209.958000;209.971000;0 +20260227 075300;209.971000;209.987000;209.948000;209.983000;0 +20260227 075400;209.983000;209.987000;209.965000;209.967000;0 +20260227 075500;209.968000;209.975000;209.941000;209.948000;0 +20260227 075600;209.951000;209.955000;209.934000;209.942000;0 +20260227 075700;209.942000;209.957000;209.926000;209.947000;0 +20260227 075800;209.947000;209.993000;209.942000;209.993000;0 +20260227 075900;209.987000;209.999000;209.985000;209.987000;0 +20260227 080000;209.985000;210.025000;209.977000;210.003000;0 +20260227 080100;210.002000;210.032000;210.002000;210.009000;0 +20260227 080200;210.011000;210.025000;210.009000;210.013000;0 +20260227 080300;210.013000;210.029000;210.004000;210.008000;0 +20260227 080400;210.007000;210.009000;209.988000;210.007000;0 +20260227 080500;210.003000;210.010000;209.961000;209.991000;0 +20260227 080600;209.990000;210.078000;209.987000;210.074000;0 +20260227 080700;210.070000;210.095000;210.062000;210.081000;0 +20260227 080800;210.078000;210.098000;210.071000;210.085000;0 +20260227 080900;210.085000;210.105000;210.075000;210.104000;0 +20260227 081000;210.102000;210.117000;210.092000;210.115000;0 +20260227 081100;210.117000;210.131000;210.108000;210.122000;0 +20260227 081200;210.123000;210.155000;210.118000;210.155000;0 +20260227 081300;210.158000;210.183000;210.158000;210.180000;0 +20260227 081400;210.179000;210.190000;210.167000;210.186000;0 +20260227 081500;210.177000;210.219000;210.162000;210.206000;0 +20260227 081600;210.211000;210.216000;210.171000;210.175000;0 +20260227 081700;210.177000;210.198000;210.164000;210.192000;0 +20260227 081800;210.194000;210.195000;210.109000;210.115000;0 +20260227 081900;210.116000;210.144000;210.103000;210.114000;0 +20260227 082000;210.124000;210.127000;210.104000;210.116000;0 +20260227 082100;210.113000;210.117000;210.089000;210.105000;0 +20260227 082200;210.105000;210.117000;210.091000;210.112000;0 +20260227 082300;210.111000;210.119000;210.083000;210.095000;0 +20260227 082400;210.097000;210.101000;210.067000;210.067000;0 +20260227 082500;210.071000;210.071000;210.022000;210.052000;0 +20260227 082600;210.050000;210.062000;210.030000;210.038000;0 +20260227 082700;210.036000;210.036000;210.011000;210.014000;0 +20260227 082800;210.013000;210.030000;209.972000;209.974000;0 +20260227 082900;209.975000;209.975000;209.903000;209.913000;0 +20260227 083000;209.905000;209.998000;209.866000;209.942000;0 +20260227 083100;209.939000;209.999000;209.938000;209.953000;0 +20260227 083200;209.956000;209.987000;209.902000;209.916000;0 +20260227 083300;209.911000;209.928000;209.880000;209.922000;0 +20260227 083400;209.924000;209.939000;209.838000;209.841000;0 +20260227 083500;209.846000;209.879000;209.827000;209.849000;0 +20260227 083600;209.848000;209.849000;209.798000;209.807000;0 +20260227 083700;209.817000;209.850000;209.809000;209.822000;0 +20260227 083800;209.822000;209.906000;209.822000;209.889000;0 +20260227 083900;209.891000;209.928000;209.879000;209.891000;0 +20260227 084000;209.891000;209.894000;209.860000;209.869000;0 +20260227 084100;209.871000;209.904000;209.861000;209.884000;0 +20260227 084200;209.887000;209.905000;209.861000;209.905000;0 +20260227 084300;209.902000;209.958000;209.889000;209.948000;0 +20260227 084400;209.949000;210.015000;209.947000;209.996000;0 +20260227 084500;209.997000;210.060000;209.980000;209.985000;0 +20260227 084600;209.983000;210.000000;209.933000;209.938000;0 +20260227 084700;209.945000;209.955000;209.918000;209.934000;0 +20260227 084800;209.938000;209.958000;209.898000;209.901000;0 +20260227 084900;209.906000;209.951000;209.905000;209.936000;0 +20260227 085000;209.936000;209.965000;209.911000;209.918000;0 +20260227 085100;209.920000;209.921000;209.877000;209.921000;0 +20260227 085200;209.923000;209.934000;209.887000;209.888000;0 +20260227 085300;209.888000;209.912000;209.884000;209.893000;0 +20260227 085400;209.893000;209.904000;209.873000;209.900000;0 +20260227 085500;209.898000;209.928000;209.886000;209.921000;0 +20260227 085600;209.918000;209.964000;209.917000;209.939000;0 +20260227 085700;209.940000;209.965000;209.932000;209.937000;0 +20260227 085800;209.935000;209.970000;209.935000;209.959000;0 +20260227 085900;209.962000;209.968000;209.945000;209.960000;0 +20260227 090000;209.961000;209.977000;209.949000;209.973000;0 +20260227 090100;209.973000;210.020000;209.963000;209.988000;0 +20260227 090200;209.990000;210.025000;209.980000;210.011000;0 +20260227 090300;210.012000;210.038000;209.985000;210.019000;0 +20260227 090400;210.022000;210.027000;209.992000;210.017000;0 +20260227 090500;210.020000;210.029000;210.002000;210.017000;0 +20260227 090600;210.020000;210.046000;210.009000;210.036000;0 +20260227 090700;210.042000;210.071000;210.030000;210.045000;0 +20260227 090800;210.047000;210.062000;210.019000;210.019000;0 +20260227 090900;210.014000;210.039000;209.989000;210.018000;0 +20260227 091000;210.017000;210.031000;209.983000;210.027000;0 +20260227 091100;210.026000;210.049000;210.015000;210.042000;0 +20260227 091200;210.042000;210.065000;210.032000;210.044000;0 +20260227 091300;210.049000;210.058000;209.987000;209.999000;0 +20260227 091400;209.997000;209.999000;209.980000;209.994000;0 +20260227 091500;209.990000;210.012000;209.981000;209.984000;0 +20260227 091600;209.982000;210.013000;209.968000;210.012000;0 +20260227 091700;210.012000;210.037000;209.999000;210.021000;0 +20260227 091800;210.021000;210.065000;210.021000;210.057000;0 +20260227 091900;210.061000;210.064000;209.993000;210.025000;0 +20260227 092000;210.028000;210.035000;210.002000;210.033000;0 +20260227 092100;210.030000;210.057000;210.028000;210.053000;0 +20260227 092200;210.054000;210.064000;210.044000;210.044000;0 +20260227 092300;210.046000;210.079000;210.046000;210.061000;0 +20260227 092400;210.060000;210.064000;210.026000;210.062000;0 +20260227 092500;210.057000;210.098000;210.055000;210.098000;0 +20260227 092600;210.098000;210.098000;210.048000;210.054000;0 +20260227 092700;210.058000;210.098000;210.055000;210.083000;0 +20260227 092800;210.082000;210.112000;210.066000;210.106000;0 +20260227 092900;210.105000;210.111000;210.075000;210.085000;0 +20260227 093000;210.087000;210.142000;210.087000;210.107000;0 +20260227 093100;210.107000;210.127000;210.022000;210.031000;0 +20260227 093200;210.034000;210.096000;210.030000;210.091000;0 +20260227 093300;210.092000;210.099000;210.055000;210.071000;0 +20260227 093400;210.069000;210.085000;210.045000;210.064000;0 +20260227 093500;210.067000;210.089000;210.058000;210.065000;0 +20260227 093600;210.065000;210.084000;210.015000;210.079000;0 +20260227 093700;210.079000;210.149000;210.075000;210.141000;0 +20260227 093800;210.142000;210.169000;210.119000;210.145000;0 +20260227 093900;210.145000;210.178000;210.132000;210.167000;0 +20260227 094000;210.166000;210.170000;210.073000;210.081000;0 +20260227 094100;210.081000;210.081000;210.049000;210.070000;0 +20260227 094200;210.070000;210.102000;210.036000;210.093000;0 +20260227 094300;210.093000;210.093000;210.035000;210.060000;0 +20260227 094400;210.055000;210.106000;210.047000;210.088000;0 +20260227 094500;210.090000;210.138000;210.081000;210.111000;0 +20260227 094600;210.112000;210.139000;210.101000;210.111000;0 +20260227 094700;210.110000;210.110000;210.042000;210.068000;0 +20260227 094800;210.069000;210.152000;210.066000;210.142000;0 +20260227 094900;210.138000;210.138000;210.099000;210.108000;0 +20260227 095000;210.106000;210.136000;210.097000;210.123000;0 +20260227 095100;210.120000;210.161000;210.120000;210.135000;0 +20260227 095200;210.134000;210.151000;210.125000;210.142000;0 +20260227 095300;210.143000;210.185000;210.134000;210.180000;0 +20260227 095400;210.182000;210.186000;210.128000;210.128000;0 +20260227 095500;210.130000;210.161000;210.119000;210.151000;0 +20260227 095600;210.152000;210.161000;210.129000;210.158000;0 +20260227 095700;210.159000;210.167000;210.065000;210.076000;0 +20260227 095800;210.077000;210.087000;210.051000;210.073000;0 +20260227 095900;210.074000;210.077000;210.037000;210.056000;0 +20260227 100000;210.055000;210.106000;210.036000;210.061000;0 +20260227 100100;210.065000;210.068000;210.025000;210.037000;0 +20260227 100200;210.045000;210.045000;209.981000;210.017000;0 +20260227 100300;210.016000;210.037000;209.986000;209.989000;0 +20260227 100400;209.986000;210.019000;209.973000;210.008000;0 +20260227 100500;210.009000;210.047000;210.007000;210.033000;0 +20260227 100600;210.034000;210.042000;209.996000;210.013000;0 +20260227 100700;210.012000;210.053000;210.009000;210.050000;0 +20260227 100800;210.050000;210.101000;210.041000;210.068000;0 +20260227 100900;210.068000;210.071000;210.020000;210.034000;0 +20260227 101000;210.034000;210.047000;210.017000;210.029000;0 +20260227 101100;210.030000;210.091000;210.028000;210.084000;0 +20260227 101200;210.084000;210.105000;210.063000;210.087000;0 +20260227 101300;210.087000;210.102000;210.031000;210.037000;0 +20260227 101400;210.039000;210.061000;210.016000;210.016000;0 +20260227 101500;210.017000;210.066000;210.016000;210.047000;0 +20260227 101600;210.046000;210.049000;210.005000;210.034000;0 +20260227 101700;210.033000;210.049000;209.989000;210.014000;0 +20260227 101800;210.010000;210.039000;209.995000;210.011000;0 +20260227 101900;210.008000;210.061000;209.999000;210.054000;0 +20260227 102000;210.057000;210.085000;210.041000;210.045000;0 +20260227 102100;210.047000;210.070000;210.047000;210.068000;0 +20260227 102200;210.058000;210.098000;210.045000;210.045000;0 +20260227 102300;210.046000;210.114000;210.046000;210.109000;0 +20260227 102400;210.109000;210.132000;210.099000;210.122000;0 +20260227 102500;210.122000;210.136000;210.079000;210.100000;0 +20260227 102600;210.101000;210.110000;210.073000;210.081000;0 +20260227 102700;210.082000;210.107000;210.076000;210.078000;0 +20260227 102800;210.080000;210.103000;210.079000;210.081000;0 +20260227 102900;210.083000;210.095000;210.067000;210.072000;0 +20260227 103000;210.071000;210.128000;210.067000;210.128000;0 +20260227 103100;210.128000;210.154000;210.098000;210.126000;0 +20260227 103200;210.125000;210.127000;210.099000;210.105000;0 +20260227 103300;210.103000;210.110000;210.077000;210.099000;0 +20260227 103400;210.100000;210.103000;210.070000;210.079000;0 +20260227 103500;210.080000;210.083000;210.052000;210.052000;0 +20260227 103600;210.051000;210.057000;210.023000;210.046000;0 +20260227 103700;210.048000;210.100000;210.048000;210.080000;0 +20260227 103800;210.080000;210.137000;210.080000;210.128000;0 +20260227 103900;210.125000;210.138000;210.098000;210.112000;0 +20260227 104000;210.114000;210.149000;210.088000;210.123000;0 +20260227 104100;210.123000;210.128000;210.102000;210.125000;0 +20260227 104200;210.124000;210.137000;210.101000;210.137000;0 +20260227 104300;210.136000;210.145000;210.088000;210.091000;0 +20260227 104400;210.093000;210.100000;210.058000;210.058000;0 +20260227 104500;210.069000;210.115000;210.051000;210.086000;0 +20260227 104600;210.087000;210.104000;210.063000;210.076000;0 +20260227 104700;210.076000;210.085000;210.042000;210.075000;0 +20260227 104800;210.079000;210.100000;210.046000;210.080000;0 +20260227 104900;210.081000;210.110000;210.059000;210.077000;0 +20260227 105000;210.076000;210.097000;209.987000;210.002000;0 +20260227 105100;210.003000;210.012000;209.958000;209.973000;0 +20260227 105200;209.970000;210.083000;209.939000;209.969000;0 +20260227 105300;209.969000;209.981000;209.940000;209.956000;0 +20260227 105400;209.956000;209.986000;209.936000;209.941000;0 +20260227 105500;209.942000;210.007000;209.942000;210.006000;0 +20260227 105600;210.006000;210.032000;209.987000;209.996000;0 +20260227 105700;209.994000;210.008000;209.937000;209.939000;0 +20260227 105800;209.939000;209.942000;209.880000;209.893000;0 +20260227 105900;209.893000;209.911000;209.809000;209.809000;0 +20260227 110000;209.808000;209.863000;209.796000;209.851000;0 +20260227 110100;209.852000;209.874000;209.838000;209.868000;0 +20260227 110200;209.871000;209.908000;209.860000;209.871000;0 +20260227 110300;209.870000;209.922000;209.870000;209.901000;0 +20260227 110400;209.902000;209.924000;209.901000;209.914000;0 +20260227 110500;209.918000;209.935000;209.892000;209.901000;0 +20260227 110600;209.900000;209.929000;209.887000;209.896000;0 +20260227 110700;209.898000;209.917000;209.892000;209.896000;0 +20260227 110800;209.895000;209.907000;209.872000;209.877000;0 +20260227 110900;209.874000;209.889000;209.819000;209.820000;0 +20260227 111000;209.819000;209.851000;209.807000;209.818000;0 +20260227 111100;209.817000;209.824000;209.792000;209.813000;0 +20260227 111200;209.816000;209.859000;209.816000;209.825000;0 +20260227 111300;209.827000;209.910000;209.826000;209.906000;0 +20260227 111400;209.906000;209.972000;209.904000;209.949000;0 +20260227 111500;209.951000;210.010000;209.945000;210.008000;0 +20260227 111600;210.007000;210.008000;209.977000;210.001000;0 +20260227 111700;210.002000;210.032000;210.000000;210.032000;0 +20260227 111800;210.028000;210.047000;210.024000;210.038000;0 +20260227 111900;210.038000;210.066000;210.033000;210.062000;0 +20260227 112000;210.062000;210.068000;210.040000;210.049000;0 +20260227 112100;210.047000;210.072000;210.041000;210.048000;0 +20260227 112200;210.049000;210.061000;210.036000;210.060000;0 +20260227 112300;210.058000;210.062000;210.035000;210.041000;0 +20260227 112400;210.043000;210.067000;210.026000;210.067000;0 +20260227 112500;210.066000;210.077000;210.059000;210.074000;0 +20260227 112600;210.074000;210.084000;210.061000;210.065000;0 +20260227 112700;210.066000;210.102000;210.060000;210.089000;0 +20260227 112800;210.088000;210.090000;210.036000;210.049000;0 +20260227 112900;210.048000;210.057000;210.038000;210.039000;0 +20260227 113000;210.037000;210.050000;210.030000;210.046000;0 +20260227 113100;210.043000;210.072000;210.038000;210.072000;0 +20260227 113200;210.074000;210.079000;210.050000;210.076000;0 +20260227 113300;210.081000;210.085000;210.065000;210.065000;0 +20260227 113400;210.065000;210.073000;210.042000;210.042000;0 +20260227 113500;210.042000;210.082000;210.005000;210.074000;0 +20260227 113600;210.075000;210.099000;210.038000;210.053000;0 +20260227 113700;210.056000;210.056000;210.009000;210.017000;0 +20260227 113800;210.019000;210.054000;210.011000;210.038000;0 +20260227 113900;210.052000;210.059000;210.030000;210.047000;0 +20260227 114000;210.044000;210.046000;209.991000;210.022000;0 +20260227 114100;210.018000;210.037000;210.004000;210.032000;0 +20260227 114200;210.033000;210.043000;210.004000;210.010000;0 +20260227 114300;210.011000;210.012000;209.978000;209.991000;0 +20260227 114400;209.992000;210.004000;209.962000;209.973000;0 +20260227 114500;209.973000;209.975000;209.959000;209.967000;0 +20260227 114600;209.968000;210.021000;209.964000;210.001000;0 +20260227 114700;209.999000;210.007000;209.973000;209.983000;0 +20260227 114800;209.984000;209.999000;209.960000;209.969000;0 +20260227 114900;209.971000;209.982000;209.959000;209.978000;0 +20260227 115000;209.973000;209.999000;209.973000;209.998000;0 +20260227 115100;210.000000;210.023000;209.991000;210.009000;0 +20260227 115200;210.008000;210.015000;209.979000;209.987000;0 +20260227 115300;209.989000;209.990000;209.957000;209.984000;0 +20260227 115400;209.982000;209.991000;209.964000;209.965000;0 +20260227 115500;209.964000;209.973000;209.938000;209.945000;0 +20260227 115600;209.950000;209.959000;209.942000;209.948000;0 +20260227 115700;209.946000;209.992000;209.945000;209.982000;0 +20260227 115800;209.985000;209.987000;209.959000;209.969000;0 +20260227 115900;209.972000;209.972000;209.958000;209.962000;0 +20260227 120000;209.962000;209.968000;209.938000;209.959000;0 +20260227 120100;209.957000;209.972000;209.930000;209.970000;0 +20260227 120200;209.973000;209.986000;209.940000;209.946000;0 +20260227 120300;209.946000;209.954000;209.927000;209.938000;0 +20260227 120400;209.936000;209.956000;209.936000;209.951000;0 +20260227 120500;209.953000;209.954000;209.932000;209.950000;0 +20260227 120600;209.951000;209.968000;209.949000;209.956000;0 +20260227 120700;209.957000;209.993000;209.957000;209.992000;0 +20260227 120800;209.993000;210.004000;209.983000;209.991000;0 +20260227 120900;209.991000;210.017000;209.984000;210.002000;0 +20260227 121000;209.998000;210.001000;209.972000;209.978000;0 +20260227 121100;209.979000;210.003000;209.954000;210.000000;0 +20260227 121200;209.997000;209.998000;209.981000;209.991000;0 +20260227 121300;209.989000;210.008000;209.984000;209.998000;0 +20260227 121400;209.999000;210.010000;209.987000;210.008000;0 +20260227 121500;210.007000;210.013000;210.001000;210.012000;0 +20260227 121600;210.010000;210.035000;210.001000;210.022000;0 +20260227 121700;210.021000;210.040000;210.020000;210.033000;0 +20260227 121800;210.034000;210.047000;210.030000;210.035000;0 +20260227 121900;210.034000;210.044000;210.021000;210.021000;0 +20260227 122000;210.026000;210.031000;210.000000;210.006000;0 +20260227 122100;210.002000;210.037000;209.998000;210.024000;0 +20260227 122200;210.025000;210.026000;209.970000;209.980000;0 +20260227 122300;209.984000;210.028000;209.973000;210.027000;0 +20260227 122400;210.024000;210.024000;209.985000;210.015000;0 +20260227 122500;210.015000;210.038000;209.976000;209.978000;0 +20260227 122600;209.978000;210.012000;209.969000;210.012000;0 +20260227 122700;210.009000;210.011000;209.990000;209.993000;0 +20260227 122800;209.993000;210.012000;209.993000;210.010000;0 +20260227 122900;210.010000;210.034000;210.006000;210.010000;0 +20260227 123000;210.011000;210.046000;209.987000;210.005000;0 +20260227 123100;210.006000;210.043000;209.972000;210.018000;0 +20260227 123200;210.019000;210.052000;210.009000;210.044000;0 +20260227 123300;210.043000;210.057000;210.010000;210.044000;0 +20260227 123400;210.045000;210.051000;210.016000;210.047000;0 +20260227 123500;210.044000;210.052000;210.020000;210.042000;0 +20260227 123600;210.042000;210.045000;209.980000;209.986000;0 +20260227 123700;209.987000;209.997000;209.961000;209.974000;0 +20260227 123800;209.975000;209.999000;209.974000;209.988000;0 +20260227 123900;209.989000;210.002000;209.957000;209.962000;0 +20260227 124000;209.961000;209.976000;209.957000;209.965000;0 +20260227 124100;209.964000;209.973000;209.952000;209.952000;0 +20260227 124200;209.953000;209.960000;209.924000;209.929000;0 +20260227 124300;209.940000;209.990000;209.935000;209.990000;0 +20260227 124400;209.988000;210.011000;209.982000;210.009000;0 +20260227 124500;210.011000;210.016000;209.990000;209.991000;0 +20260227 124600;209.992000;209.998000;209.978000;209.993000;0 +20260227 124700;209.994000;209.996000;209.967000;209.978000;0 +20260227 124800;209.979000;209.993000;209.977000;209.990000;0 +20260227 124900;209.985000;209.994000;209.977000;209.989000;0 +20260227 125000;209.985000;209.993000;209.965000;209.965000;0 +20260227 125100;209.973000;209.975000;209.950000;209.964000;0 +20260227 125200;209.967000;209.967000;209.953000;209.967000;0 +20260227 125300;209.969000;209.981000;209.959000;209.981000;0 +20260227 125400;209.980000;210.000000;209.977000;209.999000;0 +20260227 125500;210.001000;210.033000;210.001000;210.030000;0 +20260227 125600;210.030000;210.045000;210.026000;210.034000;0 +20260227 125700;210.039000;210.048000;210.021000;210.023000;0 +20260227 125800;210.024000;210.040000;209.997000;210.038000;0 +20260227 125900;210.041000;210.064000;210.035000;210.043000;0 +20260227 130000;210.041000;210.076000;210.039000;210.061000;0 +20260227 130100;210.063000;210.077000;210.047000;210.062000;0 +20260227 130200;210.062000;210.086000;210.053000;210.081000;0 +20260227 130300;210.083000;210.097000;210.074000;210.076000;0 +20260227 130400;210.074000;210.088000;210.057000;210.060000;0 +20260227 130500;210.061000;210.064000;210.030000;210.030000;0 +20260227 130600;210.027000;210.081000;210.026000;210.076000;0 +20260227 130700;210.076000;210.080000;210.070000;210.077000;0 +20260227 130800;210.077000;210.084000;210.063000;210.081000;0 +20260227 130900;210.080000;210.111000;210.080000;210.107000;0 +20260227 131000;210.106000;210.129000;210.105000;210.126000;0 +20260227 131100;210.127000;210.150000;210.122000;210.132000;0 +20260227 131200;210.131000;210.139000;210.106000;210.117000;0 +20260227 131300;210.118000;210.125000;210.110000;210.124000;0 +20260227 131400;210.123000;210.130000;210.118000;210.130000;0 +20260227 131500;210.131000;210.162000;210.115000;210.159000;0 +20260227 131600;210.158000;210.159000;210.133000;210.148000;0 +20260227 131700;210.149000;210.162000;210.144000;210.145000;0 +20260227 131800;210.143000;210.145000;210.114000;210.130000;0 +20260227 131900;210.129000;210.129000;210.102000;210.103000;0 +20260227 132000;210.104000;210.108000;210.081000;210.106000;0 +20260227 132100;210.106000;210.133000;210.106000;210.114000;0 +20260227 132200;210.114000;210.145000;210.105000;210.139000;0 +20260227 132300;210.139000;210.143000;210.129000;210.143000;0 +20260227 132400;210.139000;210.157000;210.134000;210.154000;0 +20260227 132500;210.157000;210.157000;210.134000;210.142000;0 +20260227 132600;210.141000;210.158000;210.141000;210.150000;0 +20260227 132700;210.147000;210.168000;210.132000;210.166000;0 +20260227 132800;210.165000;210.171000;210.158000;210.160000;0 +20260227 132900;210.159000;210.173000;210.142000;210.169000;0 +20260227 133000;210.169000;210.190000;210.154000;210.187000;0 +20260227 133100;210.189000;210.197000;210.175000;210.181000;0 +20260227 133200;210.180000;210.180000;210.152000;210.155000;0 +20260227 133300;210.154000;210.167000;210.134000;210.147000;0 +20260227 133400;210.145000;210.146000;210.124000;210.126000;0 +20260227 133500;210.125000;210.150000;210.118000;210.119000;0 +20260227 133600;210.118000;210.150000;210.115000;210.139000;0 +20260227 133700;210.141000;210.148000;210.113000;210.145000;0 +20260227 133800;210.146000;210.156000;210.140000;210.156000;0 +20260227 133900;210.156000;210.160000;210.141000;210.141000;0 +20260227 134000;210.142000;210.155000;210.125000;210.152000;0 +20260227 134100;210.150000;210.154000;210.139000;210.153000;0 +20260227 134200;210.154000;210.189000;210.150000;210.189000;0 +20260227 134300;210.187000;210.190000;210.176000;210.186000;0 +20260227 134400;210.186000;210.187000;210.166000;210.177000;0 +20260227 134500;210.175000;210.204000;210.172000;210.177000;0 +20260227 134600;210.177000;210.187000;210.171000;210.175000;0 +20260227 134700;210.170000;210.175000;210.152000;210.171000;0 +20260227 134800;210.168000;210.168000;210.150000;210.162000;0 +20260227 134900;210.161000;210.161000;210.141000;210.154000;0 +20260227 135000;210.154000;210.158000;210.140000;210.144000;0 +20260227 135100;210.149000;210.168000;210.144000;210.160000;0 +20260227 135200;210.160000;210.184000;210.160000;210.184000;0 +20260227 135300;210.182000;210.197000;210.173000;210.183000;0 +20260227 135400;210.184000;210.190000;210.155000;210.168000;0 +20260227 135500;210.167000;210.187000;210.167000;210.185000;0 +20260227 135600;210.183000;210.194000;210.183000;210.188000;0 +20260227 135700;210.188000;210.188000;210.168000;210.182000;0 +20260227 135800;210.175000;210.181000;210.163000;210.173000;0 +20260227 135900;210.174000;210.196000;210.174000;210.187000;0 +20260227 140000;210.185000;210.194000;210.173000;210.184000;0 +20260227 140100;210.186000;210.193000;210.169000;210.177000;0 +20260227 140200;210.177000;210.189000;210.162000;210.169000;0 +20260227 140300;210.170000;210.173000;210.149000;210.155000;0 +20260227 140400;210.153000;210.169000;210.153000;210.158000;0 +20260227 140500;210.161000;210.162000;210.145000;210.148000;0 +20260227 140600;210.149000;210.183000;210.144000;210.182000;0 +20260227 140700;210.184000;210.184000;210.166000;210.166000;0 +20260227 140800;210.164000;210.171000;210.159000;210.166000;0 +20260227 140900;210.166000;210.167000;210.147000;210.155000;0 +20260227 141000;210.159000;210.168000;210.144000;210.144000;0 +20260227 141100;210.146000;210.157000;210.137000;210.152000;0 +20260227 141200;210.153000;210.165000;210.142000;210.146000;0 +20260227 141300;210.144000;210.159000;210.144000;210.155000;0 +20260227 141400;210.153000;210.154000;210.134000;210.134000;0 +20260227 141500;210.128000;210.134000;210.111000;210.120000;0 +20260227 141600;210.119000;210.121000;210.112000;210.115000;0 +20260227 141700;210.116000;210.146000;210.108000;210.121000;0 +20260227 141800;210.126000;210.133000;210.119000;210.132000;0 +20260227 141900;210.134000;210.134000;210.102000;210.124000;0 +20260227 142000;210.134000;210.153000;210.117000;210.153000;0 +20260227 142100;210.154000;210.154000;210.134000;210.147000;0 +20260227 142200;210.146000;210.146000;210.114000;210.118000;0 +20260227 142300;210.117000;210.141000;210.113000;210.130000;0 +20260227 142400;210.129000;210.131000;210.117000;210.125000;0 +20260227 142500;210.124000;210.155000;210.123000;210.133000;0 +20260227 142600;210.132000;210.142000;210.131000;210.136000;0 +20260227 142700;210.138000;210.157000;210.134000;210.156000;0 +20260227 142800;210.156000;210.163000;210.145000;210.145000;0 +20260227 142900;210.146000;210.165000;210.146000;210.165000;0 +20260227 143000;210.165000;210.167000;210.144000;210.161000;0 +20260227 143100;210.161000;210.173000;210.143000;210.173000;0 +20260227 143200;210.175000;210.190000;210.155000;210.157000;0 +20260227 143300;210.155000;210.201000;210.155000;210.195000;0 +20260227 143400;210.194000;210.229000;210.191000;210.214000;0 +20260227 143500;210.214000;210.222000;210.212000;210.215000;0 +20260227 143600;210.213000;210.215000;210.212000;210.214000;0 +20260227 143700;210.215000;210.223000;210.212000;210.222000;0 +20260227 143800;210.222000;210.240000;210.222000;210.235000;0 +20260227 143900;210.238000;210.249000;210.232000;210.234000;0 +20260227 144000;210.230000;210.237000;210.214000;210.215000;0 +20260227 144100;210.214000;210.243000;210.208000;210.241000;0 +20260227 144200;210.241000;210.243000;210.222000;210.242000;0 +20260227 144300;210.237000;210.242000;210.230000;210.231000;0 +20260227 144400;210.233000;210.243000;210.224000;210.228000;0 +20260227 144500;210.229000;210.247000;210.220000;210.245000;0 +20260227 144600;210.246000;210.246000;210.219000;210.224000;0 +20260227 144700;210.217000;210.228000;210.206000;210.225000;0 +20260227 144800;210.225000;210.230000;210.212000;210.226000;0 +20260227 144900;210.226000;210.228000;210.214000;210.216000;0 +20260227 145000;210.216000;210.224000;210.203000;210.221000;0 +20260227 145100;210.223000;210.246000;210.220000;210.246000;0 +20260227 145200;210.247000;210.268000;210.247000;210.266000;0 +20260227 145300;210.265000;210.288000;210.265000;210.283000;0 +20260227 145400;210.282000;210.302000;210.271000;210.277000;0 +20260227 145500;210.274000;210.287000;210.266000;210.284000;0 +20260227 145600;210.284000;210.310000;210.281000;210.299000;0 +20260227 145700;210.300000;210.318000;210.275000;210.313000;0 +20260227 145800;210.313000;210.313000;210.277000;210.296000;0 +20260227 145900;210.293000;210.324000;210.287000;210.320000;0 +20260227 150000;210.319000;210.348000;210.315000;210.345000;0 +20260227 150100;210.344000;210.345000;210.309000;210.312000;0 +20260227 150200;210.320000;210.341000;210.320000;210.338000;0 +20260227 150300;210.342000;210.346000;210.332000;210.339000;0 +20260227 150400;210.343000;210.344000;210.311000;210.319000;0 +20260227 150500;210.318000;210.331000;210.314000;210.322000;0 +20260227 150600;210.323000;210.336000;210.315000;210.318000;0 +20260227 150700;210.318000;210.318000;210.301000;210.315000;0 +20260227 150800;210.317000;210.317000;210.306000;210.314000;0 +20260227 150900;210.316000;210.317000;210.300000;210.317000;0 +20260227 151000;210.313000;210.330000;210.312000;210.330000;0 +20260227 151100;210.336000;210.339000;210.326000;210.337000;0 +20260227 151200;210.337000;210.358000;210.337000;210.357000;0 +20260227 151300;210.356000;210.360000;210.350000;210.350000;0 +20260227 151400;210.353000;210.368000;210.353000;210.359000;0 +20260227 151500;210.359000;210.371000;210.355000;210.369000;0 +20260227 151600;210.368000;210.383000;210.363000;210.374000;0 +20260227 151700;210.383000;210.397000;210.383000;210.396000;0 +20260227 151800;210.397000;210.403000;210.390000;210.393000;0 +20260227 151900;210.396000;210.412000;210.396000;210.397000;0 +20260227 152000;210.396000;210.403000;210.393000;210.402000;0 +20260227 152100;210.398000;210.414000;210.397000;210.407000;0 +20260227 152200;210.410000;210.453000;210.408000;210.444000;0 +20260227 152300;210.443000;210.448000;210.435000;210.448000;0 +20260227 152400;210.448000;210.466000;210.440000;210.451000;0 +20260227 152500;210.451000;210.464000;210.432000;210.439000;0 +20260227 152600;210.436000;210.484000;210.436000;210.484000;0 +20260227 152700;210.484000;210.484000;210.440000;210.446000;0 +20260227 152800;210.442000;210.452000;210.435000;210.435000;0 +20260227 152900;210.437000;210.445000;210.427000;210.441000;0 +20260227 153000;210.438000;210.465000;210.438000;210.449000;0 +20260227 153100;210.456000;210.460000;210.435000;210.442000;0 +20260227 153200;210.439000;210.439000;210.422000;210.427000;0 +20260227 153300;210.428000;210.430000;210.412000;210.413000;0 +20260227 153400;210.412000;210.412000;210.399000;210.400000;0 +20260227 153500;210.402000;210.422000;210.402000;210.408000;0 +20260227 153600;210.413000;210.416000;210.397000;210.397000;0 +20260227 153700;210.399000;210.405000;210.381000;210.405000;0 +20260227 153800;210.405000;210.407000;210.391000;210.398000;0 +20260227 153900;210.397000;210.418000;210.376000;210.379000;0 +20260227 154000;210.378000;210.400000;210.368000;210.400000;0 +20260227 154100;210.395000;210.397000;210.370000;210.372000;0 +20260227 154200;210.373000;210.384000;210.373000;210.375000;0 +20260227 154300;210.379000;210.400000;210.378000;210.400000;0 +20260227 154400;210.398000;210.418000;210.388000;210.418000;0 +20260227 154500;210.414000;210.425000;210.408000;210.425000;0 +20260227 154600;210.425000;210.427000;210.408000;210.425000;0 +20260227 154700;210.424000;210.441000;210.418000;210.429000;0 +20260227 154800;210.424000;210.436000;210.416000;210.428000;0 +20260227 154900;210.431000;210.431000;210.406000;210.413000;0 +20260227 155000;210.416000;210.431000;210.414000;210.419000;0 +20260227 155100;210.416000;210.419000;210.407000;210.416000;0 +20260227 155200;210.415000;210.427000;210.412000;210.412000;0 +20260227 155300;210.413000;210.434000;210.412000;210.414000;0 +20260227 155400;210.415000;210.429000;210.413000;210.413000;0 +20260227 155500;210.415000;210.445000;210.405000;210.442000;0 +20260227 155600;210.441000;210.477000;210.441000;210.466000;0 +20260227 155700;210.465000;210.479000;210.441000;210.469000;0 +20260227 155800;210.470000;210.480000;210.458000;210.476000;0 +20260227 155900;210.479000;210.484000;210.440000;210.478000;0 +20260227 160000;210.482000;210.482000;210.412000;210.424000;0 +20260227 160100;210.424000;210.456000;210.424000;210.451000;0 +20260227 160200;210.452000;210.463000;210.422000;210.445000;0 +20260227 160300;210.445000;210.452000;210.441000;210.450000;0 +20260227 160400;210.447000;210.472000;210.447000;210.456000;0 +20260227 160500;210.462000;210.462000;210.439000;210.440000;0 +20260227 160600;210.438000;210.451000;210.436000;210.441000;0 +20260227 160700;210.445000;210.445000;210.426000;210.428000;0 +20260227 160800;210.423000;210.423000;210.410000;210.419000;0 +20260227 160900;210.420000;210.427000;210.416000;210.427000;0 +20260227 161000;210.426000;210.434000;210.411000;210.432000;0 +20260227 161100;210.428000;210.428000;210.410000;210.411000;0 +20260227 161200;210.414000;210.435000;210.413000;210.428000;0 +20260227 161300;210.426000;210.437000;210.425000;210.435000;0 +20260227 161400;210.434000;210.436000;210.409000;210.409000;0 +20260227 161500;210.409000;210.431000;210.409000;210.430000;0 +20260227 161600;210.431000;210.432000;210.416000;210.432000;0 +20260227 161700;210.434000;210.451000;210.428000;210.430000;0 +20260227 161800;210.428000;210.428000;210.413000;210.417000;0 +20260227 161900;210.419000;210.419000;210.388000;210.388000;0 +20260227 162000;210.386000;210.400000;210.385000;210.390000;0 +20260227 162100;210.388000;210.390000;210.372000;210.388000;0 +20260227 162200;210.393000;210.404000;210.388000;210.390000;0 +20260227 162300;210.388000;210.392000;210.374000;210.375000;0 +20260227 162400;210.373000;210.383000;210.371000;210.372000;0 +20260227 162500;210.373000;210.390000;210.321000;210.325000;0 +20260227 162600;210.324000;210.324000;210.307000;210.312000;0 +20260227 162700;210.314000;210.331000;210.308000;210.326000;0 +20260227 162800;210.325000;210.335000;210.314000;210.315000;0 +20260227 162900;210.311000;210.311000;210.285000;210.285000;0 +20260227 163000;210.285000;210.286000;210.259000;210.277000;0 +20260227 163100;210.280000;210.288000;210.276000;210.287000;0 +20260227 163200;210.287000;210.346000;210.283000;210.342000;0 +20260227 163300;210.342000;210.383000;210.342000;210.383000;0 +20260227 163400;210.383000;210.384000;210.376000;210.378000;0 +20260227 163500;210.377000;210.380000;210.349000;210.380000;0 +20260227 163600;210.378000;210.396000;210.378000;210.388000;0 +20260227 163700;210.385000;210.390000;210.382000;210.387000;0 +20260227 163800;210.381000;210.395000;210.381000;210.389000;0 +20260227 163900;210.387000;210.390000;210.374000;210.374000;0 +20260227 164000;210.376000;210.394000;210.376000;210.390000;0 +20260227 164100;210.388000;210.412000;210.388000;210.408000;0 +20260227 164200;210.410000;210.415000;210.395000;210.411000;0 +20260227 164300;210.410000;210.410000;210.397000;210.403000;0 +20260227 164400;210.404000;210.410000;210.392000;210.406000;0 +20260227 164500;210.402000;210.416000;210.342000;210.342000;0 +20260227 164600;210.344000;210.359000;210.325000;210.331000;0 +20260227 164700;210.334000;210.339000;210.318000;210.334000;0 +20260227 164800;210.343000;210.350000;210.334000;210.340000;0 +20260227 164900;210.337000;210.348000;210.323000;210.331000;0 +20260227 165000;210.328000;210.348000;210.310000;210.346000;0 +20260227 165100;210.343000;210.364000;210.339000;210.363000;0 +20260227 165200;210.364000;210.364000;210.309000;210.318000;0 +20260227 165300;210.321000;210.354000;210.311000;210.354000;0 +20260227 165400;210.357000;210.473000;210.352000;210.436000;0 +20260227 165500;210.431000;210.451000;210.389000;210.411000;0 +20260227 165600;210.413000;210.432000;210.382000;210.409000;0 +20260227 165700;210.410000;210.418000;210.356000;210.387000;0 +20260227 165800;210.383000;210.474000;210.376000;210.401000;0 diff --git a/backend/data/data.csv b/backend/data/gbpjpy_jan.csv similarity index 100% rename from backend/data/data.csv rename to backend/data/gbpjpy_jan.csv diff --git a/backend/data/gbpjpy_mars.csv b/backend/data/gbpjpy_mars.csv new file mode 100644 index 0000000..e84daec --- /dev/null +++ b/backend/data/gbpjpy_mars.csv @@ -0,0 +1,31930 @@ +20260301 170200;209.125000;209.125000;209.125000;209.125000;0 +20260301 170400;209.243000;209.317000;209.192000;209.305000;0 +20260301 170500;209.295000;209.296000;209.269000;209.269000;0 +20260301 170600;209.269000;209.315000;209.260000;209.314000;0 +20260301 170700;209.315000;209.402000;209.293000;209.323000;0 +20260301 170800;209.342000;209.365000;209.307000;209.365000;0 +20260301 170900;209.393000;209.468000;209.369000;209.371000;0 +20260301 171000;209.371000;209.455000;209.365000;209.455000;0 +20260301 171100;209.455000;209.537000;209.454000;209.522000;0 +20260301 171200;209.522000;209.547000;209.429000;209.536000;0 +20260301 171300;209.537000;209.541000;209.532000;209.541000;0 +20260301 171400;209.542000;209.543000;209.537000;209.537000;0 +20260301 171500;209.537000;209.540000;209.537000;209.539000;0 +20260301 171600;209.540000;209.547000;209.501000;209.547000;0 +20260301 171700;209.546000;209.576000;209.539000;209.575000;0 +20260301 171800;209.577000;209.611000;209.566000;209.611000;0 +20260301 171900;209.624000;209.624000;209.624000;209.624000;0 +20260301 172000;209.579000;209.598000;209.579000;209.598000;0 +20260301 172100;209.586000;209.597000;209.584000;209.587000;0 +20260301 172200;209.586000;209.609000;209.541000;209.584000;0 +20260301 172300;209.557000;209.596000;209.551000;209.567000;0 +20260301 172400;209.564000;209.585000;209.564000;209.567000;0 +20260301 172500;209.575000;209.575000;209.566000;209.568000;0 +20260301 172600;209.571000;209.578000;209.570000;209.570000;0 +20260301 172700;209.576000;209.591000;209.532000;209.591000;0 +20260301 172800;209.590000;209.600000;209.589000;209.591000;0 +20260301 172900;209.590000;209.594000;209.534000;209.584000;0 +20260301 173000;209.595000;209.617000;209.584000;209.609000;0 +20260301 173100;209.612000;209.639000;209.598000;209.639000;0 +20260301 173200;209.639000;209.639000;209.595000;209.599000;0 +20260301 173300;209.598000;209.603000;209.577000;209.587000;0 +20260301 173400;209.599000;209.599000;209.567000;209.579000;0 +20260301 173500;209.578000;209.610000;209.567000;209.591000;0 +20260301 173600;209.581000;209.591000;209.538000;209.543000;0 +20260301 173700;209.555000;209.555000;209.460000;209.479000;0 +20260301 173800;209.480000;209.486000;209.464000;209.464000;0 +20260301 173900;209.472000;209.495000;209.460000;209.485000;0 +20260301 174000;209.489000;209.545000;209.448000;209.505000;0 +20260301 174100;209.507000;209.545000;209.488000;209.545000;0 +20260301 174200;209.554000;209.560000;209.539000;209.539000;0 +20260301 174300;209.515000;209.546000;209.507000;209.541000;0 +20260301 174400;209.542000;209.545000;209.541000;209.544000;0 +20260301 174500;209.544000;209.544000;209.477000;209.515000;0 +20260301 174600;209.515000;209.515000;209.451000;209.451000;0 +20260301 174700;209.469000;209.494000;209.430000;209.439000;0 +20260301 174800;209.440000;209.458000;209.427000;209.433000;0 +20260301 174900;209.433000;209.481000;209.419000;209.452000;0 +20260301 175000;209.452000;209.476000;209.408000;209.408000;0 +20260301 175100;209.408000;209.478000;209.397000;209.437000;0 +20260301 175200;209.437000;209.440000;209.422000;209.431000;0 +20260301 175300;209.431000;209.443000;209.411000;209.431000;0 +20260301 175400;209.442000;209.442000;209.431000;209.431000;0 +20260301 175500;209.441000;209.477000;209.431000;209.432000;0 +20260301 175600;209.432000;209.475000;209.432000;209.435000;0 +20260301 175700;209.433000;209.433000;209.433000;209.433000;0 +20260301 175800;209.463000;209.484000;209.418000;209.428000;0 +20260301 175900;209.470000;209.471000;209.403000;209.403000;0 +20260301 180000;209.386000;209.674000;209.386000;209.658000;0 +20260301 180100;209.658000;209.743000;209.624000;209.714000;0 +20260301 180200;209.720000;209.725000;209.673000;209.674000;0 +20260301 180300;209.673000;209.732000;209.602000;209.615000;0 +20260301 180400;209.625000;209.681000;209.600000;209.648000;0 +20260301 180500;209.650000;209.691000;209.636000;209.669000;0 +20260301 180600;209.669000;209.764000;209.668000;209.756000;0 +20260301 180700;209.767000;209.848000;209.757000;209.761000;0 +20260301 180800;209.765000;209.915000;209.751000;209.883000;0 +20260301 180900;209.884000;209.915000;209.866000;209.914000;0 +20260301 181000;209.910000;209.962000;209.905000;209.936000;0 +20260301 181100;209.937000;209.999000;209.936000;209.984000;0 +20260301 181200;209.982000;209.996000;209.965000;209.989000;0 +20260301 181300;209.990000;209.999000;209.933000;209.959000;0 +20260301 181400;209.960000;209.963000;209.858000;209.900000;0 +20260301 181500;209.902000;209.933000;209.872000;209.893000;0 +20260301 181600;209.894000;209.929000;209.879000;209.896000;0 +20260301 181700;209.894000;209.923000;209.893000;209.901000;0 +20260301 181800;209.901000;209.915000;209.886000;209.905000;0 +20260301 181900;209.904000;209.912000;209.851000;209.856000;0 +20260301 182000;209.858000;209.894000;209.839000;209.884000;0 +20260301 182100;209.885000;209.920000;209.884000;209.897000;0 +20260301 182200;209.903000;209.929000;209.859000;209.916000;0 +20260301 182300;209.916000;209.949000;209.880000;209.947000;0 +20260301 182400;209.946000;210.006000;209.935000;209.974000;0 +20260301 182500;209.972000;210.009000;209.972000;209.985000;0 +20260301 182600;209.987000;210.012000;209.906000;209.920000;0 +20260301 182700;209.917000;209.932000;209.873000;209.887000;0 +20260301 182800;209.888000;209.914000;209.860000;209.909000;0 +20260301 182900;209.909000;209.952000;209.869000;209.899000;0 +20260301 183000;209.900000;209.924000;209.852000;209.881000;0 +20260301 183100;209.882000;209.900000;209.844000;209.885000;0 +20260301 183200;209.886000;209.900000;209.857000;209.870000;0 +20260301 183300;209.866000;209.946000;209.866000;209.910000;0 +20260301 183400;209.905000;209.935000;209.872000;209.880000;0 +20260301 183500;209.880000;209.906000;209.870000;209.871000;0 +20260301 183600;209.870000;209.893000;209.863000;209.886000;0 +20260301 183700;209.884000;209.911000;209.870000;209.889000;0 +20260301 183800;209.894000;209.905000;209.851000;209.858000;0 +20260301 183900;209.858000;209.885000;209.857000;209.877000;0 +20260301 184000;209.874000;209.909000;209.869000;209.869000;0 +20260301 184100;209.873000;209.889000;209.829000;209.835000;0 +20260301 184200;209.834000;209.851000;209.827000;209.834000;0 +20260301 184300;209.834000;209.844000;209.822000;209.844000;0 +20260301 184400;209.846000;210.055000;209.816000;210.055000;0 +20260301 184500;210.055000;210.059000;209.916000;209.951000;0 +20260301 184600;209.950000;210.002000;209.942000;209.970000;0 +20260301 184700;209.970000;210.002000;209.966000;209.980000;0 +20260301 184800;209.981000;210.034000;209.978000;209.994000;0 +20260301 184900;210.002000;210.030000;209.998000;210.012000;0 +20260301 185000;210.018000;210.032000;209.987000;209.989000;0 +20260301 185100;209.987000;210.006000;209.912000;209.915000;0 +20260301 185200;209.916000;209.955000;209.909000;209.953000;0 +20260301 185300;209.953000;209.984000;209.949000;209.958000;0 +20260301 185400;209.956000;209.991000;209.934000;209.962000;0 +20260301 185500;209.960000;209.976000;209.922000;209.949000;0 +20260301 185600;209.948000;209.962000;209.927000;209.955000;0 +20260301 185700;209.953000;209.984000;209.948000;209.984000;0 +20260301 185800;209.980000;209.997000;209.966000;209.971000;0 +20260301 185900;209.969000;209.992000;209.957000;209.962000;0 +20260301 190000;209.961000;209.976000;209.904000;209.929000;0 +20260301 190100;209.935000;210.033000;209.935000;210.005000;0 +20260301 190200;210.010000;210.091000;210.009000;210.048000;0 +20260301 190300;210.048000;210.067000;210.011000;210.037000;0 +20260301 190400;210.047000;210.088000;210.001000;210.006000;0 +20260301 190500;210.006000;210.075000;210.003000;210.070000;0 +20260301 190600;210.072000;210.101000;210.055000;210.100000;0 +20260301 190700;210.100000;210.157000;210.096000;210.113000;0 +20260301 190800;210.111000;210.135000;210.074000;210.078000;0 +20260301 190900;210.083000;210.107000;210.053000;210.054000;0 +20260301 191000;210.055000;210.124000;210.055000;210.073000;0 +20260301 191100;210.072000;210.082000;210.005000;210.009000;0 +20260301 191200;210.010000;210.019000;209.993000;210.009000;0 +20260301 191300;210.010000;210.037000;210.003000;210.025000;0 +20260301 191400;210.026000;210.040000;209.989000;210.010000;0 +20260301 191500;210.012000;210.048000;209.987000;210.015000;0 +20260301 191600;210.013000;210.028000;210.001000;210.010000;0 +20260301 191700;210.011000;210.015000;209.947000;209.954000;0 +20260301 191800;209.955000;209.957000;209.877000;209.878000;0 +20260301 191900;209.878000;209.912000;209.833000;209.912000;0 +20260301 192000;209.908000;209.923000;209.886000;209.908000;0 +20260301 192100;209.912000;209.917000;209.881000;209.892000;0 +20260301 192200;209.891000;209.916000;209.861000;209.869000;0 +20260301 192300;209.860000;209.905000;209.845000;209.880000;0 +20260301 192400;209.877000;209.907000;209.852000;209.862000;0 +20260301 192500;209.862000;209.872000;209.816000;209.854000;0 +20260301 192600;209.852000;209.875000;209.839000;209.840000;0 +20260301 192700;209.840000;209.858000;209.818000;209.831000;0 +20260301 192800;209.830000;209.846000;209.809000;209.828000;0 +20260301 192900;209.828000;209.843000;209.788000;209.803000;0 +20260301 193000;209.806000;209.924000;209.781000;209.920000;0 +20260301 193100;209.926000;209.937000;209.901000;209.919000;0 +20260301 193200;209.917000;209.942000;209.910000;209.931000;0 +20260301 193300;209.931000;209.961000;209.931000;209.938000;0 +20260301 193400;209.936000;209.992000;209.936000;209.984000;0 +20260301 193500;209.985000;209.992000;209.934000;209.936000;0 +20260301 193600;209.942000;209.978000;209.934000;209.963000;0 +20260301 193700;209.962000;209.996000;209.962000;209.991000;0 +20260301 193800;209.993000;209.998000;209.945000;209.955000;0 +20260301 193900;209.955000;209.980000;209.945000;209.964000;0 +20260301 194000;209.962000;209.990000;209.951000;209.980000;0 +20260301 194100;209.981000;210.023000;209.980000;210.016000;0 +20260301 194200;210.019000;210.054000;209.970000;209.978000;0 +20260301 194300;209.979000;209.979000;209.905000;209.905000;0 +20260301 194400;209.907000;209.930000;209.884000;209.911000;0 +20260301 194500;209.911000;209.945000;209.903000;209.921000;0 +20260301 194600;209.924000;209.946000;209.895000;209.922000;0 +20260301 194700;209.926000;209.927000;209.883000;209.911000;0 +20260301 194800;209.913000;209.941000;209.905000;209.931000;0 +20260301 194900;209.932000;209.932000;209.906000;209.907000;0 +20260301 195000;209.907000;209.949000;209.885000;209.885000;0 +20260301 195100;209.885000;209.908000;209.856000;209.875000;0 +20260301 195200;209.874000;209.885000;209.845000;209.855000;0 +20260301 195300;209.854000;209.937000;209.849000;209.908000;0 +20260301 195400;209.911000;210.031000;209.905000;210.007000;0 +20260301 195500;210.012000;210.035000;209.969000;210.018000;0 +20260301 195600;210.016000;210.074000;210.013000;210.069000;0 +20260301 195700;210.072000;210.100000;210.058000;210.096000;0 +20260301 195800;210.093000;210.129000;210.086000;210.129000;0 +20260301 195900;210.129000;210.132000;210.054000;210.073000;0 +20260301 200000;210.075000;210.210000;210.069000;210.205000;0 +20260301 200100;210.204000;210.314000;210.202000;210.288000;0 +20260301 200200;210.284000;210.295000;210.230000;210.240000;0 +20260301 200300;210.240000;210.260000;210.188000;210.259000;0 +20260301 200400;210.255000;210.326000;210.252000;210.322000;0 +20260301 200500;210.320000;210.346000;210.299000;210.324000;0 +20260301 200600;210.324000;210.360000;210.279000;210.341000;0 +20260301 200700;210.342000;210.385000;210.342000;210.345000;0 +20260301 200800;210.342000;210.391000;210.330000;210.353000;0 +20260301 200900;210.357000;210.392000;210.336000;210.350000;0 +20260301 201000;210.350000;210.432000;210.320000;210.419000;0 +20260301 201100;210.416000;210.461000;210.397000;210.445000;0 +20260301 201200;210.449000;210.455000;210.424000;210.443000;0 +20260301 201300;210.442000;210.447000;210.392000;210.398000;0 +20260301 201400;210.396000;210.399000;210.329000;210.337000;0 +20260301 201500;210.338000;210.345000;210.284000;210.306000;0 +20260301 201600;210.307000;210.322000;210.280000;210.315000;0 +20260301 201700;210.319000;210.319000;210.264000;210.295000;0 +20260301 201800;210.299000;210.314000;210.248000;210.278000;0 +20260301 201900;210.271000;210.319000;210.261000;210.303000;0 +20260301 202000;210.303000;210.326000;210.276000;210.303000;0 +20260301 202100;210.300000;210.305000;210.248000;210.254000;0 +20260301 202200;210.258000;210.261000;210.180000;210.196000;0 +20260301 202300;210.199000;210.212000;210.167000;210.173000;0 +20260301 202400;210.171000;210.171000;210.112000;210.126000;0 +20260301 202500;210.124000;210.192000;210.124000;210.153000;0 +20260301 202600;210.161000;210.187000;210.147000;210.166000;0 +20260301 202700;210.165000;210.203000;210.151000;210.202000;0 +20260301 202800;210.202000;210.217000;210.168000;210.174000;0 +20260301 202900;210.173000;210.220000;210.161000;210.204000;0 +20260301 203000;210.204000;210.264000;210.180000;210.232000;0 +20260301 203100;210.238000;210.247000;210.181000;210.197000;0 +20260301 203200;210.194000;210.220000;210.160000;210.206000;0 +20260301 203300;210.203000;210.204000;210.149000;210.150000;0 +20260301 203400;210.147000;210.182000;210.127000;210.170000;0 +20260301 203500;210.172000;210.195000;210.150000;210.181000;0 +20260301 203600;210.175000;210.178000;210.136000;210.145000;0 +20260301 203700;210.148000;210.151000;210.117000;210.140000;0 +20260301 203800;210.139000;210.196000;210.127000;210.175000;0 +20260301 203900;210.175000;210.201000;210.156000;210.198000;0 +20260301 204000;210.196000;210.234000;210.171000;210.208000;0 +20260301 204100;210.211000;210.218000;210.167000;210.191000;0 +20260301 204200;210.191000;210.234000;210.191000;210.231000;0 +20260301 204300;210.232000;210.232000;210.192000;210.208000;0 +20260301 204400;210.209000;210.233000;210.191000;210.198000;0 +20260301 204500;210.198000;210.225000;210.184000;210.217000;0 +20260301 204600;210.215000;210.231000;210.204000;210.220000;0 +20260301 204700;210.223000;210.235000;210.211000;210.220000;0 +20260301 204800;210.217000;210.232000;210.179000;210.179000;0 +20260301 204900;210.180000;210.207000;210.175000;210.180000;0 +20260301 205000;210.180000;210.209000;210.179000;210.206000;0 +20260301 205100;210.205000;210.218000;210.154000;210.172000;0 +20260301 205200;210.170000;210.173000;210.127000;210.133000;0 +20260301 205300;210.133000;210.155000;210.105000;210.141000;0 +20260301 205400;210.139000;210.143000;210.109000;210.116000;0 +20260301 205500;210.115000;210.139000;210.105000;210.139000;0 +20260301 205600;210.137000;210.214000;210.127000;210.212000;0 +20260301 205700;210.213000;210.220000;210.145000;210.158000;0 +20260301 205800;210.158000;210.191000;210.158000;210.170000;0 +20260301 205900;210.170000;210.179000;210.111000;210.116000;0 +20260301 210000;210.116000;210.116000;210.050000;210.087000;0 +20260301 210100;210.088000;210.125000;210.075000;210.125000;0 +20260301 210200;210.122000;210.140000;210.097000;210.127000;0 +20260301 210300;210.127000;210.171000;210.122000;210.157000;0 +20260301 210400;210.156000;210.181000;210.152000;210.173000;0 +20260301 210500;210.172000;210.180000;210.137000;210.138000;0 +20260301 210600;210.137000;210.150000;210.100000;210.103000;0 +20260301 210700;210.102000;210.108000;210.084000;210.105000;0 +20260301 210800;210.105000;210.134000;210.090000;210.127000;0 +20260301 210900;210.126000;210.146000;210.119000;210.139000;0 +20260301 211000;210.141000;210.150000;210.098000;210.114000;0 +20260301 211100;210.119000;210.175000;210.112000;210.147000;0 +20260301 211200;210.144000;210.147000;210.102000;210.105000;0 +20260301 211300;210.111000;210.134000;210.108000;210.132000;0 +20260301 211400;210.133000;210.142000;210.119000;210.124000;0 +20260301 211500;210.125000;210.147000;210.124000;210.145000;0 +20260301 211600;210.145000;210.166000;210.142000;210.157000;0 +20260301 211700;210.158000;210.176000;210.151000;210.162000;0 +20260301 211800;210.163000;210.215000;210.163000;210.213000;0 +20260301 211900;210.213000;210.222000;210.207000;210.222000;0 +20260301 212000;210.217000;210.221000;210.200000;210.203000;0 +20260301 212100;210.203000;210.241000;210.203000;210.219000;0 +20260301 212200;210.219000;210.246000;210.210000;210.238000;0 +20260301 212300;210.242000;210.250000;210.234000;210.234000;0 +20260301 212400;210.232000;210.232000;210.175000;210.182000;0 +20260301 212500;210.177000;210.191000;210.144000;210.148000;0 +20260301 212600;210.154000;210.157000;210.122000;210.123000;0 +20260301 212700;210.121000;210.127000;210.102000;210.108000;0 +20260301 212800;210.108000;210.120000;210.079000;210.090000;0 +20260301 212900;210.089000;210.102000;210.068000;210.073000;0 +20260301 213000;210.070000;210.078000;210.040000;210.064000;0 +20260301 213100;210.063000;210.104000;210.055000;210.103000;0 +20260301 213200;210.103000;210.141000;210.065000;210.135000;0 +20260301 213300;210.135000;210.153000;210.117000;210.119000;0 +20260301 213400;210.120000;210.152000;210.112000;210.144000;0 +20260301 213500;210.144000;210.149000;210.117000;210.127000;0 +20260301 213600;210.126000;210.151000;210.125000;210.149000;0 +20260301 213700;210.151000;210.158000;210.129000;210.139000;0 +20260301 213800;210.140000;210.179000;210.140000;210.170000;0 +20260301 213900;210.168000;210.177000;210.093000;210.097000;0 +20260301 214000;210.096000;210.127000;210.089000;210.121000;0 +20260301 214100;210.124000;210.133000;210.111000;210.133000;0 +20260301 214200;210.136000;210.146000;210.126000;210.127000;0 +20260301 214300;210.126000;210.160000;210.120000;210.160000;0 +20260301 214400;210.161000;210.178000;210.159000;210.170000;0 +20260301 214500;210.168000;210.172000;210.133000;210.147000;0 +20260301 214600;210.147000;210.147000;210.132000;210.135000;0 +20260301 214700;210.142000;210.156000;210.133000;210.153000;0 +20260301 214800;210.154000;210.180000;210.141000;210.175000;0 +20260301 214900;210.176000;210.184000;210.162000;210.162000;0 +20260301 215000;210.163000;210.189000;210.156000;210.168000;0 +20260301 215100;210.163000;210.175000;210.127000;210.130000;0 +20260301 215200;210.132000;210.136000;210.097000;210.101000;0 +20260301 215300;210.102000;210.107000;210.067000;210.071000;0 +20260301 215400;210.072000;210.085000;210.063000;210.068000;0 +20260301 215500;210.067000;210.075000;210.045000;210.062000;0 +20260301 215600;210.063000;210.099000;210.061000;210.077000;0 +20260301 215700;210.074000;210.130000;210.073000;210.123000;0 +20260301 215800;210.124000;210.144000;210.110000;210.127000;0 +20260301 215900;210.125000;210.125000;210.100000;210.118000;0 +20260301 220000;210.112000;210.130000;210.108000;210.119000;0 +20260301 220100;210.115000;210.117000;210.090000;210.099000;0 +20260301 220200;210.104000;210.134000;210.093000;210.126000;0 +20260301 220300;210.123000;210.131000;210.100000;210.118000;0 +20260301 220400;210.117000;210.120000;210.094000;210.116000;0 +20260301 220500;210.117000;210.164000;210.116000;210.163000;0 +20260301 220600;210.162000;210.191000;210.159000;210.185000;0 +20260301 220700;210.184000;210.196000;210.154000;210.196000;0 +20260301 220800;210.196000;210.205000;210.179000;210.186000;0 +20260301 220900;210.186000;210.187000;210.155000;210.167000;0 +20260301 221000;210.168000;210.194000;210.167000;210.190000;0 +20260301 221100;210.191000;210.194000;210.154000;210.156000;0 +20260301 221200;210.155000;210.164000;210.129000;210.141000;0 +20260301 221300;210.141000;210.165000;210.141000;210.154000;0 +20260301 221400;210.154000;210.173000;210.154000;210.163000;0 +20260301 221500;210.163000;210.172000;210.151000;210.152000;0 +20260301 221600;210.156000;210.169000;210.149000;210.168000;0 +20260301 221700;210.168000;210.174000;210.155000;210.155000;0 +20260301 221800;210.155000;210.156000;210.123000;210.126000;0 +20260301 221900;210.124000;210.145000;210.111000;210.122000;0 +20260301 222000;210.125000;210.129000;210.074000;210.083000;0 +20260301 222100;210.082000;210.123000;210.082000;210.118000;0 +20260301 222200;210.119000;210.136000;210.094000;210.094000;0 +20260301 222300;210.098000;210.146000;210.098000;210.135000;0 +20260301 222400;210.135000;210.192000;210.130000;210.187000;0 +20260301 222500;210.187000;210.198000;210.182000;210.188000;0 +20260301 222600;210.185000;210.185000;210.141000;210.141000;0 +20260301 222700;210.141000;210.152000;210.133000;210.149000;0 +20260301 222800;210.147000;210.147000;210.110000;210.132000;0 +20260301 222900;210.132000;210.159000;210.120000;210.159000;0 +20260301 223000;210.159000;210.166000;210.115000;210.162000;0 +20260301 223100;210.164000;210.180000;210.150000;210.180000;0 +20260301 223200;210.180000;210.197000;210.161000;210.192000;0 +20260301 223300;210.191000;210.195000;210.152000;210.173000;0 +20260301 223400;210.170000;210.173000;210.132000;210.139000;0 +20260301 223500;210.139000;210.139000;210.094000;210.124000;0 +20260301 223600;210.120000;210.142000;210.120000;210.134000;0 +20260301 223700;210.135000;210.171000;210.132000;210.167000;0 +20260301 223800;210.167000;210.177000;210.141000;210.158000;0 +20260301 223900;210.158000;210.192000;210.156000;210.184000;0 +20260301 224000;210.185000;210.190000;210.157000;210.166000;0 +20260301 224100;210.166000;210.182000;210.155000;210.174000;0 +20260301 224200;210.174000;210.201000;210.164000;210.181000;0 +20260301 224300;210.182000;210.210000;210.147000;210.202000;0 +20260301 224400;210.201000;210.218000;210.196000;210.202000;0 +20260301 224500;210.203000;210.206000;210.158000;210.188000;0 +20260301 224600;210.190000;210.200000;210.176000;210.197000;0 +20260301 224700;210.197000;210.214000;210.179000;210.198000;0 +20260301 224800;210.197000;210.219000;210.197000;210.214000;0 +20260301 224900;210.216000;210.232000;210.213000;210.221000;0 +20260301 225000;210.221000;210.221000;210.187000;210.194000;0 +20260301 225100;210.196000;210.245000;210.195000;210.243000;0 +20260301 225200;210.245000;210.262000;210.241000;210.251000;0 +20260301 225300;210.253000;210.255000;210.233000;210.235000;0 +20260301 225400;210.237000;210.247000;210.218000;210.233000;0 +20260301 225500;210.233000;210.250000;210.227000;210.230000;0 +20260301 225600;210.231000;210.249000;210.227000;210.248000;0 +20260301 225700;210.248000;210.254000;210.241000;210.244000;0 +20260301 225800;210.242000;210.249000;210.229000;210.231000;0 +20260301 225900;210.233000;210.236000;210.202000;210.206000;0 +20260301 230000;210.206000;210.248000;210.203000;210.240000;0 +20260301 230100;210.240000;210.279000;210.231000;210.279000;0 +20260301 230200;210.279000;210.289000;210.258000;210.265000;0 +20260301 230300;210.261000;210.263000;210.203000;210.216000;0 +20260301 230400;210.219000;210.226000;210.208000;210.214000;0 +20260301 230500;210.211000;210.218000;210.197000;210.210000;0 +20260301 230600;210.211000;210.251000;210.210000;210.248000;0 +20260301 230700;210.247000;210.253000;210.204000;210.204000;0 +20260301 230800;210.205000;210.221000;210.205000;210.213000;0 +20260301 230900;210.215000;210.227000;210.215000;210.223000;0 +20260301 231000;210.223000;210.224000;210.203000;210.205000;0 +20260301 231100;210.204000;210.213000;210.198000;210.202000;0 +20260301 231200;210.204000;210.213000;210.200000;210.206000;0 +20260301 231300;210.207000;210.223000;210.202000;210.221000;0 +20260301 231400;210.220000;210.243000;210.220000;210.232000;0 +20260301 231500;210.231000;210.256000;210.231000;210.253000;0 +20260301 231600;210.254000;210.259000;210.245000;210.255000;0 +20260301 231700;210.254000;210.254000;210.226000;210.233000;0 +20260301 231800;210.233000;210.237000;210.206000;210.223000;0 +20260301 231900;210.223000;210.237000;210.166000;210.168000;0 +20260301 232000;210.169000;210.200000;210.145000;210.153000;0 +20260301 232100;210.149000;210.233000;210.144000;210.229000;0 +20260301 232200;210.227000;210.230000;210.181000;210.184000;0 +20260301 232300;210.184000;210.217000;210.178000;210.215000;0 +20260301 232400;210.218000;210.243000;210.211000;210.243000;0 +20260301 232500;210.243000;210.268000;210.243000;210.253000;0 +20260301 232600;210.250000;210.263000;210.234000;210.262000;0 +20260301 232700;210.264000;210.288000;210.256000;210.276000;0 +20260301 232800;210.278000;210.287000;210.264000;210.275000;0 +20260301 232900;210.276000;210.311000;210.268000;210.305000;0 +20260301 233000;210.306000;210.320000;210.298000;210.308000;0 +20260301 233100;210.307000;210.318000;210.303000;210.309000;0 +20260301 233200;210.307000;210.312000;210.275000;210.295000;0 +20260301 233300;210.296000;210.302000;210.280000;210.302000;0 +20260301 233400;210.300000;210.329000;210.298000;210.327000;0 +20260301 233500;210.329000;210.342000;210.305000;210.331000;0 +20260301 233600;210.330000;210.362000;210.330000;210.357000;0 +20260301 233700;210.355000;210.358000;210.322000;210.328000;0 +20260301 233800;210.334000;210.350000;210.334000;210.335000;0 +20260301 233900;210.339000;210.348000;210.319000;210.334000;0 +20260301 234000;210.338000;210.344000;210.334000;210.339000;0 +20260301 234100;210.339000;210.376000;210.337000;210.353000;0 +20260301 234200;210.353000;210.364000;210.342000;210.352000;0 +20260301 234300;210.355000;210.371000;210.340000;210.355000;0 +20260301 234400;210.356000;210.362000;210.343000;210.346000;0 +20260301 234500;210.346000;210.362000;210.344000;210.351000;0 +20260301 234600;210.351000;210.354000;210.330000;210.334000;0 +20260301 234700;210.334000;210.339000;210.314000;210.319000;0 +20260301 234800;210.316000;210.332000;210.314000;210.324000;0 +20260301 234900;210.324000;210.377000;210.324000;210.353000;0 +20260301 235000;210.348000;210.365000;210.342000;210.342000;0 +20260301 235100;210.341000;210.365000;210.340000;210.341000;0 +20260301 235200;210.342000;210.350000;210.326000;210.349000;0 +20260301 235300;210.345000;210.387000;210.340000;210.386000;0 +20260301 235400;210.386000;210.397000;210.366000;210.384000;0 +20260301 235500;210.381000;210.383000;210.349000;210.369000;0 +20260301 235600;210.369000;210.379000;210.359000;210.375000;0 +20260301 235700;210.378000;210.381000;210.357000;210.360000;0 +20260301 235800;210.358000;210.360000;210.336000;210.337000;0 +20260301 235900;210.338000;210.341000;210.323000;210.337000;0 +20260302 000000;210.346000;210.364000;210.334000;210.354000;0 +20260302 000100;210.364000;210.375000;210.357000;210.366000;0 +20260302 000200;210.363000;210.363000;210.331000;210.331000;0 +20260302 000300;210.329000;210.384000;210.329000;210.381000;0 +20260302 000400;210.383000;210.385000;210.330000;210.330000;0 +20260302 000500;210.330000;210.373000;210.305000;210.362000;0 +20260302 000600;210.362000;210.393000;210.359000;210.369000;0 +20260302 000700;210.368000;210.378000;210.354000;210.370000;0 +20260302 000800;210.368000;210.381000;210.355000;210.364000;0 +20260302 000900;210.364000;210.371000;210.353000;210.355000;0 +20260302 001000;210.353000;210.371000;210.345000;210.371000;0 +20260302 001100;210.374000;210.389000;210.363000;210.378000;0 +20260302 001200;210.377000;210.381000;210.365000;210.378000;0 +20260302 001300;210.380000;210.388000;210.367000;210.381000;0 +20260302 001400;210.388000;210.388000;210.360000;210.363000;0 +20260302 001500;210.368000;210.380000;210.349000;210.352000;0 +20260302 001600;210.351000;210.392000;210.332000;210.378000;0 +20260302 001700;210.381000;210.397000;210.381000;210.383000;0 +20260302 001800;210.384000;210.404000;210.384000;210.399000;0 +20260302 001900;210.399000;210.421000;210.399000;210.420000;0 +20260302 002000;210.417000;210.466000;210.410000;210.458000;0 +20260302 002100;210.460000;210.476000;210.460000;210.475000;0 +20260302 002200;210.475000;210.496000;210.459000;210.473000;0 +20260302 002300;210.473000;210.475000;210.443000;210.443000;0 +20260302 002400;210.451000;210.472000;210.446000;210.453000;0 +20260302 002500;210.456000;210.475000;210.447000;210.458000;0 +20260302 002600;210.458000;210.461000;210.431000;210.446000;0 +20260302 002700;210.443000;210.445000;210.336000;210.342000;0 +20260302 002800;210.342000;210.360000;210.326000;210.326000;0 +20260302 002900;210.328000;210.402000;210.323000;210.401000;0 +20260302 003000;210.402000;210.426000;210.397000;210.421000;0 +20260302 003100;210.418000;210.469000;210.402000;210.465000;0 +20260302 003200;210.466000;210.475000;210.432000;210.432000;0 +20260302 003300;210.433000;210.473000;210.433000;210.448000;0 +20260302 003400;210.447000;210.475000;210.444000;210.470000;0 +20260302 003500;210.470000;210.481000;210.461000;210.477000;0 +20260302 003600;210.476000;210.523000;210.471000;210.512000;0 +20260302 003700;210.512000;210.528000;210.462000;210.464000;0 +20260302 003800;210.462000;210.489000;210.446000;210.457000;0 +20260302 003900;210.456000;210.489000;210.455000;210.457000;0 +20260302 004000;210.456000;210.478000;210.455000;210.458000;0 +20260302 004100;210.458000;210.462000;210.434000;210.457000;0 +20260302 004200;210.456000;210.476000;210.444000;210.468000;0 +20260302 004300;210.468000;210.494000;210.464000;210.474000;0 +20260302 004400;210.474000;210.474000;210.429000;210.432000;0 +20260302 004500;210.432000;210.479000;210.429000;210.454000;0 +20260302 004600;210.455000;210.470000;210.412000;210.424000;0 +20260302 004700;210.423000;210.460000;210.421000;210.460000;0 +20260302 004800;210.472000;210.479000;210.422000;210.424000;0 +20260302 004900;210.422000;210.455000;210.422000;210.444000;0 +20260302 005000;210.445000;210.445000;210.365000;210.378000;0 +20260302 005100;210.376000;210.376000;210.334000;210.345000;0 +20260302 005200;210.349000;210.371000;210.323000;210.371000;0 +20260302 005300;210.373000;210.424000;210.373000;210.424000;0 +20260302 005400;210.424000;210.452000;210.418000;210.418000;0 +20260302 005500;210.415000;210.418000;210.383000;210.384000;0 +20260302 005600;210.383000;210.393000;210.356000;210.390000;0 +20260302 005700;210.391000;210.396000;210.359000;210.359000;0 +20260302 005800;210.360000;210.378000;210.359000;210.368000;0 +20260302 005900;210.370000;210.389000;210.341000;210.388000;0 +20260302 010000;210.387000;210.415000;210.349000;210.358000;0 +20260302 010100;210.360000;210.380000;210.335000;210.355000;0 +20260302 010200;210.358000;210.367000;210.341000;210.345000;0 +20260302 010300;210.345000;210.355000;210.330000;210.342000;0 +20260302 010400;210.343000;210.352000;210.319000;210.347000;0 +20260302 010500;210.347000;210.367000;210.315000;210.339000;0 +20260302 010600;210.339000;210.339000;210.288000;210.290000;0 +20260302 010700;210.289000;210.320000;210.280000;210.296000;0 +20260302 010800;210.296000;210.332000;210.276000;210.317000;0 +20260302 010900;210.318000;210.323000;210.292000;210.311000;0 +20260302 011000;210.314000;210.314000;210.274000;210.280000;0 +20260302 011100;210.280000;210.347000;210.273000;210.346000;0 +20260302 011200;210.346000;210.354000;210.300000;210.325000;0 +20260302 011300;210.325000;210.350000;210.317000;210.349000;0 +20260302 011400;210.352000;210.358000;210.266000;210.271000;0 +20260302 011500;210.272000;210.287000;210.245000;210.285000;0 +20260302 011600;210.282000;210.304000;210.236000;210.243000;0 +20260302 011700;210.246000;210.256000;210.213000;210.246000;0 +20260302 011800;210.247000;210.259000;210.230000;210.246000;0 +20260302 011900;210.247000;210.250000;210.194000;210.209000;0 +20260302 012000;210.210000;210.238000;210.210000;210.235000;0 +20260302 012100;210.236000;210.261000;210.214000;210.220000;0 +20260302 012200;210.218000;210.251000;210.206000;210.232000;0 +20260302 012300;210.232000;210.245000;210.084000;210.086000;0 +20260302 012400;210.088000;210.139000;210.083000;210.108000;0 +20260302 012500;210.110000;210.123000;210.096000;210.102000;0 +20260302 012600;210.102000;210.128000;210.091000;210.096000;0 +20260302 012700;210.104000;210.145000;210.099000;210.104000;0 +20260302 012800;210.105000;210.130000;210.090000;210.106000;0 +20260302 012900;210.109000;210.139000;210.108000;210.124000;0 +20260302 013000;210.122000;210.177000;210.122000;210.176000;0 +20260302 013100;210.177000;210.191000;210.167000;210.184000;0 +20260302 013200;210.183000;210.184000;210.152000;210.158000;0 +20260302 013300;210.159000;210.178000;210.148000;210.164000;0 +20260302 013400;210.162000;210.182000;210.089000;210.089000;0 +20260302 013500;210.089000;210.103000;210.030000;210.060000;0 +20260302 013600;210.061000;210.123000;210.061000;210.116000;0 +20260302 013700;210.115000;210.149000;210.101000;210.103000;0 +20260302 013800;210.101000;210.104000;210.074000;210.098000;0 +20260302 013900;210.092000;210.109000;210.023000;210.049000;0 +20260302 014000;210.049000;210.059000;210.009000;210.018000;0 +20260302 014100;210.017000;210.056000;210.000000;210.002000;0 +20260302 014200;210.002000;210.043000;209.985000;210.041000;0 +20260302 014300;210.039000;210.075000;210.022000;210.022000;0 +20260302 014400;210.019000;210.044000;210.010000;210.012000;0 +20260302 014500;210.009000;210.041000;210.001000;210.010000;0 +20260302 014600;210.010000;210.018000;209.971000;209.972000;0 +20260302 014700;209.971000;209.986000;209.963000;209.981000;0 +20260302 014800;209.981000;209.997000;209.932000;209.948000;0 +20260302 014900;209.959000;209.968000;209.933000;209.934000;0 +20260302 015000;209.938000;209.938000;209.880000;209.894000;0 +20260302 015100;209.894000;209.910000;209.866000;209.888000;0 +20260302 015200;209.888000;209.958000;209.884000;209.924000;0 +20260302 015300;209.931000;209.951000;209.875000;209.875000;0 +20260302 015400;209.870000;209.887000;209.846000;209.864000;0 +20260302 015500;209.866000;209.880000;209.834000;209.858000;0 +20260302 015600;209.859000;209.875000;209.837000;209.868000;0 +20260302 015700;209.869000;209.881000;209.856000;209.875000;0 +20260302 015800;209.877000;209.906000;209.864000;209.900000;0 +20260302 015900;209.902000;209.934000;209.898000;209.933000;0 +20260302 020000;209.931000;210.011000;209.926000;209.970000;0 +20260302 020100;209.974000;210.055000;209.974000;210.048000;0 +20260302 020200;210.048000;210.048000;209.979000;209.983000;0 +20260302 020300;209.990000;209.993000;209.945000;209.962000;0 +20260302 020400;209.961000;209.998000;209.938000;209.943000;0 +20260302 020500;209.941000;209.965000;209.845000;209.861000;0 +20260302 020600;209.856000;209.886000;209.843000;209.843000;0 +20260302 020700;209.846000;209.873000;209.824000;209.837000;0 +20260302 020800;209.836000;209.898000;209.808000;209.819000;0 +20260302 020900;209.818000;209.889000;209.818000;209.883000;0 +20260302 021000;209.891000;209.917000;209.856000;209.911000;0 +20260302 021100;209.909000;209.943000;209.898000;209.922000;0 +20260302 021200;209.924000;209.933000;209.871000;209.884000;0 +20260302 021300;209.883000;209.892000;209.834000;209.851000;0 +20260302 021400;209.863000;209.879000;209.702000;209.715000;0 +20260302 021500;209.720000;209.790000;209.720000;209.782000;0 +20260302 021600;209.781000;209.799000;209.723000;209.723000;0 +20260302 021700;209.721000;209.742000;209.667000;209.673000;0 +20260302 021800;209.673000;209.675000;209.636000;209.637000;0 +20260302 021900;209.637000;209.688000;209.632000;209.670000;0 +20260302 022000;209.669000;209.678000;209.620000;209.634000;0 +20260302 022100;209.638000;209.659000;209.613000;209.621000;0 +20260302 022200;209.619000;209.785000;209.619000;209.739000;0 +20260302 022300;209.739000;209.786000;209.727000;209.782000;0 +20260302 022400;209.779000;209.813000;209.761000;209.792000;0 +20260302 022500;209.785000;209.790000;209.713000;209.713000;0 +20260302 022600;209.714000;209.750000;209.703000;209.703000;0 +20260302 022700;209.709000;209.718000;209.687000;209.688000;0 +20260302 022800;209.684000;209.697000;209.652000;209.670000;0 +20260302 022900;209.671000;209.690000;209.663000;209.664000;0 +20260302 023000;209.664000;209.711000;209.648000;209.705000;0 +20260302 023100;209.702000;209.874000;209.699000;209.851000;0 +20260302 023200;209.847000;209.947000;209.843000;209.919000;0 +20260302 023300;209.913000;209.916000;209.873000;209.889000;0 +20260302 023400;209.896000;209.908000;209.810000;209.826000;0 +20260302 023500;209.837000;209.879000;209.815000;209.840000;0 +20260302 023600;209.835000;209.850000;209.796000;209.817000;0 +20260302 023700;209.816000;209.817000;209.773000;209.773000;0 +20260302 023800;209.773000;209.791000;209.752000;209.789000;0 +20260302 023900;209.790000;209.853000;209.784000;209.825000;0 +20260302 024000;209.827000;209.876000;209.824000;209.846000;0 +20260302 024100;209.850000;209.857000;209.820000;209.827000;0 +20260302 024200;209.826000;209.844000;209.804000;209.804000;0 +20260302 024300;209.803000;209.826000;209.791000;209.820000;0 +20260302 024400;209.825000;209.845000;209.772000;209.784000;0 +20260302 024500;209.783000;209.820000;209.782000;209.784000;0 +20260302 024600;209.782000;209.782000;209.744000;209.773000;0 +20260302 024700;209.771000;209.771000;209.699000;209.742000;0 +20260302 024800;209.738000;209.750000;209.667000;209.691000;0 +20260302 024900;209.692000;209.703000;209.615000;209.646000;0 +20260302 025000;209.647000;209.653000;209.610000;209.626000;0 +20260302 025100;209.628000;209.628000;209.500000;209.583000;0 +20260302 025200;209.580000;209.608000;209.528000;209.540000;0 +20260302 025300;209.539000;209.610000;209.535000;209.583000;0 +20260302 025400;209.581000;209.603000;209.564000;209.590000;0 +20260302 025500;209.591000;209.653000;209.588000;209.631000;0 +20260302 025600;209.630000;209.639000;209.601000;209.616000;0 +20260302 025700;209.613000;209.654000;209.603000;209.634000;0 +20260302 025800;209.636000;209.683000;209.618000;209.668000;0 +20260302 025900;209.668000;209.751000;209.660000;209.751000;0 +20260302 030000;209.754000;209.812000;209.712000;209.791000;0 +20260302 030100;209.790000;209.861000;209.762000;209.819000;0 +20260302 030200;209.819000;209.867000;209.799000;209.845000;0 +20260302 030300;209.846000;209.915000;209.838000;209.861000;0 +20260302 030400;209.857000;209.889000;209.835000;209.876000;0 +20260302 030500;209.887000;209.928000;209.793000;209.879000;0 +20260302 030600;209.876000;209.899000;209.846000;209.893000;0 +20260302 030700;209.896000;209.935000;209.869000;209.874000;0 +20260302 030800;209.873000;209.920000;209.843000;209.895000;0 +20260302 030900;209.896000;209.918000;209.849000;209.898000;0 +20260302 031000;209.898000;209.933000;209.872000;209.903000;0 +20260302 031100;209.901000;209.901000;209.779000;209.790000;0 +20260302 031200;209.800000;209.819000;209.747000;209.754000;0 +20260302 031300;209.754000;209.795000;209.727000;209.795000;0 +20260302 031400;209.796000;209.868000;209.791000;209.825000;0 +20260302 031500;209.825000;209.862000;209.792000;209.816000;0 +20260302 031600;209.814000;209.847000;209.773000;209.787000;0 +20260302 031700;209.785000;209.790000;209.716000;209.775000;0 +20260302 031800;209.771000;209.773000;209.719000;209.722000;0 +20260302 031900;209.721000;209.761000;209.702000;209.752000;0 +20260302 032000;209.755000;209.775000;209.700000;209.734000;0 +20260302 032100;209.734000;209.740000;209.707000;209.711000;0 +20260302 032200;209.710000;209.720000;209.663000;209.664000;0 +20260302 032300;209.666000;209.678000;209.586000;209.606000;0 +20260302 032400;209.609000;209.630000;209.600000;209.616000;0 +20260302 032500;209.617000;209.643000;209.594000;209.631000;0 +20260302 032600;209.634000;209.659000;209.596000;209.605000;0 +20260302 032700;209.606000;209.624000;209.523000;209.544000;0 +20260302 032800;209.542000;209.558000;209.483000;209.492000;0 +20260302 032900;209.491000;209.499000;209.419000;209.442000;0 +20260302 033000;209.442000;209.563000;209.441000;209.506000;0 +20260302 033100;209.507000;209.515000;209.470000;209.496000;0 +20260302 033200;209.499000;209.530000;209.480000;209.524000;0 +20260302 033300;209.524000;209.557000;209.480000;209.526000;0 +20260302 033400;209.523000;209.529000;209.448000;209.454000;0 +20260302 033500;209.452000;209.453000;209.405000;209.434000;0 +20260302 033600;209.432000;209.446000;209.402000;209.426000;0 +20260302 033700;209.427000;209.461000;209.378000;209.388000;0 +20260302 033800;209.392000;209.411000;209.345000;209.351000;0 +20260302 033900;209.351000;209.396000;209.350000;209.371000;0 +20260302 034000;209.374000;209.460000;209.358000;209.458000;0 +20260302 034100;209.460000;209.584000;209.460000;209.584000;0 +20260302 034200;209.585000;209.607000;209.562000;209.585000;0 +20260302 034300;209.582000;209.592000;209.566000;209.576000;0 +20260302 034400;209.577000;209.593000;209.523000;209.528000;0 +20260302 034500;209.539000;209.575000;209.492000;209.539000;0 +20260302 034600;209.537000;209.574000;209.534000;209.540000;0 +20260302 034700;209.541000;209.570000;209.522000;209.562000;0 +20260302 034800;209.566000;209.570000;209.525000;209.557000;0 +20260302 034900;209.556000;209.585000;209.549000;209.578000;0 +20260302 035000;209.582000;209.643000;209.582000;209.635000;0 +20260302 035100;209.633000;209.685000;209.633000;209.685000;0 +20260302 035200;209.686000;209.694000;209.637000;209.688000;0 +20260302 035300;209.692000;209.703000;209.670000;209.683000;0 +20260302 035400;209.688000;209.688000;209.614000;209.614000;0 +20260302 035500;209.612000;209.636000;209.553000;209.553000;0 +20260302 035600;209.552000;209.576000;209.519000;209.544000;0 +20260302 035700;209.548000;209.597000;209.527000;209.590000;0 +20260302 035800;209.587000;209.619000;209.575000;209.582000;0 +20260302 035900;209.582000;209.582000;209.529000;209.560000;0 +20260302 040000;209.563000;209.606000;209.487000;209.598000;0 +20260302 040100;209.598000;209.633000;209.578000;209.620000;0 +20260302 040200;209.620000;209.621000;209.564000;209.598000;0 +20260302 040300;209.599000;209.631000;209.595000;209.608000;0 +20260302 040400;209.612000;209.621000;209.546000;209.557000;0 +20260302 040500;209.561000;209.580000;209.525000;209.568000;0 +20260302 040600;209.573000;209.588000;209.548000;209.565000;0 +20260302 040700;209.565000;209.565000;209.495000;209.548000;0 +20260302 040800;209.551000;209.592000;209.551000;209.580000;0 +20260302 040900;209.579000;209.599000;209.560000;209.586000;0 +20260302 041000;209.589000;209.647000;209.569000;209.631000;0 +20260302 041100;209.629000;209.652000;209.614000;209.630000;0 +20260302 041200;209.627000;209.634000;209.583000;209.632000;0 +20260302 041300;209.633000;209.670000;209.598000;209.668000;0 +20260302 041400;209.667000;209.668000;209.620000;209.633000;0 +20260302 041500;209.643000;209.649000;209.600000;209.603000;0 +20260302 041600;209.607000;209.622000;209.569000;209.589000;0 +20260302 041700;209.585000;209.714000;209.582000;209.701000;0 +20260302 041800;209.700000;209.774000;209.689000;209.762000;0 +20260302 041900;209.764000;209.798000;209.728000;209.738000;0 +20260302 042000;209.737000;209.755000;209.722000;209.743000;0 +20260302 042100;209.743000;209.757000;209.718000;209.738000;0 +20260302 042200;209.739000;209.744000;209.689000;209.738000;0 +20260302 042300;209.741000;209.748000;209.715000;209.728000;0 +20260302 042400;209.724000;209.763000;209.719000;209.719000;0 +20260302 042500;209.721000;209.739000;209.674000;209.690000;0 +20260302 042600;209.689000;209.708000;209.664000;209.681000;0 +20260302 042700;209.684000;209.697000;209.672000;209.695000;0 +20260302 042800;209.700000;209.738000;209.695000;209.735000;0 +20260302 042900;209.733000;209.746000;209.674000;209.694000;0 +20260302 043000;209.693000;209.735000;209.666000;209.730000;0 +20260302 043100;209.738000;209.792000;209.738000;209.781000;0 +20260302 043200;209.781000;209.828000;209.762000;209.796000;0 +20260302 043300;209.800000;209.857000;209.785000;209.857000;0 +20260302 043400;209.856000;209.896000;209.836000;209.836000;0 +20260302 043500;209.837000;209.851000;209.806000;209.828000;0 +20260302 043600;209.833000;209.842000;209.795000;209.813000;0 +20260302 043700;209.813000;209.851000;209.813000;209.845000;0 +20260302 043800;209.842000;209.844000;209.810000;209.816000;0 +20260302 043900;209.813000;209.815000;209.731000;209.739000;0 +20260302 044000;209.739000;209.752000;209.705000;209.726000;0 +20260302 044100;209.726000;209.740000;209.701000;209.737000;0 +20260302 044200;209.737000;209.737000;209.674000;209.706000;0 +20260302 044300;209.710000;209.725000;209.681000;209.725000;0 +20260302 044400;209.725000;209.816000;209.725000;209.809000;0 +20260302 044500;209.812000;209.817000;209.745000;209.755000;0 +20260302 044600;209.756000;209.791000;209.755000;209.766000;0 +20260302 044700;209.775000;209.788000;209.767000;209.788000;0 +20260302 044800;209.788000;209.808000;209.767000;209.767000;0 +20260302 044900;209.763000;209.767000;209.716000;209.753000;0 +20260302 045000;209.751000;209.758000;209.686000;209.700000;0 +20260302 045100;209.697000;209.770000;209.683000;209.770000;0 +20260302 045200;209.770000;209.783000;209.735000;209.759000;0 +20260302 045300;209.759000;209.778000;209.735000;209.756000;0 +20260302 045400;209.758000;209.790000;209.758000;209.790000;0 +20260302 045500;209.790000;209.872000;209.780000;209.858000;0 +20260302 045600;209.856000;209.916000;209.856000;209.908000;0 +20260302 045700;209.908000;209.923000;209.896000;209.918000;0 +20260302 045800;209.920000;209.926000;209.882000;209.902000;0 +20260302 045900;209.902000;209.965000;209.900000;209.953000;0 +20260302 050000;209.956000;209.975000;209.932000;209.948000;0 +20260302 050100;209.949000;209.980000;209.912000;209.952000;0 +20260302 050200;209.951000;209.998000;209.946000;209.974000;0 +20260302 050300;209.972000;209.972000;209.914000;209.940000;0 +20260302 050400;209.939000;209.950000;209.924000;209.927000;0 +20260302 050500;209.929000;209.972000;209.926000;209.965000;0 +20260302 050600;209.968000;209.975000;209.893000;209.917000;0 +20260302 050700;209.917000;210.044000;209.914000;210.030000;0 +20260302 050800;210.030000;210.036000;209.982000;210.012000;0 +20260302 050900;210.015000;210.081000;209.980000;210.080000;0 +20260302 051000;210.083000;210.092000;210.025000;210.040000;0 +20260302 051100;210.031000;210.031000;209.992000;210.013000;0 +20260302 051200;210.012000;210.023000;209.997000;210.014000;0 +20260302 051300;210.012000;210.012000;209.976000;209.993000;0 +20260302 051400;209.992000;210.009000;209.982000;209.982000;0 +20260302 051500;209.981000;210.034000;209.979000;210.017000;0 +20260302 051600;210.017000;210.025000;209.976000;209.991000;0 +20260302 051700;209.993000;210.019000;209.985000;209.994000;0 +20260302 051800;209.990000;209.995000;209.970000;209.993000;0 +20260302 051900;209.994000;210.021000;209.982000;209.997000;0 +20260302 052000;210.001000;210.012000;209.958000;209.997000;0 +20260302 052100;209.997000;210.050000;209.991000;210.049000;0 +20260302 052200;210.048000;210.099000;210.048000;210.087000;0 +20260302 052300;210.087000;210.126000;210.074000;210.111000;0 +20260302 052400;210.111000;210.114000;210.067000;210.068000;0 +20260302 052500;210.067000;210.068000;210.036000;210.042000;0 +20260302 052600;210.042000;210.056000;210.029000;210.035000;0 +20260302 052700;210.032000;210.054000;210.022000;210.022000;0 +20260302 052800;210.022000;210.083000;210.022000;210.083000;0 +20260302 052900;210.081000;210.081000;210.050000;210.060000;0 +20260302 053000;210.061000;210.079000;210.050000;210.069000;0 +20260302 053100;210.073000;210.102000;210.069000;210.099000;0 +20260302 053200;210.100000;210.126000;210.098000;210.119000;0 +20260302 053300;210.118000;210.136000;210.103000;210.117000;0 +20260302 053400;210.118000;210.152000;210.118000;210.148000;0 +20260302 053500;210.145000;210.181000;210.142000;210.150000;0 +20260302 053600;210.148000;210.168000;210.132000;210.132000;0 +20260302 053700;210.135000;210.148000;210.113000;210.122000;0 +20260302 053800;210.121000;210.123000;210.082000;210.096000;0 +20260302 053900;210.097000;210.187000;210.093000;210.185000;0 +20260302 054000;210.186000;210.194000;210.159000;210.188000;0 +20260302 054100;210.194000;210.198000;210.108000;210.153000;0 +20260302 054200;210.154000;210.154000;210.121000;210.141000;0 +20260302 054300;210.134000;210.145000;210.121000;210.136000;0 +20260302 054400;210.136000;210.201000;210.131000;210.201000;0 +20260302 054500;210.208000;210.219000;210.168000;210.178000;0 +20260302 054600;210.178000;210.185000;210.145000;210.148000;0 +20260302 054700;210.147000;210.149000;210.102000;210.132000;0 +20260302 054800;210.134000;210.143000;210.109000;210.120000;0 +20260302 054900;210.130000;210.168000;210.128000;210.154000;0 +20260302 055000;210.153000;210.176000;210.116000;210.163000;0 +20260302 055100;210.163000;210.220000;210.160000;210.217000;0 +20260302 055200;210.217000;210.311000;210.217000;210.299000;0 +20260302 055300;210.299000;210.304000;210.268000;210.303000;0 +20260302 055400;210.304000;210.377000;210.304000;210.374000;0 +20260302 055500;210.374000;210.397000;210.371000;210.396000;0 +20260302 055600;210.395000;210.404000;210.327000;210.357000;0 +20260302 055700;210.357000;210.388000;210.342000;210.356000;0 +20260302 055800;210.355000;210.379000;210.343000;210.348000;0 +20260302 055900;210.346000;210.363000;210.312000;210.360000;0 +20260302 060000;210.360000;210.365000;210.273000;210.323000;0 +20260302 060100;210.324000;210.359000;210.323000;210.339000;0 +20260302 060200;210.338000;210.366000;210.302000;210.308000;0 +20260302 060300;210.309000;210.315000;210.282000;210.312000;0 +20260302 060400;210.313000;210.315000;210.268000;210.314000;0 +20260302 060500;210.322000;210.371000;210.318000;210.356000;0 +20260302 060600;210.351000;210.353000;210.305000;210.305000;0 +20260302 060700;210.303000;210.334000;210.291000;210.303000;0 +20260302 060800;210.306000;210.332000;210.299000;210.320000;0 +20260302 060900;210.321000;210.361000;210.321000;210.360000;0 +20260302 061000;210.361000;210.366000;210.327000;210.366000;0 +20260302 061100;210.365000;210.376000;210.331000;210.333000;0 +20260302 061200;210.332000;210.394000;210.327000;210.375000;0 +20260302 061300;210.377000;210.378000;210.337000;210.357000;0 +20260302 061400;210.357000;210.380000;210.342000;210.378000;0 +20260302 061500;210.380000;210.383000;210.345000;210.350000;0 +20260302 061600;210.347000;210.355000;210.312000;210.336000;0 +20260302 061700;210.333000;210.385000;210.332000;210.374000;0 +20260302 061800;210.378000;210.390000;210.372000;210.379000;0 +20260302 061900;210.379000;210.461000;210.379000;210.450000;0 +20260302 062000;210.452000;210.452000;210.404000;210.415000;0 +20260302 062100;210.413000;210.415000;210.384000;210.388000;0 +20260302 062200;210.386000;210.400000;210.372000;210.396000;0 +20260302 062300;210.395000;210.395000;210.366000;210.379000;0 +20260302 062400;210.378000;210.399000;210.351000;210.386000;0 +20260302 062500;210.387000;210.424000;210.387000;210.413000;0 +20260302 062600;210.422000;210.498000;210.420000;210.495000;0 +20260302 062700;210.495000;210.497000;210.439000;210.440000;0 +20260302 062800;210.440000;210.456000;210.402000;210.402000;0 +20260302 062900;210.402000;210.402000;210.356000;210.361000;0 +20260302 063000;210.357000;210.373000;210.339000;210.372000;0 +20260302 063100;210.373000;210.397000;210.368000;210.393000;0 +20260302 063200;210.392000;210.398000;210.349000;210.357000;0 +20260302 063300;210.359000;210.394000;210.359000;210.377000;0 +20260302 063400;210.377000;210.414000;210.372000;210.406000;0 +20260302 063500;210.410000;210.414000;210.386000;210.406000;0 +20260302 063600;210.407000;210.450000;210.402000;210.435000;0 +20260302 063700;210.434000;210.448000;210.414000;210.438000;0 +20260302 063800;210.437000;210.452000;210.423000;210.433000;0 +20260302 063900;210.431000;210.477000;210.417000;210.467000;0 +20260302 064000;210.467000;210.467000;210.446000;210.464000;0 +20260302 064100;210.462000;210.493000;210.459000;210.492000;0 +20260302 064200;210.490000;210.501000;210.473000;210.488000;0 +20260302 064300;210.485000;210.493000;210.465000;210.471000;0 +20260302 064400;210.472000;210.496000;210.469000;210.493000;0 +20260302 064500;210.492000;210.525000;210.484000;210.516000;0 +20260302 064600;210.520000;210.529000;210.506000;210.512000;0 +20260302 064700;210.513000;210.586000;210.497000;210.570000;0 +20260302 064800;210.569000;210.615000;210.569000;210.614000;0 +20260302 064900;210.614000;210.622000;210.598000;210.608000;0 +20260302 065000;210.608000;210.621000;210.587000;210.587000;0 +20260302 065100;210.590000;210.590000;210.530000;210.539000;0 +20260302 065200;210.541000;210.557000;210.503000;210.521000;0 +20260302 065300;210.521000;210.521000;210.495000;210.514000;0 +20260302 065400;210.515000;210.515000;210.431000;210.431000;0 +20260302 065500;210.437000;210.503000;210.437000;210.479000;0 +20260302 065600;210.480000;210.539000;210.476000;210.535000;0 +20260302 065700;210.531000;210.537000;210.479000;210.500000;0 +20260302 065800;210.500000;210.513000;210.477000;210.492000;0 +20260302 065900;210.491000;210.536000;210.486000;210.508000;0 +20260302 070000;210.510000;210.549000;210.500000;210.544000;0 +20260302 070100;210.546000;210.574000;210.540000;210.559000;0 +20260302 070200;210.559000;210.611000;210.548000;210.611000;0 +20260302 070300;210.611000;210.714000;210.611000;210.714000;0 +20260302 070400;210.715000;210.716000;210.680000;210.703000;0 +20260302 070500;210.704000;210.723000;210.681000;210.695000;0 +20260302 070600;210.696000;210.721000;210.677000;210.715000;0 +20260302 070700;210.715000;210.722000;210.667000;210.673000;0 +20260302 070800;210.675000;210.679000;210.613000;210.613000;0 +20260302 070900;210.612000;210.627000;210.596000;210.627000;0 +20260302 071000;210.629000;210.657000;210.617000;210.633000;0 +20260302 071100;210.633000;210.642000;210.579000;210.591000;0 +20260302 071200;210.597000;210.630000;210.597000;210.602000;0 +20260302 071300;210.600000;210.611000;210.583000;210.586000;0 +20260302 071400;210.587000;210.621000;210.560000;210.609000;0 +20260302 071500;210.610000;210.632000;210.606000;210.630000;0 +20260302 071600;210.629000;210.693000;210.629000;210.674000;0 +20260302 071700;210.671000;210.709000;210.663000;210.694000;0 +20260302 071800;210.694000;210.697000;210.666000;210.674000;0 +20260302 071900;210.673000;210.695000;210.645000;210.670000;0 +20260302 072000;210.670000;210.685000;210.652000;210.652000;0 +20260302 072100;210.654000;210.665000;210.620000;210.640000;0 +20260302 072200;210.642000;210.655000;210.605000;210.611000;0 +20260302 072300;210.608000;210.687000;210.601000;210.662000;0 +20260302 072400;210.664000;210.664000;210.633000;210.645000;0 +20260302 072500;210.645000;210.704000;210.645000;210.655000;0 +20260302 072600;210.651000;210.697000;210.637000;210.692000;0 +20260302 072700;210.690000;210.716000;210.676000;210.678000;0 +20260302 072800;210.677000;210.707000;210.677000;210.693000;0 +20260302 072900;210.692000;210.693000;210.662000;210.681000;0 +20260302 073000;210.681000;210.730000;210.680000;210.720000;0 +20260302 073100;210.716000;210.748000;210.705000;210.745000;0 +20260302 073200;210.744000;210.782000;210.744000;210.777000;0 +20260302 073300;210.781000;210.800000;210.756000;210.759000;0 +20260302 073400;210.760000;210.789000;210.760000;210.780000;0 +20260302 073500;210.780000;210.808000;210.769000;210.792000;0 +20260302 073600;210.792000;210.799000;210.767000;210.768000;0 +20260302 073700;210.773000;210.827000;210.773000;210.818000;0 +20260302 073800;210.819000;210.866000;210.811000;210.861000;0 +20260302 073900;210.861000;210.864000;210.811000;210.834000;0 +20260302 074000;210.834000;210.873000;210.833000;210.840000;0 +20260302 074100;210.841000;210.852000;210.829000;210.831000;0 +20260302 074200;210.831000;210.848000;210.806000;210.822000;0 +20260302 074300;210.819000;210.839000;210.811000;210.811000;0 +20260302 074400;210.811000;210.825000;210.763000;210.778000;0 +20260302 074500;210.774000;210.783000;210.689000;210.698000;0 +20260302 074600;210.698000;210.702000;210.602000;210.636000;0 +20260302 074700;210.633000;210.665000;210.601000;210.621000;0 +20260302 074800;210.621000;210.696000;210.621000;210.685000;0 +20260302 074900;210.689000;210.701000;210.678000;210.683000;0 +20260302 075000;210.684000;210.699000;210.674000;210.697000;0 +20260302 075100;210.697000;210.724000;210.679000;210.690000;0 +20260302 075200;210.692000;210.717000;210.679000;210.713000;0 +20260302 075300;210.715000;210.785000;210.715000;210.781000;0 +20260302 075400;210.782000;210.793000;210.752000;210.774000;0 +20260302 075500;210.781000;210.781000;210.720000;210.730000;0 +20260302 075600;210.727000;210.829000;210.720000;210.828000;0 +20260302 075700;210.828000;210.876000;210.828000;210.861000;0 +20260302 075800;210.852000;210.856000;210.835000;210.847000;0 +20260302 075900;210.847000;210.864000;210.806000;210.817000;0 +20260302 080000;210.814000;210.830000;210.795000;210.816000;0 +20260302 080100;210.824000;210.836000;210.787000;210.830000;0 +20260302 080200;210.834000;210.852000;210.814000;210.819000;0 +20260302 080300;210.818000;210.838000;210.793000;210.823000;0 +20260302 080400;210.821000;210.824000;210.807000;210.810000;0 +20260302 080500;210.814000;210.814000;210.774000;210.787000;0 +20260302 080600;210.786000;210.848000;210.776000;210.826000;0 +20260302 080700;210.826000;210.826000;210.794000;210.805000;0 +20260302 080800;210.797000;210.797000;210.747000;210.782000;0 +20260302 080900;210.782000;210.795000;210.753000;210.772000;0 +20260302 081000;210.773000;210.793000;210.771000;210.788000;0 +20260302 081100;210.794000;210.801000;210.755000;210.769000;0 +20260302 081200;210.769000;210.773000;210.732000;210.736000;0 +20260302 081300;210.732000;210.783000;210.718000;210.783000;0 +20260302 081400;210.784000;210.810000;210.754000;210.793000;0 +20260302 081500;210.797000;210.823000;210.783000;210.810000;0 +20260302 081600;210.809000;210.844000;210.798000;210.819000;0 +20260302 081700;210.820000;210.828000;210.805000;210.817000;0 +20260302 081800;210.820000;210.836000;210.813000;210.817000;0 +20260302 081900;210.820000;210.847000;210.801000;210.832000;0 +20260302 082000;210.834000;210.881000;210.826000;210.868000;0 +20260302 082100;210.867000;210.933000;210.856000;210.932000;0 +20260302 082200;210.931000;210.991000;210.917000;210.951000;0 +20260302 082300;210.952000;210.952000;210.869000;210.869000;0 +20260302 082400;210.868000;210.970000;210.867000;210.951000;0 +20260302 082500;210.949000;211.036000;210.948000;211.012000;0 +20260302 082600;211.008000;211.057000;211.001000;211.001000;0 +20260302 082700;211.001000;211.003000;210.913000;210.925000;0 +20260302 082800;210.924000;210.930000;210.875000;210.929000;0 +20260302 082900;210.930000;210.967000;210.927000;210.954000;0 +20260302 083000;210.955000;210.995000;210.952000;210.995000;0 +20260302 083100;210.990000;211.010000;210.970000;211.004000;0 +20260302 083200;211.007000;211.009000;210.953000;210.962000;0 +20260302 083300;210.959000;210.959000;210.918000;210.932000;0 +20260302 083400;210.933000;210.956000;210.913000;210.944000;0 +20260302 083500;210.940000;210.970000;210.933000;210.952000;0 +20260302 083600;210.954000;210.956000;210.904000;210.911000;0 +20260302 083700;210.917000;210.917000;210.869000;210.880000;0 +20260302 083800;210.884000;210.908000;210.875000;210.901000;0 +20260302 083900;210.901000;210.907000;210.870000;210.881000;0 +20260302 084000;210.885000;210.934000;210.881000;210.897000;0 +20260302 084100;210.897000;210.929000;210.894000;210.922000;0 +20260302 084200;210.922000;210.950000;210.906000;210.910000;0 +20260302 084300;210.917000;210.917000;210.802000;210.867000;0 +20260302 084400;210.869000;210.924000;210.869000;210.891000;0 +20260302 084500;210.894000;210.917000;210.879000;210.883000;0 +20260302 084600;210.883000;210.901000;210.876000;210.881000;0 +20260302 084700;210.885000;210.910000;210.877000;210.887000;0 +20260302 084800;210.889000;210.959000;210.878000;210.940000;0 +20260302 084900;210.942000;210.962000;210.925000;210.946000;0 +20260302 085000;210.949000;210.972000;210.936000;210.942000;0 +20260302 085100;210.939000;210.943000;210.876000;210.891000;0 +20260302 085200;210.896000;210.976000;210.885000;210.958000;0 +20260302 085300;210.958000;210.961000;210.925000;210.955000;0 +20260302 085400;210.960000;210.963000;210.937000;210.954000;0 +20260302 085500;210.957000;210.961000;210.829000;210.845000;0 +20260302 085600;210.848000;210.907000;210.848000;210.897000;0 +20260302 085700;210.899000;210.899000;210.833000;210.836000;0 +20260302 085800;210.841000;210.841000;210.778000;210.807000;0 +20260302 085900;210.808000;210.818000;210.786000;210.795000;0 +20260302 090000;210.790000;210.792000;210.712000;210.726000;0 +20260302 090100;210.726000;210.755000;210.708000;210.714000;0 +20260302 090200;210.716000;210.755000;210.702000;210.755000;0 +20260302 090300;210.757000;210.802000;210.691000;210.699000;0 +20260302 090400;210.702000;210.708000;210.655000;210.700000;0 +20260302 090500;210.701000;210.815000;210.701000;210.808000;0 +20260302 090600;210.810000;210.936000;210.810000;210.929000;0 +20260302 090700;210.928000;211.013000;210.921000;210.992000;0 +20260302 090800;210.994000;211.028000;210.950000;211.028000;0 +20260302 090900;211.029000;211.082000;211.010000;211.012000;0 +20260302 091000;211.013000;211.014000;210.969000;211.007000;0 +20260302 091100;211.007000;211.037000;210.993000;211.027000;0 +20260302 091200;211.026000;211.048000;211.014000;211.017000;0 +20260302 091300;211.021000;211.039000;211.005000;211.027000;0 +20260302 091400;211.020000;211.103000;211.020000;211.067000;0 +20260302 091500;211.069000;211.069000;211.014000;211.028000;0 +20260302 091600;211.026000;211.036000;210.996000;211.016000;0 +20260302 091700;211.016000;211.016000;210.876000;210.915000;0 +20260302 091800;210.914000;210.949000;210.908000;210.936000;0 +20260302 091900;210.937000;210.968000;210.937000;210.957000;0 +20260302 092000;210.957000;210.993000;210.905000;210.932000;0 +20260302 092100;210.933000;210.980000;210.914000;210.917000;0 +20260302 092200;210.919000;210.925000;210.881000;210.919000;0 +20260302 092300;210.921000;210.937000;210.885000;210.886000;0 +20260302 092400;210.888000;210.953000;210.882000;210.943000;0 +20260302 092500;210.944000;210.970000;210.919000;210.926000;0 +20260302 092600;210.926000;210.928000;210.881000;210.913000;0 +20260302 092700;210.916000;210.951000;210.911000;210.932000;0 +20260302 092800;210.933000;210.969000;210.932000;210.951000;0 +20260302 092900;210.952000;210.952000;210.919000;210.941000;0 +20260302 093000;210.942000;210.957000;210.863000;210.905000;0 +20260302 093100;210.910000;211.036000;210.897000;211.024000;0 +20260302 093200;211.026000;211.069000;210.993000;211.065000;0 +20260302 093300;211.065000;211.065000;210.989000;211.031000;0 +20260302 093400;211.024000;211.051000;211.003000;211.027000;0 +20260302 093500;211.027000;211.043000;210.988000;211.038000;0 +20260302 093600;211.036000;211.043000;210.963000;210.983000;0 +20260302 093700;210.982000;211.088000;210.982000;211.075000;0 +20260302 093800;211.077000;211.087000;211.005000;211.028000;0 +20260302 093900;211.030000;211.101000;211.018000;211.085000;0 +20260302 094000;211.084000;211.094000;211.039000;211.072000;0 +20260302 094100;211.073000;211.144000;211.073000;211.117000;0 +20260302 094200;211.108000;211.156000;211.108000;211.131000;0 +20260302 094300;211.133000;211.208000;211.120000;211.189000;0 +20260302 094400;211.188000;211.231000;211.157000;211.192000;0 +20260302 094500;211.193000;211.235000;211.174000;211.210000;0 +20260302 094600;211.210000;211.243000;211.174000;211.206000;0 +20260302 094700;211.204000;211.219000;211.152000;211.165000;0 +20260302 094800;211.166000;211.219000;211.159000;211.215000;0 +20260302 094900;211.219000;211.301000;211.209000;211.294000;0 +20260302 095000;211.295000;211.297000;211.217000;211.257000;0 +20260302 095100;211.257000;211.362000;211.256000;211.327000;0 +20260302 095200;211.325000;211.325000;211.261000;211.277000;0 +20260302 095300;211.279000;211.314000;211.205000;211.312000;0 +20260302 095400;211.312000;211.320000;211.282000;211.310000;0 +20260302 095500;211.310000;211.310000;211.270000;211.283000;0 +20260302 095600;211.282000;211.283000;211.212000;211.250000;0 +20260302 095700;211.250000;211.294000;211.230000;211.270000;0 +20260302 095800;211.269000;211.273000;211.238000;211.249000;0 +20260302 095900;211.243000;211.258000;211.231000;211.231000;0 +20260302 100000;211.231000;211.352000;211.187000;211.279000;0 +20260302 100100;211.278000;211.347000;211.265000;211.320000;0 +20260302 100200;211.321000;211.355000;211.287000;211.303000;0 +20260302 100300;211.305000;211.338000;211.260000;211.292000;0 +20260302 100400;211.294000;211.326000;211.234000;211.256000;0 +20260302 100500;211.254000;211.272000;211.226000;211.267000;0 +20260302 100600;211.271000;211.279000;211.253000;211.257000;0 +20260302 100700;211.255000;211.346000;211.255000;211.303000;0 +20260302 100800;211.300000;211.303000;211.239000;211.276000;0 +20260302 100900;211.278000;211.288000;211.240000;211.257000;0 +20260302 101000;211.260000;211.286000;211.247000;211.279000;0 +20260302 101100;211.276000;211.322000;211.248000;211.298000;0 +20260302 101200;211.296000;211.338000;211.287000;211.306000;0 +20260302 101300;211.304000;211.373000;211.268000;211.329000;0 +20260302 101400;211.327000;211.376000;211.314000;211.350000;0 +20260302 101500;211.350000;211.358000;211.284000;211.290000;0 +20260302 101600;211.290000;211.312000;211.254000;211.261000;0 +20260302 101700;211.260000;211.312000;211.260000;211.265000;0 +20260302 101800;211.265000;211.270000;211.200000;211.200000;0 +20260302 101900;211.199000;211.244000;211.181000;211.227000;0 +20260302 102000;211.229000;211.272000;211.217000;211.229000;0 +20260302 102100;211.229000;211.255000;211.221000;211.248000;0 +20260302 102200;211.248000;211.261000;211.193000;211.217000;0 +20260302 102300;211.217000;211.284000;211.217000;211.259000;0 +20260302 102400;211.260000;211.271000;211.221000;211.242000;0 +20260302 102500;211.244000;211.253000;211.187000;211.190000;0 +20260302 102600;211.191000;211.213000;211.165000;211.172000;0 +20260302 102700;211.171000;211.203000;211.171000;211.195000;0 +20260302 102800;211.193000;211.218000;211.106000;211.112000;0 +20260302 102900;211.112000;211.178000;211.112000;211.157000;0 +20260302 103000;211.158000;211.226000;211.153000;211.165000;0 +20260302 103100;211.166000;211.179000;211.133000;211.150000;0 +20260302 103200;211.152000;211.182000;211.128000;211.168000;0 +20260302 103300;211.170000;211.170000;211.138000;211.162000;0 +20260302 103400;211.159000;211.172000;211.139000;211.150000;0 +20260302 103500;211.152000;211.158000;211.103000;211.112000;0 +20260302 103600;211.113000;211.128000;211.076000;211.082000;0 +20260302 103700;211.080000;211.084000;211.008000;211.021000;0 +20260302 103800;211.021000;211.049000;210.991000;210.991000;0 +20260302 103900;210.992000;211.026000;210.968000;210.981000;0 +20260302 104000;210.980000;211.018000;210.980000;210.997000;0 +20260302 104100;210.997000;211.053000;210.995000;211.041000;0 +20260302 104200;211.041000;211.055000;211.028000;211.039000;0 +20260302 104300;211.039000;211.050000;211.011000;211.045000;0 +20260302 104400;211.045000;211.091000;211.045000;211.056000;0 +20260302 104500;211.053000;211.058000;211.018000;211.027000;0 +20260302 104600;211.022000;211.022000;210.950000;210.966000;0 +20260302 104700;210.966000;211.025000;210.942000;210.973000;0 +20260302 104800;210.974000;211.006000;210.949000;210.984000;0 +20260302 104900;210.983000;210.999000;210.975000;210.979000;0 +20260302 105000;210.980000;210.980000;210.888000;210.907000;0 +20260302 105100;210.906000;210.940000;210.906000;210.912000;0 +20260302 105200;210.913000;210.939000;210.857000;210.858000;0 +20260302 105300;210.855000;210.892000;210.823000;210.890000;0 +20260302 105400;210.889000;210.897000;210.823000;210.830000;0 +20260302 105500;210.826000;210.855000;210.768000;210.769000;0 +20260302 105600;210.769000;210.844000;210.761000;210.835000;0 +20260302 105700;210.834000;210.900000;210.758000;210.859000;0 +20260302 105800;210.858000;210.915000;210.858000;210.915000;0 +20260302 105900;210.916000;210.930000;210.907000;210.911000;0 +20260302 110000;210.909000;210.909000;210.853000;210.856000;0 +20260302 110100;210.857000;210.871000;210.842000;210.860000;0 +20260302 110200;210.860000;210.862000;210.787000;210.813000;0 +20260302 110300;210.810000;210.823000;210.779000;210.813000;0 +20260302 110400;210.811000;210.837000;210.800000;210.828000;0 +20260302 110500;210.829000;210.846000;210.771000;210.797000;0 +20260302 110600;210.795000;210.863000;210.788000;210.841000;0 +20260302 110700;210.840000;210.854000;210.830000;210.840000;0 +20260302 110800;210.842000;210.895000;210.841000;210.882000;0 +20260302 110900;210.880000;210.897000;210.863000;210.890000;0 +20260302 111000;210.890000;210.908000;210.868000;210.876000;0 +20260302 111100;210.870000;210.874000;210.825000;210.840000;0 +20260302 111200;210.838000;210.855000;210.822000;210.822000;0 +20260302 111300;210.825000;210.856000;210.825000;210.846000;0 +20260302 111400;210.847000;210.851000;210.807000;210.818000;0 +20260302 111500;210.817000;210.840000;210.817000;210.823000;0 +20260302 111600;210.824000;210.831000;210.780000;210.790000;0 +20260302 111700;210.793000;210.814000;210.789000;210.797000;0 +20260302 111800;210.805000;210.815000;210.755000;210.755000;0 +20260302 111900;210.756000;210.777000;210.747000;210.753000;0 +20260302 112000;210.752000;210.753000;210.728000;210.741000;0 +20260302 112100;210.744000;210.753000;210.723000;210.738000;0 +20260302 112200;210.739000;210.769000;210.737000;210.766000;0 +20260302 112300;210.770000;210.821000;210.760000;210.819000;0 +20260302 112400;210.818000;210.823000;210.783000;210.800000;0 +20260302 112500;210.801000;210.824000;210.792000;210.821000;0 +20260302 112600;210.823000;210.827000;210.805000;210.812000;0 +20260302 112700;210.807000;210.807000;210.719000;210.719000;0 +20260302 112800;210.718000;210.743000;210.710000;210.719000;0 +20260302 112900;210.717000;210.737000;210.708000;210.708000;0 +20260302 113000;210.708000;210.722000;210.674000;210.692000;0 +20260302 113100;210.693000;210.693000;210.562000;210.583000;0 +20260302 113200;210.583000;210.605000;210.534000;210.568000;0 +20260302 113300;210.572000;210.583000;210.514000;210.578000;0 +20260302 113400;210.579000;210.579000;210.505000;210.532000;0 +20260302 113500;210.533000;210.612000;210.533000;210.603000;0 +20260302 113600;210.599000;210.654000;210.599000;210.650000;0 +20260302 113700;210.650000;210.695000;210.633000;210.672000;0 +20260302 113800;210.672000;210.693000;210.647000;210.666000;0 +20260302 113900;210.671000;210.676000;210.622000;210.642000;0 +20260302 114000;210.639000;210.674000;210.620000;210.639000;0 +20260302 114100;210.640000;210.696000;210.630000;210.662000;0 +20260302 114200;210.660000;210.665000;210.614000;210.617000;0 +20260302 114300;210.615000;210.637000;210.597000;210.600000;0 +20260302 114400;210.604000;210.612000;210.577000;210.598000;0 +20260302 114500;210.598000;210.629000;210.594000;210.619000;0 +20260302 114600;210.621000;210.683000;210.615000;210.682000;0 +20260302 114700;210.681000;210.716000;210.655000;210.714000;0 +20260302 114800;210.714000;210.731000;210.689000;210.731000;0 +20260302 114900;210.732000;210.796000;210.714000;210.795000;0 +20260302 115000;210.799000;210.799000;210.744000;210.760000;0 +20260302 115100;210.764000;210.773000;210.747000;210.767000;0 +20260302 115200;210.766000;210.798000;210.765000;210.787000;0 +20260302 115300;210.787000;210.792000;210.756000;210.761000;0 +20260302 115400;210.763000;210.801000;210.757000;210.790000;0 +20260302 115500;210.789000;210.846000;210.765000;210.836000;0 +20260302 115600;210.831000;210.883000;210.828000;210.877000;0 +20260302 115700;210.877000;210.883000;210.840000;210.857000;0 +20260302 115800;210.858000;210.872000;210.846000;210.855000;0 +20260302 115900;210.855000;210.875000;210.830000;210.872000;0 +20260302 120000;210.874000;210.890000;210.856000;210.858000;0 +20260302 120100;210.859000;210.861000;210.812000;210.823000;0 +20260302 120200;210.824000;210.842000;210.811000;210.821000;0 +20260302 120300;210.819000;210.866000;210.810000;210.856000;0 +20260302 120400;210.857000;210.905000;210.857000;210.888000;0 +20260302 120500;210.886000;210.953000;210.875000;210.942000;0 +20260302 120600;210.948000;211.021000;210.948000;210.996000;0 +20260302 120700;210.998000;211.034000;210.988000;211.025000;0 +20260302 120800;211.024000;211.036000;210.990000;211.009000;0 +20260302 120900;211.011000;211.027000;210.996000;211.025000;0 +20260302 121000;211.025000;211.025000;210.989000;210.999000;0 +20260302 121100;210.997000;211.002000;210.980000;210.993000;0 +20260302 121200;210.992000;211.027000;210.971000;211.026000;0 +20260302 121300;211.032000;211.060000;211.002000;211.049000;0 +20260302 121400;211.048000;211.073000;211.043000;211.048000;0 +20260302 121500;211.048000;211.068000;211.031000;211.064000;0 +20260302 121600;211.067000;211.093000;211.060000;211.083000;0 +20260302 121700;211.080000;211.102000;211.073000;211.076000;0 +20260302 121800;211.075000;211.087000;211.060000;211.062000;0 +20260302 121900;211.060000;211.101000;211.048000;211.098000;0 +20260302 122000;211.096000;211.098000;211.043000;211.063000;0 +20260302 122100;211.065000;211.088000;211.055000;211.060000;0 +20260302 122200;211.060000;211.082000;211.045000;211.056000;0 +20260302 122300;211.053000;211.069000;211.019000;211.023000;0 +20260302 122400;211.019000;211.052000;211.019000;211.045000;0 +20260302 122500;211.041000;211.052000;211.026000;211.034000;0 +20260302 122600;211.037000;211.040000;210.989000;211.027000;0 +20260302 122700;211.026000;211.045000;211.012000;211.020000;0 +20260302 122800;211.019000;211.040000;211.012000;211.038000;0 +20260302 122900;211.041000;211.056000;211.027000;211.040000;0 +20260302 123000;211.038000;211.058000;211.028000;211.052000;0 +20260302 123100;211.051000;211.070000;211.028000;211.068000;0 +20260302 123200;211.069000;211.094000;211.054000;211.055000;0 +20260302 123300;211.052000;211.059000;211.010000;211.013000;0 +20260302 123400;211.011000;211.017000;210.993000;211.004000;0 +20260302 123500;211.005000;211.010000;210.981000;210.996000;0 +20260302 123600;210.989000;211.030000;210.989000;211.029000;0 +20260302 123700;211.029000;211.029000;210.983000;210.990000;0 +20260302 123800;210.991000;210.992000;210.938000;210.963000;0 +20260302 123900;210.962000;210.984000;210.951000;210.977000;0 +20260302 124000;210.978000;211.004000;210.963000;210.978000;0 +20260302 124100;210.980000;211.020000;210.979000;211.011000;0 +20260302 124200;211.011000;211.017000;210.978000;210.992000;0 +20260302 124300;210.993000;211.012000;210.978000;211.002000;0 +20260302 124400;211.002000;211.042000;210.998000;211.041000;0 +20260302 124500;211.042000;211.044000;210.995000;210.997000;0 +20260302 124600;211.001000;211.009000;210.991000;210.998000;0 +20260302 124700;211.001000;211.022000;210.998000;211.013000;0 +20260302 124800;211.013000;211.057000;211.013000;211.044000;0 +20260302 124900;211.044000;211.056000;211.017000;211.049000;0 +20260302 125000;211.049000;211.069000;211.044000;211.065000;0 +20260302 125100;211.064000;211.113000;211.064000;211.105000;0 +20260302 125200;211.105000;211.127000;211.094000;211.121000;0 +20260302 125300;211.121000;211.138000;211.109000;211.120000;0 +20260302 125400;211.120000;211.121000;211.083000;211.087000;0 +20260302 125500;211.088000;211.120000;211.081000;211.097000;0 +20260302 125600;211.096000;211.096000;211.057000;211.068000;0 +20260302 125700;211.068000;211.120000;211.067000;211.106000;0 +20260302 125800;211.104000;211.150000;211.099000;211.149000;0 +20260302 125900;211.150000;211.150000;211.101000;211.101000;0 +20260302 130000;211.100000;211.110000;211.037000;211.048000;0 +20260302 130100;211.045000;211.052000;211.026000;211.034000;0 +20260302 130200;211.033000;211.053000;211.004000;211.008000;0 +20260302 130300;211.005000;211.013000;210.994000;211.000000;0 +20260302 130400;211.000000;211.010000;210.971000;211.009000;0 +20260302 130500;211.009000;211.010000;210.953000;210.956000;0 +20260302 130600;210.953000;210.967000;210.927000;210.936000;0 +20260302 130700;210.938000;210.976000;210.938000;210.961000;0 +20260302 130800;210.960000;210.963000;210.942000;210.943000;0 +20260302 130900;210.942000;210.950000;210.927000;210.939000;0 +20260302 131000;210.940000;210.959000;210.932000;210.939000;0 +20260302 131100;210.940000;210.968000;210.921000;210.963000;0 +20260302 131200;210.962000;211.004000;210.960000;210.998000;0 +20260302 131300;210.995000;211.003000;210.984000;211.003000;0 +20260302 131400;211.004000;211.025000;210.996000;210.996000;0 +20260302 131500;211.000000;211.003000;210.979000;210.989000;0 +20260302 131600;210.992000;210.995000;210.971000;210.983000;0 +20260302 131700;210.984000;210.997000;210.981000;210.988000;0 +20260302 131800;210.986000;211.008000;210.982000;210.985000;0 +20260302 131900;210.985000;210.989000;210.965000;210.970000;0 +20260302 132000;210.969000;210.975000;210.938000;210.941000;0 +20260302 132100;210.941000;210.943000;210.924000;210.930000;0 +20260302 132200;210.934000;210.966000;210.934000;210.961000;0 +20260302 132300;210.960000;210.974000;210.958000;210.959000;0 +20260302 132400;210.953000;210.966000;210.949000;210.960000;0 +20260302 132500;210.959000;210.964000;210.937000;210.938000;0 +20260302 132600;210.936000;211.003000;210.936000;210.992000;0 +20260302 132700;210.993000;211.017000;210.992000;210.996000;0 +20260302 132800;210.998000;211.017000;210.990000;211.009000;0 +20260302 132900;211.009000;211.012000;210.991000;211.002000;0 +20260302 133000;211.001000;211.004000;210.976000;210.988000;0 +20260302 133100;210.987000;210.992000;210.967000;210.980000;0 +20260302 133200;210.983000;210.995000;210.973000;210.990000;0 +20260302 133300;210.992000;211.004000;210.982000;210.997000;0 +20260302 133400;210.997000;211.000000;210.987000;210.996000;0 +20260302 133500;210.995000;210.997000;210.975000;210.981000;0 +20260302 133600;210.981000;210.992000;210.973000;210.973000;0 +20260302 133700;210.980000;210.981000;210.951000;210.954000;0 +20260302 133800;210.954000;210.957000;210.940000;210.955000;0 +20260302 133900;210.952000;210.968000;210.950000;210.962000;0 +20260302 134000;210.963000;210.963000;210.937000;210.945000;0 +20260302 134100;210.945000;210.946000;210.904000;210.913000;0 +20260302 134200;210.916000;210.926000;210.910000;210.919000;0 +20260302 134300;210.924000;210.952000;210.922000;210.948000;0 +20260302 134400;210.948000;210.948000;210.927000;210.928000;0 +20260302 134500;210.929000;210.931000;210.923000;210.923000;0 +20260302 134600;210.924000;210.931000;210.914000;210.922000;0 +20260302 134700;210.922000;210.928000;210.902000;210.914000;0 +20260302 134800;210.912000;210.935000;210.903000;210.931000;0 +20260302 134900;210.931000;210.948000;210.925000;210.931000;0 +20260302 135000;210.936000;210.943000;210.923000;210.930000;0 +20260302 135100;210.930000;210.946000;210.919000;210.935000;0 +20260302 135200;210.931000;210.941000;210.926000;210.936000;0 +20260302 135300;210.935000;210.949000;210.930000;210.937000;0 +20260302 135400;210.942000;210.952000;210.935000;210.935000;0 +20260302 135500;210.933000;210.936000;210.925000;210.928000;0 +20260302 135600;210.928000;210.972000;210.928000;210.971000;0 +20260302 135700;210.976000;210.990000;210.951000;210.982000;0 +20260302 135800;210.982000;210.992000;210.951000;210.951000;0 +20260302 135900;210.958000;210.987000;210.952000;210.966000;0 +20260302 140000;210.966000;210.978000;210.948000;210.977000;0 +20260302 140100;210.976000;210.982000;210.956000;210.964000;0 +20260302 140200;210.966000;210.969000;210.932000;210.953000;0 +20260302 140300;210.950000;210.979000;210.950000;210.975000;0 +20260302 140400;210.976000;210.993000;210.970000;210.970000;0 +20260302 140500;210.971000;210.975000;210.947000;210.969000;0 +20260302 140600;210.970000;210.991000;210.963000;210.973000;0 +20260302 140700;210.968000;210.972000;210.944000;210.957000;0 +20260302 140800;210.956000;210.964000;210.940000;210.949000;0 +20260302 140900;210.948000;210.955000;210.932000;210.950000;0 +20260302 141000;210.951000;211.016000;210.950000;211.004000;0 +20260302 141100;211.005000;211.011000;210.994000;210.999000;0 +20260302 141200;211.000000;211.015000;210.992000;211.013000;0 +20260302 141300;211.013000;211.039000;210.996000;211.035000;0 +20260302 141400;211.033000;211.033000;211.011000;211.019000;0 +20260302 141500;211.020000;211.042000;211.015000;211.032000;0 +20260302 141600;211.036000;211.045000;211.021000;211.036000;0 +20260302 141700;211.036000;211.036000;211.000000;211.002000;0 +20260302 141800;211.001000;211.029000;210.980000;211.028000;0 +20260302 141900;211.028000;211.033000;211.013000;211.024000;0 +20260302 142000;211.022000;211.041000;211.004000;211.030000;0 +20260302 142100;211.032000;211.047000;211.030000;211.046000;0 +20260302 142200;211.038000;211.041000;211.019000;211.020000;0 +20260302 142300;211.022000;211.037000;211.010000;211.013000;0 +20260302 142400;211.014000;211.023000;210.993000;211.000000;0 +20260302 142500;211.001000;211.020000;211.001000;211.008000;0 +20260302 142600;211.001000;211.012000;210.999000;211.006000;0 +20260302 142700;211.008000;211.019000;211.005000;211.011000;0 +20260302 142800;211.010000;211.015000;210.983000;210.983000;0 +20260302 142900;210.983000;210.997000;210.983000;210.994000;0 +20260302 143000;210.996000;211.024000;210.992000;211.014000;0 +20260302 143100;211.013000;211.028000;211.007000;211.025000;0 +20260302 143200;211.026000;211.040000;211.024000;211.026000;0 +20260302 143300;211.026000;211.029000;210.992000;210.992000;0 +20260302 143400;210.995000;211.011000;210.990000;210.995000;0 +20260302 143500;210.995000;211.019000;210.994000;211.009000;0 +20260302 143600;211.011000;211.011000;210.995000;210.995000;0 +20260302 143700;210.998000;211.004000;210.995000;210.996000;0 +20260302 143800;210.996000;211.018000;210.993000;211.007000;0 +20260302 143900;211.009000;211.014000;210.979000;210.980000;0 +20260302 144000;210.979000;210.998000;210.969000;210.972000;0 +20260302 144100;210.970000;211.015000;210.969000;210.991000;0 +20260302 144200;210.986000;210.993000;210.964000;210.979000;0 +20260302 144300;210.979000;210.987000;210.962000;210.963000;0 +20260302 144400;210.963000;210.976000;210.956000;210.976000;0 +20260302 144500;210.983000;211.019000;210.981000;211.013000;0 +20260302 144600;211.020000;211.032000;211.016000;211.032000;0 +20260302 144700;211.033000;211.056000;211.028000;211.042000;0 +20260302 144800;211.042000;211.078000;211.032000;211.044000;0 +20260302 144900;211.045000;211.050000;211.022000;211.022000;0 +20260302 145000;211.019000;211.054000;211.013000;211.053000;0 +20260302 145100;211.054000;211.055000;211.040000;211.055000;0 +20260302 145200;211.052000;211.088000;211.052000;211.077000;0 +20260302 145300;211.080000;211.086000;211.071000;211.078000;0 +20260302 145400;211.078000;211.097000;211.073000;211.092000;0 +20260302 145500;211.093000;211.105000;211.076000;211.077000;0 +20260302 145600;211.078000;211.078000;211.057000;211.064000;0 +20260302 145700;211.063000;211.078000;211.050000;211.051000;0 +20260302 145800;211.051000;211.053000;211.020000;211.032000;0 +20260302 145900;211.033000;211.039000;211.011000;211.023000;0 +20260302 150000;211.026000;211.031000;211.002000;211.013000;0 +20260302 150100;211.011000;211.018000;210.992000;211.009000;0 +20260302 150200;211.008000;211.016000;210.990000;210.991000;0 +20260302 150300;210.991000;211.001000;210.980000;210.990000;0 +20260302 150400;210.991000;211.008000;210.986000;210.996000;0 +20260302 150500;210.996000;211.003000;210.962000;210.964000;0 +20260302 150600;210.965000;210.967000;210.898000;210.915000;0 +20260302 150700;210.917000;210.940000;210.896000;210.905000;0 +20260302 150800;210.905000;210.912000;210.834000;210.879000;0 +20260302 150900;210.883000;210.883000;210.793000;210.827000;0 +20260302 151000;210.827000;210.827000;210.792000;210.802000;0 +20260302 151100;210.801000;210.843000;210.792000;210.836000;0 +20260302 151200;210.832000;210.840000;210.785000;210.824000;0 +20260302 151300;210.826000;210.829000;210.784000;210.816000;0 +20260302 151400;210.816000;210.855000;210.811000;210.841000;0 +20260302 151500;210.831000;210.871000;210.803000;210.852000;0 +20260302 151600;210.858000;210.906000;210.848000;210.879000;0 +20260302 151700;210.879000;210.930000;210.870000;210.892000;0 +20260302 151800;210.894000;210.922000;210.885000;210.896000;0 +20260302 151900;210.899000;210.908000;210.860000;210.873000;0 +20260302 152000;210.875000;210.909000;210.863000;210.891000;0 +20260302 152100;210.893000;210.897000;210.859000;210.879000;0 +20260302 152200;210.879000;210.900000;210.874000;210.883000;0 +20260302 152300;210.884000;210.905000;210.870000;210.896000;0 +20260302 152400;210.900000;210.925000;210.899000;210.907000;0 +20260302 152500;210.909000;210.909000;210.878000;210.897000;0 +20260302 152600;210.899000;210.901000;210.871000;210.873000;0 +20260302 152700;210.874000;210.884000;210.857000;210.876000;0 +20260302 152800;210.876000;210.887000;210.863000;210.872000;0 +20260302 152900;210.868000;210.878000;210.844000;210.849000;0 +20260302 153000;210.851000;210.860000;210.834000;210.835000;0 +20260302 153100;210.838000;210.846000;210.820000;210.841000;0 +20260302 153200;210.842000;210.880000;210.832000;210.843000;0 +20260302 153300;210.843000;210.875000;210.830000;210.864000;0 +20260302 153400;210.863000;210.882000;210.820000;210.820000;0 +20260302 153500;210.820000;210.839000;210.812000;210.827000;0 +20260302 153600;210.828000;210.836000;210.783000;210.790000;0 +20260302 153700;210.795000;210.819000;210.788000;210.792000;0 +20260302 153800;210.792000;210.824000;210.782000;210.824000;0 +20260302 153900;210.824000;210.830000;210.789000;210.797000;0 +20260302 154000;210.797000;210.809000;210.765000;210.765000;0 +20260302 154100;210.764000;210.796000;210.760000;210.774000;0 +20260302 154200;210.776000;210.821000;210.775000;210.816000;0 +20260302 154300;210.815000;210.830000;210.806000;210.814000;0 +20260302 154400;210.815000;210.836000;210.809000;210.822000;0 +20260302 154500;210.820000;210.832000;210.809000;210.810000;0 +20260302 154600;210.810000;210.821000;210.790000;210.794000;0 +20260302 154700;210.793000;210.830000;210.780000;210.822000;0 +20260302 154800;210.822000;210.829000;210.785000;210.785000;0 +20260302 154900;210.786000;210.794000;210.755000;210.782000;0 +20260302 155000;210.788000;210.800000;210.771000;210.771000;0 +20260302 155100;210.768000;210.795000;210.760000;210.780000;0 +20260302 155200;210.782000;210.805000;210.782000;210.789000;0 +20260302 155300;210.788000;210.789000;210.754000;210.759000;0 +20260302 155400;210.759000;210.790000;210.758000;210.775000;0 +20260302 155500;210.776000;210.844000;210.776000;210.809000;0 +20260302 155600;210.812000;210.838000;210.808000;210.838000;0 +20260302 155700;210.843000;210.860000;210.826000;210.839000;0 +20260302 155800;210.841000;210.860000;210.825000;210.858000;0 +20260302 155900;210.862000;210.873000;210.846000;210.864000;0 +20260302 160000;210.866000;210.916000;210.848000;210.910000;0 +20260302 160100;210.910000;210.911000;210.874000;210.906000;0 +20260302 160200;210.910000;210.953000;210.897000;210.914000;0 +20260302 160300;210.909000;210.914000;210.893000;210.910000;0 +20260302 160400;210.911000;210.935000;210.901000;210.935000;0 +20260302 160500;210.935000;210.999000;210.935000;210.991000;0 +20260302 160600;210.981000;210.994000;210.947000;210.993000;0 +20260302 160700;210.995000;210.995000;210.952000;210.972000;0 +20260302 160800;210.969000;210.969000;210.950000;210.951000;0 +20260302 160900;210.948000;210.975000;210.946000;210.961000;0 +20260302 161000;210.965000;210.975000;210.954000;210.967000;0 +20260302 161100;210.958000;210.992000;210.952000;210.990000;0 +20260302 161200;210.990000;210.995000;210.987000;210.993000;0 +20260302 161300;210.987000;210.998000;210.981000;210.991000;0 +20260302 161400;210.986000;211.001000;210.980000;210.991000;0 +20260302 161500;210.993000;210.998000;210.979000;210.997000;0 +20260302 161600;210.995000;211.018000;210.995000;211.018000;0 +20260302 161700;211.014000;211.018000;210.993000;211.014000;0 +20260302 161800;211.014000;211.056000;210.997000;211.053000;0 +20260302 161900;211.040000;211.040000;210.998000;211.012000;0 +20260302 162000;211.013000;211.013000;210.978000;210.996000;0 +20260302 162100;210.992000;211.005000;210.984000;210.988000;0 +20260302 162200;210.991000;211.013000;210.988000;211.010000;0 +20260302 162300;211.010000;211.017000;210.997000;211.010000;0 +20260302 162400;211.014000;211.026000;210.996000;211.021000;0 +20260302 162500;211.018000;211.018000;210.988000;210.991000;0 +20260302 162600;210.997000;210.997000;210.981000;210.990000;0 +20260302 162700;210.992000;210.994000;210.988000;210.991000;0 +20260302 162800;210.989000;210.996000;210.983000;210.989000;0 +20260302 162900;210.995000;211.011000;210.973000;210.982000;0 +20260302 163000;210.979000;210.982000;210.956000;210.968000;0 +20260302 163100;210.967000;210.973000;210.938000;210.942000;0 +20260302 163200;210.938000;210.948000;210.935000;210.937000;0 +20260302 163300;210.938000;210.941000;210.903000;210.905000;0 +20260302 163400;210.906000;210.907000;210.890000;210.898000;0 +20260302 163500;210.897000;210.897000;210.867000;210.867000;0 +20260302 163600;210.870000;210.884000;210.811000;210.818000;0 +20260302 163700;210.819000;210.858000;210.817000;210.855000;0 +20260302 163800;210.851000;210.860000;210.851000;210.853000;0 +20260302 163900;210.852000;210.869000;210.847000;210.869000;0 +20260302 164000;210.870000;210.893000;210.868000;210.893000;0 +20260302 164100;210.892000;210.893000;210.883000;210.887000;0 +20260302 164200;210.888000;210.898000;210.883000;210.898000;0 +20260302 164300;210.903000;210.911000;210.896000;210.908000;0 +20260302 164400;210.909000;210.955000;210.909000;210.914000;0 +20260302 164500;210.912000;210.924000;210.904000;210.919000;0 +20260302 164600;210.921000;210.926000;210.913000;210.925000;0 +20260302 164700;210.923000;210.924000;210.908000;210.918000;0 +20260302 164800;210.920000;210.924000;210.879000;210.893000;0 +20260302 164900;210.893000;210.908000;210.883000;210.897000;0 +20260302 165000;210.897000;210.920000;210.896000;210.911000;0 +20260302 165100;210.907000;210.913000;210.879000;210.883000;0 +20260302 165200;210.887000;210.894000;210.870000;210.887000;0 +20260302 165300;210.887000;210.903000;210.881000;210.895000;0 +20260302 165400;210.894000;210.907000;210.893000;210.904000;0 +20260302 165500;210.903000;210.933000;210.897000;210.923000;0 +20260302 165600;210.931000;210.931000;210.918000;210.922000;0 +20260302 165700;210.924000;210.926000;210.890000;210.891000;0 +20260302 165800;210.890000;210.911000;210.883000;210.910000;0 +20260302 165900;210.915000;210.926000;210.902000;210.902000;0 +20260302 170400;210.843000;210.857000;210.841000;210.857000;0 +20260302 170500;210.852000;210.911000;210.852000;210.910000;0 +20260302 170600;210.897000;210.897000;210.879000;210.879000;0 +20260302 170700;210.889000;210.889000;210.889000;210.889000;0 +20260302 170800;210.933000;210.984000;210.855000;210.855000;0 +20260302 170900;210.856000;210.856000;210.641000;210.641000;0 +20260302 171000;210.641000;210.655000;210.637000;210.655000;0 +20260302 171100;210.806000;210.920000;210.772000;210.920000;0 +20260302 171200;210.924000;210.924000;210.924000;210.924000;0 +20260302 171300;210.940000;210.940000;210.940000;210.940000;0 +20260302 171400;210.940000;210.965000;210.905000;210.905000;0 +20260302 171500;210.902000;210.931000;210.878000;210.886000;0 +20260302 171600;210.885000;210.901000;210.873000;210.880000;0 +20260302 171700;210.881000;210.883000;210.875000;210.878000;0 +20260302 171800;210.878000;210.892000;210.874000;210.874000;0 +20260302 171900;210.875000;210.875000;210.874000;210.874000;0 +20260302 172000;210.876000;210.884000;210.876000;210.876000;0 +20260302 172100;210.884000;210.903000;210.845000;210.897000;0 +20260302 172200;210.892000;210.898000;210.877000;210.877000;0 +20260302 172300;210.878000;210.900000;210.869000;210.870000;0 +20260302 172400;210.869000;210.897000;210.869000;210.897000;0 +20260302 172500;210.892000;210.892000;210.886000;210.889000;0 +20260302 172600;210.892000;210.895000;210.858000;210.861000;0 +20260302 172700;210.861000;210.872000;210.817000;210.872000;0 +20260302 172800;210.872000;210.904000;210.859000;210.899000;0 +20260302 172900;210.898000;210.917000;210.894000;210.904000;0 +20260302 173000;210.913000;210.941000;210.895000;210.930000;0 +20260302 173100;210.930000;210.934000;210.921000;210.927000;0 +20260302 173200;210.920000;210.937000;210.920000;210.924000;0 +20260302 173300;210.925000;210.932000;210.916000;210.932000;0 +20260302 173400;210.935000;210.942000;210.911000;210.921000;0 +20260302 173500;210.921000;210.931000;210.917000;210.930000;0 +20260302 173600;210.927000;210.932000;210.868000;210.893000;0 +20260302 173700;210.887000;210.901000;210.880000;210.899000;0 +20260302 173800;210.900000;210.902000;210.877000;210.881000;0 +20260302 173900;210.882000;210.882000;210.776000;210.823000;0 +20260302 174000;210.823000;210.835000;210.820000;210.835000;0 +20260302 174100;210.836000;210.843000;210.834000;210.843000;0 +20260302 174200;210.844000;210.854000;210.839000;210.854000;0 +20260302 174300;210.857000;210.880000;210.857000;210.879000;0 +20260302 174400;210.881000;210.883000;210.879000;210.879000;0 +20260302 174500;210.878000;210.895000;210.877000;210.880000;0 +20260302 174600;210.880000;210.887000;210.880000;210.885000;0 +20260302 174700;210.886000;210.889000;210.862000;210.882000;0 +20260302 174800;210.884000;210.892000;210.883000;210.892000;0 +20260302 174900;210.892000;210.893000;210.890000;210.891000;0 +20260302 175000;210.891000;210.891000;210.885000;210.885000;0 +20260302 175100;210.885000;210.907000;210.882000;210.902000;0 +20260302 175200;210.903000;210.903000;210.883000;210.890000;0 +20260302 175300;210.881000;210.902000;210.881000;210.894000;0 +20260302 175400;210.893000;210.893000;210.889000;210.889000;0 +20260302 175500;210.889000;210.890000;210.886000;210.886000;0 +20260302 175600;210.886000;210.908000;210.886000;210.903000;0 +20260302 175700;210.901000;210.909000;210.901000;210.906000;0 +20260302 175800;210.906000;210.910000;210.906000;210.910000;0 +20260302 175900;210.909000;210.917000;210.909000;210.915000;0 +20260302 180000;210.914000;210.961000;210.874000;210.929000;0 +20260302 180100;210.928000;210.943000;210.888000;210.939000;0 +20260302 180200;210.940000;210.946000;210.919000;210.928000;0 +20260302 180300;210.929000;210.948000;210.917000;210.944000;0 +20260302 180400;210.942000;210.969000;210.932000;210.969000;0 +20260302 180500;210.969000;210.976000;210.936000;210.946000;0 +20260302 180600;210.951000;210.957000;210.945000;210.957000;0 +20260302 180700;210.953000;210.961000;210.953000;210.957000;0 +20260302 180800;210.949000;210.949000;210.930000;210.940000;0 +20260302 180900;210.939000;210.950000;210.923000;210.929000;0 +20260302 181000;210.929000;210.944000;210.906000;210.924000;0 +20260302 181100;210.923000;210.937000;210.919000;210.925000;0 +20260302 181200;210.925000;210.950000;210.925000;210.937000;0 +20260302 181300;210.935000;210.956000;210.935000;210.955000;0 +20260302 181400;210.949000;210.949000;210.944000;210.945000;0 +20260302 181500;210.953000;210.957000;210.900000;210.917000;0 +20260302 181600;210.918000;210.934000;210.907000;210.921000;0 +20260302 181700;210.923000;210.930000;210.913000;210.916000;0 +20260302 181800;210.931000;210.931000;210.864000;210.864000;0 +20260302 181900;210.871000;210.871000;210.842000;210.853000;0 +20260302 182000;210.857000;210.857000;210.819000;210.821000;0 +20260302 182100;210.824000;210.830000;210.788000;210.788000;0 +20260302 182200;210.782000;210.819000;210.771000;210.817000;0 +20260302 182300;210.817000;210.825000;210.804000;210.809000;0 +20260302 182400;210.808000;210.814000;210.785000;210.796000;0 +20260302 182500;210.796000;210.820000;210.795000;210.814000;0 +20260302 182600;210.813000;210.841000;210.808000;210.826000;0 +20260302 182700;210.829000;210.841000;210.828000;210.841000;0 +20260302 182800;210.840000;210.845000;210.831000;210.845000;0 +20260302 182900;210.848000;210.878000;210.843000;210.875000;0 +20260302 183000;210.876000;210.898000;210.874000;210.890000;0 +20260302 183100;210.890000;210.900000;210.868000;210.870000;0 +20260302 183200;210.865000;210.881000;210.865000;210.875000;0 +20260302 183300;210.877000;210.897000;210.861000;210.885000;0 +20260302 183400;210.887000;210.894000;210.883000;210.887000;0 +20260302 183500;210.886000;210.889000;210.851000;210.888000;0 +20260302 183600;210.886000;210.896000;210.861000;210.885000;0 +20260302 183700;210.885000;210.887000;210.848000;210.852000;0 +20260302 183800;210.855000;210.874000;210.854000;210.857000;0 +20260302 183900;210.860000;210.866000;210.853000;210.862000;0 +20260302 184000;210.861000;210.867000;210.854000;210.859000;0 +20260302 184100;210.860000;210.864000;210.830000;210.830000;0 +20260302 184200;210.840000;210.862000;210.840000;210.852000;0 +20260302 184300;210.850000;210.850000;210.802000;210.830000;0 +20260302 184400;210.827000;210.858000;210.823000;210.858000;0 +20260302 184500;210.851000;210.937000;210.845000;210.928000;0 +20260302 184600;210.928000;210.929000;210.891000;210.906000;0 +20260302 184700;210.914000;210.926000;210.900000;210.912000;0 +20260302 184800;210.910000;210.913000;210.881000;210.895000;0 +20260302 184900;210.894000;210.901000;210.859000;210.859000;0 +20260302 185000;210.857000;210.876000;210.838000;210.841000;0 +20260302 185100;210.841000;210.850000;210.837000;210.847000;0 +20260302 185200;210.850000;210.884000;210.849000;210.880000;0 +20260302 185300;210.880000;210.911000;210.880000;210.892000;0 +20260302 185400;210.891000;210.891000;210.864000;210.869000;0 +20260302 185500;210.872000;210.872000;210.843000;210.856000;0 +20260302 185600;210.856000;210.875000;210.853000;210.853000;0 +20260302 185700;210.863000;210.884000;210.843000;210.857000;0 +20260302 185800;210.856000;210.872000;210.846000;210.853000;0 +20260302 185900;210.853000;210.869000;210.844000;210.859000;0 +20260302 190000;210.860000;210.880000;210.776000;210.784000;0 +20260302 190100;210.779000;210.808000;210.737000;210.771000;0 +20260302 190200;210.763000;210.793000;210.742000;210.782000;0 +20260302 190300;210.781000;210.886000;210.779000;210.851000;0 +20260302 190400;210.852000;210.904000;210.835000;210.835000;0 +20260302 190500;210.836000;210.875000;210.825000;210.845000;0 +20260302 190600;210.849000;210.864000;210.847000;210.862000;0 +20260302 190700;210.861000;210.885000;210.861000;210.876000;0 +20260302 190800;210.876000;210.886000;210.856000;210.860000;0 +20260302 190900;210.860000;210.878000;210.860000;210.875000;0 +20260302 191000;210.877000;210.930000;210.870000;210.916000;0 +20260302 191100;210.916000;210.918000;210.882000;210.889000;0 +20260302 191200;210.889000;210.904000;210.877000;210.896000;0 +20260302 191300;210.897000;210.902000;210.868000;210.881000;0 +20260302 191400;210.889000;210.923000;210.879000;210.923000;0 +20260302 191500;210.923000;210.923000;210.898000;210.910000;0 +20260302 191600;210.911000;210.921000;210.863000;210.869000;0 +20260302 191700;210.867000;210.883000;210.848000;210.861000;0 +20260302 191800;210.864000;210.891000;210.858000;210.887000;0 +20260302 191900;210.890000;210.902000;210.864000;210.870000;0 +20260302 192000;210.870000;210.872000;210.838000;210.864000;0 +20260302 192100;210.864000;210.865000;210.812000;210.840000;0 +20260302 192200;210.841000;210.841000;210.815000;210.836000;0 +20260302 192300;210.836000;210.848000;210.816000;210.841000;0 +20260302 192400;210.840000;210.844000;210.798000;210.817000;0 +20260302 192500;210.815000;210.872000;210.814000;210.858000;0 +20260302 192600;210.859000;210.894000;210.840000;210.888000;0 +20260302 192700;210.892000;210.894000;210.878000;210.888000;0 +20260302 192800;210.890000;210.928000;210.880000;210.928000;0 +20260302 192900;210.929000;210.935000;210.910000;210.921000;0 +20260302 193000;210.920000;210.939000;210.908000;210.929000;0 +20260302 193100;210.930000;210.952000;210.929000;210.946000;0 +20260302 193200;210.945000;210.953000;210.928000;210.929000;0 +20260302 193300;210.928000;210.928000;210.897000;210.909000;0 +20260302 193400;210.910000;210.942000;210.908000;210.931000;0 +20260302 193500;210.934000;210.963000;210.925000;210.926000;0 +20260302 193600;210.929000;210.969000;210.914000;210.965000;0 +20260302 193700;210.966000;210.986000;210.960000;210.985000;0 +20260302 193800;210.985000;211.000000;210.965000;211.000000;0 +20260302 193900;210.993000;210.994000;210.969000;210.971000;0 +20260302 194000;210.975000;210.998000;210.975000;210.998000;0 +20260302 194100;210.998000;210.999000;210.959000;210.982000;0 +20260302 194200;210.982000;210.995000;210.980000;210.987000;0 +20260302 194300;210.986000;211.017000;210.986000;211.017000;0 +20260302 194400;211.013000;211.025000;210.988000;211.006000;0 +20260302 194500;211.005000;211.047000;210.999000;211.046000;0 +20260302 194600;211.044000;211.054000;211.030000;211.034000;0 +20260302 194700;211.032000;211.049000;211.021000;211.040000;0 +20260302 194800;211.040000;211.074000;211.040000;211.064000;0 +20260302 194900;211.064000;211.071000;211.042000;211.061000;0 +20260302 195000;211.062000;211.105000;211.062000;211.092000;0 +20260302 195100;211.091000;211.091000;211.037000;211.040000;0 +20260302 195200;211.041000;211.071000;211.026000;211.056000;0 +20260302 195300;211.057000;211.097000;211.043000;211.053000;0 +20260302 195400;211.050000;211.083000;210.964000;211.065000;0 +20260302 195500;211.070000;211.104000;211.055000;211.104000;0 +20260302 195600;211.104000;211.187000;211.082000;211.187000;0 +20260302 195700;211.188000;211.190000;211.136000;211.179000;0 +20260302 195800;211.178000;211.187000;211.161000;211.168000;0 +20260302 195900;211.169000;211.206000;211.146000;211.205000;0 +20260302 200000;211.208000;211.255000;211.200000;211.220000;0 +20260302 200100;211.220000;211.250000;211.203000;211.212000;0 +20260302 200200;211.215000;211.233000;211.151000;211.157000;0 +20260302 200300;211.156000;211.169000;211.120000;211.143000;0 +20260302 200400;211.144000;211.176000;211.142000;211.175000;0 +20260302 200500;211.175000;211.211000;211.166000;211.203000;0 +20260302 200600;211.201000;211.213000;211.178000;211.185000;0 +20260302 200700;211.186000;211.219000;211.182000;211.203000;0 +20260302 200800;211.201000;211.201000;211.159000;211.160000;0 +20260302 200900;211.173000;211.211000;211.163000;211.201000;0 +20260302 201000;211.200000;211.251000;211.197000;211.248000;0 +20260302 201100;211.252000;211.279000;211.242000;211.276000;0 +20260302 201200;211.278000;211.305000;211.275000;211.305000;0 +20260302 201300;211.303000;211.314000;211.287000;211.312000;0 +20260302 201400;211.312000;211.329000;211.279000;211.289000;0 +20260302 201500;211.286000;211.309000;211.267000;211.276000;0 +20260302 201600;211.274000;211.333000;211.274000;211.324000;0 +20260302 201700;211.333000;211.348000;211.301000;211.303000;0 +20260302 201800;211.306000;211.329000;211.305000;211.326000;0 +20260302 201900;211.325000;211.355000;211.308000;211.318000;0 +20260302 202000;211.317000;211.327000;211.278000;211.287000;0 +20260302 202100;211.292000;211.315000;211.275000;211.295000;0 +20260302 202200;211.294000;211.294000;211.256000;211.257000;0 +20260302 202300;211.259000;211.269000;211.227000;211.229000;0 +20260302 202400;211.232000;211.287000;211.229000;211.247000;0 +20260302 202500;211.249000;211.263000;211.211000;211.231000;0 +20260302 202600;211.231000;211.260000;211.222000;211.260000;0 +20260302 202700;211.259000;211.260000;211.210000;211.232000;0 +20260302 202800;211.233000;211.234000;211.197000;211.216000;0 +20260302 202900;211.221000;211.224000;211.200000;211.204000;0 +20260302 203000;211.209000;211.210000;211.125000;211.127000;0 +20260302 203100;211.123000;211.130000;211.098000;211.116000;0 +20260302 203200;211.117000;211.142000;211.114000;211.129000;0 +20260302 203300;211.129000;211.130000;211.103000;211.107000;0 +20260302 203400;211.111000;211.126000;211.092000;211.099000;0 +20260302 203500;211.099000;211.116000;211.086000;211.098000;0 +20260302 203600;211.098000;211.147000;211.097000;211.137000;0 +20260302 203700;211.139000;211.157000;211.109000;211.117000;0 +20260302 203800;211.123000;211.126000;211.103000;211.109000;0 +20260302 203900;211.113000;211.138000;211.105000;211.131000;0 +20260302 204000;211.133000;211.140000;211.112000;211.132000;0 +20260302 204100;211.130000;211.153000;211.118000;211.142000;0 +20260302 204200;211.140000;211.144000;211.119000;211.120000;0 +20260302 204300;211.120000;211.135000;211.110000;211.123000;0 +20260302 204400;211.125000;211.129000;211.106000;211.113000;0 +20260302 204500;211.114000;211.134000;211.113000;211.133000;0 +20260302 204600;211.132000;211.134000;211.104000;211.111000;0 +20260302 204700;211.112000;211.126000;211.097000;211.125000;0 +20260302 204800;211.125000;211.130000;211.112000;211.115000;0 +20260302 204900;211.115000;211.156000;211.111000;211.156000;0 +20260302 205000;211.160000;211.168000;211.127000;211.145000;0 +20260302 205100;211.144000;211.150000;211.108000;211.108000;0 +20260302 205200;211.108000;211.118000;211.088000;211.113000;0 +20260302 205300;211.115000;211.122000;211.067000;211.067000;0 +20260302 205400;211.069000;211.084000;211.054000;211.068000;0 +20260302 205500;211.067000;211.067000;211.014000;211.017000;0 +20260302 205600;211.015000;211.015000;210.973000;210.976000;0 +20260302 205700;210.974000;211.006000;210.965000;210.999000;0 +20260302 205800;210.999000;211.004000;210.962000;210.965000;0 +20260302 205900;210.965000;210.965000;210.903000;210.908000;0 +20260302 210000;210.911000;210.941000;210.890000;210.913000;0 +20260302 210100;210.912000;210.947000;210.905000;210.933000;0 +20260302 210200;210.931000;210.944000;210.880000;210.885000;0 +20260302 210300;210.881000;210.914000;210.869000;210.871000;0 +20260302 210400;210.881000;210.923000;210.879000;210.920000;0 +20260302 210500;210.921000;210.928000;210.866000;210.872000;0 +20260302 210600;210.873000;210.933000;210.867000;210.929000;0 +20260302 210700;210.928000;210.945000;210.892000;210.897000;0 +20260302 210800;210.897000;210.915000;210.876000;210.884000;0 +20260302 210900;210.884000;210.901000;210.837000;210.837000;0 +20260302 211000;210.838000;210.843000;210.800000;210.820000;0 +20260302 211100;210.821000;210.832000;210.799000;210.827000;0 +20260302 211200;210.828000;210.837000;210.801000;210.833000;0 +20260302 211300;210.831000;210.834000;210.734000;210.737000;0 +20260302 211400;210.735000;210.790000;210.730000;210.787000;0 +20260302 211500;210.789000;210.813000;210.786000;210.804000;0 +20260302 211600;210.807000;210.816000;210.793000;210.795000;0 +20260302 211700;210.797000;210.797000;210.733000;210.792000;0 +20260302 211800;210.794000;210.799000;210.757000;210.783000;0 +20260302 211900;210.783000;210.803000;210.721000;210.729000;0 +20260302 212000;210.727000;210.751000;210.708000;210.710000;0 +20260302 212100;210.711000;210.728000;210.690000;210.708000;0 +20260302 212200;210.708000;210.784000;210.707000;210.779000;0 +20260302 212300;210.779000;210.790000;210.734000;210.735000;0 +20260302 212400;210.734000;210.757000;210.720000;210.757000;0 +20260302 212500;210.759000;210.759000;210.705000;210.711000;0 +20260302 212600;210.712000;210.782000;210.701000;210.780000;0 +20260302 212700;210.780000;210.802000;210.768000;210.783000;0 +20260302 212800;210.783000;210.800000;210.766000;210.785000;0 +20260302 212900;210.785000;210.810000;210.782000;210.789000;0 +20260302 213000;210.789000;210.806000;210.761000;210.774000;0 +20260302 213100;210.774000;210.810000;210.774000;210.786000;0 +20260302 213200;210.782000;210.793000;210.759000;210.770000;0 +20260302 213300;210.770000;210.775000;210.740000;210.740000;0 +20260302 213400;210.741000;210.795000;210.740000;210.790000;0 +20260302 213500;210.790000;210.813000;210.787000;210.787000;0 +20260302 213600;210.787000;210.792000;210.757000;210.790000;0 +20260302 213700;210.792000;210.817000;210.787000;210.811000;0 +20260302 213800;210.811000;210.837000;210.811000;210.833000;0 +20260302 213900;210.833000;210.838000;210.790000;210.796000;0 +20260302 214000;210.798000;210.815000;210.775000;210.787000;0 +20260302 214100;210.793000;210.864000;210.778000;210.841000;0 +20260302 214200;210.843000;210.868000;210.838000;210.851000;0 +20260302 214300;210.852000;210.853000;210.807000;210.808000;0 +20260302 214400;210.808000;210.829000;210.801000;210.827000;0 +20260302 214500;210.829000;210.867000;210.823000;210.862000;0 +20260302 214600;210.857000;210.876000;210.852000;210.864000;0 +20260302 214700;210.864000;210.870000;210.831000;210.858000;0 +20260302 214800;210.858000;210.860000;210.843000;210.854000;0 +20260302 214900;210.857000;210.861000;210.828000;210.828000;0 +20260302 215000;210.828000;210.830000;210.797000;210.802000;0 +20260302 215100;210.805000;210.807000;210.784000;210.792000;0 +20260302 215200;210.792000;210.795000;210.773000;210.775000;0 +20260302 215300;210.777000;210.791000;210.767000;210.778000;0 +20260302 215400;210.778000;210.804000;210.778000;210.797000;0 +20260302 215500;210.798000;210.811000;210.795000;210.798000;0 +20260302 215600;210.798000;210.801000;210.781000;210.796000;0 +20260302 215700;210.795000;210.815000;210.789000;210.801000;0 +20260302 215800;210.801000;210.817000;210.788000;210.816000;0 +20260302 215900;210.814000;210.817000;210.788000;210.788000;0 +20260302 220000;210.787000;210.814000;210.780000;210.796000;0 +20260302 220100;210.796000;210.840000;210.796000;210.829000;0 +20260302 220200;210.829000;210.844000;210.827000;210.828000;0 +20260302 220300;210.828000;210.835000;210.783000;210.799000;0 +20260302 220400;210.800000;210.816000;210.792000;210.806000;0 +20260302 220500;210.805000;210.826000;210.797000;210.816000;0 +20260302 220600;210.816000;210.821000;210.791000;210.799000;0 +20260302 220700;210.795000;210.802000;210.791000;210.792000;0 +20260302 220800;210.794000;210.811000;210.758000;210.809000;0 +20260302 220900;210.807000;210.810000;210.781000;210.799000;0 +20260302 221000;210.799000;210.808000;210.764000;210.767000;0 +20260302 221100;210.767000;210.769000;210.750000;210.754000;0 +20260302 221200;210.755000;210.768000;210.748000;210.767000;0 +20260302 221300;210.767000;210.772000;210.747000;210.750000;0 +20260302 221400;210.752000;210.778000;210.746000;210.773000;0 +20260302 221500;210.776000;210.805000;210.772000;210.802000;0 +20260302 221600;210.802000;210.829000;210.802000;210.829000;0 +20260302 221700;210.831000;210.854000;210.823000;210.851000;0 +20260302 221800;210.850000;210.868000;210.840000;210.862000;0 +20260302 221900;210.862000;210.864000;210.822000;210.839000;0 +20260302 222000;210.841000;210.849000;210.820000;210.825000;0 +20260302 222100;210.826000;210.854000;210.826000;210.839000;0 +20260302 222200;210.839000;210.866000;210.809000;210.865000;0 +20260302 222300;210.861000;210.867000;210.844000;210.859000;0 +20260302 222400;210.859000;210.863000;210.820000;210.820000;0 +20260302 222500;210.820000;210.829000;210.798000;210.798000;0 +20260302 222600;210.802000;210.817000;210.792000;210.809000;0 +20260302 222700;210.808000;210.814000;210.793000;210.807000;0 +20260302 222800;210.807000;210.817000;210.800000;210.803000;0 +20260302 222900;210.800000;210.801000;210.747000;210.753000;0 +20260302 223000;210.753000;210.754000;210.723000;210.730000;0 +20260302 223100;210.729000;210.730000;210.697000;210.698000;0 +20260302 223200;210.698000;210.711000;210.676000;210.679000;0 +20260302 223300;210.672000;210.710000;210.658000;210.700000;0 +20260302 223400;210.702000;210.720000;210.695000;210.720000;0 +20260302 223500;210.720000;210.765000;210.717000;210.760000;0 +20260302 223600;210.762000;210.781000;210.760000;210.777000;0 +20260302 223700;210.775000;210.801000;210.772000;210.792000;0 +20260302 223800;210.793000;210.830000;210.781000;210.783000;0 +20260302 223900;210.782000;210.790000;210.772000;210.779000;0 +20260302 224000;210.784000;210.789000;210.759000;210.770000;0 +20260302 224100;210.770000;210.779000;210.743000;210.749000;0 +20260302 224200;210.750000;210.772000;210.731000;210.739000;0 +20260302 224300;210.738000;210.762000;210.727000;210.762000;0 +20260302 224400;210.762000;210.767000;210.727000;210.764000;0 +20260302 224500;210.767000;210.819000;210.763000;210.816000;0 +20260302 224600;210.820000;210.820000;210.781000;210.783000;0 +20260302 224700;210.783000;210.786000;210.750000;210.758000;0 +20260302 224800;210.759000;210.783000;210.753000;210.781000;0 +20260302 224900;210.780000;210.792000;210.768000;210.772000;0 +20260302 225000;210.772000;210.779000;210.740000;210.743000;0 +20260302 225100;210.741000;210.746000;210.721000;210.727000;0 +20260302 225200;210.727000;210.743000;210.718000;210.734000;0 +20260302 225300;210.734000;210.746000;210.725000;210.726000;0 +20260302 225400;210.728000;210.728000;210.703000;210.714000;0 +20260302 225500;210.712000;210.713000;210.686000;210.704000;0 +20260302 225600;210.705000;210.707000;210.689000;210.704000;0 +20260302 225700;210.706000;210.714000;210.696000;210.713000;0 +20260302 225800;210.713000;210.715000;210.680000;210.700000;0 +20260302 225900;210.701000;210.742000;210.699000;210.742000;0 +20260302 230000;210.740000;210.748000;210.697000;210.747000;0 +20260302 230100;210.747000;210.760000;210.708000;210.718000;0 +20260302 230200;210.717000;210.724000;210.688000;210.696000;0 +20260302 230300;210.702000;210.721000;210.686000;210.715000;0 +20260302 230400;210.716000;210.716000;210.698000;210.714000;0 +20260302 230500;210.714000;210.714000;210.657000;210.680000;0 +20260302 230600;210.679000;210.725000;210.673000;210.714000;0 +20260302 230700;210.715000;210.762000;210.709000;210.761000;0 +20260302 230800;210.759000;210.761000;210.724000;210.734000;0 +20260302 230900;210.733000;210.746000;210.726000;210.731000;0 +20260302 231000;210.721000;210.741000;210.720000;210.737000;0 +20260302 231100;210.737000;210.759000;210.708000;210.713000;0 +20260302 231200;210.716000;210.721000;210.699000;210.711000;0 +20260302 231300;210.710000;210.722000;210.705000;210.707000;0 +20260302 231400;210.706000;210.718000;210.692000;210.704000;0 +20260302 231500;210.704000;210.712000;210.688000;210.706000;0 +20260302 231600;210.707000;210.712000;210.676000;210.684000;0 +20260302 231700;210.687000;210.692000;210.671000;210.678000;0 +20260302 231800;210.679000;210.721000;210.679000;210.718000;0 +20260302 231900;210.717000;210.735000;210.716000;210.735000;0 +20260302 232000;210.735000;210.736000;210.716000;210.719000;0 +20260302 232100;210.716000;210.729000;210.707000;210.726000;0 +20260302 232200;210.722000;210.755000;210.722000;210.742000;0 +20260302 232300;210.741000;210.749000;210.720000;210.738000;0 +20260302 232400;210.738000;210.746000;210.725000;210.741000;0 +20260302 232500;210.741000;210.767000;210.740000;210.764000;0 +20260302 232600;210.763000;210.767000;210.733000;210.742000;0 +20260302 232700;210.741000;210.747000;210.727000;210.733000;0 +20260302 232800;210.733000;210.744000;210.715000;210.743000;0 +20260302 232900;210.743000;210.753000;210.716000;210.720000;0 +20260302 233000;210.718000;210.744000;210.709000;210.743000;0 +20260302 233100;210.741000;210.743000;210.712000;210.729000;0 +20260302 233200;210.728000;210.729000;210.704000;210.705000;0 +20260302 233300;210.704000;210.733000;210.694000;210.728000;0 +20260302 233400;210.727000;210.727000;210.684000;210.700000;0 +20260302 233500;210.701000;210.714000;210.691000;210.700000;0 +20260302 233600;210.700000;210.702000;210.666000;210.670000;0 +20260302 233700;210.671000;210.675000;210.657000;210.670000;0 +20260302 233800;210.672000;210.684000;210.666000;210.675000;0 +20260302 233900;210.674000;210.690000;210.664000;210.674000;0 +20260302 234000;210.677000;210.687000;210.660000;210.663000;0 +20260302 234100;210.661000;210.703000;210.659000;210.682000;0 +20260302 234200;210.680000;210.692000;210.661000;210.663000;0 +20260302 234300;210.668000;210.692000;210.667000;210.676000;0 +20260302 234400;210.674000;210.685000;210.665000;210.677000;0 +20260302 234500;210.681000;210.697000;210.675000;210.694000;0 +20260302 234600;210.689000;210.699000;210.684000;210.697000;0 +20260302 234700;210.698000;210.711000;210.693000;210.695000;0 +20260302 234800;210.696000;210.700000;210.663000;210.669000;0 +20260302 234900;210.672000;210.685000;210.650000;210.681000;0 +20260302 235000;210.680000;210.699000;210.658000;210.664000;0 +20260302 235100;210.661000;210.691000;210.657000;210.673000;0 +20260302 235200;210.675000;210.682000;210.653000;210.680000;0 +20260302 235300;210.680000;210.692000;210.668000;210.680000;0 +20260302 235400;210.681000;210.690000;210.675000;210.687000;0 +20260302 235500;210.689000;210.691000;210.664000;210.679000;0 +20260302 235600;210.680000;210.690000;210.678000;210.680000;0 +20260302 235700;210.677000;210.688000;210.655000;210.661000;0 +20260302 235800;210.662000;210.665000;210.637000;210.656000;0 +20260302 235900;210.656000;210.663000;210.644000;210.650000;0 +20260303 000000;210.652000;210.686000;210.652000;210.665000;0 +20260303 000100;210.664000;210.712000;210.651000;210.709000;0 +20260303 000200;210.710000;210.751000;210.708000;210.745000;0 +20260303 000300;210.745000;210.748000;210.706000;210.723000;0 +20260303 000400;210.724000;210.730000;210.684000;210.687000;0 +20260303 000500;210.689000;210.705000;210.678000;210.690000;0 +20260303 000600;210.685000;210.701000;210.682000;210.686000;0 +20260303 000700;210.686000;210.710000;210.683000;210.692000;0 +20260303 000800;210.697000;210.719000;210.683000;210.717000;0 +20260303 000900;210.714000;210.727000;210.683000;210.683000;0 +20260303 001000;210.679000;210.690000;210.623000;210.634000;0 +20260303 001100;210.632000;210.636000;210.586000;210.586000;0 +20260303 001200;210.585000;210.629000;210.580000;210.627000;0 +20260303 001300;210.626000;210.630000;210.583000;210.592000;0 +20260303 001400;210.590000;210.603000;210.578000;210.578000;0 +20260303 001500;210.581000;210.591000;210.557000;210.569000;0 +20260303 001600;210.565000;210.601000;210.556000;210.593000;0 +20260303 001700;210.589000;210.602000;210.566000;210.596000;0 +20260303 001800;210.596000;210.596000;210.573000;210.591000;0 +20260303 001900;210.588000;210.591000;210.556000;210.584000;0 +20260303 002000;210.586000;210.586000;210.549000;210.565000;0 +20260303 002100;210.564000;210.570000;210.553000;210.553000;0 +20260303 002200;210.552000;210.556000;210.517000;210.519000;0 +20260303 002300;210.516000;210.552000;210.516000;210.525000;0 +20260303 002400;210.527000;210.544000;210.520000;210.543000;0 +20260303 002500;210.546000;210.557000;210.537000;210.537000;0 +20260303 002600;210.538000;210.577000;210.535000;210.560000;0 +20260303 002700;210.561000;210.563000;210.538000;210.540000;0 +20260303 002800;210.541000;210.545000;210.503000;210.514000;0 +20260303 002900;210.513000;210.525000;210.496000;210.505000;0 +20260303 003000;210.505000;210.512000;210.492000;210.495000;0 +20260303 003100;210.500000;210.516000;210.478000;210.491000;0 +20260303 003200;210.496000;210.500000;210.474000;210.494000;0 +20260303 003300;210.497000;210.515000;210.487000;210.503000;0 +20260303 003400;210.503000;210.516000;210.490000;210.496000;0 +20260303 003500;210.493000;210.496000;210.458000;210.488000;0 +20260303 003600;210.489000;210.505000;210.480000;210.491000;0 +20260303 003700;210.491000;210.499000;210.432000;210.435000;0 +20260303 003800;210.434000;210.436000;210.376000;210.403000;0 +20260303 003900;210.405000;210.415000;210.397000;210.403000;0 +20260303 004000;210.400000;210.400000;210.354000;210.384000;0 +20260303 004100;210.385000;210.394000;210.352000;210.379000;0 +20260303 004200;210.379000;210.395000;210.357000;210.369000;0 +20260303 004300;210.366000;210.382000;210.356000;210.376000;0 +20260303 004400;210.378000;210.407000;210.371000;210.404000;0 +20260303 004500;210.405000;210.453000;210.388000;210.438000;0 +20260303 004600;210.437000;210.453000;210.423000;210.423000;0 +20260303 004700;210.422000;210.426000;210.377000;210.388000;0 +20260303 004800;210.388000;210.404000;210.367000;210.369000;0 +20260303 004900;210.369000;210.394000;210.363000;210.369000;0 +20260303 005000;210.370000;210.390000;210.346000;210.350000;0 +20260303 005100;210.346000;210.371000;210.341000;210.361000;0 +20260303 005200;210.362000;210.394000;210.344000;210.390000;0 +20260303 005300;210.390000;210.396000;210.350000;210.353000;0 +20260303 005400;210.349000;210.355000;210.327000;210.345000;0 +20260303 005500;210.345000;210.353000;210.310000;210.325000;0 +20260303 005600;210.320000;210.348000;210.299000;210.337000;0 +20260303 005700;210.337000;210.356000;210.312000;210.319000;0 +20260303 005800;210.319000;210.323000;210.297000;210.319000;0 +20260303 005900;210.319000;210.342000;210.319000;210.325000;0 +20260303 010000;210.324000;210.340000;210.296000;210.339000;0 +20260303 010100;210.340000;210.378000;210.333000;210.371000;0 +20260303 010200;210.371000;210.374000;210.337000;210.349000;0 +20260303 010300;210.349000;210.350000;210.306000;210.316000;0 +20260303 010400;210.316000;210.353000;210.289000;210.336000;0 +20260303 010500;210.336000;210.362000;210.312000;210.327000;0 +20260303 010600;210.327000;210.327000;210.294000;210.307000;0 +20260303 010700;210.307000;210.310000;210.243000;210.250000;0 +20260303 010800;210.251000;210.255000;210.197000;210.245000;0 +20260303 010900;210.250000;210.291000;210.248000;210.262000;0 +20260303 011000;210.265000;210.290000;210.243000;210.263000;0 +20260303 011100;210.262000;210.263000;210.229000;210.243000;0 +20260303 011200;210.243000;210.267000;210.227000;210.238000;0 +20260303 011300;210.240000;210.243000;210.204000;210.234000;0 +20260303 011400;210.235000;210.239000;210.202000;210.223000;0 +20260303 011500;210.224000;210.228000;210.185000;210.187000;0 +20260303 011600;210.185000;210.231000;210.185000;210.231000;0 +20260303 011700;210.231000;210.244000;210.211000;210.235000;0 +20260303 011800;210.235000;210.256000;210.224000;210.236000;0 +20260303 011900;210.237000;210.242000;210.213000;210.231000;0 +20260303 012000;210.231000;210.232000;210.196000;210.202000;0 +20260303 012100;210.201000;210.214000;210.136000;210.170000;0 +20260303 012200;210.171000;210.173000;210.136000;210.143000;0 +20260303 012300;210.144000;210.198000;210.140000;210.183000;0 +20260303 012400;210.185000;210.218000;210.177000;210.216000;0 +20260303 012500;210.215000;210.240000;210.202000;210.234000;0 +20260303 012600;210.234000;210.257000;210.211000;210.212000;0 +20260303 012700;210.210000;210.238000;210.207000;210.238000;0 +20260303 012800;210.239000;210.268000;210.236000;210.250000;0 +20260303 012900;210.250000;210.281000;210.250000;210.281000;0 +20260303 013000;210.281000;210.281000;210.230000;210.250000;0 +20260303 013100;210.250000;210.257000;210.224000;210.228000;0 +20260303 013200;210.225000;210.249000;210.187000;210.193000;0 +20260303 013300;210.190000;210.195000;210.169000;210.188000;0 +20260303 013400;210.186000;210.194000;210.169000;210.173000;0 +20260303 013500;210.173000;210.185000;210.156000;210.156000;0 +20260303 013600;210.156000;210.156000;210.107000;210.113000;0 +20260303 013700;210.113000;210.114000;210.062000;210.079000;0 +20260303 013800;210.080000;210.081000;210.040000;210.043000;0 +20260303 013900;210.043000;210.112000;210.039000;210.106000;0 +20260303 014000;210.109000;210.133000;210.081000;210.093000;0 +20260303 014100;210.094000;210.130000;210.088000;210.124000;0 +20260303 014200;210.124000;210.137000;210.114000;210.122000;0 +20260303 014300;210.123000;210.174000;210.122000;210.172000;0 +20260303 014400;210.173000;210.178000;210.120000;210.122000;0 +20260303 014500;210.123000;210.135000;210.062000;210.075000;0 +20260303 014600;210.075000;210.093000;210.039000;210.040000;0 +20260303 014700;210.039000;210.067000;210.018000;210.021000;0 +20260303 014800;210.021000;210.058000;210.003000;210.056000;0 +20260303 014900;210.056000;210.075000;210.044000;210.075000;0 +20260303 015000;210.075000;210.111000;210.075000;210.079000;0 +20260303 015100;210.076000;210.090000;210.064000;210.074000;0 +20260303 015200;210.073000;210.075000;210.037000;210.075000;0 +20260303 015300;210.075000;210.078000;210.052000;210.061000;0 +20260303 015400;210.061000;210.072000;210.057000;210.071000;0 +20260303 015500;210.069000;210.098000;210.069000;210.098000;0 +20260303 015600;210.100000;210.120000;210.096000;210.117000;0 +20260303 015700;210.118000;210.124000;210.100000;210.114000;0 +20260303 015800;210.116000;210.120000;210.091000;210.093000;0 +20260303 015900;210.097000;210.099000;210.062000;210.065000;0 +20260303 020000;210.070000;210.076000;210.028000;210.040000;0 +20260303 020100;210.041000;210.068000;210.036000;210.047000;0 +20260303 020200;210.047000;210.061000;210.029000;210.038000;0 +20260303 020300;210.038000;210.053000;209.965000;209.965000;0 +20260303 020400;209.962000;209.988000;209.932000;209.985000;0 +20260303 020500;209.986000;210.045000;209.986000;210.035000;0 +20260303 020600;210.036000;210.043000;209.954000;209.984000;0 +20260303 020700;209.991000;209.993000;209.906000;209.920000;0 +20260303 020800;209.919000;209.944000;209.856000;209.857000;0 +20260303 020900;209.854000;209.907000;209.849000;209.907000;0 +20260303 021000;209.907000;209.913000;209.877000;209.883000;0 +20260303 021100;209.882000;209.915000;209.880000;209.885000;0 +20260303 021200;209.884000;209.919000;209.871000;209.919000;0 +20260303 021300;209.919000;209.919000;209.877000;209.905000;0 +20260303 021400;209.902000;209.937000;209.885000;209.920000;0 +20260303 021500;209.921000;209.977000;209.916000;209.977000;0 +20260303 021600;209.976000;209.999000;209.974000;209.986000;0 +20260303 021700;209.982000;210.001000;209.973000;209.992000;0 +20260303 021800;209.994000;210.029000;209.979000;210.028000;0 +20260303 021900;210.027000;210.041000;209.983000;209.997000;0 +20260303 022000;209.994000;210.010000;209.964000;209.973000;0 +20260303 022100;209.973000;209.999000;209.965000;209.997000;0 +20260303 022200;209.997000;210.028000;209.991000;210.028000;0 +20260303 022300;210.028000;210.052000;209.975000;209.990000;0 +20260303 022400;209.991000;210.046000;209.988000;210.032000;0 +20260303 022500;210.029000;210.038000;209.964000;209.968000;0 +20260303 022600;209.967000;209.982000;209.869000;209.891000;0 +20260303 022700;209.892000;209.917000;209.883000;209.907000;0 +20260303 022800;209.906000;209.962000;209.906000;209.960000;0 +20260303 022900;209.961000;209.978000;209.949000;209.956000;0 +20260303 023000;209.955000;209.972000;209.929000;209.938000;0 +20260303 023100;209.938000;209.965000;209.923000;209.938000;0 +20260303 023200;209.938000;209.988000;209.932000;209.948000;0 +20260303 023300;209.947000;209.958000;209.916000;209.927000;0 +20260303 023400;209.926000;209.936000;209.890000;209.922000;0 +20260303 023500;209.920000;209.946000;209.911000;209.911000;0 +20260303 023600;209.913000;209.942000;209.901000;209.938000;0 +20260303 023700;209.937000;209.961000;209.926000;209.933000;0 +20260303 023800;209.930000;209.956000;209.887000;209.903000;0 +20260303 023900;209.903000;209.948000;209.895000;209.945000;0 +20260303 024000;209.947000;209.966000;209.932000;209.937000;0 +20260303 024100;209.938000;209.970000;209.912000;209.930000;0 +20260303 024200;209.930000;209.963000;209.915000;209.958000;0 +20260303 024300;209.957000;209.983000;209.950000;209.963000;0 +20260303 024400;209.956000;210.001000;209.930000;210.001000;0 +20260303 024500;210.008000;210.070000;209.991000;210.070000;0 +20260303 024600;210.073000;210.079000;210.029000;210.039000;0 +20260303 024700;210.039000;210.039000;209.991000;210.009000;0 +20260303 024800;210.009000;210.011000;209.945000;209.949000;0 +20260303 024900;209.949000;209.964000;209.911000;209.923000;0 +20260303 025000;209.923000;209.951000;209.906000;209.924000;0 +20260303 025100;209.925000;210.001000;209.925000;209.985000;0 +20260303 025200;209.980000;210.009000;209.968000;209.984000;0 +20260303 025300;209.981000;209.982000;209.907000;209.920000;0 +20260303 025400;209.923000;209.923000;209.858000;209.862000;0 +20260303 025500;209.861000;209.886000;209.826000;209.826000;0 +20260303 025600;209.824000;209.837000;209.787000;209.794000;0 +20260303 025700;209.790000;209.803000;209.762000;209.771000;0 +20260303 025800;209.771000;209.836000;209.762000;209.829000;0 +20260303 025900;209.832000;209.915000;209.832000;209.915000;0 +20260303 030000;209.911000;209.961000;209.888000;209.941000;0 +20260303 030100;209.941000;209.972000;209.914000;209.971000;0 +20260303 030200;209.971000;209.998000;209.947000;209.965000;0 +20260303 030300;209.965000;210.039000;209.965000;210.015000;0 +20260303 030400;210.017000;210.025000;209.971000;210.024000;0 +20260303 030500;210.024000;210.024000;209.889000;209.896000;0 +20260303 030600;209.892000;209.911000;209.821000;209.832000;0 +20260303 030700;209.833000;209.848000;209.774000;209.791000;0 +20260303 030800;209.789000;209.829000;209.786000;209.817000;0 +20260303 030900;209.818000;209.895000;209.788000;209.895000;0 +20260303 031000;209.895000;209.908000;209.673000;209.673000;0 +20260303 031100;209.669000;209.686000;209.608000;209.663000;0 +20260303 031200;209.657000;209.669000;209.597000;209.623000;0 +20260303 031300;209.622000;209.663000;209.573000;209.654000;0 +20260303 031400;209.653000;209.659000;209.579000;209.608000;0 +20260303 031500;209.610000;209.628000;209.576000;209.578000;0 +20260303 031600;209.577000;209.616000;209.573000;209.612000;0 +20260303 031700;209.614000;209.624000;209.569000;209.587000;0 +20260303 031800;209.592000;209.611000;209.569000;209.569000;0 +20260303 031900;209.572000;209.720000;209.566000;209.720000;0 +20260303 032000;209.720000;209.773000;209.700000;209.747000;0 +20260303 032100;209.752000;209.815000;209.731000;209.810000;0 +20260303 032200;209.809000;209.833000;209.793000;209.818000;0 +20260303 032300;209.824000;209.876000;209.822000;209.837000;0 +20260303 032400;209.835000;209.868000;209.726000;209.727000;0 +20260303 032500;209.726000;209.740000;209.662000;209.679000;0 +20260303 032600;209.679000;209.680000;209.629000;209.673000;0 +20260303 032700;209.675000;209.799000;209.674000;209.782000;0 +20260303 032800;209.783000;209.786000;209.694000;209.709000;0 +20260303 032900;209.710000;209.712000;209.657000;209.677000;0 +20260303 033000;209.676000;209.713000;209.655000;209.674000;0 +20260303 033100;209.676000;209.712000;209.647000;209.649000;0 +20260303 033200;209.651000;209.655000;209.607000;209.643000;0 +20260303 033300;209.644000;209.659000;209.612000;209.620000;0 +20260303 033400;209.620000;209.647000;209.586000;209.611000;0 +20260303 033500;209.609000;209.644000;209.602000;209.616000;0 +20260303 033600;209.616000;209.644000;209.611000;209.635000;0 +20260303 033700;209.629000;209.658000;209.626000;209.628000;0 +20260303 033800;209.622000;209.670000;209.595000;209.623000;0 +20260303 033900;209.624000;209.692000;209.610000;209.662000;0 +20260303 034000;209.666000;209.740000;209.651000;209.657000;0 +20260303 034100;209.653000;209.716000;209.619000;209.715000;0 +20260303 034200;209.713000;209.721000;209.657000;209.673000;0 +20260303 034300;209.672000;209.689000;209.632000;209.671000;0 +20260303 034400;209.668000;209.671000;209.618000;209.635000;0 +20260303 034500;209.632000;209.692000;209.616000;209.689000;0 +20260303 034600;209.685000;209.709000;209.639000;209.644000;0 +20260303 034700;209.642000;209.686000;209.606000;209.673000;0 +20260303 034800;209.673000;209.673000;209.563000;209.584000;0 +20260303 034900;209.583000;209.612000;209.570000;209.588000;0 +20260303 035000;209.587000;209.621000;209.577000;209.599000;0 +20260303 035100;209.599000;209.626000;209.578000;209.598000;0 +20260303 035200;209.598000;209.598000;209.557000;209.557000;0 +20260303 035300;209.555000;209.580000;209.537000;209.577000;0 +20260303 035400;209.576000;209.601000;209.558000;209.567000;0 +20260303 035500;209.569000;209.571000;209.522000;209.541000;0 +20260303 035600;209.541000;209.577000;209.528000;209.575000;0 +20260303 035700;209.575000;209.603000;209.556000;209.603000;0 +20260303 035800;209.603000;209.610000;209.563000;209.563000;0 +20260303 035900;209.563000;209.578000;209.536000;209.548000;0 +20260303 040000;209.545000;209.597000;209.518000;209.589000;0 +20260303 040100;209.589000;209.621000;209.581000;209.612000;0 +20260303 040200;209.611000;209.618000;209.559000;209.594000;0 +20260303 040300;209.594000;209.655000;209.577000;209.649000;0 +20260303 040400;209.656000;209.692000;209.637000;209.637000;0 +20260303 040500;209.633000;209.633000;209.579000;209.610000;0 +20260303 040600;209.612000;209.702000;209.602000;209.681000;0 +20260303 040700;209.685000;209.685000;209.603000;209.639000;0 +20260303 040800;209.635000;209.726000;209.625000;209.723000;0 +20260303 040900;209.722000;209.740000;209.712000;209.715000;0 +20260303 041000;209.716000;209.725000;209.692000;209.722000;0 +20260303 041100;209.725000;209.743000;209.691000;209.723000;0 +20260303 041200;209.722000;209.726000;209.676000;209.701000;0 +20260303 041300;209.701000;209.724000;209.688000;209.697000;0 +20260303 041400;209.693000;209.700000;209.648000;209.654000;0 +20260303 041500;209.652000;209.654000;209.611000;209.641000;0 +20260303 041600;209.641000;209.665000;209.590000;209.645000;0 +20260303 041700;209.649000;209.664000;209.610000;209.624000;0 +20260303 041800;209.624000;209.639000;209.578000;209.594000;0 +20260303 041900;209.592000;209.623000;209.585000;209.599000;0 +20260303 042000;209.595000;209.597000;209.564000;209.571000;0 +20260303 042100;209.571000;209.583000;209.544000;209.547000;0 +20260303 042200;209.548000;209.568000;209.480000;209.480000;0 +20260303 042300;209.481000;209.505000;209.449000;209.474000;0 +20260303 042400;209.474000;209.608000;209.449000;209.595000;0 +20260303 042500;209.593000;209.631000;209.576000;209.594000;0 +20260303 042600;209.594000;209.643000;209.584000;209.609000;0 +20260303 042700;209.613000;209.631000;209.577000;209.614000;0 +20260303 042800;209.616000;209.624000;209.574000;209.614000;0 +20260303 042900;209.617000;209.679000;209.607000;209.663000;0 +20260303 043000;209.661000;209.719000;209.660000;209.715000;0 +20260303 043100;209.717000;209.720000;209.670000;209.676000;0 +20260303 043200;209.680000;209.729000;209.669000;209.677000;0 +20260303 043300;209.675000;209.745000;209.675000;209.724000;0 +20260303 043400;209.721000;209.742000;209.662000;209.676000;0 +20260303 043500;209.674000;209.692000;209.636000;209.642000;0 +20260303 043600;209.639000;209.696000;209.639000;209.694000;0 +20260303 043700;209.700000;209.723000;209.672000;209.717000;0 +20260303 043800;209.716000;209.742000;209.700000;209.700000;0 +20260303 043900;209.704000;209.714000;209.665000;209.678000;0 +20260303 044000;209.677000;209.686000;209.633000;209.642000;0 +20260303 044100;209.643000;209.651000;209.613000;209.620000;0 +20260303 044200;209.615000;209.642000;209.600000;209.605000;0 +20260303 044300;209.605000;209.610000;209.557000;209.559000;0 +20260303 044400;209.558000;209.575000;209.547000;209.560000;0 +20260303 044500;209.562000;209.568000;209.497000;209.519000;0 +20260303 044600;209.517000;209.528000;209.460000;209.469000;0 +20260303 044700;209.468000;209.512000;209.444000;209.478000;0 +20260303 044800;209.480000;209.529000;209.461000;209.523000;0 +20260303 044900;209.517000;209.525000;209.474000;209.498000;0 +20260303 045000;209.499000;209.554000;209.488000;209.488000;0 +20260303 045100;209.484000;209.500000;209.462000;209.473000;0 +20260303 045200;209.473000;209.476000;209.448000;209.455000;0 +20260303 045300;209.464000;209.529000;209.464000;209.523000;0 +20260303 045400;209.534000;209.547000;209.478000;209.543000;0 +20260303 045500;209.545000;209.705000;209.538000;209.614000;0 +20260303 045600;209.618000;209.691000;209.577000;209.647000;0 +20260303 045700;209.647000;209.650000;209.577000;209.577000;0 +20260303 045800;209.573000;209.687000;209.561000;209.686000;0 +20260303 045900;209.689000;209.724000;209.651000;209.666000;0 +20260303 050000;209.664000;209.721000;209.646000;209.704000;0 +20260303 050100;209.706000;209.734000;209.654000;209.732000;0 +20260303 050200;209.728000;209.729000;209.671000;209.694000;0 +20260303 050300;209.692000;209.739000;209.684000;209.714000;0 +20260303 050400;209.715000;209.730000;209.694000;209.700000;0 +20260303 050500;209.700000;209.737000;209.700000;209.733000;0 +20260303 050600;209.732000;209.750000;209.729000;209.745000;0 +20260303 050700;209.746000;209.746000;209.689000;209.719000;0 +20260303 050800;209.720000;209.802000;209.715000;209.794000;0 +20260303 050900;209.796000;209.814000;209.784000;209.805000;0 +20260303 051000;209.802000;209.827000;209.756000;209.797000;0 +20260303 051100;209.801000;209.820000;209.772000;209.789000;0 +20260303 051200;209.791000;209.805000;209.772000;209.797000;0 +20260303 051300;209.797000;209.823000;209.762000;209.785000;0 +20260303 051400;209.784000;209.797000;209.733000;209.743000;0 +20260303 051500;209.745000;209.774000;209.689000;209.728000;0 +20260303 051600;209.727000;209.773000;209.708000;209.732000;0 +20260303 051700;209.732000;209.776000;209.725000;209.757000;0 +20260303 051800;209.755000;209.757000;209.715000;209.736000;0 +20260303 051900;209.739000;209.739000;209.678000;209.715000;0 +20260303 052000;209.718000;209.836000;209.718000;209.827000;0 +20260303 052100;209.827000;209.913000;209.822000;209.831000;0 +20260303 052200;209.829000;209.847000;209.824000;209.838000;0 +20260303 052300;209.838000;209.838000;209.785000;209.791000;0 +20260303 052400;209.791000;209.863000;209.781000;209.854000;0 +20260303 052500;209.854000;209.873000;209.840000;209.854000;0 +20260303 052600;209.855000;209.855000;209.802000;209.812000;0 +20260303 052700;209.814000;209.859000;209.797000;209.846000;0 +20260303 052800;209.846000;209.870000;209.831000;209.840000;0 +20260303 052900;209.837000;209.861000;209.832000;209.853000;0 +20260303 053000;209.854000;209.871000;209.795000;209.806000;0 +20260303 053100;209.807000;209.832000;209.779000;209.832000;0 +20260303 053200;209.832000;209.865000;209.799000;209.806000;0 +20260303 053300;209.808000;209.810000;209.748000;209.768000;0 +20260303 053400;209.770000;209.795000;209.750000;209.785000;0 +20260303 053500;209.786000;209.827000;209.783000;209.803000;0 +20260303 053600;209.803000;209.850000;209.803000;209.850000;0 +20260303 053700;209.849000;209.895000;209.830000;209.892000;0 +20260303 053800;209.890000;209.890000;209.719000;209.723000;0 +20260303 053900;209.722000;209.786000;209.716000;209.776000;0 +20260303 054000;209.777000;209.839000;209.774000;209.834000;0 +20260303 054100;209.837000;209.898000;209.815000;209.829000;0 +20260303 054200;209.836000;209.836000;209.796000;209.806000;0 +20260303 054300;209.809000;209.816000;209.771000;209.803000;0 +20260303 054400;209.805000;209.826000;209.744000;209.826000;0 +20260303 054500;209.826000;209.841000;209.790000;209.824000;0 +20260303 054600;209.822000;209.837000;209.793000;209.833000;0 +20260303 054700;209.834000;209.894000;209.819000;209.842000;0 +20260303 054800;209.844000;209.858000;209.805000;209.808000;0 +20260303 054900;209.805000;209.843000;209.773000;209.797000;0 +20260303 055000;209.798000;209.800000;209.754000;209.778000;0 +20260303 055100;209.776000;209.805000;209.723000;209.723000;0 +20260303 055200;209.730000;209.737000;209.704000;209.724000;0 +20260303 055300;209.721000;209.756000;209.701000;209.754000;0 +20260303 055400;209.752000;209.755000;209.727000;209.744000;0 +20260303 055500;209.741000;209.744000;209.709000;209.744000;0 +20260303 055600;209.744000;209.749000;209.686000;209.718000;0 +20260303 055700;209.719000;209.730000;209.668000;209.676000;0 +20260303 055800;209.678000;209.707000;209.633000;209.669000;0 +20260303 055900;209.669000;209.692000;209.646000;209.685000;0 +20260303 060000;209.684000;209.687000;209.621000;209.623000;0 +20260303 060100;209.625000;209.666000;209.625000;209.653000;0 +20260303 060200;209.656000;209.740000;209.655000;209.739000;0 +20260303 060300;209.739000;209.758000;209.706000;209.746000;0 +20260303 060400;209.746000;209.806000;209.733000;209.781000;0 +20260303 060500;209.781000;209.818000;209.753000;209.765000;0 +20260303 060600;209.769000;209.773000;209.700000;209.700000;0 +20260303 060700;209.699000;209.731000;209.694000;209.708000;0 +20260303 060800;209.710000;209.787000;209.707000;209.765000;0 +20260303 060900;209.766000;209.784000;209.748000;209.757000;0 +20260303 061000;209.757000;209.769000;209.717000;209.728000;0 +20260303 061100;209.729000;209.732000;209.687000;209.701000;0 +20260303 061200;209.703000;209.713000;209.691000;209.700000;0 +20260303 061300;209.697000;209.699000;209.626000;209.649000;0 +20260303 061400;209.651000;209.660000;209.583000;209.591000;0 +20260303 061500;209.595000;209.631000;209.564000;209.590000;0 +20260303 061600;209.590000;209.594000;209.525000;209.534000;0 +20260303 061700;209.533000;209.534000;209.479000;209.513000;0 +20260303 061800;209.512000;209.528000;209.472000;209.498000;0 +20260303 061900;209.496000;209.531000;209.466000;209.487000;0 +20260303 062000;209.489000;209.505000;209.422000;209.456000;0 +20260303 062100;209.457000;209.523000;209.456000;209.522000;0 +20260303 062200;209.522000;209.609000;209.518000;209.604000;0 +20260303 062300;209.603000;209.633000;209.586000;209.631000;0 +20260303 062400;209.630000;209.726000;209.599000;209.701000;0 +20260303 062500;209.700000;209.760000;209.700000;209.717000;0 +20260303 062600;209.718000;209.738000;209.708000;209.724000;0 +20260303 062700;209.727000;209.727000;209.657000;209.657000;0 +20260303 062800;209.660000;209.689000;209.625000;209.625000;0 +20260303 062900;209.629000;209.634000;209.599000;209.618000;0 +20260303 063000;209.618000;209.661000;209.618000;209.646000;0 +20260303 063100;209.647000;209.668000;209.592000;209.618000;0 +20260303 063200;209.621000;209.645000;209.593000;209.637000;0 +20260303 063300;209.637000;209.665000;209.603000;209.652000;0 +20260303 063400;209.651000;209.672000;209.635000;209.649000;0 +20260303 063500;209.648000;209.678000;209.607000;209.668000;0 +20260303 063600;209.663000;209.726000;209.660000;209.725000;0 +20260303 063700;209.725000;209.776000;209.715000;209.716000;0 +20260303 063800;209.716000;209.717000;209.642000;209.662000;0 +20260303 063900;209.661000;209.718000;209.661000;209.692000;0 +20260303 064000;209.693000;209.734000;209.670000;209.718000;0 +20260303 064100;209.718000;209.729000;209.690000;209.712000;0 +20260303 064200;209.712000;209.752000;209.689000;209.696000;0 +20260303 064300;209.693000;209.732000;209.677000;209.726000;0 +20260303 064400;209.726000;209.789000;209.726000;209.787000;0 +20260303 064500;209.787000;209.839000;209.787000;209.826000;0 +20260303 064600;209.827000;209.905000;209.819000;209.845000;0 +20260303 064700;209.845000;209.849000;209.783000;209.796000;0 +20260303 064800;209.795000;209.801000;209.748000;209.783000;0 +20260303 064900;209.785000;209.809000;209.754000;209.784000;0 +20260303 065000;209.782000;209.804000;209.743000;209.763000;0 +20260303 065100;209.764000;209.781000;209.712000;209.764000;0 +20260303 065200;209.764000;209.775000;209.692000;209.718000;0 +20260303 065300;209.726000;209.744000;209.703000;209.729000;0 +20260303 065400;209.732000;209.763000;209.721000;209.757000;0 +20260303 065500;209.752000;209.755000;209.638000;209.656000;0 +20260303 065600;209.658000;209.675000;209.618000;209.655000;0 +20260303 065700;209.657000;209.669000;209.623000;209.653000;0 +20260303 065800;209.649000;209.669000;209.632000;209.659000;0 +20260303 065900;209.660000;209.660000;209.583000;209.599000;0 +20260303 070000;209.601000;209.652000;209.555000;209.605000;0 +20260303 070100;209.602000;209.624000;209.573000;209.582000;0 +20260303 070200;209.580000;209.622000;209.567000;209.620000;0 +20260303 070300;209.623000;209.632000;209.596000;209.625000;0 +20260303 070400;209.625000;209.661000;209.610000;209.635000;0 +20260303 070500;209.635000;209.658000;209.550000;209.654000;0 +20260303 070600;209.653000;209.718000;209.651000;209.716000;0 +20260303 070700;209.715000;209.739000;209.701000;209.738000;0 +20260303 070800;209.738000;209.749000;209.709000;209.748000;0 +20260303 070900;209.748000;209.770000;209.746000;209.750000;0 +20260303 071000;209.747000;209.775000;209.724000;209.766000;0 +20260303 071100;209.768000;209.772000;209.729000;209.740000;0 +20260303 071200;209.736000;209.777000;209.736000;209.750000;0 +20260303 071300;209.750000;209.826000;209.746000;209.791000;0 +20260303 071400;209.788000;209.809000;209.758000;209.763000;0 +20260303 071500;209.763000;209.786000;209.753000;209.760000;0 +20260303 071600;209.758000;209.790000;209.749000;209.782000;0 +20260303 071700;209.782000;209.808000;209.750000;209.800000;0 +20260303 071800;209.803000;209.835000;209.793000;209.814000;0 +20260303 071900;209.814000;209.836000;209.773000;209.834000;0 +20260303 072000;209.834000;209.903000;209.812000;209.889000;0 +20260303 072100;209.888000;209.914000;209.858000;209.909000;0 +20260303 072200;209.908000;209.910000;209.846000;209.858000;0 +20260303 072300;209.855000;209.898000;209.827000;209.892000;0 +20260303 072400;209.888000;209.907000;209.847000;209.883000;0 +20260303 072500;209.883000;209.936000;209.880000;209.923000;0 +20260303 072600;209.918000;209.952000;209.907000;209.939000;0 +20260303 072700;209.939000;209.969000;209.930000;209.964000;0 +20260303 072800;209.964000;209.966000;209.923000;209.962000;0 +20260303 072900;209.961000;209.966000;209.869000;209.872000;0 +20260303 073000;209.865000;209.895000;209.839000;209.881000;0 +20260303 073100;209.884000;209.964000;209.873000;209.964000;0 +20260303 073200;209.963000;209.965000;209.915000;209.944000;0 +20260303 073300;209.941000;210.015000;209.941000;210.000000;0 +20260303 073400;210.000000;210.000000;209.950000;209.981000;0 +20260303 073500;209.981000;210.015000;209.962000;209.989000;0 +20260303 073600;209.990000;209.992000;209.929000;209.958000;0 +20260303 073700;209.958000;210.038000;209.944000;210.012000;0 +20260303 073800;210.012000;210.024000;209.985000;210.017000;0 +20260303 073900;210.022000;210.082000;210.014000;210.069000;0 +20260303 074000;210.069000;210.074000;209.991000;210.004000;0 +20260303 074100;210.007000;210.043000;209.994000;210.009000;0 +20260303 074200;210.014000;210.073000;210.013000;210.065000;0 +20260303 074300;210.065000;210.101000;210.050000;210.091000;0 +20260303 074400;210.090000;210.112000;210.076000;210.098000;0 +20260303 074500;210.100000;210.107000;210.048000;210.066000;0 +20260303 074600;210.067000;210.100000;210.060000;210.065000;0 +20260303 074700;210.061000;210.097000;210.050000;210.063000;0 +20260303 074800;210.060000;210.086000;210.031000;210.035000;0 +20260303 074900;210.038000;210.053000;210.010000;210.039000;0 +20260303 075000;210.040000;210.071000;210.035000;210.041000;0 +20260303 075100;210.043000;210.052000;210.024000;210.039000;0 +20260303 075200;210.040000;210.045000;209.983000;209.990000;0 +20260303 075300;209.990000;210.019000;209.957000;209.964000;0 +20260303 075400;209.968000;209.985000;209.939000;209.943000;0 +20260303 075500;209.943000;209.977000;209.927000;209.954000;0 +20260303 075600;209.955000;210.074000;209.955000;210.031000;0 +20260303 075700;210.027000;210.105000;209.998000;210.097000;0 +20260303 075800;210.093000;210.098000;210.026000;210.038000;0 +20260303 075900;210.038000;210.038000;210.003000;210.003000;0 +20260303 080000;210.004000;210.039000;209.993000;210.038000;0 +20260303 080100;210.036000;210.046000;210.009000;210.021000;0 +20260303 080200;210.018000;210.042000;209.965000;209.976000;0 +20260303 080300;209.975000;209.975000;209.893000;209.900000;0 +20260303 080400;209.903000;209.929000;209.873000;209.877000;0 +20260303 080500;209.879000;209.947000;209.875000;209.915000;0 +20260303 080600;209.914000;209.976000;209.911000;209.971000;0 +20260303 080700;209.970000;209.984000;209.960000;209.984000;0 +20260303 080800;209.983000;209.987000;209.937000;209.951000;0 +20260303 080900;209.950000;209.959000;209.903000;209.903000;0 +20260303 081000;209.908000;209.980000;209.905000;209.976000;0 +20260303 081100;209.975000;210.008000;209.965000;210.008000;0 +20260303 081200;210.009000;210.036000;209.991000;210.009000;0 +20260303 081300;210.013000;210.059000;210.012000;210.028000;0 +20260303 081400;210.028000;210.035000;209.971000;209.972000;0 +20260303 081500;209.972000;209.982000;209.942000;209.958000;0 +20260303 081600;209.958000;209.972000;209.939000;209.972000;0 +20260303 081700;209.972000;210.007000;209.968000;210.006000;0 +20260303 081800;210.005000;210.011000;209.962000;209.980000;0 +20260303 081900;209.978000;210.016000;209.971000;210.012000;0 +20260303 082000;210.011000;210.054000;209.993000;210.054000;0 +20260303 082100;210.052000;210.065000;210.008000;210.058000;0 +20260303 082200;210.060000;210.084000;210.025000;210.026000;0 +20260303 082300;210.025000;210.058000;210.006000;210.043000;0 +20260303 082400;210.046000;210.084000;210.030000;210.084000;0 +20260303 082500;210.086000;210.088000;210.034000;210.061000;0 +20260303 082600;210.057000;210.061000;210.022000;210.025000;0 +20260303 082700;210.023000;210.047000;209.976000;209.978000;0 +20260303 082800;209.976000;210.008000;209.976000;209.993000;0 +20260303 082900;209.995000;210.023000;209.971000;209.997000;0 +20260303 083000;209.994000;209.995000;209.908000;209.938000;0 +20260303 083100;209.938000;209.943000;209.872000;209.876000;0 +20260303 083200;209.874000;209.891000;209.860000;209.882000;0 +20260303 083300;209.886000;209.945000;209.867000;209.935000;0 +20260303 083400;209.934000;209.942000;209.906000;209.928000;0 +20260303 083500;209.927000;209.935000;209.885000;209.891000;0 +20260303 083600;209.896000;209.913000;209.867000;209.887000;0 +20260303 083700;209.888000;209.913000;209.875000;209.886000;0 +20260303 083800;209.893000;209.894000;209.830000;209.850000;0 +20260303 083900;209.851000;209.851000;209.802000;209.818000;0 +20260303 084000;209.821000;209.825000;209.785000;209.800000;0 +20260303 084100;209.800000;209.831000;209.782000;209.831000;0 +20260303 084200;209.829000;209.834000;209.754000;209.786000;0 +20260303 084300;209.787000;209.811000;209.768000;209.808000;0 +20260303 084400;209.814000;209.847000;209.812000;209.829000;0 +20260303 084500;209.827000;209.844000;209.797000;209.812000;0 +20260303 084600;209.816000;209.846000;209.807000;209.832000;0 +20260303 084700;209.833000;209.845000;209.819000;209.840000;0 +20260303 084800;209.839000;209.839000;209.798000;209.816000;0 +20260303 084900;209.814000;209.864000;209.813000;209.859000;0 +20260303 085000;209.862000;209.932000;209.856000;209.927000;0 +20260303 085100;209.925000;209.927000;209.826000;209.851000;0 +20260303 085200;209.849000;209.849000;209.807000;209.831000;0 +20260303 085300;209.831000;209.879000;209.815000;209.867000;0 +20260303 085400;209.864000;209.884000;209.831000;209.851000;0 +20260303 085500;209.849000;209.893000;209.835000;209.887000;0 +20260303 085600;209.886000;209.892000;209.849000;209.861000;0 +20260303 085700;209.859000;209.890000;209.849000;209.884000;0 +20260303 085800;209.884000;209.916000;209.878000;209.900000;0 +20260303 085900;209.899000;209.903000;209.879000;209.886000;0 +20260303 090000;209.886000;209.922000;209.872000;209.917000;0 +20260303 090100;209.919000;209.945000;209.910000;209.933000;0 +20260303 090200;209.933000;209.936000;209.895000;209.901000;0 +20260303 090300;209.898000;209.927000;209.891000;209.912000;0 +20260303 090400;209.912000;209.975000;209.909000;209.969000;0 +20260303 090500;209.974000;209.998000;209.954000;209.996000;0 +20260303 090600;209.996000;210.044000;209.996000;210.025000;0 +20260303 090700;210.026000;210.077000;210.015000;210.066000;0 +20260303 090800;210.067000;210.100000;210.056000;210.096000;0 +20260303 090900;210.094000;210.095000;210.004000;210.006000;0 +20260303 091000;210.008000;210.012000;209.969000;209.971000;0 +20260303 091100;209.971000;210.013000;209.968000;210.013000;0 +20260303 091200;210.013000;210.025000;209.995000;210.019000;0 +20260303 091300;210.019000;210.041000;210.012000;210.029000;0 +20260303 091400;210.030000;210.035000;209.977000;210.001000;0 +20260303 091500;210.005000;210.027000;209.959000;209.975000;0 +20260303 091600;209.981000;209.983000;209.945000;209.974000;0 +20260303 091700;209.973000;210.078000;209.963000;210.078000;0 +20260303 091800;210.079000;210.113000;210.054000;210.100000;0 +20260303 091900;210.095000;210.113000;210.068000;210.070000;0 +20260303 092000;210.070000;210.171000;210.070000;210.112000;0 +20260303 092100;210.107000;210.128000;210.071000;210.104000;0 +20260303 092200;210.104000;210.144000;210.090000;210.135000;0 +20260303 092300;210.128000;210.128000;210.066000;210.120000;0 +20260303 092400;210.121000;210.141000;210.054000;210.054000;0 +20260303 092500;210.054000;210.076000;210.035000;210.051000;0 +20260303 092600;210.052000;210.054000;209.983000;210.010000;0 +20260303 092700;210.009000;210.064000;210.000000;210.054000;0 +20260303 092800;210.053000;210.080000;210.032000;210.071000;0 +20260303 092900;210.072000;210.075000;210.008000;210.021000;0 +20260303 093000;210.022000;210.055000;209.993000;210.045000;0 +20260303 093100;210.048000;210.061000;209.986000;210.016000;0 +20260303 093200;210.017000;210.049000;209.992000;210.003000;0 +20260303 093300;210.002000;210.046000;209.997000;210.032000;0 +20260303 093400;210.030000;210.044000;209.948000;209.960000;0 +20260303 093500;209.958000;209.987000;209.902000;209.971000;0 +20260303 093600;209.973000;210.106000;209.973000;210.073000;0 +20260303 093700;210.074000;210.106000;210.045000;210.079000;0 +20260303 093800;210.081000;210.086000;210.034000;210.046000;0 +20260303 093900;210.055000;210.085000;210.003000;210.031000;0 +20260303 094000;210.032000;210.059000;209.976000;209.995000;0 +20260303 094100;209.995000;210.009000;209.906000;209.909000;0 +20260303 094200;209.906000;209.936000;209.877000;209.919000;0 +20260303 094300;209.920000;209.924000;209.803000;209.803000;0 +20260303 094400;209.806000;209.842000;209.757000;209.799000;0 +20260303 094500;209.799000;209.847000;209.786000;209.831000;0 +20260303 094600;209.829000;209.867000;209.827000;209.857000;0 +20260303 094700;209.858000;209.880000;209.799000;209.815000;0 +20260303 094800;209.814000;209.821000;209.728000;209.738000;0 +20260303 094900;209.737000;209.769000;209.652000;209.664000;0 +20260303 095000;209.664000;209.740000;209.663000;209.715000;0 +20260303 095100;209.716000;209.755000;209.698000;209.710000;0 +20260303 095200;209.712000;209.805000;209.709000;209.798000;0 +20260303 095300;209.794000;209.863000;209.779000;209.858000;0 +20260303 095400;209.857000;209.860000;209.764000;209.798000;0 +20260303 095500;209.798000;209.801000;209.721000;209.733000;0 +20260303 095600;209.734000;209.750000;209.703000;209.722000;0 +20260303 095700;209.722000;209.739000;209.673000;209.683000;0 +20260303 095800;209.691000;209.698000;209.581000;209.581000;0 +20260303 095900;209.577000;209.609000;209.499000;209.509000;0 +20260303 100000;209.506000;209.616000;209.502000;209.531000;0 +20260303 100100;209.528000;209.546000;209.417000;209.424000;0 +20260303 100200;209.423000;209.489000;209.418000;209.469000;0 +20260303 100300;209.469000;209.497000;209.388000;209.394000;0 +20260303 100400;209.394000;209.419000;209.355000;209.364000;0 +20260303 100500;209.366000;209.457000;209.366000;209.455000;0 +20260303 100600;209.454000;209.476000;209.416000;209.434000;0 +20260303 100700;209.437000;209.462000;209.408000;209.429000;0 +20260303 100800;209.433000;209.433000;209.239000;209.239000;0 +20260303 100900;209.241000;209.312000;209.229000;209.268000;0 +20260303 101000;209.271000;209.320000;209.254000;209.254000;0 +20260303 101100;209.259000;209.317000;209.244000;209.263000;0 +20260303 101200;209.262000;209.336000;209.247000;209.285000;0 +20260303 101300;209.282000;209.375000;209.274000;209.274000;0 +20260303 101400;209.277000;209.338000;209.260000;209.338000;0 +20260303 101500;209.335000;209.370000;209.306000;209.336000;0 +20260303 101600;209.332000;209.374000;209.290000;209.329000;0 +20260303 101700;209.328000;209.328000;209.262000;209.297000;0 +20260303 101800;209.294000;209.327000;209.248000;209.305000;0 +20260303 101900;209.308000;209.308000;209.239000;209.252000;0 +20260303 102000;209.248000;209.264000;209.213000;209.258000;0 +20260303 102100;209.250000;209.332000;209.250000;209.303000;0 +20260303 102200;209.299000;209.348000;209.287000;209.304000;0 +20260303 102300;209.304000;209.423000;209.299000;209.412000;0 +20260303 102400;209.412000;209.421000;209.372000;209.409000;0 +20260303 102500;209.405000;209.464000;209.374000;209.463000;0 +20260303 102600;209.463000;209.468000;209.392000;209.430000;0 +20260303 102700;209.427000;209.495000;209.407000;209.486000;0 +20260303 102800;209.486000;209.524000;209.470000;209.502000;0 +20260303 102900;209.502000;209.526000;209.480000;209.488000;0 +20260303 103000;209.489000;209.522000;209.467000;209.483000;0 +20260303 103100;209.480000;209.685000;209.473000;209.681000;0 +20260303 103200;209.685000;209.711000;209.639000;209.711000;0 +20260303 103300;209.708000;209.736000;209.633000;209.687000;0 +20260303 103400;209.690000;209.746000;209.690000;209.702000;0 +20260303 103500;209.716000;209.787000;209.716000;209.757000;0 +20260303 103600;209.757000;209.872000;209.722000;209.854000;0 +20260303 103700;209.855000;209.895000;209.819000;209.876000;0 +20260303 103800;209.872000;209.933000;209.872000;209.921000;0 +20260303 103900;209.922000;209.965000;209.887000;209.907000;0 +20260303 104000;209.908000;210.041000;209.866000;210.004000;0 +20260303 104100;210.004000;210.052000;209.972000;209.989000;0 +20260303 104200;209.987000;209.999000;209.875000;209.893000;0 +20260303 104300;209.889000;209.889000;209.748000;209.750000;0 +20260303 104400;209.751000;209.816000;209.744000;209.760000;0 +20260303 104500;209.759000;209.893000;209.759000;209.817000;0 +20260303 104600;209.817000;209.891000;209.810000;209.854000;0 +20260303 104700;209.853000;209.867000;209.794000;209.860000;0 +20260303 104800;209.857000;209.877000;209.762000;209.762000;0 +20260303 104900;209.766000;209.827000;209.754000;209.826000;0 +20260303 105000;209.826000;209.826000;209.748000;209.791000;0 +20260303 105100;209.793000;209.814000;209.733000;209.771000;0 +20260303 105200;209.772000;209.850000;209.747000;209.799000;0 +20260303 105300;209.803000;209.826000;209.756000;209.777000;0 +20260303 105400;209.782000;209.804000;209.746000;209.754000;0 +20260303 105500;209.757000;209.793000;209.684000;209.744000;0 +20260303 105600;209.742000;209.801000;209.733000;209.762000;0 +20260303 105700;209.759000;209.905000;209.751000;209.897000;0 +20260303 105800;209.897000;209.901000;209.864000;209.881000;0 +20260303 105900;209.883000;209.969000;209.880000;209.953000;0 +20260303 110000;209.950000;210.010000;209.945000;210.010000;0 +20260303 110100;210.009000;210.017000;209.982000;209.998000;0 +20260303 110200;209.999000;210.026000;209.982000;209.989000;0 +20260303 110300;209.988000;210.041000;209.976000;210.026000;0 +20260303 110400;210.024000;210.095000;209.992000;210.083000;0 +20260303 110500;210.087000;210.139000;210.061000;210.062000;0 +20260303 110600;210.059000;210.097000;210.048000;210.074000;0 +20260303 110700;210.077000;210.092000;210.058000;210.072000;0 +20260303 110800;210.070000;210.166000;210.059000;210.156000;0 +20260303 110900;210.158000;210.167000;210.097000;210.126000;0 +20260303 111000;210.126000;210.181000;210.105000;210.109000;0 +20260303 111100;210.110000;210.126000;210.062000;210.077000;0 +20260303 111200;210.076000;210.085000;210.044000;210.044000;0 +20260303 111300;210.041000;210.077000;210.027000;210.049000;0 +20260303 111400;210.046000;210.075000;210.037000;210.054000;0 +20260303 111500;210.054000;210.089000;210.048000;210.089000;0 +20260303 111600;210.094000;210.094000;210.055000;210.078000;0 +20260303 111700;210.082000;210.117000;210.076000;210.091000;0 +20260303 111800;210.091000;210.123000;210.075000;210.094000;0 +20260303 111900;210.096000;210.106000;210.046000;210.051000;0 +20260303 112000;210.051000;210.069000;210.030000;210.058000;0 +20260303 112100;210.062000;210.062000;210.005000;210.039000;0 +20260303 112200;210.043000;210.063000;210.002000;210.045000;0 +20260303 112300;210.047000;210.073000;210.030000;210.060000;0 +20260303 112400;210.062000;210.105000;210.038000;210.098000;0 +20260303 112500;210.092000;210.120000;210.068000;210.119000;0 +20260303 112600;210.115000;210.150000;210.081000;210.094000;0 +20260303 112700;210.089000;210.138000;210.064000;210.065000;0 +20260303 112800;210.069000;210.081000;210.043000;210.064000;0 +20260303 112900;210.063000;210.088000;210.051000;210.069000;0 +20260303 113000;210.069000;210.083000;210.041000;210.050000;0 +20260303 113100;210.047000;210.049000;209.966000;209.966000;0 +20260303 113200;209.967000;209.981000;209.927000;209.933000;0 +20260303 113300;209.930000;209.945000;209.904000;209.941000;0 +20260303 113400;209.941000;210.073000;209.939000;210.054000;0 +20260303 113500;210.054000;210.095000;210.037000;210.066000;0 +20260303 113600;210.064000;210.111000;210.064000;210.103000;0 +20260303 113700;210.107000;210.132000;210.102000;210.124000;0 +20260303 113800;210.123000;210.128000;210.045000;210.056000;0 +20260303 113900;210.053000;210.079000;210.030000;210.066000;0 +20260303 114000;210.067000;210.067000;210.010000;210.051000;0 +20260303 114100;210.060000;210.086000;210.015000;210.060000;0 +20260303 114200;210.057000;210.068000;209.990000;210.014000;0 +20260303 114300;210.018000;210.093000;209.985000;210.091000;0 +20260303 114400;210.095000;210.112000;210.037000;210.069000;0 +20260303 114500;210.069000;210.085000;210.024000;210.056000;0 +20260303 114600;210.059000;210.122000;210.052000;210.112000;0 +20260303 114700;210.114000;210.150000;210.104000;210.147000;0 +20260303 114800;210.144000;210.158000;210.081000;210.130000;0 +20260303 114900;210.134000;210.137000;210.034000;210.069000;0 +20260303 115000;210.070000;210.085000;210.045000;210.074000;0 +20260303 115100;210.075000;210.090000;210.061000;210.066000;0 +20260303 115200;210.065000;210.150000;210.065000;210.108000;0 +20260303 115300;210.109000;210.156000;210.109000;210.142000;0 +20260303 115400;210.141000;210.149000;210.092000;210.093000;0 +20260303 115500;210.095000;210.142000;210.090000;210.141000;0 +20260303 115600;210.141000;210.163000;210.111000;210.146000;0 +20260303 115700;210.148000;210.178000;210.123000;210.167000;0 +20260303 115800;210.172000;210.212000;210.154000;210.190000;0 +20260303 115900;210.187000;210.197000;210.155000;210.164000;0 +20260303 120000;210.162000;210.185000;210.109000;210.122000;0 +20260303 120100;210.118000;210.120000;209.935000;209.944000;0 +20260303 120200;209.943000;210.030000;209.943000;210.024000;0 +20260303 120300;210.023000;210.039000;209.998000;210.002000;0 +20260303 120400;210.004000;210.019000;209.982000;210.014000;0 +20260303 120500;210.016000;210.061000;210.003000;210.028000;0 +20260303 120600;210.028000;210.076000;210.026000;210.056000;0 +20260303 120700;210.059000;210.075000;210.021000;210.022000;0 +20260303 120800;210.024000;210.059000;210.015000;210.026000;0 +20260303 120900;210.025000;210.034000;209.982000;209.987000;0 +20260303 121000;209.991000;210.061000;209.990000;210.026000;0 +20260303 121100;210.025000;210.059000;210.007000;210.035000;0 +20260303 121200;210.036000;210.061000;210.010000;210.029000;0 +20260303 121300;210.030000;210.072000;210.007000;210.008000;0 +20260303 121400;210.012000;210.061000;210.006000;210.058000;0 +20260303 121500;210.058000;210.081000;210.039000;210.081000;0 +20260303 121600;210.082000;210.112000;210.037000;210.037000;0 +20260303 121700;210.040000;210.124000;210.040000;210.116000;0 +20260303 121800;210.109000;210.120000;210.094000;210.104000;0 +20260303 121900;210.107000;210.140000;210.101000;210.103000;0 +20260303 122000;210.107000;210.107000;210.029000;210.049000;0 +20260303 122100;210.039000;210.078000;210.010000;210.045000;0 +20260303 122200;210.042000;210.139000;210.029000;210.138000;0 +20260303 122300;210.141000;210.141000;210.082000;210.083000;0 +20260303 122400;210.085000;210.120000;210.072000;210.079000;0 +20260303 122500;210.082000;210.106000;210.060000;210.065000;0 +20260303 122600;210.060000;210.070000;210.020000;210.023000;0 +20260303 122700;210.021000;210.049000;209.993000;210.041000;0 +20260303 122800;210.039000;210.084000;210.039000;210.084000;0 +20260303 122900;210.085000;210.138000;210.079000;210.122000;0 +20260303 123000;210.122000;210.134000;210.088000;210.093000;0 +20260303 123100;210.093000;210.115000;210.060000;210.061000;0 +20260303 123200;210.059000;210.109000;210.056000;210.077000;0 +20260303 123300;210.077000;210.096000;210.046000;210.046000;0 +20260303 123400;210.045000;210.052000;210.017000;210.040000;0 +20260303 123500;210.044000;210.057000;210.030000;210.043000;0 +20260303 123600;210.043000;210.103000;210.036000;210.089000;0 +20260303 123700;210.088000;210.124000;210.074000;210.122000;0 +20260303 123800;210.118000;210.135000;210.110000;210.134000;0 +20260303 123900;210.131000;210.135000;210.113000;210.118000;0 +20260303 124000;210.121000;210.135000;210.115000;210.131000;0 +20260303 124100;210.130000;210.140000;210.094000;210.118000;0 +20260303 124200;210.120000;210.184000;210.119000;210.173000;0 +20260303 124300;210.171000;210.245000;210.170000;210.225000;0 +20260303 124400;210.224000;210.314000;210.196000;210.302000;0 +20260303 124500;210.302000;210.310000;210.267000;210.295000;0 +20260303 124600;210.295000;210.322000;210.288000;210.307000;0 +20260303 124700;210.306000;210.343000;210.301000;210.333000;0 +20260303 124800;210.333000;210.376000;210.314000;210.367000;0 +20260303 124900;210.367000;210.371000;210.319000;210.368000;0 +20260303 125000;210.367000;210.371000;210.321000;210.330000;0 +20260303 125100;210.329000;210.384000;210.326000;210.348000;0 +20260303 125200;210.349000;210.355000;210.322000;210.337000;0 +20260303 125300;210.333000;210.345000;210.278000;210.294000;0 +20260303 125400;210.294000;210.294000;210.252000;210.258000;0 +20260303 125500;210.256000;210.283000;210.228000;210.275000;0 +20260303 125600;210.273000;210.287000;210.253000;210.255000;0 +20260303 125700;210.256000;210.301000;210.240000;210.298000;0 +20260303 125800;210.298000;210.308000;210.290000;210.296000;0 +20260303 125900;210.292000;210.297000;210.274000;210.278000;0 +20260303 130000;210.280000;210.350000;210.278000;210.349000;0 +20260303 130100;210.349000;210.375000;210.340000;210.374000;0 +20260303 130200;210.373000;210.373000;210.323000;210.335000;0 +20260303 130300;210.329000;210.345000;210.287000;210.292000;0 +20260303 130400;210.294000;210.296000;210.248000;210.282000;0 +20260303 130500;210.290000;210.325000;210.281000;210.323000;0 +20260303 130600;210.324000;210.358000;210.324000;210.355000;0 +20260303 130700;210.355000;210.361000;210.330000;210.339000;0 +20260303 130800;210.347000;210.403000;210.347000;210.392000;0 +20260303 130900;210.392000;210.397000;210.358000;210.387000;0 +20260303 131000;210.387000;210.406000;210.375000;210.387000;0 +20260303 131100;210.390000;210.412000;210.335000;210.360000;0 +20260303 131200;210.360000;210.388000;210.354000;210.370000;0 +20260303 131300;210.370000;210.374000;210.327000;210.327000;0 +20260303 131400;210.327000;210.352000;210.311000;210.352000;0 +20260303 131500;210.346000;210.359000;210.326000;210.335000;0 +20260303 131600;210.335000;210.344000;210.327000;210.342000;0 +20260303 131700;210.343000;210.368000;210.330000;210.358000;0 +20260303 131800;210.359000;210.368000;210.325000;210.346000;0 +20260303 131900;210.346000;210.352000;210.330000;210.343000;0 +20260303 132000;210.344000;210.377000;210.343000;210.360000;0 +20260303 132100;210.367000;210.384000;210.361000;210.373000;0 +20260303 132200;210.373000;210.406000;210.368000;210.403000;0 +20260303 132300;210.403000;210.447000;210.401000;210.447000;0 +20260303 132400;210.442000;210.455000;210.411000;210.453000;0 +20260303 132500;210.454000;210.457000;210.394000;210.394000;0 +20260303 132600;210.397000;210.431000;210.391000;210.431000;0 +20260303 132700;210.431000;210.450000;210.406000;210.411000;0 +20260303 132800;210.413000;210.451000;210.408000;210.438000;0 +20260303 132900;210.440000;210.440000;210.385000;210.402000;0 +20260303 133000;210.403000;210.408000;210.377000;210.388000;0 +20260303 133100;210.387000;210.400000;210.371000;210.383000;0 +20260303 133200;210.383000;210.402000;210.366000;210.398000;0 +20260303 133300;210.395000;210.398000;210.366000;210.376000;0 +20260303 133400;210.376000;210.379000;210.314000;210.328000;0 +20260303 133500;210.326000;210.348000;210.301000;210.348000;0 +20260303 133600;210.347000;210.371000;210.324000;210.365000;0 +20260303 133700;210.367000;210.374000;210.357000;210.369000;0 +20260303 133800;210.369000;210.369000;210.280000;210.317000;0 +20260303 133900;210.319000;210.399000;210.315000;210.397000;0 +20260303 134000;210.397000;210.443000;210.376000;210.441000;0 +20260303 134100;210.439000;210.486000;210.425000;210.462000;0 +20260303 134200;210.462000;210.464000;210.364000;210.389000;0 +20260303 134300;210.389000;210.423000;210.370000;210.374000;0 +20260303 134400;210.376000;210.452000;210.369000;210.452000;0 +20260303 134500;210.453000;210.453000;210.413000;210.423000;0 +20260303 134600;210.423000;210.442000;210.421000;210.436000;0 +20260303 134700;210.441000;210.465000;210.439000;210.456000;0 +20260303 134800;210.455000;210.462000;210.443000;210.454000;0 +20260303 134900;210.454000;210.482000;210.438000;210.473000;0 +20260303 135000;210.473000;210.487000;210.443000;210.484000;0 +20260303 135100;210.484000;210.505000;210.476000;210.482000;0 +20260303 135200;210.482000;210.483000;210.436000;210.458000;0 +20260303 135300;210.455000;210.498000;210.441000;210.496000;0 +20260303 135400;210.496000;210.496000;210.450000;210.464000;0 +20260303 135500;210.460000;210.469000;210.426000;210.465000;0 +20260303 135600;210.466000;210.489000;210.458000;210.471000;0 +20260303 135700;210.471000;210.524000;210.469000;210.497000;0 +20260303 135800;210.502000;210.508000;210.474000;210.494000;0 +20260303 135900;210.493000;210.516000;210.481000;210.515000;0 +20260303 140000;210.518000;210.525000;210.466000;210.473000;0 +20260303 140100;210.471000;210.508000;210.471000;210.504000;0 +20260303 140200;210.508000;210.522000;210.480000;210.490000;0 +20260303 140300;210.485000;210.508000;210.478000;210.503000;0 +20260303 140400;210.503000;210.526000;210.503000;210.526000;0 +20260303 140500;210.525000;210.530000;210.498000;210.505000;0 +20260303 140600;210.508000;210.514000;210.489000;210.497000;0 +20260303 140700;210.498000;210.499000;210.461000;210.480000;0 +20260303 140800;210.480000;210.499000;210.453000;210.471000;0 +20260303 140900;210.469000;210.481000;210.439000;210.473000;0 +20260303 141000;210.477000;210.477000;210.452000;210.467000;0 +20260303 141100;210.468000;210.518000;210.461000;210.516000;0 +20260303 141200;210.517000;210.520000;210.497000;210.508000;0 +20260303 141300;210.510000;210.533000;210.497000;210.517000;0 +20260303 141400;210.517000;210.544000;210.510000;210.532000;0 +20260303 141500;210.532000;210.555000;210.526000;210.546000;0 +20260303 141600;210.546000;210.547000;210.481000;210.485000;0 +20260303 141700;210.483000;210.493000;210.462000;210.473000;0 +20260303 141800;210.477000;210.492000;210.469000;210.469000;0 +20260303 141900;210.472000;210.499000;210.471000;210.499000;0 +20260303 142000;210.499000;210.518000;210.480000;210.495000;0 +20260303 142100;210.498000;210.511000;210.497000;210.505000;0 +20260303 142200;210.506000;210.531000;210.497000;210.514000;0 +20260303 142300;210.512000;210.525000;210.481000;210.502000;0 +20260303 142400;210.503000;210.506000;210.462000;210.476000;0 +20260303 142500;210.475000;210.488000;210.443000;210.455000;0 +20260303 142600;210.454000;210.463000;210.435000;210.441000;0 +20260303 142700;210.440000;210.445000;210.425000;210.437000;0 +20260303 142800;210.437000;210.472000;210.437000;210.444000;0 +20260303 142900;210.446000;210.467000;210.433000;210.445000;0 +20260303 143000;210.445000;210.449000;210.407000;210.417000;0 +20260303 143100;210.418000;210.456000;210.404000;210.433000;0 +20260303 143200;210.435000;210.467000;210.435000;210.451000;0 +20260303 143300;210.451000;210.452000;210.408000;210.414000;0 +20260303 143400;210.421000;210.426000;210.393000;210.393000;0 +20260303 143500;210.393000;210.410000;210.383000;210.410000;0 +20260303 143600;210.410000;210.453000;210.410000;210.445000;0 +20260303 143700;210.444000;210.566000;210.444000;210.552000;0 +20260303 143800;210.551000;210.571000;210.500000;210.502000;0 +20260303 143900;210.498000;210.498000;210.430000;210.452000;0 +20260303 144000;210.451000;210.518000;210.426000;210.490000;0 +20260303 144100;210.494000;210.542000;210.475000;210.530000;0 +20260303 144200;210.528000;210.530000;210.482000;210.515000;0 +20260303 144300;210.512000;210.537000;210.476000;210.536000;0 +20260303 144400;210.534000;210.559000;210.513000;210.559000;0 +20260303 144500;210.559000;210.580000;210.528000;210.565000;0 +20260303 144600;210.563000;210.581000;210.541000;210.548000;0 +20260303 144700;210.547000;210.589000;210.534000;210.580000;0 +20260303 144800;210.578000;210.603000;210.548000;210.556000;0 +20260303 144900;210.555000;210.572000;210.546000;210.563000;0 +20260303 145000;210.565000;210.609000;210.563000;210.607000;0 +20260303 145100;210.608000;210.618000;210.570000;210.576000;0 +20260303 145200;210.573000;210.580000;210.535000;210.553000;0 +20260303 145300;210.554000;210.560000;210.510000;210.551000;0 +20260303 145400;210.553000;210.605000;210.544000;210.602000;0 +20260303 145500;210.598000;210.602000;210.554000;210.554000;0 +20260303 145600;210.555000;210.598000;210.547000;210.578000;0 +20260303 145700;210.579000;210.617000;210.559000;210.575000;0 +20260303 145800;210.580000;210.600000;210.570000;210.589000;0 +20260303 145900;210.588000;210.600000;210.555000;210.566000;0 +20260303 150000;210.566000;210.585000;210.551000;210.567000;0 +20260303 150100;210.566000;210.618000;210.565000;210.575000;0 +20260303 150200;210.575000;210.583000;210.510000;210.536000;0 +20260303 150300;210.534000;210.561000;210.509000;210.509000;0 +20260303 150400;210.510000;210.519000;210.488000;210.491000;0 +20260303 150500;210.491000;210.527000;210.475000;210.506000;0 +20260303 150600;210.506000;210.511000;210.485000;210.509000;0 +20260303 150700;210.510000;210.555000;210.507000;210.536000;0 +20260303 150800;210.536000;210.538000;210.511000;210.531000;0 +20260303 150900;210.535000;210.547000;210.518000;210.532000;0 +20260303 151000;210.532000;210.548000;210.517000;210.538000;0 +20260303 151100;210.542000;210.546000;210.501000;210.514000;0 +20260303 151200;210.513000;210.532000;210.495000;210.503000;0 +20260303 151300;210.507000;210.553000;210.501000;210.553000;0 +20260303 151400;210.553000;210.559000;210.515000;210.517000;0 +20260303 151500;210.517000;210.565000;210.509000;210.565000;0 +20260303 151600;210.564000;210.570000;210.517000;210.520000;0 +20260303 151700;210.524000;210.544000;210.503000;210.505000;0 +20260303 151800;210.507000;210.585000;210.497000;210.570000;0 +20260303 151900;210.571000;210.590000;210.544000;210.586000;0 +20260303 152000;210.587000;210.598000;210.576000;210.591000;0 +20260303 152100;210.589000;210.592000;210.565000;210.567000;0 +20260303 152200;210.567000;210.580000;210.515000;210.518000;0 +20260303 152300;210.519000;210.524000;210.494000;210.495000;0 +20260303 152400;210.495000;210.580000;210.495000;210.578000;0 +20260303 152500;210.576000;210.601000;210.567000;210.586000;0 +20260303 152600;210.589000;210.593000;210.580000;210.586000;0 +20260303 152700;210.584000;210.600000;210.577000;210.585000;0 +20260303 152800;210.587000;210.611000;210.581000;210.581000;0 +20260303 152900;210.583000;210.598000;210.571000;210.577000;0 +20260303 153000;210.578000;210.612000;210.572000;210.612000;0 +20260303 153100;210.612000;210.626000;210.591000;210.594000;0 +20260303 153200;210.591000;210.591000;210.560000;210.568000;0 +20260303 153300;210.567000;210.599000;210.562000;210.586000;0 +20260303 153400;210.586000;210.595000;210.575000;210.583000;0 +20260303 153500;210.586000;210.628000;210.573000;210.618000;0 +20260303 153600;210.619000;210.623000;210.583000;210.586000;0 +20260303 153700;210.586000;210.587000;210.564000;210.567000;0 +20260303 153800;210.568000;210.600000;210.555000;210.595000;0 +20260303 153900;210.594000;210.605000;210.576000;210.597000;0 +20260303 154000;210.600000;210.626000;210.598000;210.604000;0 +20260303 154100;210.608000;210.613000;210.578000;210.585000;0 +20260303 154200;210.586000;210.610000;210.580000;210.604000;0 +20260303 154300;210.605000;210.627000;210.584000;210.613000;0 +20260303 154400;210.615000;210.617000;210.601000;210.605000;0 +20260303 154500;210.606000;210.625000;210.591000;210.598000;0 +20260303 154600;210.601000;210.603000;210.578000;210.585000;0 +20260303 154700;210.585000;210.601000;210.576000;210.597000;0 +20260303 154800;210.598000;210.599000;210.580000;210.593000;0 +20260303 154900;210.593000;210.620000;210.591000;210.611000;0 +20260303 155000;210.612000;210.627000;210.590000;210.605000;0 +20260303 155100;210.609000;210.617000;210.548000;210.568000;0 +20260303 155200;210.567000;210.570000;210.517000;210.532000;0 +20260303 155300;210.532000;210.536000;210.495000;210.534000;0 +20260303 155400;210.531000;210.552000;210.524000;210.539000;0 +20260303 155500;210.536000;210.547000;210.515000;210.520000;0 +20260303 155600;210.519000;210.555000;210.494000;210.544000;0 +20260303 155700;210.546000;210.594000;210.536000;210.594000;0 +20260303 155800;210.595000;210.645000;210.593000;210.644000;0 +20260303 155900;210.644000;210.673000;210.624000;210.657000;0 +20260303 160000;210.654000;210.698000;210.640000;210.685000;0 +20260303 160100;210.688000;210.708000;210.667000;210.667000;0 +20260303 160200;210.668000;210.672000;210.654000;210.665000;0 +20260303 160300;210.666000;210.670000;210.644000;210.658000;0 +20260303 160400;210.658000;210.676000;210.647000;210.658000;0 +20260303 160500;210.663000;210.714000;210.663000;210.714000;0 +20260303 160600;210.713000;210.716000;210.657000;210.666000;0 +20260303 160700;210.669000;210.672000;210.656000;210.665000;0 +20260303 160800;210.662000;210.682000;210.648000;210.680000;0 +20260303 160900;210.680000;210.689000;210.648000;210.651000;0 +20260303 161000;210.655000;210.656000;210.619000;210.619000;0 +20260303 161100;210.618000;210.618000;210.601000;210.604000;0 +20260303 161200;210.603000;210.659000;210.603000;210.644000;0 +20260303 161300;210.644000;210.650000;210.632000;210.639000;0 +20260303 161400;210.637000;210.673000;210.636000;210.665000;0 +20260303 161500;210.666000;210.677000;210.659000;210.663000;0 +20260303 161600;210.663000;210.667000;210.655000;210.655000;0 +20260303 161700;210.654000;210.668000;210.650000;210.654000;0 +20260303 161800;210.653000;210.672000;210.653000;210.659000;0 +20260303 161900;210.663000;210.674000;210.616000;210.621000;0 +20260303 162000;210.624000;210.638000;210.622000;210.628000;0 +20260303 162100;210.627000;210.636000;210.619000;210.625000;0 +20260303 162200;210.625000;210.646000;210.619000;210.646000;0 +20260303 162300;210.647000;210.650000;210.645000;210.650000;0 +20260303 162400;210.645000;210.667000;210.645000;210.663000;0 +20260303 162500;210.664000;210.672000;210.659000;210.665000;0 +20260303 162600;210.662000;210.672000;210.652000;210.653000;0 +20260303 162700;210.657000;210.680000;210.657000;210.677000;0 +20260303 162800;210.673000;210.674000;210.664000;210.667000;0 +20260303 162900;210.664000;210.673000;210.640000;210.670000;0 +20260303 163000;210.670000;210.676000;210.654000;210.672000;0 +20260303 163100;210.669000;210.700000;210.669000;210.698000;0 +20260303 163200;210.696000;210.702000;210.696000;210.697000;0 +20260303 163300;210.695000;210.695000;210.678000;210.689000;0 +20260303 163400;210.685000;210.700000;210.684000;210.696000;0 +20260303 163500;210.692000;210.710000;210.684000;210.687000;0 +20260303 163600;210.686000;210.701000;210.686000;210.701000;0 +20260303 163700;210.698000;210.698000;210.687000;210.693000;0 +20260303 163800;210.697000;210.705000;210.680000;210.680000;0 +20260303 163900;210.681000;210.703000;210.680000;210.690000;0 +20260303 164000;210.690000;210.693000;210.641000;210.642000;0 +20260303 164100;210.642000;210.668000;210.624000;210.657000;0 +20260303 164200;210.655000;210.664000;210.646000;210.646000;0 +20260303 164300;210.643000;210.651000;210.641000;210.644000;0 +20260303 164400;210.644000;210.656000;210.642000;210.651000;0 +20260303 164500;210.651000;210.681000;210.648000;210.674000;0 +20260303 164600;210.676000;210.684000;210.642000;210.665000;0 +20260303 164700;210.665000;210.678000;210.656000;210.658000;0 +20260303 164800;210.659000;210.672000;210.643000;210.665000;0 +20260303 164900;210.668000;210.690000;210.667000;210.678000;0 +20260303 165000;210.688000;210.688000;210.671000;210.678000;0 +20260303 165100;210.677000;210.713000;210.677000;210.710000;0 +20260303 165200;210.709000;210.718000;210.704000;210.711000;0 +20260303 165300;210.708000;210.733000;210.699000;210.703000;0 +20260303 165400;210.700000;210.710000;210.674000;210.687000;0 +20260303 165500;210.686000;210.699000;210.642000;210.663000;0 +20260303 165600;210.652000;210.668000;210.650000;210.656000;0 +20260303 165700;210.662000;210.680000;210.600000;210.616000;0 +20260303 165800;210.616000;210.637000;210.579000;210.586000;0 +20260303 165900;210.581000;210.652000;210.581000;210.645000;0 +20260303 170400;210.192000;210.192000;210.192000;210.192000;0 +20260303 170500;210.262000;210.272000;210.262000;210.271000;0 +20260303 170600;210.272000;210.272000;210.235000;210.247000;0 +20260303 170700;210.234000;210.267000;210.234000;210.247000;0 +20260303 170800;210.246000;210.439000;210.246000;210.252000;0 +20260303 170900;210.274000;210.334000;210.273000;210.273000;0 +20260303 171000;210.270000;210.349000;210.231000;210.346000;0 +20260303 171100;210.330000;210.354000;210.330000;210.353000;0 +20260303 171200;210.329000;210.351000;210.325000;210.351000;0 +20260303 171300;210.351000;210.354000;210.348000;210.351000;0 +20260303 171400;210.355000;210.381000;210.336000;210.381000;0 +20260303 171500;210.383000;210.384000;210.305000;210.368000;0 +20260303 171600;210.368000;210.401000;210.248000;210.401000;0 +20260303 171700;210.401000;210.401000;210.355000;210.355000;0 +20260303 171800;210.363000;210.379000;210.329000;210.368000;0 +20260303 171900;210.370000;210.419000;210.354000;210.410000;0 +20260303 172000;210.409000;210.442000;210.309000;210.328000;0 +20260303 172100;210.360000;210.402000;210.311000;210.386000;0 +20260303 172200;210.385000;210.386000;210.336000;210.346000;0 +20260303 172300;210.344000;210.344000;210.313000;210.337000;0 +20260303 172400;210.309000;210.336000;210.175000;210.335000;0 +20260303 172500;210.384000;210.394000;210.373000;210.385000;0 +20260303 172600;210.387000;210.388000;210.387000;210.387000;0 +20260303 172700;210.387000;210.389000;210.387000;210.389000;0 +20260303 172800;210.389000;210.389000;210.378000;210.380000;0 +20260303 172900;210.380000;210.383000;210.380000;210.383000;0 +20260303 173000;210.383000;210.384000;210.383000;210.384000;0 +20260303 173100;210.384000;210.384000;210.348000;210.361000;0 +20260303 173200;210.368000;210.375000;210.360000;210.366000;0 +20260303 173300;210.366000;210.370000;210.350000;210.370000;0 +20260303 173400;210.370000;210.376000;210.301000;210.314000;0 +20260303 173500;210.314000;210.331000;210.314000;210.329000;0 +20260303 173600;210.329000;210.330000;210.308000;210.315000;0 +20260303 173700;210.315000;210.360000;210.315000;210.359000;0 +20260303 173800;210.359000;210.381000;210.358000;210.380000;0 +20260303 173900;210.382000;210.425000;210.372000;210.424000;0 +20260303 174000;210.425000;210.441000;210.338000;210.346000;0 +20260303 174100;210.352000;210.361000;210.339000;210.351000;0 +20260303 174200;210.356000;210.371000;210.344000;210.371000;0 +20260303 174300;210.370000;210.371000;210.355000;210.362000;0 +20260303 174400;210.361000;210.363000;210.343000;210.359000;0 +20260303 174500;210.358000;210.361000;210.325000;210.339000;0 +20260303 174600;210.334000;210.346000;210.325000;210.341000;0 +20260303 174700;210.343000;210.344000;210.323000;210.344000;0 +20260303 174800;210.345000;210.374000;210.332000;210.350000;0 +20260303 174900;210.354000;210.369000;210.351000;210.365000;0 +20260303 175000;210.368000;210.394000;210.339000;210.355000;0 +20260303 175100;210.355000;210.366000;210.340000;210.352000;0 +20260303 175200;210.352000;210.404000;210.338000;210.399000;0 +20260303 175300;210.399000;210.459000;210.352000;210.362000;0 +20260303 175400;210.363000;210.363000;210.348000;210.360000;0 +20260303 175500;210.362000;210.362000;210.338000;210.351000;0 +20260303 175600;210.349000;210.396000;210.320000;210.370000;0 +20260303 175700;210.371000;210.385000;210.343000;210.378000;0 +20260303 175800;210.379000;210.379000;210.339000;210.350000;0 +20260303 175900;210.339000;210.378000;210.337000;210.365000;0 +20260303 180000;210.402000;210.527000;210.351000;210.527000;0 +20260303 180100;210.528000;210.567000;210.509000;210.518000;0 +20260303 180200;210.506000;210.524000;210.481000;210.523000;0 +20260303 180300;210.523000;210.535000;210.467000;210.494000;0 +20260303 180400;210.495000;210.495000;210.462000;210.464000;0 +20260303 180500;210.468000;210.473000;210.441000;210.447000;0 +20260303 180600;210.448000;210.467000;210.448000;210.464000;0 +20260303 180700;210.463000;210.490000;210.463000;210.480000;0 +20260303 180800;210.484000;210.517000;210.483000;210.486000;0 +20260303 180900;210.487000;210.496000;210.470000;210.488000;0 +20260303 181000;210.486000;210.494000;210.474000;210.478000;0 +20260303 181100;210.480000;210.524000;210.479000;210.523000;0 +20260303 181200;210.523000;210.552000;210.520000;210.545000;0 +20260303 181300;210.544000;210.567000;210.544000;210.559000;0 +20260303 181400;210.561000;210.565000;210.525000;210.535000;0 +20260303 181500;210.534000;210.548000;210.527000;210.535000;0 +20260303 181600;210.536000;210.556000;210.514000;210.555000;0 +20260303 181700;210.561000;210.562000;210.544000;210.555000;0 +20260303 181800;210.553000;210.559000;210.541000;210.549000;0 +20260303 181900;210.547000;210.606000;210.543000;210.590000;0 +20260303 182000;210.594000;210.630000;210.586000;210.625000;0 +20260303 182100;210.626000;210.626000;210.608000;210.618000;0 +20260303 182200;210.618000;210.618000;210.571000;210.577000;0 +20260303 182300;210.577000;210.595000;210.573000;210.592000;0 +20260303 182400;210.594000;210.594000;210.559000;210.593000;0 +20260303 182500;210.593000;210.605000;210.590000;210.597000;0 +20260303 182600;210.597000;210.597000;210.575000;210.587000;0 +20260303 182700;210.587000;210.595000;210.572000;210.584000;0 +20260303 182800;210.586000;210.587000;210.568000;210.584000;0 +20260303 182900;210.583000;210.589000;210.571000;210.581000;0 +20260303 183000;210.580000;210.581000;210.559000;210.567000;0 +20260303 183100;210.568000;210.584000;210.555000;210.578000;0 +20260303 183200;210.576000;210.598000;210.575000;210.595000;0 +20260303 183300;210.594000;210.604000;210.589000;210.602000;0 +20260303 183400;210.602000;210.642000;210.596000;210.620000;0 +20260303 183500;210.622000;210.622000;210.610000;210.617000;0 +20260303 183600;210.619000;210.624000;210.614000;210.623000;0 +20260303 183700;210.627000;210.634000;210.613000;210.613000;0 +20260303 183800;210.618000;210.622000;210.616000;210.617000;0 +20260303 183900;210.617000;210.620000;210.604000;210.605000;0 +20260303 184000;210.605000;210.609000;210.601000;210.608000;0 +20260303 184100;210.607000;210.622000;210.607000;210.611000;0 +20260303 184200;210.608000;210.618000;210.602000;210.605000;0 +20260303 184300;210.606000;210.650000;210.605000;210.629000;0 +20260303 184400;210.629000;210.632000;210.616000;210.623000;0 +20260303 184500;210.625000;210.636000;210.592000;210.620000;0 +20260303 184600;210.623000;210.625000;210.579000;210.624000;0 +20260303 184700;210.626000;210.637000;210.617000;210.634000;0 +20260303 184800;210.633000;210.635000;210.602000;210.615000;0 +20260303 184900;210.616000;210.628000;210.607000;210.628000;0 +20260303 185000;210.629000;210.643000;210.605000;210.620000;0 +20260303 185100;210.621000;210.621000;210.578000;210.597000;0 +20260303 185200;210.600000;210.633000;210.599000;210.632000;0 +20260303 185300;210.632000;210.666000;210.631000;210.650000;0 +20260303 185400;210.650000;210.658000;210.646000;210.654000;0 +20260303 185500;210.655000;210.663000;210.647000;210.661000;0 +20260303 185600;210.662000;210.673000;210.644000;210.647000;0 +20260303 185700;210.646000;210.662000;210.632000;210.658000;0 +20260303 185800;210.662000;210.680000;210.659000;210.678000;0 +20260303 185900;210.679000;210.683000;210.616000;210.625000;0 +20260303 190000;210.627000;210.668000;210.603000;210.610000;0 +20260303 190100;210.614000;210.646000;210.584000;210.643000;0 +20260303 190200;210.644000;210.652000;210.575000;210.577000;0 +20260303 190300;210.577000;210.613000;210.564000;210.597000;0 +20260303 190400;210.595000;210.620000;210.578000;210.620000;0 +20260303 190500;210.616000;210.650000;210.571000;210.635000;0 +20260303 190600;210.632000;210.642000;210.592000;210.595000;0 +20260303 190700;210.595000;210.596000;210.538000;210.544000;0 +20260303 190800;210.545000;210.545000;210.459000;210.465000;0 +20260303 190900;210.469000;210.497000;210.446000;210.484000;0 +20260303 191000;210.480000;210.501000;210.307000;210.396000;0 +20260303 191100;210.393000;210.417000;210.357000;210.395000;0 +20260303 191200;210.398000;210.417000;210.352000;210.384000;0 +20260303 191300;210.386000;210.395000;210.352000;210.358000;0 +20260303 191400;210.359000;210.412000;210.355000;210.393000;0 +20260303 191500;210.401000;210.419000;210.343000;210.355000;0 +20260303 191600;210.357000;210.379000;210.326000;210.362000;0 +20260303 191700;210.365000;210.394000;210.350000;210.373000;0 +20260303 191800;210.375000;210.413000;210.359000;210.397000;0 +20260303 191900;210.396000;210.435000;210.390000;210.395000;0 +20260303 192000;210.396000;210.409000;210.352000;210.363000;0 +20260303 192100;210.365000;210.381000;210.328000;210.353000;0 +20260303 192200;210.356000;210.356000;210.229000;210.238000;0 +20260303 192300;210.237000;210.252000;210.146000;210.150000;0 +20260303 192400;210.156000;210.200000;210.149000;210.159000;0 +20260303 192500;210.158000;210.186000;210.141000;210.146000;0 +20260303 192600;210.145000;210.185000;210.143000;210.173000;0 +20260303 192700;210.176000;210.212000;210.169000;210.183000;0 +20260303 192800;210.184000;210.197000;210.140000;210.143000;0 +20260303 192900;210.144000;210.192000;210.144000;210.191000;0 +20260303 193000;210.196000;210.217000;210.131000;210.152000;0 +20260303 193100;210.153000;210.179000;210.151000;210.175000;0 +20260303 193200;210.173000;210.193000;210.125000;210.140000;0 +20260303 193300;210.140000;210.152000;210.069000;210.101000;0 +20260303 193400;210.102000;210.102000;210.027000;210.053000;0 +20260303 193500;210.057000;210.077000;210.020000;210.067000;0 +20260303 193600;210.071000;210.071000;210.004000;210.010000;0 +20260303 193700;210.014000;210.035000;210.000000;210.023000;0 +20260303 193800;210.025000;210.050000;210.008000;210.028000;0 +20260303 193900;210.028000;210.046000;210.010000;210.040000;0 +20260303 194000;210.039000;210.082000;210.038000;210.065000;0 +20260303 194100;210.066000;210.082000;210.053000;210.063000;0 +20260303 194200;210.062000;210.062000;210.014000;210.035000;0 +20260303 194300;210.035000;210.061000;210.024000;210.031000;0 +20260303 194400;210.029000;210.049000;210.007000;210.035000;0 +20260303 194500;210.034000;210.078000;210.030000;210.042000;0 +20260303 194600;210.041000;210.094000;210.041000;210.063000;0 +20260303 194700;210.058000;210.072000;210.040000;210.045000;0 +20260303 194800;210.043000;210.072000;210.018000;210.041000;0 +20260303 194900;210.043000;210.060000;209.996000;209.996000;0 +20260303 195000;210.001000;210.038000;210.001000;210.031000;0 +20260303 195100;210.032000;210.078000;210.032000;210.078000;0 +20260303 195200;210.088000;210.121000;210.064000;210.074000;0 +20260303 195300;210.074000;210.109000;210.055000;210.075000;0 +20260303 195400;210.076000;210.189000;210.075000;210.154000;0 +20260303 195500;210.156000;210.164000;210.114000;210.118000;0 +20260303 195600;210.115000;210.161000;210.109000;210.118000;0 +20260303 195700;210.115000;210.115000;210.034000;210.068000;0 +20260303 195800;210.067000;210.106000;210.064000;210.093000;0 +20260303 195900;210.095000;210.097000;209.965000;209.992000;0 +20260303 200000;209.996000;210.110000;209.992000;210.057000;0 +20260303 200100;210.053000;210.105000;210.040000;210.071000;0 +20260303 200200;210.078000;210.175000;210.078000;210.162000;0 +20260303 200300;210.160000;210.179000;210.139000;210.176000;0 +20260303 200400;210.173000;210.186000;210.115000;210.161000;0 +20260303 200500;210.159000;210.159000;210.113000;210.131000;0 +20260303 200600;210.128000;210.140000;210.073000;210.073000;0 +20260303 200700;210.069000;210.073000;210.028000;210.042000;0 +20260303 200800;210.043000;210.052000;210.019000;210.028000;0 +20260303 200900;210.039000;210.060000;210.024000;210.035000;0 +20260303 201000;210.039000;210.044000;209.993000;210.005000;0 +20260303 201100;210.003000;210.024000;209.998000;210.002000;0 +20260303 201200;210.000000;210.016000;209.983000;209.989000;0 +20260303 201300;209.990000;210.008000;209.982000;209.988000;0 +20260303 201400;209.988000;210.010000;209.962000;209.978000;0 +20260303 201500;209.980000;210.009000;209.964000;209.980000;0 +20260303 201600;209.978000;210.057000;209.978000;210.027000;0 +20260303 201700;210.022000;210.040000;209.998000;209.998000;0 +20260303 201800;210.000000;210.007000;209.971000;209.987000;0 +20260303 201900;209.986000;210.025000;209.960000;209.973000;0 +20260303 202000;209.971000;209.978000;209.904000;209.919000;0 +20260303 202100;209.921000;209.929000;209.871000;209.877000;0 +20260303 202200;209.872000;209.882000;209.807000;209.850000;0 +20260303 202300;209.849000;209.852000;209.808000;209.812000;0 +20260303 202400;209.814000;209.836000;209.787000;209.826000;0 +20260303 202500;209.822000;209.842000;209.788000;209.837000;0 +20260303 202600;209.836000;209.855000;209.811000;209.840000;0 +20260303 202700;209.838000;209.884000;209.838000;209.853000;0 +20260303 202800;209.856000;209.888000;209.832000;209.876000;0 +20260303 202900;209.875000;209.883000;209.843000;209.858000;0 +20260303 203000;209.858000;209.900000;209.814000;209.849000;0 +20260303 203100;209.846000;209.877000;209.805000;209.863000;0 +20260303 203200;209.858000;209.891000;209.849000;209.849000;0 +20260303 203300;209.844000;209.866000;209.827000;209.843000;0 +20260303 203400;209.845000;209.879000;209.829000;209.871000;0 +20260303 203500;209.876000;209.977000;209.876000;209.970000;0 +20260303 203600;209.964000;210.001000;209.949000;209.985000;0 +20260303 203700;209.985000;210.039000;209.980000;210.021000;0 +20260303 203800;210.030000;210.045000;210.006000;210.028000;0 +20260303 203900;210.030000;210.059000;210.011000;210.012000;0 +20260303 204000;210.011000;210.036000;210.004000;210.009000;0 +20260303 204100;210.005000;210.012000;209.957000;209.999000;0 +20260303 204200;209.997000;210.042000;209.992000;209.999000;0 +20260303 204300;210.004000;210.047000;210.000000;210.036000;0 +20260303 204400;210.038000;210.120000;210.033000;210.112000;0 +20260303 204500;210.116000;210.120000;210.069000;210.075000;0 +20260303 204600;210.084000;210.084000;210.013000;210.017000;0 +20260303 204700;210.017000;210.046000;210.013000;210.029000;0 +20260303 204800;210.029000;210.029000;209.981000;209.983000;0 +20260303 204900;209.984000;210.017000;209.981000;210.010000;0 +20260303 205000;210.014000;210.015000;209.962000;209.993000;0 +20260303 205100;209.988000;210.020000;209.979000;209.990000;0 +20260303 205200;209.992000;210.002000;209.927000;209.945000;0 +20260303 205300;209.945000;209.950000;209.919000;209.950000;0 +20260303 205400;209.949000;209.949000;209.919000;209.925000;0 +20260303 205500;209.928000;209.991000;209.928000;209.960000;0 +20260303 205600;209.960000;210.000000;209.943000;209.951000;0 +20260303 205700;209.949000;209.972000;209.945000;209.962000;0 +20260303 205800;209.961000;210.004000;209.942000;210.002000;0 +20260303 205900;210.008000;210.015000;209.980000;209.986000;0 +20260303 210000;209.983000;210.023000;209.974000;209.995000;0 +20260303 210100;209.993000;210.013000;209.957000;209.957000;0 +20260303 210200;209.956000;209.986000;209.932000;209.959000;0 +20260303 210300;209.960000;210.024000;209.953000;209.977000;0 +20260303 210400;209.978000;210.005000;209.968000;209.989000;0 +20260303 210500;209.989000;210.018000;209.984000;210.012000;0 +20260303 210600;210.015000;210.035000;209.979000;209.998000;0 +20260303 210700;209.998000;210.044000;209.992000;210.003000;0 +20260303 210800;209.999000;210.038000;209.997000;210.038000;0 +20260303 210900;210.031000;210.041000;209.992000;209.999000;0 +20260303 211000;210.003000;210.041000;209.982000;209.997000;0 +20260303 211100;209.995000;210.018000;209.963000;210.011000;0 +20260303 211200;210.008000;210.089000;210.007000;210.058000;0 +20260303 211300;210.060000;210.079000;210.019000;210.058000;0 +20260303 211400;210.057000;210.058000;210.025000;210.045000;0 +20260303 211500;210.044000;210.046000;210.023000;210.028000;0 +20260303 211600;210.031000;210.055000;210.016000;210.029000;0 +20260303 211700;210.028000;210.039000;210.012000;210.036000;0 +20260303 211800;210.037000;210.067000;210.033000;210.063000;0 +20260303 211900;210.065000;210.096000;210.053000;210.080000;0 +20260303 212000;210.081000;210.096000;210.047000;210.054000;0 +20260303 212100;210.055000;210.106000;210.046000;210.093000;0 +20260303 212200;210.095000;210.102000;210.062000;210.062000;0 +20260303 212300;210.060000;210.084000;210.053000;210.084000;0 +20260303 212400;210.083000;210.111000;210.069000;210.096000;0 +20260303 212500;210.096000;210.097000;210.053000;210.078000;0 +20260303 212600;210.072000;210.105000;210.066000;210.097000;0 +20260303 212700;210.095000;210.106000;210.083000;210.087000;0 +20260303 212800;210.083000;210.108000;210.072000;210.085000;0 +20260303 212900;210.087000;210.088000;210.021000;210.032000;0 +20260303 213000;210.031000;210.036000;209.997000;210.016000;0 +20260303 213100;210.016000;210.029000;210.005000;210.019000;0 +20260303 213200;210.020000;210.039000;209.965000;210.038000;0 +20260303 213300;210.037000;210.053000;210.002000;210.003000;0 +20260303 213400;210.002000;210.021000;209.967000;209.977000;0 +20260303 213500;209.978000;209.988000;209.955000;209.974000;0 +20260303 213600;209.971000;209.980000;209.941000;209.975000;0 +20260303 213700;209.976000;210.005000;209.966000;209.966000;0 +20260303 213800;209.967000;209.988000;209.958000;209.975000;0 +20260303 213900;209.973000;210.002000;209.953000;209.997000;0 +20260303 214000;210.003000;210.048000;210.002000;210.033000;0 +20260303 214100;210.035000;210.042000;210.018000;210.033000;0 +20260303 214200;210.028000;210.029000;209.993000;210.003000;0 +20260303 214300;210.004000;210.040000;209.992000;210.034000;0 +20260303 214400;210.032000;210.074000;210.020000;210.062000;0 +20260303 214500;210.062000;210.092000;210.061000;210.088000;0 +20260303 214600;210.088000;210.090000;210.065000;210.079000;0 +20260303 214700;210.080000;210.100000;210.074000;210.096000;0 +20260303 214800;210.101000;210.109000;210.084000;210.097000;0 +20260303 214900;210.098000;210.098000;210.060000;210.066000;0 +20260303 215000;210.065000;210.157000;210.064000;210.151000;0 +20260303 215100;210.143000;210.169000;210.140000;210.143000;0 +20260303 215200;210.141000;210.150000;210.091000;210.094000;0 +20260303 215300;210.095000;210.099000;210.068000;210.096000;0 +20260303 215400;210.096000;210.099000;210.056000;210.061000;0 +20260303 215500;210.062000;210.072000;210.044000;210.054000;0 +20260303 215600;210.057000;210.057000;210.030000;210.035000;0 +20260303 215700;210.037000;210.067000;210.020000;210.062000;0 +20260303 215800;210.063000;210.079000;210.054000;210.075000;0 +20260303 215900;210.071000;210.073000;210.055000;210.073000;0 +20260303 220000;210.074000;210.074000;210.018000;210.049000;0 +20260303 220100;210.047000;210.061000;210.033000;210.043000;0 +20260303 220200;210.043000;210.044000;210.002000;210.011000;0 +20260303 220300;210.009000;210.010000;209.966000;209.988000;0 +20260303 220400;209.989000;210.020000;209.983000;210.018000;0 +20260303 220500;210.020000;210.060000;210.020000;210.045000;0 +20260303 220600;210.044000;210.069000;210.041000;210.047000;0 +20260303 220700;210.048000;210.073000;210.041000;210.070000;0 +20260303 220800;210.068000;210.068000;210.048000;210.056000;0 +20260303 220900;210.055000;210.110000;210.053000;210.104000;0 +20260303 221000;210.100000;210.113000;210.081000;210.081000;0 +20260303 221100;210.081000;210.081000;210.047000;210.056000;0 +20260303 221200;210.057000;210.075000;210.045000;210.054000;0 +20260303 221300;210.055000;210.064000;210.044000;210.055000;0 +20260303 221400;210.058000;210.064000;210.045000;210.049000;0 +20260303 221500;210.047000;210.053000;210.039000;210.042000;0 +20260303 221600;210.040000;210.042000;210.010000;210.012000;0 +20260303 221700;210.009000;210.019000;210.001000;210.019000;0 +20260303 221800;210.021000;210.035000;210.010000;210.021000;0 +20260303 221900;210.023000;210.054000;210.018000;210.045000;0 +20260303 222000;210.042000;210.058000;210.020000;210.029000;0 +20260303 222100;210.027000;210.031000;210.006000;210.030000;0 +20260303 222200;210.028000;210.064000;210.028000;210.064000;0 +20260303 222300;210.064000;210.100000;210.054000;210.061000;0 +20260303 222400;210.062000;210.074000;210.050000;210.066000;0 +20260303 222500;210.069000;210.075000;210.055000;210.055000;0 +20260303 222600;210.057000;210.072000;210.038000;210.047000;0 +20260303 222700;210.044000;210.045000;210.007000;210.016000;0 +20260303 222800;210.017000;210.028000;210.001000;210.020000;0 +20260303 222900;210.021000;210.048000;210.018000;210.046000;0 +20260303 223000;210.047000;210.049000;210.011000;210.023000;0 +20260303 223100;210.022000;210.036000;209.986000;209.987000;0 +20260303 223200;209.985000;210.013000;209.980000;210.011000;0 +20260303 223300;210.007000;210.011000;209.956000;209.960000;0 +20260303 223400;209.961000;209.965000;209.922000;209.922000;0 +20260303 223500;209.924000;209.945000;209.907000;209.944000;0 +20260303 223600;209.943000;209.977000;209.943000;209.960000;0 +20260303 223700;209.960000;209.985000;209.929000;209.975000;0 +20260303 223800;209.976000;209.988000;209.960000;209.976000;0 +20260303 223900;209.975000;209.975000;209.934000;209.945000;0 +20260303 224000;209.947000;209.962000;209.933000;209.961000;0 +20260303 224100;209.962000;209.971000;209.944000;209.971000;0 +20260303 224200;209.973000;209.984000;209.954000;209.958000;0 +20260303 224300;209.954000;209.965000;209.934000;209.961000;0 +20260303 224400;209.959000;209.965000;209.941000;209.960000;0 +20260303 224500;209.957000;209.968000;209.929000;209.963000;0 +20260303 224600;209.964000;209.965000;209.937000;209.943000;0 +20260303 224700;209.941000;209.980000;209.934000;209.969000;0 +20260303 224800;209.965000;210.016000;209.959000;209.969000;0 +20260303 224900;209.970000;209.987000;209.948000;209.962000;0 +20260303 225000;209.966000;209.974000;209.946000;209.948000;0 +20260303 225100;209.947000;209.972000;209.938000;209.948000;0 +20260303 225200;209.951000;209.966000;209.918000;209.920000;0 +20260303 225300;209.921000;209.934000;209.883000;209.915000;0 +20260303 225400;209.916000;209.920000;209.862000;209.882000;0 +20260303 225500;209.881000;209.883000;209.866000;209.879000;0 +20260303 225600;209.884000;209.923000;209.883000;209.921000;0 +20260303 225700;209.922000;209.924000;209.897000;209.917000;0 +20260303 225800;209.916000;209.943000;209.915000;209.940000;0 +20260303 225900;209.939000;209.960000;209.932000;209.952000;0 +20260303 230000;209.952000;209.969000;209.939000;209.941000;0 +20260303 230100;209.940000;209.964000;209.918000;209.922000;0 +20260303 230200;209.923000;209.928000;209.894000;209.898000;0 +20260303 230300;209.897000;209.908000;209.874000;209.880000;0 +20260303 230400;209.875000;209.889000;209.861000;209.868000;0 +20260303 230500;209.868000;209.892000;209.866000;209.883000;0 +20260303 230600;209.878000;209.880000;209.843000;209.850000;0 +20260303 230700;209.850000;209.886000;209.850000;209.877000;0 +20260303 230800;209.873000;209.881000;209.850000;209.853000;0 +20260303 230900;209.855000;209.866000;209.847000;209.854000;0 +20260303 231000;209.859000;209.870000;209.835000;209.865000;0 +20260303 231100;209.864000;209.884000;209.851000;209.857000;0 +20260303 231200;209.856000;209.856000;209.807000;209.807000;0 +20260303 231300;209.807000;209.850000;209.797000;209.800000;0 +20260303 231400;209.796000;209.824000;209.796000;209.815000;0 +20260303 231500;209.818000;209.835000;209.811000;209.833000;0 +20260303 231600;209.832000;209.832000;209.793000;209.793000;0 +20260303 231700;209.791000;209.791000;209.761000;209.764000;0 +20260303 231800;209.760000;209.764000;209.723000;209.724000;0 +20260303 231900;209.723000;209.732000;209.690000;209.695000;0 +20260303 232000;209.707000;209.724000;209.681000;209.723000;0 +20260303 232100;209.724000;209.725000;209.680000;209.684000;0 +20260303 232200;209.684000;209.701000;209.674000;209.682000;0 +20260303 232300;209.689000;209.693000;209.634000;209.634000;0 +20260303 232400;209.634000;209.643000;209.608000;209.628000;0 +20260303 232500;209.627000;209.652000;209.616000;209.631000;0 +20260303 232600;209.630000;209.646000;209.614000;209.623000;0 +20260303 232700;209.624000;209.631000;209.599000;209.602000;0 +20260303 232800;209.601000;209.603000;209.535000;209.544000;0 +20260303 232900;209.545000;209.578000;209.536000;209.574000;0 +20260303 233000;209.574000;209.574000;209.544000;209.567000;0 +20260303 233100;209.567000;209.567000;209.510000;209.527000;0 +20260303 233200;209.526000;209.548000;209.513000;209.542000;0 +20260303 233300;209.541000;209.555000;209.491000;209.495000;0 +20260303 233400;209.490000;209.538000;209.490000;209.529000;0 +20260303 233500;209.530000;209.550000;209.521000;209.539000;0 +20260303 233600;209.534000;209.541000;209.519000;209.533000;0 +20260303 233700;209.532000;209.570000;209.520000;209.551000;0 +20260303 233800;209.550000;209.584000;209.550000;209.584000;0 +20260303 233900;209.583000;209.587000;209.567000;209.583000;0 +20260303 234000;209.580000;209.580000;209.512000;209.536000;0 +20260303 234100;209.532000;209.532000;209.495000;209.514000;0 +20260303 234200;209.516000;209.632000;209.514000;209.621000;0 +20260303 234300;209.623000;209.627000;209.601000;209.602000;0 +20260303 234400;209.603000;209.646000;209.600000;209.641000;0 +20260303 234500;209.641000;209.669000;209.640000;209.651000;0 +20260303 234600;209.652000;209.667000;209.630000;209.642000;0 +20260303 234700;209.637000;209.658000;209.592000;209.594000;0 +20260303 234800;209.594000;209.618000;209.577000;209.599000;0 +20260303 234900;209.599000;209.609000;209.584000;209.590000;0 +20260303 235000;209.591000;209.598000;209.551000;209.552000;0 +20260303 235100;209.548000;209.558000;209.538000;209.548000;0 +20260303 235200;209.553000;209.556000;209.487000;209.540000;0 +20260303 235300;209.542000;209.549000;209.517000;209.547000;0 +20260303 235400;209.546000;209.583000;209.546000;209.563000;0 +20260303 235500;209.565000;209.585000;209.560000;209.562000;0 +20260303 235600;209.561000;209.595000;209.561000;209.588000;0 +20260303 235700;209.589000;209.599000;209.570000;209.574000;0 +20260303 235800;209.573000;209.580000;209.497000;209.527000;0 +20260303 235900;209.531000;209.532000;209.492000;209.498000;0 +20260304 000000;209.500000;209.554000;209.492000;209.545000;0 +20260304 000100;209.545000;209.594000;209.545000;209.558000;0 +20260304 000200;209.557000;209.565000;209.495000;209.540000;0 +20260304 000300;209.544000;209.551000;209.498000;209.548000;0 +20260304 000400;209.548000;209.558000;209.492000;209.494000;0 +20260304 000500;209.492000;209.508000;209.488000;209.505000;0 +20260304 000600;209.503000;209.539000;209.502000;209.534000;0 +20260304 000700;209.534000;209.593000;209.499000;209.588000;0 +20260304 000800;209.587000;209.588000;209.549000;209.571000;0 +20260304 000900;209.572000;209.599000;209.567000;209.594000;0 +20260304 001000;209.597000;209.636000;209.590000;209.624000;0 +20260304 001100;209.634000;209.713000;209.628000;209.708000;0 +20260304 001200;209.709000;209.748000;209.692000;209.695000;0 +20260304 001300;209.695000;209.700000;209.665000;209.697000;0 +20260304 001400;209.694000;209.701000;209.675000;209.693000;0 +20260304 001500;209.692000;209.729000;209.675000;209.727000;0 +20260304 001600;209.724000;209.729000;209.707000;209.713000;0 +20260304 001700;209.714000;209.730000;209.700000;209.708000;0 +20260304 001800;209.706000;209.707000;209.646000;209.667000;0 +20260304 001900;209.669000;209.671000;209.648000;209.652000;0 +20260304 002000;209.650000;209.666000;209.621000;209.666000;0 +20260304 002100;209.667000;209.670000;209.644000;209.652000;0 +20260304 002200;209.651000;209.683000;209.636000;209.638000;0 +20260304 002300;209.641000;209.652000;209.640000;209.643000;0 +20260304 002400;209.646000;209.659000;209.625000;209.654000;0 +20260304 002500;209.656000;209.667000;209.652000;209.661000;0 +20260304 002600;209.660000;209.663000;209.628000;209.635000;0 +20260304 002700;209.637000;209.674000;209.637000;209.667000;0 +20260304 002800;209.670000;209.727000;209.666000;209.722000;0 +20260304 002900;209.726000;209.749000;209.718000;209.747000;0 +20260304 003000;209.747000;209.760000;209.739000;209.755000;0 +20260304 003100;209.756000;209.772000;209.732000;209.740000;0 +20260304 003200;209.740000;209.748000;209.714000;209.714000;0 +20260304 003300;209.714000;209.741000;209.711000;209.734000;0 +20260304 003400;209.735000;209.744000;209.708000;209.716000;0 +20260304 003500;209.719000;209.727000;209.703000;209.709000;0 +20260304 003600;209.710000;209.712000;209.695000;209.698000;0 +20260304 003700;209.698000;209.795000;209.698000;209.790000;0 +20260304 003800;209.791000;209.812000;209.786000;209.809000;0 +20260304 003900;209.813000;209.824000;209.804000;209.821000;0 +20260304 004000;209.822000;209.871000;209.821000;209.870000;0 +20260304 004100;209.872000;209.882000;209.826000;209.867000;0 +20260304 004200;209.870000;209.900000;209.869000;209.897000;0 +20260304 004300;209.897000;209.902000;209.863000;209.881000;0 +20260304 004400;209.881000;209.881000;209.827000;209.834000;0 +20260304 004500;209.833000;209.860000;209.823000;209.823000;0 +20260304 004600;209.824000;209.863000;209.819000;209.858000;0 +20260304 004700;209.858000;209.879000;209.853000;209.869000;0 +20260304 004800;209.869000;209.887000;209.864000;209.866000;0 +20260304 004900;209.866000;209.874000;209.840000;209.844000;0 +20260304 005000;209.845000;209.851000;209.831000;209.842000;0 +20260304 005100;209.842000;209.846000;209.829000;209.834000;0 +20260304 005200;209.834000;209.858000;209.832000;209.841000;0 +20260304 005300;209.841000;209.858000;209.820000;209.825000;0 +20260304 005400;209.827000;209.842000;209.812000;209.841000;0 +20260304 005500;209.842000;209.882000;209.832000;209.867000;0 +20260304 005600;209.865000;209.880000;209.845000;209.853000;0 +20260304 005700;209.854000;209.878000;209.844000;209.845000;0 +20260304 005800;209.847000;209.877000;209.844000;209.849000;0 +20260304 005900;209.850000;209.862000;209.822000;209.834000;0 +20260304 010000;209.848000;209.857000;209.834000;209.851000;0 +20260304 010100;209.851000;209.851000;209.791000;209.791000;0 +20260304 010200;209.789000;209.795000;209.738000;209.739000;0 +20260304 010300;209.739000;209.772000;209.728000;209.749000;0 +20260304 010400;209.749000;209.768000;209.740000;209.765000;0 +20260304 010500;209.764000;209.784000;209.749000;209.749000;0 +20260304 010600;209.748000;209.778000;209.727000;209.777000;0 +20260304 010700;209.779000;209.786000;209.741000;209.744000;0 +20260304 010800;209.744000;209.779000;209.735000;209.779000;0 +20260304 010900;209.779000;209.780000;209.755000;209.767000;0 +20260304 011000;209.765000;209.821000;209.765000;209.821000;0 +20260304 011100;209.824000;209.840000;209.815000;209.817000;0 +20260304 011200;209.814000;209.847000;209.807000;209.811000;0 +20260304 011300;209.812000;209.847000;209.798000;209.846000;0 +20260304 011400;209.843000;209.857000;209.835000;209.836000;0 +20260304 011500;209.837000;209.850000;209.828000;209.840000;0 +20260304 011600;209.841000;209.844000;209.815000;209.819000;0 +20260304 011700;209.820000;209.849000;209.818000;209.837000;0 +20260304 011800;209.836000;209.865000;209.825000;209.865000;0 +20260304 011900;209.865000;209.880000;209.862000;209.862000;0 +20260304 012000;209.859000;209.862000;209.824000;209.838000;0 +20260304 012100;209.835000;209.854000;209.816000;209.845000;0 +20260304 012200;209.844000;209.871000;209.844000;209.865000;0 +20260304 012300;209.866000;209.879000;209.840000;209.876000;0 +20260304 012400;209.875000;209.877000;209.840000;209.854000;0 +20260304 012500;209.857000;209.908000;209.853000;209.905000;0 +20260304 012600;209.905000;209.925000;209.894000;209.903000;0 +20260304 012700;209.904000;209.911000;209.875000;209.906000;0 +20260304 012800;209.906000;209.919000;209.893000;209.904000;0 +20260304 012900;209.903000;209.926000;209.882000;209.904000;0 +20260304 013000;209.906000;209.920000;209.892000;209.911000;0 +20260304 013100;209.911000;209.976000;209.904000;209.956000;0 +20260304 013200;209.962000;209.976000;209.947000;209.964000;0 +20260304 013300;209.964000;209.995000;209.957000;209.992000;0 +20260304 013400;209.989000;209.992000;209.962000;209.980000;0 +20260304 013500;209.977000;210.003000;209.969000;209.989000;0 +20260304 013600;209.988000;210.010000;209.961000;210.003000;0 +20260304 013700;210.010000;210.033000;210.001000;210.021000;0 +20260304 013800;210.022000;210.028000;209.999000;210.018000;0 +20260304 013900;210.021000;210.022000;209.969000;209.992000;0 +20260304 014000;209.994000;210.008000;209.983000;209.995000;0 +20260304 014100;209.998000;210.002000;209.969000;209.982000;0 +20260304 014200;209.982000;210.010000;209.982000;209.995000;0 +20260304 014300;209.995000;210.004000;209.955000;209.965000;0 +20260304 014400;209.967000;209.982000;209.955000;209.972000;0 +20260304 014500;209.973000;209.988000;209.948000;209.984000;0 +20260304 014600;209.983000;209.989000;209.941000;209.956000;0 +20260304 014700;209.955000;209.970000;209.950000;209.950000;0 +20260304 014800;209.950000;209.983000;209.950000;209.973000;0 +20260304 014900;209.974000;209.980000;209.916000;209.916000;0 +20260304 015000;209.914000;209.961000;209.914000;209.950000;0 +20260304 015100;209.950000;209.954000;209.916000;209.919000;0 +20260304 015200;209.919000;209.938000;209.906000;209.906000;0 +20260304 015300;209.906000;209.937000;209.899000;209.903000;0 +20260304 015400;209.900000;209.916000;209.892000;209.895000;0 +20260304 015500;209.897000;209.911000;209.891000;209.895000;0 +20260304 015600;209.893000;209.895000;209.861000;209.861000;0 +20260304 015700;209.864000;209.881000;209.860000;209.880000;0 +20260304 015800;209.879000;209.904000;209.876000;209.890000;0 +20260304 015900;209.891000;209.900000;209.884000;209.899000;0 +20260304 020000;209.900000;209.954000;209.900000;209.942000;0 +20260304 020100;209.945000;209.966000;209.920000;209.927000;0 +20260304 020200;209.927000;209.958000;209.924000;209.932000;0 +20260304 020300;209.931000;209.965000;209.931000;209.956000;0 +20260304 020400;209.956000;210.006000;209.934000;209.992000;0 +20260304 020500;209.996000;209.997000;209.913000;209.913000;0 +20260304 020600;209.913000;209.923000;209.897000;209.915000;0 +20260304 020700;209.914000;209.915000;209.815000;209.828000;0 +20260304 020800;209.827000;209.881000;209.812000;209.867000;0 +20260304 020900;209.869000;209.869000;209.836000;209.850000;0 +20260304 021000;209.848000;209.866000;209.802000;209.865000;0 +20260304 021100;209.866000;209.895000;209.855000;209.871000;0 +20260304 021200;209.868000;209.874000;209.835000;209.838000;0 +20260304 021300;209.830000;209.859000;209.823000;209.856000;0 +20260304 021400;209.855000;209.882000;209.848000;209.880000;0 +20260304 021500;209.881000;209.942000;209.876000;209.933000;0 +20260304 021600;209.930000;210.010000;209.914000;210.010000;0 +20260304 021700;210.006000;210.016000;209.974000;209.980000;0 +20260304 021800;209.980000;210.016000;209.962000;209.964000;0 +20260304 021900;209.962000;209.986000;209.929000;209.935000;0 +20260304 022000;209.939000;209.960000;209.915000;209.938000;0 +20260304 022100;209.938000;209.966000;209.921000;209.962000;0 +20260304 022200;209.963000;210.001000;209.963000;209.998000;0 +20260304 022300;209.997000;210.086000;209.986000;210.079000;0 +20260304 022400;210.082000;210.107000;210.067000;210.090000;0 +20260304 022500;210.089000;210.129000;210.082000;210.089000;0 +20260304 022600;210.089000;210.089000;210.051000;210.055000;0 +20260304 022700;210.055000;210.081000;210.039000;210.080000;0 +20260304 022800;210.079000;210.197000;210.068000;210.171000;0 +20260304 022900;210.172000;210.172000;210.143000;210.154000;0 +20260304 023000;210.157000;210.230000;210.137000;210.226000;0 +20260304 023100;210.227000;210.378000;210.203000;210.377000;0 +20260304 023200;210.378000;210.390000;210.268000;210.272000;0 +20260304 023300;210.271000;210.326000;210.245000;210.290000;0 +20260304 023400;210.292000;210.346000;210.252000;210.340000;0 +20260304 023500;210.336000;210.363000;210.307000;210.314000;0 +20260304 023600;210.325000;210.332000;210.277000;210.320000;0 +20260304 023700;210.321000;210.342000;210.289000;210.342000;0 +20260304 023800;210.341000;210.341000;210.300000;210.325000;0 +20260304 023900;210.324000;210.325000;210.294000;210.313000;0 +20260304 024000;210.313000;210.377000;210.309000;210.371000;0 +20260304 024100;210.372000;210.393000;210.357000;210.385000;0 +20260304 024200;210.382000;210.439000;210.372000;210.420000;0 +20260304 024300;210.413000;210.433000;210.391000;210.431000;0 +20260304 024400;210.429000;210.445000;210.410000;210.411000;0 +20260304 024500;210.423000;210.428000;210.397000;210.412000;0 +20260304 024600;210.413000;210.440000;210.413000;210.427000;0 +20260304 024700;210.425000;210.427000;210.364000;210.374000;0 +20260304 024800;210.376000;210.382000;210.332000;210.348000;0 +20260304 024900;210.347000;210.375000;210.338000;210.338000;0 +20260304 025000;210.333000;210.348000;210.293000;210.326000;0 +20260304 025100;210.325000;210.340000;210.276000;210.276000;0 +20260304 025200;210.275000;210.313000;210.264000;210.309000;0 +20260304 025300;210.308000;210.347000;210.297000;210.342000;0 +20260304 025400;210.340000;210.394000;210.326000;210.392000;0 +20260304 025500;210.392000;210.422000;210.381000;210.390000;0 +20260304 025600;210.387000;210.429000;210.380000;210.405000;0 +20260304 025700;210.403000;210.416000;210.387000;210.414000;0 +20260304 025800;210.414000;210.426000;210.375000;210.389000;0 +20260304 025900;210.389000;210.398000;210.352000;210.353000;0 +20260304 030000;210.351000;210.375000;210.306000;210.346000;0 +20260304 030100;210.347000;210.365000;210.315000;210.335000;0 +20260304 030200;210.333000;210.334000;210.276000;210.311000;0 +20260304 030300;210.308000;210.309000;210.224000;210.233000;0 +20260304 030400;210.235000;210.238000;210.181000;210.182000;0 +20260304 030500;210.183000;210.184000;210.113000;210.173000;0 +20260304 030600;210.171000;210.248000;210.167000;210.235000;0 +20260304 030700;210.237000;210.246000;210.153000;210.169000;0 +20260304 030800;210.168000;210.189000;210.106000;210.142000;0 +20260304 030900;210.143000;210.159000;210.092000;210.094000;0 +20260304 031000;210.093000;210.109000;210.055000;210.080000;0 +20260304 031100;210.078000;210.106000;210.049000;210.050000;0 +20260304 031200;210.051000;210.070000;210.036000;210.043000;0 +20260304 031300;210.037000;210.120000;210.037000;210.101000;0 +20260304 031400;210.099000;210.121000;210.077000;210.107000;0 +20260304 031500;210.108000;210.114000;210.016000;210.037000;0 +20260304 031600;210.038000;210.083000;210.013000;210.041000;0 +20260304 031700;210.042000;210.152000;210.040000;210.107000;0 +20260304 031800;210.109000;210.173000;210.109000;210.170000;0 +20260304 031900;210.168000;210.195000;210.136000;210.144000;0 +20260304 032000;210.135000;210.140000;210.081000;210.124000;0 +20260304 032100;210.128000;210.132000;210.032000;210.033000;0 +20260304 032200;210.033000;210.069000;209.997000;210.063000;0 +20260304 032300;210.064000;210.100000;210.037000;210.099000;0 +20260304 032400;210.096000;210.114000;210.040000;210.042000;0 +20260304 032500;210.042000;210.042000;210.010000;210.027000;0 +20260304 032600;210.025000;210.036000;210.003000;210.025000;0 +20260304 032700;210.021000;210.065000;210.009000;210.011000;0 +20260304 032800;210.015000;210.015000;209.981000;210.003000;0 +20260304 032900;210.000000;210.050000;209.990000;210.015000;0 +20260304 033000;210.016000;210.094000;209.977000;210.093000;0 +20260304 033100;210.087000;210.128000;210.084000;210.085000;0 +20260304 033200;210.084000;210.148000;210.081000;210.125000;0 +20260304 033300;210.123000;210.145000;210.099000;210.142000;0 +20260304 033400;210.145000;210.157000;210.121000;210.157000;0 +20260304 033500;210.151000;210.158000;210.120000;210.155000;0 +20260304 033600;210.155000;210.177000;210.097000;210.118000;0 +20260304 033700;210.117000;210.131000;210.107000;210.122000;0 +20260304 033800;210.119000;210.144000;210.081000;210.110000;0 +20260304 033900;210.112000;210.112000;210.053000;210.058000;0 +20260304 034000;210.065000;210.084000;210.024000;210.075000;0 +20260304 034100;210.075000;210.075000;210.000000;210.042000;0 +20260304 034200;210.043000;210.110000;210.043000;210.108000;0 +20260304 034300;210.104000;210.113000;210.082000;210.107000;0 +20260304 034400;210.107000;210.126000;210.088000;210.120000;0 +20260304 034500;210.121000;210.155000;210.110000;210.127000;0 +20260304 034600;210.128000;210.132000;210.087000;210.120000;0 +20260304 034700;210.116000;210.157000;210.112000;210.157000;0 +20260304 034800;210.159000;210.193000;210.155000;210.192000;0 +20260304 034900;210.191000;210.227000;210.185000;210.199000;0 +20260304 035000;210.197000;210.217000;210.138000;210.148000;0 +20260304 035100;210.148000;210.149000;210.099000;210.121000;0 +20260304 035200;210.123000;210.135000;210.102000;210.127000;0 +20260304 035300;210.129000;210.143000;210.050000;210.069000;0 +20260304 035400;210.069000;210.069000;210.020000;210.048000;0 +20260304 035500;210.050000;210.086000;210.029000;210.037000;0 +20260304 035600;210.036000;210.041000;209.968000;209.993000;0 +20260304 035700;209.994000;210.001000;209.975000;209.984000;0 +20260304 035800;209.987000;210.009000;209.969000;209.980000;0 +20260304 035900;209.980000;209.997000;209.948000;209.951000;0 +20260304 040000;209.950000;209.966000;209.924000;209.928000;0 +20260304 040100;209.929000;209.942000;209.875000;209.888000;0 +20260304 040200;209.889000;209.910000;209.844000;209.902000;0 +20260304 040300;209.902000;209.932000;209.892000;209.920000;0 +20260304 040400;209.917000;209.922000;209.877000;209.909000;0 +20260304 040500;209.907000;209.930000;209.894000;209.923000;0 +20260304 040600;209.922000;210.014000;209.917000;210.000000;0 +20260304 040700;210.000000;210.042000;209.989000;210.028000;0 +20260304 040800;210.026000;210.056000;210.006000;210.051000;0 +20260304 040900;210.051000;210.058000;210.011000;210.050000;0 +20260304 041000;210.053000;210.063000;210.034000;210.053000;0 +20260304 041100;210.049000;210.147000;210.041000;210.132000;0 +20260304 041200;210.131000;210.138000;210.067000;210.101000;0 +20260304 041300;210.103000;210.178000;210.103000;210.149000;0 +20260304 041400;210.150000;210.177000;210.143000;210.170000;0 +20260304 041500;210.167000;210.239000;210.143000;210.235000;0 +20260304 041600;210.237000;210.257000;210.212000;210.253000;0 +20260304 041700;210.255000;210.296000;210.253000;210.294000;0 +20260304 041800;210.291000;210.328000;210.284000;210.306000;0 +20260304 041900;210.305000;210.307000;210.234000;210.255000;0 +20260304 042000;210.256000;210.273000;210.233000;210.264000;0 +20260304 042100;210.264000;210.276000;210.211000;210.236000;0 +20260304 042200;210.236000;210.266000;210.229000;210.246000;0 +20260304 042300;210.247000;210.257000;210.231000;210.253000;0 +20260304 042400;210.253000;210.268000;210.225000;210.234000;0 +20260304 042500;210.233000;210.243000;210.193000;210.217000;0 +20260304 042600;210.218000;210.230000;210.187000;210.188000;0 +20260304 042700;210.187000;210.213000;210.181000;210.206000;0 +20260304 042800;210.207000;210.214000;210.196000;210.204000;0 +20260304 042900;210.202000;210.207000;210.164000;210.164000;0 +20260304 043000;210.165000;210.220000;210.131000;210.192000;0 +20260304 043100;210.195000;210.205000;210.162000;210.205000;0 +20260304 043200;210.205000;210.217000;210.168000;210.168000;0 +20260304 043300;210.165000;210.178000;210.090000;210.090000;0 +20260304 043400;210.091000;210.124000;210.088000;210.112000;0 +20260304 043500;210.118000;210.123000;210.078000;210.110000;0 +20260304 043600;210.113000;210.118000;210.093000;210.095000;0 +20260304 043700;210.094000;210.105000;210.065000;210.085000;0 +20260304 043800;210.083000;210.125000;210.083000;210.097000;0 +20260304 043900;210.091000;210.120000;210.070000;210.097000;0 +20260304 044000;210.097000;210.104000;210.042000;210.086000;0 +20260304 044100;210.082000;210.082000;210.024000;210.030000;0 +20260304 044200;210.033000;210.057000;210.000000;210.008000;0 +20260304 044300;210.009000;210.023000;209.990000;209.992000;0 +20260304 044400;209.991000;210.024000;209.977000;209.979000;0 +20260304 044500;209.979000;210.004000;209.973000;209.994000;0 +20260304 044600;209.990000;209.990000;209.922000;209.944000;0 +20260304 044700;209.945000;210.008000;209.917000;210.008000;0 +20260304 044800;210.008000;210.058000;209.993000;210.058000;0 +20260304 044900;210.055000;210.082000;210.055000;210.073000;0 +20260304 045000;210.070000;210.155000;210.070000;210.119000;0 +20260304 045100;210.118000;210.118000;210.053000;210.067000;0 +20260304 045200;210.067000;210.075000;210.045000;210.053000;0 +20260304 045300;210.050000;210.094000;210.026000;210.026000;0 +20260304 045400;210.028000;210.096000;210.011000;210.095000;0 +20260304 045500;210.098000;210.104000;210.063000;210.071000;0 +20260304 045600;210.070000;210.077000;210.007000;210.017000;0 +20260304 045700;210.018000;210.018000;209.988000;210.010000;0 +20260304 045800;210.008000;210.054000;210.006000;210.050000;0 +20260304 045900;210.050000;210.066000;210.018000;210.021000;0 +20260304 050000;210.025000;210.048000;209.993000;209.996000;0 +20260304 050100;209.996000;210.062000;209.996000;210.057000;0 +20260304 050200;210.058000;210.115000;210.058000;210.107000;0 +20260304 050300;210.111000;210.172000;210.107000;210.144000;0 +20260304 050400;210.141000;210.183000;210.135000;210.172000;0 +20260304 050500;210.164000;210.186000;210.152000;210.161000;0 +20260304 050600;210.165000;210.168000;210.122000;210.160000;0 +20260304 050700;210.159000;210.212000;210.159000;210.199000;0 +20260304 050800;210.200000;210.331000;210.175000;210.328000;0 +20260304 050900;210.326000;210.329000;210.187000;210.225000;0 +20260304 051000;210.218000;210.224000;210.091000;210.130000;0 +20260304 051100;210.125000;210.162000;210.092000;210.136000;0 +20260304 051200;210.133000;210.211000;210.118000;210.136000;0 +20260304 051300;210.141000;210.145000;210.042000;210.058000;0 +20260304 051400;210.058000;210.213000;210.054000;210.199000;0 +20260304 051500;210.202000;210.263000;210.178000;210.256000;0 +20260304 051600;210.252000;210.252000;210.185000;210.187000;0 +20260304 051700;210.187000;210.251000;210.176000;210.231000;0 +20260304 051800;210.230000;210.233000;210.178000;210.208000;0 +20260304 051900;210.206000;210.214000;210.166000;210.193000;0 +20260304 052000;210.188000;210.208000;210.162000;210.195000;0 +20260304 052100;210.197000;210.201000;210.154000;210.159000;0 +20260304 052200;210.157000;210.181000;210.134000;210.142000;0 +20260304 052300;210.139000;210.214000;210.135000;210.191000;0 +20260304 052400;210.191000;210.252000;210.187000;210.241000;0 +20260304 052500;210.243000;210.263000;210.218000;210.242000;0 +20260304 052600;210.242000;210.273000;210.232000;210.264000;0 +20260304 052700;210.262000;210.296000;210.262000;210.291000;0 +20260304 052800;210.290000;210.304000;210.260000;210.260000;0 +20260304 052900;210.256000;210.290000;210.246000;210.275000;0 +20260304 053000;210.277000;210.335000;210.277000;210.326000;0 +20260304 053100;210.324000;210.331000;210.255000;210.257000;0 +20260304 053200;210.256000;210.262000;210.215000;210.241000;0 +20260304 053300;210.240000;210.242000;210.201000;210.220000;0 +20260304 053400;210.219000;210.236000;210.194000;210.206000;0 +20260304 053500;210.207000;210.262000;210.204000;210.259000;0 +20260304 053600;210.270000;210.273000;210.227000;210.245000;0 +20260304 053700;210.244000;210.252000;210.203000;210.227000;0 +20260304 053800;210.230000;210.246000;210.216000;210.233000;0 +20260304 053900;210.231000;210.231000;210.183000;210.208000;0 +20260304 054000;210.210000;210.218000;210.188000;210.215000;0 +20260304 054100;210.215000;210.256000;210.198000;210.240000;0 +20260304 054200;210.239000;210.279000;210.239000;210.255000;0 +20260304 054300;210.258000;210.271000;210.241000;210.260000;0 +20260304 054400;210.257000;210.292000;210.249000;210.283000;0 +20260304 054500;210.283000;210.303000;210.258000;210.293000;0 +20260304 054600;210.292000;210.399000;210.280000;210.392000;0 +20260304 054700;210.393000;210.410000;210.365000;210.379000;0 +20260304 054800;210.379000;210.394000;210.340000;210.347000;0 +20260304 054900;210.348000;210.384000;210.327000;210.376000;0 +20260304 055000;210.377000;210.397000;210.369000;210.372000;0 +20260304 055100;210.373000;210.390000;210.366000;210.383000;0 +20260304 055200;210.384000;210.391000;210.344000;210.358000;0 +20260304 055300;210.360000;210.385000;210.352000;210.367000;0 +20260304 055400;210.367000;210.423000;210.367000;210.407000;0 +20260304 055500;210.406000;210.443000;210.406000;210.437000;0 +20260304 055600;210.441000;210.442000;210.399000;210.406000;0 +20260304 055700;210.419000;210.440000;210.412000;210.431000;0 +20260304 055800;210.433000;210.442000;210.415000;210.423000;0 +20260304 055900;210.421000;210.427000;210.411000;210.419000;0 +20260304 060000;210.418000;210.445000;210.401000;210.422000;0 +20260304 060100;210.425000;210.454000;210.403000;210.440000;0 +20260304 060200;210.442000;210.455000;210.398000;210.455000;0 +20260304 060300;210.454000;210.468000;210.444000;210.467000;0 +20260304 060400;210.469000;210.476000;210.433000;210.456000;0 +20260304 060500;210.456000;210.464000;210.440000;210.456000;0 +20260304 060600;210.460000;210.468000;210.439000;210.450000;0 +20260304 060700;210.448000;210.452000;210.424000;210.442000;0 +20260304 060800;210.444000;210.453000;210.401000;210.401000;0 +20260304 060900;210.406000;210.439000;210.402000;210.415000;0 +20260304 061000;210.415000;210.426000;210.409000;210.421000;0 +20260304 061100;210.422000;210.434000;210.410000;210.426000;0 +20260304 061200;210.429000;210.461000;210.421000;210.451000;0 +20260304 061300;210.451000;210.532000;210.451000;210.530000;0 +20260304 061400;210.527000;210.544000;210.508000;210.516000;0 +20260304 061500;210.518000;210.558000;210.511000;210.551000;0 +20260304 061600;210.549000;210.551000;210.506000;210.518000;0 +20260304 061700;210.519000;210.525000;210.498000;210.513000;0 +20260304 061800;210.510000;210.513000;210.482000;210.491000;0 +20260304 061900;210.489000;210.501000;210.480000;210.486000;0 +20260304 062000;210.486000;210.491000;210.464000;210.478000;0 +20260304 062100;210.473000;210.542000;210.468000;210.542000;0 +20260304 062200;210.541000;210.543000;210.518000;210.537000;0 +20260304 062300;210.536000;210.537000;210.508000;210.508000;0 +20260304 062400;210.510000;210.522000;210.479000;210.505000;0 +20260304 062500;210.504000;210.535000;210.481000;210.533000;0 +20260304 062600;210.531000;210.561000;210.524000;210.548000;0 +20260304 062700;210.549000;210.550000;210.477000;210.486000;0 +20260304 062800;210.485000;210.493000;210.474000;210.483000;0 +20260304 062900;210.481000;210.493000;210.462000;210.472000;0 +20260304 063000;210.472000;210.473000;210.425000;210.440000;0 +20260304 063100;210.439000;210.441000;210.412000;210.441000;0 +20260304 063200;210.436000;210.437000;210.385000;210.401000;0 +20260304 063300;210.403000;210.407000;210.350000;210.353000;0 +20260304 063400;210.359000;210.365000;210.303000;210.320000;0 +20260304 063500;210.322000;210.345000;210.319000;210.334000;0 +20260304 063600;210.332000;210.350000;210.315000;210.330000;0 +20260304 063700;210.328000;210.343000;210.320000;210.327000;0 +20260304 063800;210.326000;210.381000;210.321000;210.365000;0 +20260304 063900;210.365000;210.375000;210.351000;210.374000;0 +20260304 064000;210.374000;210.378000;210.315000;210.315000;0 +20260304 064100;210.318000;210.340000;210.303000;210.332000;0 +20260304 064200;210.333000;210.344000;210.323000;210.333000;0 +20260304 064300;210.334000;210.351000;210.325000;210.344000;0 +20260304 064400;210.350000;210.364000;210.335000;210.363000;0 +20260304 064500;210.358000;210.364000;210.293000;210.317000;0 +20260304 064600;210.317000;210.323000;210.272000;210.276000;0 +20260304 064700;210.276000;210.293000;210.263000;210.268000;0 +20260304 064800;210.262000;210.298000;210.256000;210.272000;0 +20260304 064900;210.274000;210.282000;210.245000;210.258000;0 +20260304 065000;210.261000;210.261000;210.202000;210.205000;0 +20260304 065100;210.207000;210.213000;210.168000;210.179000;0 +20260304 065200;210.179000;210.189000;210.141000;210.167000;0 +20260304 065300;210.166000;210.200000;210.164000;210.179000;0 +20260304 065400;210.185000;210.222000;210.185000;210.220000;0 +20260304 065500;210.223000;210.259000;210.219000;210.244000;0 +20260304 065600;210.244000;210.246000;210.215000;210.237000;0 +20260304 065700;210.237000;210.340000;210.237000;210.338000;0 +20260304 065800;210.338000;210.338000;210.290000;210.297000;0 +20260304 065900;210.298000;210.343000;210.287000;210.325000;0 +20260304 070000;210.324000;210.335000;210.288000;210.296000;0 +20260304 070100;210.295000;210.327000;210.279000;210.298000;0 +20260304 070200;210.299000;210.309000;210.264000;210.303000;0 +20260304 070300;210.305000;210.331000;210.299000;210.329000;0 +20260304 070400;210.327000;210.334000;210.279000;210.280000;0 +20260304 070500;210.278000;210.293000;210.270000;210.287000;0 +20260304 070600;210.287000;210.300000;210.264000;210.270000;0 +20260304 070700;210.265000;210.284000;210.254000;210.264000;0 +20260304 070800;210.263000;210.264000;210.218000;210.226000;0 +20260304 070900;210.230000;210.253000;210.183000;210.183000;0 +20260304 071000;210.184000;210.209000;210.184000;210.190000;0 +20260304 071100;210.193000;210.233000;210.193000;210.233000;0 +20260304 071200;210.229000;210.249000;210.215000;210.243000;0 +20260304 071300;210.246000;210.265000;210.229000;210.264000;0 +20260304 071400;210.264000;210.278000;210.258000;210.277000;0 +20260304 071500;210.279000;210.281000;210.234000;210.234000;0 +20260304 071600;210.234000;210.234000;210.199000;210.227000;0 +20260304 071700;210.226000;210.238000;210.203000;210.204000;0 +20260304 071800;210.201000;210.214000;210.167000;210.205000;0 +20260304 071900;210.201000;210.211000;210.180000;210.185000;0 +20260304 072000;210.182000;210.188000;210.131000;210.170000;0 +20260304 072100;210.171000;210.217000;210.148000;210.212000;0 +20260304 072200;210.213000;210.232000;210.179000;210.189000;0 +20260304 072300;210.188000;210.194000;210.152000;210.161000;0 +20260304 072400;210.163000;210.167000;210.138000;210.141000;0 +20260304 072500;210.143000;210.167000;210.125000;210.142000;0 +20260304 072600;210.142000;210.150000;210.117000;210.128000;0 +20260304 072700;210.130000;210.167000;210.128000;210.153000;0 +20260304 072800;210.149000;210.158000;210.122000;210.147000;0 +20260304 072900;210.152000;210.155000;210.124000;210.125000;0 +20260304 073000;210.125000;210.128000;210.107000;210.112000;0 +20260304 073100;210.109000;210.116000;210.092000;210.094000;0 +20260304 073200;210.095000;210.128000;210.085000;210.126000;0 +20260304 073300;210.125000;210.133000;210.114000;210.127000;0 +20260304 073400;210.126000;210.154000;210.126000;210.145000;0 +20260304 073500;210.146000;210.146000;210.097000;210.128000;0 +20260304 073600;210.128000;210.145000;210.101000;210.101000;0 +20260304 073700;210.101000;210.109000;210.073000;210.108000;0 +20260304 073800;210.107000;210.119000;210.095000;210.113000;0 +20260304 073900;210.112000;210.121000;210.086000;210.112000;0 +20260304 074000;210.111000;210.116000;210.090000;210.109000;0 +20260304 074100;210.109000;210.109000;210.081000;210.098000;0 +20260304 074200;210.100000;210.134000;210.081000;210.118000;0 +20260304 074300;210.118000;210.145000;210.114000;210.137000;0 +20260304 074400;210.135000;210.135000;210.081000;210.083000;0 +20260304 074500;210.083000;210.109000;210.065000;210.084000;0 +20260304 074600;210.083000;210.114000;210.066000;210.085000;0 +20260304 074700;210.081000;210.085000;210.042000;210.048000;0 +20260304 074800;210.049000;210.089000;210.042000;210.088000;0 +20260304 074900;210.088000;210.088000;210.063000;210.083000;0 +20260304 075000;210.082000;210.118000;210.082000;210.086000;0 +20260304 075100;210.088000;210.112000;210.044000;210.056000;0 +20260304 075200;210.055000;210.067000;209.995000;209.995000;0 +20260304 075300;209.996000;210.036000;209.979000;209.990000;0 +20260304 075400;209.991000;210.023000;209.991000;210.009000;0 +20260304 075500;210.007000;210.028000;209.969000;209.971000;0 +20260304 075600;209.970000;210.054000;209.970000;210.032000;0 +20260304 075700;210.034000;210.058000;209.988000;209.991000;0 +20260304 075800;209.992000;210.064000;209.992000;210.047000;0 +20260304 075900;210.046000;210.061000;210.004000;210.038000;0 +20260304 080000;210.037000;210.056000;210.002000;210.042000;0 +20260304 080100;210.038000;210.083000;210.038000;210.072000;0 +20260304 080200;210.072000;210.113000;210.034000;210.096000;0 +20260304 080300;210.096000;210.110000;210.063000;210.073000;0 +20260304 080400;210.077000;210.133000;210.060000;210.128000;0 +20260304 080500;210.128000;210.183000;210.121000;210.171000;0 +20260304 080600;210.172000;210.214000;210.169000;210.176000;0 +20260304 080700;210.176000;210.211000;210.169000;210.204000;0 +20260304 080800;210.205000;210.277000;210.176000;210.277000;0 +20260304 080900;210.276000;210.281000;210.233000;210.234000;0 +20260304 081000;210.237000;210.298000;210.221000;210.272000;0 +20260304 081100;210.270000;210.270000;210.243000;210.261000;0 +20260304 081200;210.263000;210.302000;210.263000;210.269000;0 +20260304 081300;210.274000;210.274000;210.246000;210.258000;0 +20260304 081400;210.256000;210.268000;210.189000;210.189000;0 +20260304 081500;210.190000;210.290000;210.190000;210.231000;0 +20260304 081600;210.233000;210.248000;210.220000;210.236000;0 +20260304 081700;210.229000;210.234000;210.172000;210.194000;0 +20260304 081800;210.193000;210.207000;210.173000;210.173000;0 +20260304 081900;210.171000;210.176000;210.117000;210.129000;0 +20260304 082000;210.126000;210.186000;210.118000;210.175000;0 +20260304 082100;210.176000;210.245000;210.175000;210.216000;0 +20260304 082200;210.218000;210.218000;210.165000;210.189000;0 +20260304 082300;210.189000;210.194000;210.146000;210.146000;0 +20260304 082400;210.138000;210.194000;210.131000;210.187000;0 +20260304 082500;210.191000;210.245000;210.191000;210.232000;0 +20260304 082600;210.228000;210.240000;210.179000;210.181000;0 +20260304 082700;210.182000;210.207000;210.163000;210.203000;0 +20260304 082800;210.200000;210.209000;210.170000;210.180000;0 +20260304 082900;210.180000;210.189000;210.162000;210.174000;0 +20260304 083000;210.177000;210.177000;210.132000;210.133000;0 +20260304 083100;210.133000;210.163000;210.122000;210.136000;0 +20260304 083200;210.131000;210.163000;210.107000;210.134000;0 +20260304 083300;210.135000;210.137000;210.100000;210.108000;0 +20260304 083400;210.106000;210.142000;210.105000;210.127000;0 +20260304 083500;210.125000;210.126000;210.098000;210.118000;0 +20260304 083600;210.115000;210.130000;210.104000;210.117000;0 +20260304 083700;210.114000;210.123000;210.101000;210.105000;0 +20260304 083800;210.106000;210.144000;210.102000;210.136000;0 +20260304 083900;210.137000;210.140000;210.081000;210.092000;0 +20260304 084000;210.089000;210.104000;210.062000;210.073000;0 +20260304 084100;210.074000;210.105000;210.064000;210.096000;0 +20260304 084200;210.093000;210.107000;210.070000;210.094000;0 +20260304 084300;210.093000;210.123000;210.077000;210.120000;0 +20260304 084400;210.120000;210.140000;210.108000;210.115000;0 +20260304 084500;210.113000;210.155000;210.111000;210.143000;0 +20260304 084600;210.148000;210.166000;210.144000;210.159000;0 +20260304 084700;210.157000;210.178000;210.140000;210.176000;0 +20260304 084800;210.175000;210.187000;210.162000;210.187000;0 +20260304 084900;210.187000;210.210000;210.165000;210.195000;0 +20260304 085000;210.196000;210.199000;210.165000;210.181000;0 +20260304 085100;210.181000;210.190000;210.161000;210.181000;0 +20260304 085200;210.179000;210.202000;210.165000;210.169000;0 +20260304 085300;210.170000;210.225000;210.152000;210.212000;0 +20260304 085400;210.212000;210.240000;210.184000;210.188000;0 +20260304 085500;210.185000;210.185000;210.155000;210.158000;0 +20260304 085600;210.160000;210.262000;210.160000;210.236000;0 +20260304 085700;210.237000;210.260000;210.213000;210.219000;0 +20260304 085800;210.221000;210.262000;210.184000;210.197000;0 +20260304 085900;210.197000;210.210000;210.176000;210.181000;0 +20260304 090000;210.183000;210.209000;210.165000;210.201000;0 +20260304 090100;210.201000;210.217000;210.194000;210.205000;0 +20260304 090200;210.208000;210.222000;210.189000;210.215000;0 +20260304 090300;210.216000;210.247000;210.210000;210.245000;0 +20260304 090400;210.245000;210.293000;210.233000;210.284000;0 +20260304 090500;210.280000;210.349000;210.273000;210.311000;0 +20260304 090600;210.314000;210.358000;210.309000;210.335000;0 +20260304 090700;210.334000;210.337000;210.284000;210.294000;0 +20260304 090800;210.295000;210.311000;210.259000;210.283000;0 +20260304 090900;210.277000;210.292000;210.263000;210.285000;0 +20260304 091000;210.288000;210.349000;210.285000;210.328000;0 +20260304 091100;210.329000;210.336000;210.299000;210.332000;0 +20260304 091200;210.329000;210.366000;210.324000;210.352000;0 +20260304 091300;210.348000;210.354000;210.318000;210.339000;0 +20260304 091400;210.339000;210.360000;210.324000;210.358000;0 +20260304 091500;210.360000;210.379000;210.355000;210.364000;0 +20260304 091600;210.363000;210.417000;210.362000;210.417000;0 +20260304 091700;210.416000;210.429000;210.387000;210.412000;0 +20260304 091800;210.412000;210.456000;210.400000;210.445000;0 +20260304 091900;210.443000;210.470000;210.436000;210.438000;0 +20260304 092000;210.446000;210.477000;210.442000;210.472000;0 +20260304 092100;210.470000;210.482000;210.426000;210.426000;0 +20260304 092200;210.426000;210.427000;210.359000;210.359000;0 +20260304 092300;210.355000;210.377000;210.340000;210.342000;0 +20260304 092400;210.348000;210.352000;210.324000;210.332000;0 +20260304 092500;210.330000;210.348000;210.319000;210.345000;0 +20260304 092600;210.343000;210.369000;210.340000;210.356000;0 +20260304 092700;210.356000;210.370000;210.333000;210.352000;0 +20260304 092800;210.355000;210.370000;210.343000;210.365000;0 +20260304 092900;210.365000;210.374000;210.348000;210.351000;0 +20260304 093000;210.349000;210.404000;210.303000;210.376000;0 +20260304 093100;210.378000;210.398000;210.346000;210.383000;0 +20260304 093200;210.384000;210.411000;210.375000;210.380000;0 +20260304 093300;210.379000;210.437000;210.369000;210.428000;0 +20260304 093400;210.431000;210.435000;210.394000;210.420000;0 +20260304 093500;210.425000;210.447000;210.238000;210.269000;0 +20260304 093600;210.270000;210.347000;210.223000;210.321000;0 +20260304 093700;210.326000;210.436000;210.299000;210.413000;0 +20260304 093800;210.414000;210.421000;210.349000;210.385000;0 +20260304 093900;210.386000;210.404000;210.345000;210.358000;0 +20260304 094000;210.359000;210.378000;210.323000;210.345000;0 +20260304 094100;210.341000;210.402000;210.334000;210.378000;0 +20260304 094200;210.375000;210.385000;210.333000;210.367000;0 +20260304 094300;210.363000;210.370000;210.342000;210.352000;0 +20260304 094400;210.351000;210.386000;210.337000;210.375000;0 +20260304 094500;210.376000;210.376000;210.260000;210.283000;0 +20260304 094600;210.287000;210.328000;210.262000;210.276000;0 +20260304 094700;210.271000;210.337000;210.221000;210.221000;0 +20260304 094800;210.223000;210.256000;210.176000;210.238000;0 +20260304 094900;210.241000;210.269000;210.197000;210.198000;0 +20260304 095000;210.197000;210.219000;210.168000;210.186000;0 +20260304 095100;210.187000;210.221000;210.136000;210.167000;0 +20260304 095200;210.170000;210.189000;210.117000;210.186000;0 +20260304 095300;210.183000;210.205000;210.168000;210.175000;0 +20260304 095400;210.172000;210.190000;210.137000;210.165000;0 +20260304 095500;210.164000;210.164000;210.092000;210.104000;0 +20260304 095600;210.106000;210.126000;210.093000;210.093000;0 +20260304 095700;210.092000;210.128000;210.072000;210.124000;0 +20260304 095800;210.124000;210.138000;210.109000;210.133000;0 +20260304 095900;210.131000;210.143000;210.096000;210.099000;0 +20260304 100000;210.093000;210.187000;210.079000;210.167000;0 +20260304 100100;210.167000;210.216000;210.154000;210.160000;0 +20260304 100200;210.156000;210.262000;210.156000;210.224000;0 +20260304 100300;210.222000;210.240000;210.159000;210.168000;0 +20260304 100400;210.161000;210.186000;210.150000;210.186000;0 +20260304 100500;210.187000;210.204000;210.146000;210.174000;0 +20260304 100600;210.176000;210.195000;210.148000;210.165000;0 +20260304 100700;210.166000;210.213000;210.142000;210.196000;0 +20260304 100800;210.195000;210.221000;210.169000;210.204000;0 +20260304 100900;210.201000;210.233000;210.195000;210.218000;0 +20260304 101000;210.212000;210.215000;210.142000;210.160000;0 +20260304 101100;210.160000;210.160000;210.106000;210.151000;0 +20260304 101200;210.151000;210.167000;210.120000;210.159000;0 +20260304 101300;210.155000;210.197000;210.132000;210.142000;0 +20260304 101400;210.146000;210.174000;210.114000;210.167000;0 +20260304 101500;210.166000;210.185000;210.142000;210.185000;0 +20260304 101600;210.189000;210.198000;210.150000;210.171000;0 +20260304 101700;210.176000;210.180000;210.146000;210.161000;0 +20260304 101800;210.160000;210.214000;210.158000;210.189000;0 +20260304 101900;210.190000;210.205000;210.182000;210.189000;0 +20260304 102000;210.190000;210.242000;210.184000;210.242000;0 +20260304 102100;210.240000;210.271000;210.229000;210.245000;0 +20260304 102200;210.244000;210.249000;210.221000;210.221000;0 +20260304 102300;210.226000;210.274000;210.217000;210.257000;0 +20260304 102400;210.256000;210.267000;210.227000;210.257000;0 +20260304 102500;210.256000;210.276000;210.238000;210.248000;0 +20260304 102600;210.250000;210.285000;210.221000;210.269000;0 +20260304 102700;210.267000;210.317000;210.260000;210.306000;0 +20260304 102800;210.301000;210.318000;210.289000;210.296000;0 +20260304 102900;210.297000;210.350000;210.297000;210.337000;0 +20260304 103000;210.338000;210.351000;210.293000;210.323000;0 +20260304 103100;210.323000;210.364000;210.317000;210.351000;0 +20260304 103200;210.351000;210.370000;210.330000;210.342000;0 +20260304 103300;210.343000;210.378000;210.329000;210.343000;0 +20260304 103400;210.343000;210.369000;210.302000;210.366000;0 +20260304 103500;210.362000;210.377000;210.347000;210.369000;0 +20260304 103600;210.367000;210.390000;210.352000;210.360000;0 +20260304 103700;210.357000;210.366000;210.340000;210.348000;0 +20260304 103800;210.350000;210.364000;210.313000;210.320000;0 +20260304 103900;210.318000;210.336000;210.294000;210.296000;0 +20260304 104000;210.297000;210.297000;210.234000;210.241000;0 +20260304 104100;210.243000;210.278000;210.216000;210.267000;0 +20260304 104200;210.267000;210.287000;210.254000;210.278000;0 +20260304 104300;210.280000;210.328000;210.274000;210.289000;0 +20260304 104400;210.289000;210.295000;210.258000;210.266000;0 +20260304 104500;210.266000;210.300000;210.256000;210.278000;0 +20260304 104600;210.280000;210.317000;210.280000;210.303000;0 +20260304 104700;210.300000;210.302000;210.229000;210.248000;0 +20260304 104800;210.247000;210.262000;210.224000;210.243000;0 +20260304 104900;210.242000;210.282000;210.241000;210.260000;0 +20260304 105000;210.259000;210.265000;210.202000;210.230000;0 +20260304 105100;210.235000;210.237000;210.115000;210.132000;0 +20260304 105200;210.133000;210.138000;210.079000;210.100000;0 +20260304 105300;210.100000;210.163000;210.098000;210.127000;0 +20260304 105400;210.124000;210.149000;210.105000;210.131000;0 +20260304 105500;210.128000;210.128000;210.043000;210.046000;0 +20260304 105600;210.060000;210.065000;209.966000;210.007000;0 +20260304 105700;210.006000;210.039000;209.983000;210.013000;0 +20260304 105800;210.016000;210.020000;209.993000;210.009000;0 +20260304 105900;210.004000;210.008000;209.955000;209.976000;0 +20260304 110000;209.978000;210.008000;209.932000;209.939000;0 +20260304 110100;209.936000;209.975000;209.936000;209.952000;0 +20260304 110200;209.956000;210.011000;209.926000;210.004000;0 +20260304 110300;210.003000;210.022000;209.986000;210.019000;0 +20260304 110400;210.017000;210.047000;210.006000;210.013000;0 +20260304 110500;210.013000;210.037000;209.979000;209.997000;0 +20260304 110600;209.993000;210.018000;209.988000;210.018000;0 +20260304 110700;210.019000;210.037000;209.987000;209.991000;0 +20260304 110800;209.992000;210.022000;209.977000;210.018000;0 +20260304 110900;210.018000;210.050000;210.012000;210.016000;0 +20260304 111000;210.016000;210.028000;209.979000;209.979000;0 +20260304 111100;209.983000;209.999000;209.969000;209.998000;0 +20260304 111200;209.996000;209.999000;209.932000;209.932000;0 +20260304 111300;209.932000;209.944000;209.878000;209.897000;0 +20260304 111400;209.901000;209.901000;209.823000;209.828000;0 +20260304 111500;209.833000;209.857000;209.820000;209.820000;0 +20260304 111600;209.819000;209.861000;209.818000;209.852000;0 +20260304 111700;209.851000;209.879000;209.848000;209.863000;0 +20260304 111800;209.864000;209.883000;209.848000;209.848000;0 +20260304 111900;209.846000;209.875000;209.841000;209.870000;0 +20260304 112000;209.869000;209.872000;209.839000;209.864000;0 +20260304 112100;209.868000;209.881000;209.838000;209.843000;0 +20260304 112200;209.840000;209.844000;209.793000;209.816000;0 +20260304 112300;209.816000;209.825000;209.756000;209.758000;0 +20260304 112400;209.756000;209.761000;209.732000;209.744000;0 +20260304 112500;209.744000;209.766000;209.734000;209.738000;0 +20260304 112600;209.741000;209.784000;209.741000;209.773000;0 +20260304 112700;209.775000;209.781000;209.753000;209.764000;0 +20260304 112800;209.760000;209.786000;209.736000;209.775000;0 +20260304 112900;209.779000;209.793000;209.755000;209.775000;0 +20260304 113000;209.782000;209.816000;209.759000;209.792000;0 +20260304 113100;209.801000;209.823000;209.786000;209.809000;0 +20260304 113200;209.808000;209.813000;209.781000;209.794000;0 +20260304 113300;209.790000;209.854000;209.790000;209.840000;0 +20260304 113400;209.839000;209.896000;209.832000;209.888000;0 +20260304 113500;209.901000;209.909000;209.850000;209.866000;0 +20260304 113600;209.862000;209.882000;209.839000;209.846000;0 +20260304 113700;209.848000;209.859000;209.816000;209.824000;0 +20260304 113800;209.823000;209.825000;209.759000;209.775000;0 +20260304 113900;209.779000;209.806000;209.760000;209.760000;0 +20260304 114000;209.760000;209.823000;209.759000;209.816000;0 +20260304 114100;209.817000;209.855000;209.809000;209.844000;0 +20260304 114200;209.844000;209.860000;209.834000;209.857000;0 +20260304 114300;209.854000;209.876000;209.835000;209.839000;0 +20260304 114400;209.839000;209.850000;209.822000;209.849000;0 +20260304 114500;209.847000;209.855000;209.831000;209.849000;0 +20260304 114600;209.847000;209.882000;209.847000;209.881000;0 +20260304 114700;209.889000;209.889000;209.832000;209.835000;0 +20260304 114800;209.834000;209.842000;209.814000;209.834000;0 +20260304 114900;209.835000;209.840000;209.785000;209.786000;0 +20260304 115000;209.787000;209.809000;209.766000;209.768000;0 +20260304 115100;209.769000;209.778000;209.760000;209.777000;0 +20260304 115200;209.777000;209.786000;209.770000;209.782000;0 +20260304 115300;209.784000;209.796000;209.772000;209.777000;0 +20260304 115400;209.773000;209.788000;209.761000;209.788000;0 +20260304 115500;209.785000;209.813000;209.779000;209.779000;0 +20260304 115600;209.780000;209.781000;209.720000;209.724000;0 +20260304 115700;209.724000;209.761000;209.714000;209.759000;0 +20260304 115800;209.757000;209.771000;209.744000;209.747000;0 +20260304 115900;209.746000;209.784000;209.739000;209.783000;0 +20260304 120000;209.783000;209.784000;209.752000;209.781000;0 +20260304 120100;209.777000;209.815000;209.752000;209.753000;0 +20260304 120200;209.755000;209.781000;209.751000;209.767000;0 +20260304 120300;209.765000;209.792000;209.765000;209.769000;0 +20260304 120400;209.768000;209.779000;209.748000;209.779000;0 +20260304 120500;209.767000;209.776000;209.753000;209.775000;0 +20260304 120600;209.776000;209.790000;209.769000;209.785000;0 +20260304 120700;209.782000;209.794000;209.770000;209.777000;0 +20260304 120800;209.772000;209.776000;209.750000;209.774000;0 +20260304 120900;209.767000;209.783000;209.747000;209.756000;0 +20260304 121000;209.757000;209.757000;209.724000;209.741000;0 +20260304 121100;209.739000;209.754000;209.734000;209.744000;0 +20260304 121200;209.746000;209.746000;209.723000;209.734000;0 +20260304 121300;209.734000;209.734000;209.690000;209.698000;0 +20260304 121400;209.703000;209.706000;209.601000;209.640000;0 +20260304 121500;209.641000;209.661000;209.626000;209.641000;0 +20260304 121600;209.645000;209.669000;209.621000;209.659000;0 +20260304 121700;209.659000;209.675000;209.654000;209.658000;0 +20260304 121800;209.661000;209.666000;209.642000;209.662000;0 +20260304 121900;209.660000;209.704000;209.659000;209.676000;0 +20260304 122000;209.675000;209.692000;209.641000;209.643000;0 +20260304 122100;209.644000;209.663000;209.605000;209.619000;0 +20260304 122200;209.618000;209.631000;209.596000;209.605000;0 +20260304 122300;209.604000;209.656000;209.604000;209.640000;0 +20260304 122400;209.639000;209.648000;209.616000;209.638000;0 +20260304 122500;209.641000;209.659000;209.627000;209.630000;0 +20260304 122600;209.631000;209.643000;209.612000;209.625000;0 +20260304 122700;209.624000;209.624000;209.585000;209.591000;0 +20260304 122800;209.593000;209.609000;209.586000;209.589000;0 +20260304 122900;209.590000;209.590000;209.533000;209.536000;0 +20260304 123000;209.534000;209.554000;209.507000;209.518000;0 +20260304 123100;209.520000;209.549000;209.496000;209.496000;0 +20260304 123200;209.495000;209.508000;209.482000;209.485000;0 +20260304 123300;209.487000;209.531000;209.484000;209.528000;0 +20260304 123400;209.527000;209.557000;209.524000;209.554000;0 +20260304 123500;209.553000;209.614000;209.539000;209.604000;0 +20260304 123600;209.605000;209.627000;209.601000;209.621000;0 +20260304 123700;209.619000;209.627000;209.605000;209.610000;0 +20260304 123800;209.610000;209.657000;209.610000;209.650000;0 +20260304 123900;209.650000;209.688000;209.650000;209.682000;0 +20260304 124000;209.678000;209.708000;209.670000;209.683000;0 +20260304 124100;209.688000;209.719000;209.686000;209.698000;0 +20260304 124200;209.696000;209.712000;209.696000;209.703000;0 +20260304 124300;209.705000;209.725000;209.700000;209.722000;0 +20260304 124400;209.724000;209.744000;209.714000;209.739000;0 +20260304 124500;209.742000;209.769000;209.734000;209.761000;0 +20260304 124600;209.756000;209.775000;209.750000;209.757000;0 +20260304 124700;209.758000;209.760000;209.728000;209.757000;0 +20260304 124800;209.759000;209.780000;209.748000;209.770000;0 +20260304 124900;209.769000;209.777000;209.750000;209.775000;0 +20260304 125000;209.775000;209.780000;209.762000;209.773000;0 +20260304 125100;209.773000;209.807000;209.773000;209.788000;0 +20260304 125200;209.780000;209.783000;209.743000;209.755000;0 +20260304 125300;209.753000;209.771000;209.749000;209.753000;0 +20260304 125400;209.751000;209.753000;209.717000;209.724000;0 +20260304 125500;209.728000;209.755000;209.723000;209.742000;0 +20260304 125600;209.743000;209.752000;209.728000;209.733000;0 +20260304 125700;209.732000;209.732000;209.714000;209.716000;0 +20260304 125800;209.715000;209.740000;209.695000;209.739000;0 +20260304 125900;209.740000;209.743000;209.725000;209.729000;0 +20260304 130000;209.731000;209.748000;209.728000;209.744000;0 +20260304 130100;209.741000;209.752000;209.729000;209.744000;0 +20260304 130200;209.743000;209.743000;209.723000;209.738000;0 +20260304 130300;209.737000;209.740000;209.730000;209.736000;0 +20260304 130400;209.735000;209.736000;209.679000;209.707000;0 +20260304 130500;209.705000;209.728000;209.700000;209.725000;0 +20260304 130600;209.726000;209.732000;209.711000;209.719000;0 +20260304 130700;209.721000;209.767000;209.717000;209.743000;0 +20260304 130800;209.744000;209.760000;209.740000;209.749000;0 +20260304 130900;209.748000;209.762000;209.748000;209.758000;0 +20260304 131000;209.755000;209.816000;209.755000;209.816000;0 +20260304 131100;209.815000;209.816000;209.766000;209.772000;0 +20260304 131200;209.773000;209.782000;209.765000;209.770000;0 +20260304 131300;209.769000;209.775000;209.755000;209.763000;0 +20260304 131400;209.762000;209.769000;209.741000;209.751000;0 +20260304 131500;209.751000;209.778000;209.750000;209.769000;0 +20260304 131600;209.775000;209.781000;209.764000;209.772000;0 +20260304 131700;209.772000;209.796000;209.772000;209.779000;0 +20260304 131800;209.774000;209.782000;209.761000;209.764000;0 +20260304 131900;209.762000;209.776000;209.756000;209.765000;0 +20260304 132000;209.763000;209.763000;209.739000;209.741000;0 +20260304 132100;209.744000;209.761000;209.739000;209.759000;0 +20260304 132200;209.762000;209.779000;209.755000;209.763000;0 +20260304 132300;209.763000;209.806000;209.763000;209.803000;0 +20260304 132400;209.805000;209.805000;209.777000;209.788000;0 +20260304 132500;209.787000;209.799000;209.787000;209.798000;0 +20260304 132600;209.800000;209.802000;209.778000;209.782000;0 +20260304 132700;209.779000;209.783000;209.750000;209.769000;0 +20260304 132800;209.766000;209.777000;209.751000;209.770000;0 +20260304 132900;209.768000;209.785000;209.765000;209.780000;0 +20260304 133000;209.783000;209.809000;209.778000;209.804000;0 +20260304 133100;209.806000;209.829000;209.798000;209.828000;0 +20260304 133200;209.830000;209.836000;209.807000;209.816000;0 +20260304 133300;209.817000;209.818000;209.789000;209.793000;0 +20260304 133400;209.791000;209.813000;209.789000;209.808000;0 +20260304 133500;209.806000;209.806000;209.781000;209.798000;0 +20260304 133600;209.795000;209.808000;209.783000;209.790000;0 +20260304 133700;209.791000;209.798000;209.780000;209.795000;0 +20260304 133800;209.793000;209.795000;209.746000;209.753000;0 +20260304 133900;209.755000;209.795000;209.755000;209.782000;0 +20260304 134000;209.781000;209.790000;209.764000;209.780000;0 +20260304 134100;209.778000;209.793000;209.767000;209.779000;0 +20260304 134200;209.779000;209.794000;209.776000;209.779000;0 +20260304 134300;209.781000;209.789000;209.776000;209.780000;0 +20260304 134400;209.783000;209.826000;209.777000;209.825000;0 +20260304 134500;209.826000;209.839000;209.803000;209.807000;0 +20260304 134600;209.806000;209.814000;209.783000;209.794000;0 +20260304 134700;209.791000;209.795000;209.758000;209.762000;0 +20260304 134800;209.762000;209.768000;209.735000;209.759000;0 +20260304 134900;209.759000;209.777000;209.747000;209.775000;0 +20260304 135000;209.776000;209.788000;209.756000;209.760000;0 +20260304 135100;209.761000;209.776000;209.760000;209.761000;0 +20260304 135200;209.762000;209.765000;209.753000;209.759000;0 +20260304 135300;209.763000;209.779000;209.746000;209.764000;0 +20260304 135400;209.761000;209.774000;209.745000;209.751000;0 +20260304 135500;209.750000;209.751000;209.722000;209.730000;0 +20260304 135600;209.728000;209.745000;209.713000;209.739000;0 +20260304 135700;209.739000;209.777000;209.731000;209.772000;0 +20260304 135800;209.775000;209.776000;209.756000;209.757000;0 +20260304 135900;209.764000;209.814000;209.764000;209.814000;0 +20260304 140000;209.813000;209.836000;209.810000;209.836000;0 +20260304 140100;209.835000;209.835000;209.807000;209.815000;0 +20260304 140200;209.819000;209.827000;209.788000;209.794000;0 +20260304 140300;209.795000;209.807000;209.789000;209.793000;0 +20260304 140400;209.793000;209.819000;209.793000;209.804000;0 +20260304 140500;209.801000;209.801000;209.779000;209.779000;0 +20260304 140600;209.778000;209.780000;209.763000;209.770000;0 +20260304 140700;209.772000;209.782000;209.755000;209.760000;0 +20260304 140800;209.762000;209.767000;209.750000;209.759000;0 +20260304 140900;209.759000;209.781000;209.759000;209.768000;0 +20260304 141000;209.776000;209.783000;209.768000;209.768000;0 +20260304 141100;209.770000;209.770000;209.755000;209.762000;0 +20260304 141200;209.763000;209.777000;209.755000;209.773000;0 +20260304 141300;209.773000;209.776000;209.765000;209.776000;0 +20260304 141400;209.775000;209.799000;209.773000;209.792000;0 +20260304 141500;209.794000;209.817000;209.786000;209.809000;0 +20260304 141600;209.809000;209.815000;209.799000;209.805000;0 +20260304 141700;209.809000;209.822000;209.800000;209.813000;0 +20260304 141800;209.811000;209.818000;209.799000;209.811000;0 +20260304 141900;209.813000;209.838000;209.808000;209.832000;0 +20260304 142000;209.833000;209.844000;209.825000;209.829000;0 +20260304 142100;209.830000;209.837000;209.824000;209.824000;0 +20260304 142200;209.821000;209.834000;209.820000;209.826000;0 +20260304 142300;209.830000;209.834000;209.811000;209.825000;0 +20260304 142400;209.822000;209.827000;209.812000;209.812000;0 +20260304 142500;209.815000;209.835000;209.815000;209.832000;0 +20260304 142600;209.832000;209.832000;209.804000;209.806000;0 +20260304 142700;209.809000;209.809000;209.782000;209.793000;0 +20260304 142800;209.793000;209.795000;209.777000;209.780000;0 +20260304 142900;209.783000;209.797000;209.775000;209.790000;0 +20260304 143000;209.791000;209.808000;209.787000;209.802000;0 +20260304 143100;209.801000;209.824000;209.798000;209.809000;0 +20260304 143200;209.808000;209.808000;209.789000;209.802000;0 +20260304 143300;209.804000;209.809000;209.790000;209.792000;0 +20260304 143400;209.792000;209.802000;209.782000;209.796000;0 +20260304 143500;209.798000;209.819000;209.790000;209.809000;0 +20260304 143600;209.811000;209.820000;209.802000;209.820000;0 +20260304 143700;209.822000;209.824000;209.805000;209.808000;0 +20260304 143800;209.809000;209.829000;209.809000;209.826000;0 +20260304 143900;209.824000;209.836000;209.812000;209.829000;0 +20260304 144000;209.831000;209.841000;209.823000;209.823000;0 +20260304 144100;209.829000;209.841000;209.829000;209.840000;0 +20260304 144200;209.839000;209.846000;209.835000;209.839000;0 +20260304 144300;209.840000;209.855000;209.835000;209.841000;0 +20260304 144400;209.841000;209.862000;209.841000;209.859000;0 +20260304 144500;209.860000;209.883000;209.860000;209.882000;0 +20260304 144600;209.883000;209.887000;209.874000;209.878000;0 +20260304 144700;209.879000;209.889000;209.864000;209.872000;0 +20260304 144800;209.875000;209.884000;209.853000;209.861000;0 +20260304 144900;209.857000;209.863000;209.847000;209.854000;0 +20260304 145000;209.853000;209.864000;209.850000;209.855000;0 +20260304 145100;209.854000;209.857000;209.824000;209.831000;0 +20260304 145200;209.827000;209.831000;209.814000;209.825000;0 +20260304 145300;209.828000;209.830000;209.804000;209.815000;0 +20260304 145400;209.816000;209.888000;209.807000;209.882000;0 +20260304 145500;209.875000;209.938000;209.870000;209.908000;0 +20260304 145600;209.911000;209.930000;209.909000;209.928000;0 +20260304 145700;209.929000;209.929000;209.910000;209.927000;0 +20260304 145800;209.926000;209.965000;209.917000;209.958000;0 +20260304 145900;209.958000;209.989000;209.940000;209.978000;0 +20260304 150000;209.976000;209.999000;209.960000;209.961000;0 +20260304 150100;209.960000;209.976000;209.952000;209.971000;0 +20260304 150200;209.973000;209.980000;209.953000;209.957000;0 +20260304 150300;209.959000;209.975000;209.954000;209.972000;0 +20260304 150400;209.973000;209.983000;209.964000;209.967000;0 +20260304 150500;209.966000;209.975000;209.953000;209.953000;0 +20260304 150600;209.954000;209.959000;209.944000;209.953000;0 +20260304 150700;209.953000;209.954000;209.930000;209.932000;0 +20260304 150800;209.937000;209.945000;209.929000;209.943000;0 +20260304 150900;209.944000;209.964000;209.944000;209.960000;0 +20260304 151000;209.961000;209.962000;209.948000;209.958000;0 +20260304 151100;209.958000;209.982000;209.957000;209.961000;0 +20260304 151200;209.958000;209.989000;209.954000;209.986000;0 +20260304 151300;209.987000;209.990000;209.970000;209.975000;0 +20260304 151400;209.980000;209.984000;209.966000;209.980000;0 +20260304 151500;209.979000;209.992000;209.979000;209.984000;0 +20260304 151600;209.985000;210.013000;209.983000;210.007000;0 +20260304 151700;210.007000;210.021000;210.006000;210.014000;0 +20260304 151800;210.012000;210.039000;210.011000;210.025000;0 +20260304 151900;210.027000;210.031000;210.014000;210.018000;0 +20260304 152000;210.016000;210.045000;210.015000;210.037000;0 +20260304 152100;210.032000;210.036000;210.014000;210.031000;0 +20260304 152200;210.026000;210.056000;210.021000;210.041000;0 +20260304 152300;210.044000;210.053000;210.036000;210.050000;0 +20260304 152400;210.048000;210.064000;210.044000;210.055000;0 +20260304 152500;210.054000;210.065000;210.044000;210.044000;0 +20260304 152600;210.044000;210.064000;210.044000;210.064000;0 +20260304 152700;210.068000;210.076000;210.053000;210.073000;0 +20260304 152800;210.074000;210.088000;210.071000;210.087000;0 +20260304 152900;210.100000;210.101000;210.059000;210.062000;0 +20260304 153000;210.063000;210.085000;210.055000;210.074000;0 +20260304 153100;210.073000;210.103000;210.065000;210.079000;0 +20260304 153200;210.079000;210.085000;210.065000;210.067000;0 +20260304 153300;210.068000;210.083000;210.067000;210.083000;0 +20260304 153400;210.084000;210.088000;210.067000;210.069000;0 +20260304 153500;210.069000;210.095000;210.069000;210.084000;0 +20260304 153600;210.085000;210.091000;210.077000;210.078000;0 +20260304 153700;210.077000;210.092000;210.070000;210.070000;0 +20260304 153800;210.076000;210.077000;210.069000;210.073000;0 +20260304 153900;210.071000;210.073000;210.060000;210.071000;0 +20260304 154000;210.070000;210.088000;210.067000;210.084000;0 +20260304 154100;210.080000;210.094000;210.071000;210.084000;0 +20260304 154200;210.082000;210.102000;210.081000;210.100000;0 +20260304 154300;210.096000;210.101000;210.079000;210.090000;0 +20260304 154400;210.090000;210.107000;210.086000;210.104000;0 +20260304 154500;210.106000;210.118000;210.104000;210.106000;0 +20260304 154600;210.105000;210.111000;210.089000;210.105000;0 +20260304 154700;210.106000;210.153000;210.104000;210.146000;0 +20260304 154800;210.145000;210.145000;210.122000;210.124000;0 +20260304 154900;210.123000;210.127000;210.116000;210.125000;0 +20260304 155000;210.125000;210.128000;210.106000;210.117000;0 +20260304 155100;210.117000;210.127000;210.111000;210.123000;0 +20260304 155200;210.125000;210.127000;210.106000;210.115000;0 +20260304 155300;210.115000;210.122000;210.101000;210.101000;0 +20260304 155400;210.101000;210.127000;210.096000;210.127000;0 +20260304 155500;210.124000;210.124000;210.093000;210.096000;0 +20260304 155600;210.102000;210.132000;210.097000;210.122000;0 +20260304 155700;210.120000;210.125000;210.104000;210.108000;0 +20260304 155800;210.107000;210.113000;210.091000;210.104000;0 +20260304 155900;210.104000;210.141000;210.098000;210.119000;0 +20260304 160000;210.117000;210.126000;210.093000;210.093000;0 +20260304 160100;210.094000;210.109000;210.087000;210.096000;0 +20260304 160200;210.100000;210.100000;210.074000;210.074000;0 +20260304 160300;210.076000;210.082000;210.037000;210.037000;0 +20260304 160400;210.036000;210.046000;210.031000;210.037000;0 +20260304 160500;210.041000;210.061000;210.040000;210.058000;0 +20260304 160600;210.053000;210.075000;210.048000;210.075000;0 +20260304 160700;210.074000;210.074000;210.058000;210.062000;0 +20260304 160800;210.061000;210.072000;210.060000;210.066000;0 +20260304 160900;210.070000;210.084000;210.059000;210.084000;0 +20260304 161000;210.083000;210.101000;210.068000;210.071000;0 +20260304 161100;210.071000;210.085000;210.069000;210.070000;0 +20260304 161200;210.067000;210.080000;210.062000;210.077000;0 +20260304 161300;210.076000;210.094000;210.076000;210.094000;0 +20260304 161400;210.098000;210.102000;210.094000;210.095000;0 +20260304 161500;210.098000;210.100000;210.084000;210.089000;0 +20260304 161600;210.091000;210.092000;210.089000;210.089000;0 +20260304 161700;210.093000;210.094000;210.090000;210.090000;0 +20260304 161800;210.093000;210.098000;210.086000;210.097000;0 +20260304 161900;210.098000;210.105000;210.089000;210.092000;0 +20260304 162000;210.093000;210.098000;210.073000;210.098000;0 +20260304 162100;210.098000;210.098000;210.086000;210.093000;0 +20260304 162200;210.092000;210.103000;210.092000;210.094000;0 +20260304 162300;210.096000;210.115000;210.088000;210.106000;0 +20260304 162400;210.111000;210.120000;210.108000;210.117000;0 +20260304 162500;210.116000;210.143000;210.115000;210.126000;0 +20260304 162600;210.122000;210.129000;210.121000;210.127000;0 +20260304 162700;210.126000;210.131000;210.125000;210.130000;0 +20260304 162800;210.129000;210.133000;210.085000;210.087000;0 +20260304 162900;210.088000;210.090000;210.053000;210.069000;0 +20260304 163000;210.067000;210.074000;210.047000;210.063000;0 +20260304 163100;210.062000;210.074000;210.047000;210.063000;0 +20260304 163200;210.065000;210.071000;210.057000;210.061000;0 +20260304 163300;210.058000;210.070000;210.056000;210.060000;0 +20260304 163400;210.066000;210.066000;210.000000;210.002000;0 +20260304 163500;210.004000;210.006000;209.992000;209.998000;0 +20260304 163600;210.001000;210.005000;209.993000;209.995000;0 +20260304 163700;209.995000;210.001000;209.992000;209.997000;0 +20260304 163800;209.999000;210.001000;209.992000;209.997000;0 +20260304 163900;209.998000;209.998000;209.994000;209.996000;0 +20260304 164000;209.996000;210.004000;209.990000;209.994000;0 +20260304 164100;209.992000;209.994000;209.990000;209.993000;0 +20260304 164200;209.992000;210.005000;209.992000;210.002000;0 +20260304 164300;210.000000;210.005000;210.000000;210.004000;0 +20260304 164400;210.002000;210.015000;209.999000;210.008000;0 +20260304 164500;210.008000;210.022000;210.001000;210.011000;0 +20260304 164600;210.011000;210.027000;210.011000;210.026000;0 +20260304 164700;210.026000;210.028000;210.018000;210.018000;0 +20260304 164800;210.018000;210.037000;210.018000;210.036000;0 +20260304 164900;210.034000;210.038000;210.027000;210.031000;0 +20260304 165000;210.027000;210.035000;210.013000;210.023000;0 +20260304 165100;210.020000;210.033000;210.006000;210.013000;0 +20260304 165200;210.017000;210.023000;209.997000;210.007000;0 +20260304 165300;210.005000;210.014000;210.000000;210.000000;0 +20260304 165400;210.002000;210.007000;209.997000;209.999000;0 +20260304 165500;209.990000;210.006000;209.980000;209.992000;0 +20260304 165600;209.997000;210.011000;209.957000;209.966000;0 +20260304 165700;209.972000;209.972000;209.924000;209.936000;0 +20260304 165800;209.936000;209.996000;209.929000;209.969000;0 +20260304 165900;209.969000;209.998000;209.955000;209.970000;0 +20260304 170400;209.775000;209.786000;209.775000;209.786000;0 +20260304 170500;209.785000;209.871000;209.785000;209.870000;0 +20260304 170600;209.864000;209.884000;209.845000;209.877000;0 +20260304 170700;209.892000;209.904000;209.892000;209.900000;0 +20260304 170800;209.902000;209.909000;209.890000;209.890000;0 +20260304 170900;209.900000;209.900000;209.889000;209.889000;0 +20260304 171000;209.891000;209.902000;209.887000;209.887000;0 +20260304 171100;209.892000;209.892000;209.861000;209.861000;0 +20260304 171200;209.862000;209.885000;209.862000;209.878000;0 +20260304 171300;209.879000;209.883000;209.879000;209.881000;0 +20260304 171400;209.881000;209.882000;209.881000;209.882000;0 +20260304 171500;209.887000;209.925000;209.884000;209.925000;0 +20260304 171600;209.920000;209.962000;209.920000;209.961000;0 +20260304 171700;209.978000;209.978000;209.973000;209.978000;0 +20260304 171800;209.977000;209.977000;209.977000;209.977000;0 +20260304 171900;209.979000;210.003000;209.978000;210.002000;0 +20260304 172000;210.000000;210.002000;209.988000;209.991000;0 +20260304 172100;209.989000;209.992000;209.989000;209.992000;0 +20260304 172200;209.980000;209.993000;209.979000;209.993000;0 +20260304 172300;209.993000;209.993000;209.991000;209.991000;0 +20260304 172400;209.990000;209.993000;209.955000;209.993000;0 +20260304 172500;210.001000;210.001000;209.987000;209.990000;0 +20260304 172600;209.989000;209.989000;209.989000;209.989000;0 +20260304 172700;209.989000;209.995000;209.957000;209.986000;0 +20260304 172800;209.986000;210.003000;209.986000;210.002000;0 +20260304 172900;210.000000;210.000000;210.000000;210.000000;0 +20260304 173000;209.998000;209.998000;209.982000;209.993000;0 +20260304 173100;209.995000;209.996000;209.992000;209.995000;0 +20260304 173200;209.998000;209.999000;209.963000;209.973000;0 +20260304 173300;209.972000;210.057000;209.972000;210.057000;0 +20260304 173400;210.059000;210.059000;209.976000;209.976000;0 +20260304 173500;209.974000;209.978000;209.971000;209.978000;0 +20260304 173600;209.978000;209.979000;209.961000;209.976000;0 +20260304 173700;209.977000;209.979000;209.957000;209.959000;0 +20260304 173800;209.968000;209.976000;209.956000;209.960000;0 +20260304 173900;209.960000;209.971000;209.952000;209.958000;0 +20260304 174000;209.959000;209.972000;209.955000;209.956000;0 +20260304 174100;209.956000;209.964000;209.954000;209.964000;0 +20260304 174200;209.963000;209.973000;209.961000;209.965000;0 +20260304 174300;209.965000;209.967000;209.945000;209.947000;0 +20260304 174400;209.948000;209.963000;209.947000;209.947000;0 +20260304 174500;209.947000;209.957000;209.943000;209.957000;0 +20260304 174600;209.956000;209.961000;209.952000;209.958000;0 +20260304 174700;209.957000;209.966000;209.947000;209.947000;0 +20260304 174800;209.951000;210.009000;209.949000;209.971000;0 +20260304 174900;209.972000;209.994000;209.956000;209.960000;0 +20260304 175000;209.966000;209.985000;209.955000;209.980000;0 +20260304 175100;209.984000;209.987000;209.962000;209.979000;0 +20260304 175200;209.977000;209.999000;209.974000;209.990000;0 +20260304 175300;209.990000;210.002000;209.958000;209.982000;0 +20260304 175400;209.976000;209.979000;209.965000;209.972000;0 +20260304 175500;209.972000;209.987000;209.966000;209.967000;0 +20260304 175600;209.968000;209.968000;209.962000;209.962000;0 +20260304 175700;209.963000;209.969000;209.930000;209.930000;0 +20260304 175800;209.931000;209.932000;209.906000;209.908000;0 +20260304 175900;209.908000;209.916000;209.905000;209.916000;0 +20260304 180000;209.916000;209.924000;209.898000;209.917000;0 +20260304 180100;209.914000;209.937000;209.906000;209.907000;0 +20260304 180200;209.910000;209.932000;209.896000;209.915000;0 +20260304 180300;209.915000;209.915000;209.869000;209.887000;0 +20260304 180400;209.890000;209.905000;209.876000;209.900000;0 +20260304 180500;209.900000;209.913000;209.890000;209.912000;0 +20260304 180600;209.912000;209.934000;209.911000;209.927000;0 +20260304 180700;209.928000;209.946000;209.928000;209.929000;0 +20260304 180800;209.929000;209.932000;209.913000;209.916000;0 +20260304 180900;209.916000;209.935000;209.916000;209.926000;0 +20260304 181000;209.925000;209.931000;209.911000;209.931000;0 +20260304 181100;209.937000;209.947000;209.931000;209.943000;0 +20260304 181200;209.943000;209.951000;209.940000;209.944000;0 +20260304 181300;209.943000;209.951000;209.929000;209.941000;0 +20260304 181400;209.940000;209.942000;209.905000;209.920000;0 +20260304 181500;209.919000;209.936000;209.910000;209.928000;0 +20260304 181600;209.921000;209.976000;209.919000;209.933000;0 +20260304 181700;209.929000;209.929000;209.925000;209.926000;0 +20260304 181800;209.926000;209.942000;209.923000;209.942000;0 +20260304 181900;209.942000;209.952000;209.940000;209.943000;0 +20260304 182000;209.943000;209.952000;209.934000;209.939000;0 +20260304 182100;209.936000;209.955000;209.934000;209.946000;0 +20260304 182200;209.945000;209.965000;209.942000;209.965000;0 +20260304 182300;209.964000;209.979000;209.957000;209.978000;0 +20260304 182400;209.979000;209.979000;209.967000;209.967000;0 +20260304 182500;209.967000;209.977000;209.962000;209.970000;0 +20260304 182600;209.969000;209.973000;209.965000;209.971000;0 +20260304 182700;209.970000;209.971000;209.943000;209.944000;0 +20260304 182800;209.944000;209.953000;209.942000;209.944000;0 +20260304 182900;209.942000;209.953000;209.941000;209.948000;0 +20260304 183000;209.957000;209.957000;209.920000;209.937000;0 +20260304 183100;209.937000;209.955000;209.924000;209.930000;0 +20260304 183200;209.928000;209.939000;209.899000;209.902000;0 +20260304 183300;209.901000;209.944000;209.901000;209.944000;0 +20260304 183400;209.944000;209.957000;209.932000;209.932000;0 +20260304 183500;209.931000;209.937000;209.924000;209.927000;0 +20260304 183600;209.933000;209.938000;209.923000;209.933000;0 +20260304 183700;209.933000;209.942000;209.933000;209.941000;0 +20260304 183800;209.938000;209.955000;209.933000;209.941000;0 +20260304 183900;209.938000;209.952000;209.938000;209.948000;0 +20260304 184000;209.945000;209.955000;209.945000;209.951000;0 +20260304 184100;209.951000;209.977000;209.949000;209.952000;0 +20260304 184200;209.953000;209.974000;209.952000;209.966000;0 +20260304 184300;209.967000;209.970000;209.948000;209.948000;0 +20260304 184400;209.952000;209.999000;209.942000;209.987000;0 +20260304 184500;209.989000;209.990000;209.940000;209.970000;0 +20260304 184600;209.970000;209.979000;209.960000;209.979000;0 +20260304 184700;209.978000;209.978000;209.961000;209.968000;0 +20260304 184800;209.968000;209.995000;209.957000;209.967000;0 +20260304 184900;209.965000;209.970000;209.942000;209.943000;0 +20260304 185000;209.943000;209.947000;209.926000;209.931000;0 +20260304 185100;209.931000;209.934000;209.920000;209.922000;0 +20260304 185200;209.920000;209.924000;209.907000;209.916000;0 +20260304 185300;209.917000;209.920000;209.885000;209.887000;0 +20260304 185400;209.887000;209.897000;209.880000;209.893000;0 +20260304 185500;209.893000;209.904000;209.875000;209.875000;0 +20260304 185600;209.877000;209.894000;209.873000;209.894000;0 +20260304 185700;209.894000;209.894000;209.876000;209.876000;0 +20260304 185800;209.876000;209.877000;209.862000;209.866000;0 +20260304 185900;209.863000;209.873000;209.852000;209.858000;0 +20260304 190000;209.858000;209.860000;209.801000;209.812000;0 +20260304 190100;209.812000;209.823000;209.792000;209.802000;0 +20260304 190200;209.802000;209.836000;209.802000;209.812000;0 +20260304 190300;209.809000;209.809000;209.778000;209.788000;0 +20260304 190400;209.790000;209.793000;209.768000;209.777000;0 +20260304 190500;209.777000;209.796000;209.774000;209.781000;0 +20260304 190600;209.781000;209.787000;209.745000;209.746000;0 +20260304 190700;209.745000;209.763000;209.728000;209.732000;0 +20260304 190800;209.730000;209.731000;209.681000;209.682000;0 +20260304 190900;209.679000;209.679000;209.653000;209.671000;0 +20260304 191000;209.672000;209.687000;209.665000;209.680000;0 +20260304 191100;209.682000;209.688000;209.648000;209.648000;0 +20260304 191200;209.647000;209.656000;209.647000;209.650000;0 +20260304 191300;209.650000;209.667000;209.650000;209.659000;0 +20260304 191400;209.659000;209.670000;209.646000;209.657000;0 +20260304 191500;209.657000;209.722000;209.657000;209.722000;0 +20260304 191600;209.730000;209.742000;209.701000;209.707000;0 +20260304 191700;209.705000;209.752000;209.705000;209.731000;0 +20260304 191800;209.731000;209.748000;209.724000;209.741000;0 +20260304 191900;209.738000;209.741000;209.720000;209.726000;0 +20260304 192000;209.729000;209.729000;209.639000;209.644000;0 +20260304 192100;209.644000;209.670000;209.641000;209.663000;0 +20260304 192200;209.667000;209.682000;209.660000;209.674000;0 +20260304 192300;209.677000;209.687000;209.671000;209.675000;0 +20260304 192400;209.675000;209.698000;209.672000;209.674000;0 +20260304 192500;209.678000;209.715000;209.678000;209.715000;0 +20260304 192600;209.715000;209.744000;209.715000;209.737000;0 +20260304 192700;209.734000;209.754000;209.730000;209.753000;0 +20260304 192800;209.754000;209.778000;209.754000;209.766000;0 +20260304 192900;209.766000;209.772000;209.763000;209.766000;0 +20260304 193000;209.766000;209.768000;209.729000;209.742000;0 +20260304 193100;209.740000;209.755000;209.716000;209.746000;0 +20260304 193200;209.748000;209.748000;209.731000;209.743000;0 +20260304 193300;209.744000;209.758000;209.731000;209.742000;0 +20260304 193400;209.740000;209.744000;209.722000;209.736000;0 +20260304 193500;209.736000;209.736000;209.711000;209.715000;0 +20260304 193600;209.715000;209.770000;209.711000;209.769000;0 +20260304 193700;209.769000;209.779000;209.738000;209.738000;0 +20260304 193800;209.738000;209.744000;209.732000;209.738000;0 +20260304 193900;209.739000;209.756000;209.729000;209.756000;0 +20260304 194000;209.756000;209.765000;209.731000;209.744000;0 +20260304 194100;209.745000;209.772000;209.731000;209.769000;0 +20260304 194200;209.770000;209.776000;209.743000;209.751000;0 +20260304 194300;209.754000;209.754000;209.718000;209.720000;0 +20260304 194400;209.716000;209.738000;209.712000;209.723000;0 +20260304 194500;209.719000;209.737000;209.703000;209.716000;0 +20260304 194600;209.718000;209.748000;209.703000;209.726000;0 +20260304 194700;209.730000;209.742000;209.682000;209.687000;0 +20260304 194800;209.691000;209.704000;209.670000;209.704000;0 +20260304 194900;209.700000;209.700000;209.646000;209.653000;0 +20260304 195000;209.649000;209.668000;209.631000;209.658000;0 +20260304 195100;209.666000;209.730000;209.664000;209.706000;0 +20260304 195200;209.706000;209.706000;209.665000;209.665000;0 +20260304 195300;209.667000;209.710000;209.634000;209.634000;0 +20260304 195400;209.634000;209.637000;209.529000;209.536000;0 +20260304 195500;209.541000;209.582000;209.517000;209.538000;0 +20260304 195600;209.537000;209.566000;209.512000;209.566000;0 +20260304 195700;209.565000;209.594000;209.559000;209.588000;0 +20260304 195800;209.589000;209.630000;209.581000;209.584000;0 +20260304 195900;209.585000;209.585000;209.541000;209.549000;0 +20260304 200000;209.553000;209.578000;209.528000;209.559000;0 +20260304 200100;209.571000;209.598000;209.551000;209.565000;0 +20260304 200200;209.575000;209.593000;209.560000;209.575000;0 +20260304 200300;209.575000;209.641000;209.572000;209.640000;0 +20260304 200400;209.639000;209.654000;209.628000;209.647000;0 +20260304 200500;209.642000;209.655000;209.614000;209.655000;0 +20260304 200600;209.656000;209.666000;209.645000;209.656000;0 +20260304 200700;209.655000;209.671000;209.642000;209.655000;0 +20260304 200800;209.655000;209.679000;209.630000;209.668000;0 +20260304 200900;209.669000;209.673000;209.635000;209.636000;0 +20260304 201000;209.635000;209.650000;209.622000;209.634000;0 +20260304 201100;209.635000;209.654000;209.612000;209.633000;0 +20260304 201200;209.631000;209.679000;209.631000;209.674000;0 +20260304 201300;209.674000;209.700000;209.673000;209.682000;0 +20260304 201400;209.684000;209.691000;209.667000;209.684000;0 +20260304 201500;209.684000;209.684000;209.650000;209.668000;0 +20260304 201600;209.669000;209.674000;209.647000;209.649000;0 +20260304 201700;209.646000;209.658000;209.630000;209.637000;0 +20260304 201800;209.636000;209.649000;209.628000;209.635000;0 +20260304 201900;209.631000;209.635000;209.542000;209.555000;0 +20260304 202000;209.553000;209.585000;209.549000;209.574000;0 +20260304 202100;209.574000;209.574000;209.528000;209.528000;0 +20260304 202200;209.531000;209.539000;209.502000;209.508000;0 +20260304 202300;209.505000;209.514000;209.491000;209.513000;0 +20260304 202400;209.513000;209.554000;209.511000;209.551000;0 +20260304 202500;209.554000;209.575000;209.503000;209.509000;0 +20260304 202600;209.511000;209.534000;209.501000;209.512000;0 +20260304 202700;209.513000;209.550000;209.508000;209.530000;0 +20260304 202800;209.532000;209.532000;209.475000;209.485000;0 +20260304 202900;209.486000;209.497000;209.433000;209.438000;0 +20260304 203000;209.437000;209.467000;209.426000;209.464000;0 +20260304 203100;209.460000;209.484000;209.452000;209.474000;0 +20260304 203200;209.476000;209.482000;209.456000;209.466000;0 +20260304 203300;209.472000;209.494000;209.450000;209.453000;0 +20260304 203400;209.455000;209.475000;209.451000;209.471000;0 +20260304 203500;209.470000;209.492000;209.465000;209.467000;0 +20260304 203600;209.463000;209.482000;209.452000;209.457000;0 +20260304 203700;209.459000;209.494000;209.430000;209.492000;0 +20260304 203800;209.493000;209.524000;209.479000;209.494000;0 +20260304 203900;209.502000;209.510000;209.471000;209.479000;0 +20260304 204000;209.479000;209.516000;209.466000;209.514000;0 +20260304 204100;209.516000;209.519000;209.462000;209.466000;0 +20260304 204200;209.468000;209.478000;209.410000;209.436000;0 +20260304 204300;209.442000;209.466000;209.427000;209.466000;0 +20260304 204400;209.467000;209.481000;209.388000;209.392000;0 +20260304 204500;209.392000;209.427000;209.385000;209.425000;0 +20260304 204600;209.429000;209.474000;209.415000;209.420000;0 +20260304 204700;209.419000;209.461000;209.409000;209.442000;0 +20260304 204800;209.441000;209.463000;209.436000;209.453000;0 +20260304 204900;209.459000;209.475000;209.440000;209.448000;0 +20260304 205000;209.451000;209.455000;209.418000;209.423000;0 +20260304 205100;209.421000;209.434000;209.381000;209.389000;0 +20260304 205200;209.389000;209.389000;209.355000;209.374000;0 +20260304 205300;209.377000;209.412000;209.370000;209.409000;0 +20260304 205400;209.409000;209.442000;209.408000;209.438000;0 +20260304 205500;209.438000;209.464000;209.433000;209.457000;0 +20260304 205600;209.457000;209.486000;209.446000;209.481000;0 +20260304 205700;209.484000;209.526000;209.470000;209.525000;0 +20260304 205800;209.525000;209.541000;209.519000;209.533000;0 +20260304 205900;209.531000;209.546000;209.517000;209.541000;0 +20260304 210000;209.537000;209.595000;209.525000;209.587000;0 +20260304 210100;209.591000;209.610000;209.579000;209.601000;0 +20260304 210200;209.600000;209.638000;209.598000;209.638000;0 +20260304 210300;209.639000;209.641000;209.599000;209.617000;0 +20260304 210400;209.615000;209.634000;209.610000;209.622000;0 +20260304 210500;209.623000;209.642000;209.613000;209.616000;0 +20260304 210600;209.617000;209.621000;209.603000;209.607000;0 +20260304 210700;209.608000;209.608000;209.550000;209.553000;0 +20260304 210800;209.556000;209.584000;209.556000;209.579000;0 +20260304 210900;209.579000;209.594000;209.567000;209.574000;0 +20260304 211000;209.574000;209.589000;209.570000;209.578000;0 +20260304 211100;209.579000;209.587000;209.564000;209.584000;0 +20260304 211200;209.581000;209.591000;209.561000;209.567000;0 +20260304 211300;209.566000;209.585000;209.566000;209.575000;0 +20260304 211400;209.578000;209.582000;209.563000;209.564000;0 +20260304 211500;209.563000;209.575000;209.545000;209.562000;0 +20260304 211600;209.561000;209.562000;209.525000;209.525000;0 +20260304 211700;209.525000;209.528000;209.506000;209.519000;0 +20260304 211800;209.519000;209.568000;209.516000;209.566000;0 +20260304 211900;209.566000;209.585000;209.558000;209.559000;0 +20260304 212000;209.561000;209.569000;209.545000;209.546000;0 +20260304 212100;209.544000;209.558000;209.528000;209.533000;0 +20260304 212200;209.531000;209.539000;209.508000;209.508000;0 +20260304 212300;209.510000;209.510000;209.476000;209.481000;0 +20260304 212400;209.483000;209.488000;209.456000;209.462000;0 +20260304 212500;209.463000;209.474000;209.457000;209.458000;0 +20260304 212600;209.461000;209.501000;209.460000;209.501000;0 +20260304 212700;209.500000;209.504000;209.479000;209.494000;0 +20260304 212800;209.493000;209.508000;209.489000;209.508000;0 +20260304 212900;209.507000;209.526000;209.506000;209.525000;0 +20260304 213000;209.534000;209.554000;209.520000;209.554000;0 +20260304 213100;209.554000;209.556000;209.530000;209.547000;0 +20260304 213200;209.552000;209.552000;209.515000;209.519000;0 +20260304 213300;209.521000;209.586000;209.519000;209.572000;0 +20260304 213400;209.570000;209.605000;209.570000;209.590000;0 +20260304 213500;209.591000;209.608000;209.575000;209.581000;0 +20260304 213600;209.582000;209.600000;209.576000;209.600000;0 +20260304 213700;209.605000;209.636000;209.597000;209.636000;0 +20260304 213800;209.634000;209.652000;209.619000;209.643000;0 +20260304 213900;209.647000;209.689000;209.641000;209.677000;0 +20260304 214000;209.679000;209.686000;209.618000;209.625000;0 +20260304 214100;209.624000;209.624000;209.587000;209.609000;0 +20260304 214200;209.609000;209.620000;209.589000;209.613000;0 +20260304 214300;209.615000;209.631000;209.610000;209.616000;0 +20260304 214400;209.616000;209.625000;209.609000;209.625000;0 +20260304 214500;209.627000;209.637000;209.616000;209.636000;0 +20260304 214600;209.637000;209.668000;209.631000;209.667000;0 +20260304 214700;209.667000;209.711000;209.667000;209.699000;0 +20260304 214800;209.699000;209.711000;209.660000;209.661000;0 +20260304 214900;209.664000;209.698000;209.654000;209.680000;0 +20260304 215000;209.680000;209.697000;209.667000;209.668000;0 +20260304 215100;209.669000;209.701000;209.664000;209.700000;0 +20260304 215200;209.703000;209.724000;209.699000;209.703000;0 +20260304 215300;209.703000;209.709000;209.682000;209.684000;0 +20260304 215400;209.686000;209.700000;209.664000;209.700000;0 +20260304 215500;209.700000;209.702000;209.675000;209.686000;0 +20260304 215600;209.681000;209.719000;209.674000;209.708000;0 +20260304 215700;209.711000;209.726000;209.695000;209.712000;0 +20260304 215800;209.713000;209.740000;209.709000;209.732000;0 +20260304 215900;209.732000;209.751000;209.730000;209.742000;0 +20260304 220000;209.740000;209.756000;209.724000;209.751000;0 +20260304 220100;209.750000;209.768000;209.736000;209.749000;0 +20260304 220200;209.758000;209.766000;209.727000;209.729000;0 +20260304 220300;209.728000;209.749000;209.699000;209.699000;0 +20260304 220400;209.692000;209.707000;209.661000;209.681000;0 +20260304 220500;209.682000;209.715000;209.671000;209.711000;0 +20260304 220600;209.711000;209.718000;209.689000;209.691000;0 +20260304 220700;209.690000;209.696000;209.681000;209.682000;0 +20260304 220800;209.682000;209.697000;209.672000;209.691000;0 +20260304 220900;209.692000;209.703000;209.687000;209.692000;0 +20260304 221000;209.693000;209.704000;209.680000;209.681000;0 +20260304 221100;209.675000;209.675000;209.622000;209.625000;0 +20260304 221200;209.626000;209.628000;209.587000;209.604000;0 +20260304 221300;209.615000;209.633000;209.582000;209.585000;0 +20260304 221400;209.587000;209.593000;209.559000;209.559000;0 +20260304 221500;209.559000;209.577000;209.553000;209.575000;0 +20260304 221600;209.575000;209.619000;209.559000;209.609000;0 +20260304 221700;209.606000;209.612000;209.598000;209.608000;0 +20260304 221800;209.608000;209.608000;209.540000;209.540000;0 +20260304 221900;209.540000;209.558000;209.533000;209.548000;0 +20260304 222000;209.548000;209.552000;209.510000;209.525000;0 +20260304 222100;209.519000;209.565000;209.510000;209.562000;0 +20260304 222200;209.558000;209.578000;209.557000;209.576000;0 +20260304 222300;209.577000;209.582000;209.536000;209.549000;0 +20260304 222400;209.548000;209.558000;209.521000;209.527000;0 +20260304 222500;209.526000;209.534000;209.471000;209.496000;0 +20260304 222600;209.492000;209.504000;209.483000;209.495000;0 +20260304 222700;209.495000;209.505000;209.477000;209.481000;0 +20260304 222800;209.479000;209.479000;209.445000;209.449000;0 +20260304 222900;209.448000;209.450000;209.423000;209.444000;0 +20260304 223000;209.444000;209.448000;209.400000;209.407000;0 +20260304 223100;209.407000;209.427000;209.398000;209.401000;0 +20260304 223200;209.400000;209.437000;209.390000;209.437000;0 +20260304 223300;209.433000;209.436000;209.389000;209.411000;0 +20260304 223400;209.412000;209.438000;209.401000;209.425000;0 +20260304 223500;209.424000;209.431000;209.366000;209.383000;0 +20260304 223600;209.382000;209.404000;209.370000;209.403000;0 +20260304 223700;209.402000;209.418000;209.383000;209.383000;0 +20260304 223800;209.384000;209.408000;209.369000;209.370000;0 +20260304 223900;209.364000;209.382000;209.331000;209.377000;0 +20260304 224000;209.379000;209.399000;209.364000;209.388000;0 +20260304 224100;209.389000;209.423000;209.374000;209.395000;0 +20260304 224200;209.390000;209.396000;209.365000;209.368000;0 +20260304 224300;209.369000;209.373000;209.336000;209.347000;0 +20260304 224400;209.350000;209.420000;209.346000;209.419000;0 +20260304 224500;209.421000;209.443000;209.413000;209.436000;0 +20260304 224600;209.436000;209.455000;209.428000;209.436000;0 +20260304 224700;209.437000;209.454000;209.429000;209.448000;0 +20260304 224800;209.450000;209.467000;209.443000;209.458000;0 +20260304 224900;209.458000;209.473000;209.416000;209.432000;0 +20260304 225000;209.433000;209.453000;209.432000;209.450000;0 +20260304 225100;209.448000;209.459000;209.423000;209.427000;0 +20260304 225200;209.428000;209.448000;209.427000;209.444000;0 +20260304 225300;209.445000;209.503000;209.443000;209.501000;0 +20260304 225400;209.502000;209.523000;209.496000;209.520000;0 +20260304 225500;209.522000;209.545000;209.517000;209.545000;0 +20260304 225600;209.543000;209.548000;209.495000;209.495000;0 +20260304 225700;209.491000;209.493000;209.450000;209.477000;0 +20260304 225800;209.475000;209.483000;209.462000;209.463000;0 +20260304 225900;209.463000;209.470000;209.422000;209.436000;0 +20260304 230000;209.436000;209.472000;209.428000;209.471000;0 +20260304 230100;209.466000;209.473000;209.451000;209.451000;0 +20260304 230200;209.454000;209.454000;209.415000;209.432000;0 +20260304 230300;209.432000;209.458000;209.430000;209.451000;0 +20260304 230400;209.453000;209.465000;209.442000;209.461000;0 +20260304 230500;209.461000;209.504000;209.457000;209.504000;0 +20260304 230600;209.503000;209.521000;209.499000;209.509000;0 +20260304 230700;209.505000;209.521000;209.499000;209.514000;0 +20260304 230800;209.515000;209.527000;209.511000;209.526000;0 +20260304 230900;209.526000;209.532000;209.512000;209.522000;0 +20260304 231000;209.522000;209.544000;209.510000;209.543000;0 +20260304 231100;209.544000;209.554000;209.509000;209.509000;0 +20260304 231200;209.511000;209.525000;209.501000;209.511000;0 +20260304 231300;209.513000;209.533000;209.498000;209.499000;0 +20260304 231400;209.501000;209.533000;209.496000;209.499000;0 +20260304 231500;209.501000;209.521000;209.499000;209.504000;0 +20260304 231600;209.504000;209.514000;209.494000;209.513000;0 +20260304 231700;209.514000;209.527000;209.505000;209.507000;0 +20260304 231800;209.507000;209.518000;209.504000;209.517000;0 +20260304 231900;209.518000;209.522000;209.496000;209.507000;0 +20260304 232000;209.507000;209.518000;209.500000;209.516000;0 +20260304 232100;209.516000;209.526000;209.511000;209.525000;0 +20260304 232200;209.522000;209.523000;209.496000;209.508000;0 +20260304 232300;209.508000;209.516000;209.497000;209.508000;0 +20260304 232400;209.508000;209.520000;209.487000;209.494000;0 +20260304 232500;209.493000;209.506000;209.487000;209.496000;0 +20260304 232600;209.499000;209.514000;209.474000;209.474000;0 +20260304 232700;209.474000;209.496000;209.470000;209.492000;0 +20260304 232800;209.493000;209.518000;209.488000;209.496000;0 +20260304 232900;209.496000;209.496000;209.463000;209.473000;0 +20260304 233000;209.479000;209.484000;209.442000;209.443000;0 +20260304 233100;209.443000;209.477000;209.438000;209.477000;0 +20260304 233200;209.477000;209.480000;209.466000;209.470000;0 +20260304 233300;209.471000;209.477000;209.469000;209.473000;0 +20260304 233400;209.472000;209.490000;209.429000;209.429000;0 +20260304 233500;209.434000;209.451000;209.427000;209.431000;0 +20260304 233600;209.430000;209.466000;209.430000;209.459000;0 +20260304 233700;209.458000;209.474000;209.445000;209.445000;0 +20260304 233800;209.448000;209.466000;209.428000;209.428000;0 +20260304 233900;209.432000;209.449000;209.422000;209.425000;0 +20260304 234000;209.425000;209.435000;209.410000;209.413000;0 +20260304 234100;209.412000;209.442000;209.411000;209.423000;0 +20260304 234200;209.424000;209.424000;209.400000;209.400000;0 +20260304 234300;209.400000;209.401000;209.377000;209.384000;0 +20260304 234400;209.385000;209.397000;209.372000;209.382000;0 +20260304 234500;209.386000;209.400000;209.386000;209.390000;0 +20260304 234600;209.390000;209.410000;209.385000;209.390000;0 +20260304 234700;209.393000;209.398000;209.371000;209.379000;0 +20260304 234800;209.382000;209.411000;209.382000;209.411000;0 +20260304 234900;209.411000;209.430000;209.400000;209.404000;0 +20260304 235000;209.403000;209.452000;209.398000;209.448000;0 +20260304 235100;209.448000;209.454000;209.429000;209.436000;0 +20260304 235200;209.437000;209.444000;209.428000;209.433000;0 +20260304 235300;209.433000;209.455000;209.422000;209.451000;0 +20260304 235400;209.457000;209.485000;209.448000;209.468000;0 +20260304 235500;209.467000;209.467000;209.435000;209.449000;0 +20260304 235600;209.449000;209.484000;209.427000;209.481000;0 +20260304 235700;209.480000;209.488000;209.471000;209.477000;0 +20260304 235800;209.477000;209.520000;209.469000;209.507000;0 +20260304 235900;209.507000;209.525000;209.504000;209.524000;0 +20260305 000000;209.528000;209.556000;209.527000;209.542000;0 +20260305 000100;209.549000;209.558000;209.520000;209.541000;0 +20260305 000200;209.541000;209.580000;209.540000;209.562000;0 +20260305 000300;209.563000;209.563000;209.540000;209.556000;0 +20260305 000400;209.561000;209.573000;209.551000;209.567000;0 +20260305 000500;209.567000;209.602000;209.563000;209.594000;0 +20260305 000600;209.595000;209.595000;209.566000;209.566000;0 +20260305 000700;209.568000;209.581000;209.566000;209.580000;0 +20260305 000800;209.582000;209.609000;209.571000;209.594000;0 +20260305 000900;209.597000;209.601000;209.573000;209.583000;0 +20260305 001000;209.584000;209.589000;209.566000;209.571000;0 +20260305 001100;209.571000;209.572000;209.554000;209.564000;0 +20260305 001200;209.567000;209.567000;209.551000;209.560000;0 +20260305 001300;209.560000;209.564000;209.377000;209.435000;0 +20260305 001400;209.440000;209.504000;209.425000;209.475000;0 +20260305 001500;209.471000;209.511000;209.471000;209.488000;0 +20260305 001600;209.484000;209.496000;209.462000;209.487000;0 +20260305 001700;209.492000;209.507000;209.479000;209.493000;0 +20260305 001800;209.502000;209.508000;209.485000;209.485000;0 +20260305 001900;209.487000;209.505000;209.482000;209.489000;0 +20260305 002000;209.488000;209.492000;209.457000;209.470000;0 +20260305 002100;209.467000;209.469000;209.416000;209.424000;0 +20260305 002200;209.428000;209.473000;209.426000;209.443000;0 +20260305 002300;209.445000;209.445000;209.424000;209.444000;0 +20260305 002400;209.443000;209.464000;209.442000;209.448000;0 +20260305 002500;209.448000;209.456000;209.412000;209.422000;0 +20260305 002600;209.421000;209.446000;209.413000;209.438000;0 +20260305 002700;209.438000;209.456000;209.435000;209.445000;0 +20260305 002800;209.442000;209.457000;209.417000;209.457000;0 +20260305 002900;209.457000;209.484000;209.439000;209.449000;0 +20260305 003000;209.449000;209.473000;209.441000;209.470000;0 +20260305 003100;209.469000;209.480000;209.438000;209.438000;0 +20260305 003200;209.442000;209.446000;209.404000;209.407000;0 +20260305 003300;209.404000;209.451000;209.404000;209.438000;0 +20260305 003400;209.438000;209.439000;209.417000;209.435000;0 +20260305 003500;209.435000;209.459000;209.432000;209.454000;0 +20260305 003600;209.454000;209.479000;209.441000;209.442000;0 +20260305 003700;209.442000;209.444000;209.401000;209.401000;0 +20260305 003800;209.398000;209.426000;209.398000;209.413000;0 +20260305 003900;209.413000;209.429000;209.403000;209.421000;0 +20260305 004000;209.424000;209.438000;209.412000;209.424000;0 +20260305 004100;209.421000;209.455000;209.409000;209.418000;0 +20260305 004200;209.419000;209.422000;209.408000;209.409000;0 +20260305 004300;209.410000;209.418000;209.374000;209.390000;0 +20260305 004400;209.389000;209.395000;209.354000;209.365000;0 +20260305 004500;209.367000;209.377000;209.343000;209.352000;0 +20260305 004600;209.353000;209.382000;209.352000;209.378000;0 +20260305 004700;209.378000;209.382000;209.369000;209.378000;0 +20260305 004800;209.376000;209.380000;209.357000;209.359000;0 +20260305 004900;209.358000;209.371000;209.332000;209.358000;0 +20260305 005000;209.359000;209.371000;209.358000;209.362000;0 +20260305 005100;209.362000;209.372000;209.341000;209.371000;0 +20260305 005200;209.371000;209.382000;209.351000;209.358000;0 +20260305 005300;209.359000;209.411000;209.357000;209.398000;0 +20260305 005400;209.398000;209.398000;209.367000;209.372000;0 +20260305 005500;209.373000;209.393000;209.360000;209.388000;0 +20260305 005600;209.390000;209.394000;209.299000;209.312000;0 +20260305 005700;209.312000;209.316000;209.292000;209.294000;0 +20260305 005800;209.296000;209.317000;209.287000;209.299000;0 +20260305 005900;209.300000;209.334000;209.272000;209.282000;0 +20260305 010000;209.281000;209.294000;209.247000;209.259000;0 +20260305 010100;209.260000;209.274000;209.235000;209.255000;0 +20260305 010200;209.255000;209.310000;209.251000;209.288000;0 +20260305 010300;209.285000;209.289000;209.258000;209.266000;0 +20260305 010400;209.268000;209.279000;209.247000;209.279000;0 +20260305 010500;209.275000;209.280000;209.255000;209.260000;0 +20260305 010600;209.259000;209.263000;209.203000;209.219000;0 +20260305 010700;209.219000;209.234000;209.199000;209.207000;0 +20260305 010800;209.206000;209.217000;209.182000;209.191000;0 +20260305 010900;209.193000;209.193000;209.180000;209.180000;0 +20260305 011000;209.182000;209.241000;209.176000;209.223000;0 +20260305 011100;209.228000;209.264000;209.224000;209.250000;0 +20260305 011200;209.247000;209.254000;209.219000;209.229000;0 +20260305 011300;209.229000;209.233000;209.200000;209.213000;0 +20260305 011400;209.212000;209.279000;209.212000;209.249000;0 +20260305 011500;209.249000;209.251000;209.208000;209.226000;0 +20260305 011600;209.225000;209.258000;209.216000;209.249000;0 +20260305 011700;209.250000;209.276000;209.249000;209.266000;0 +20260305 011800;209.266000;209.356000;209.262000;209.346000;0 +20260305 011900;209.346000;209.393000;209.343000;209.384000;0 +20260305 012000;209.383000;209.383000;209.319000;209.337000;0 +20260305 012100;209.336000;209.374000;209.335000;209.364000;0 +20260305 012200;209.367000;209.393000;209.366000;209.393000;0 +20260305 012300;209.389000;209.389000;209.352000;209.373000;0 +20260305 012400;209.373000;209.374000;209.333000;209.337000;0 +20260305 012500;209.349000;209.370000;209.345000;209.356000;0 +20260305 012600;209.351000;209.377000;209.346000;209.371000;0 +20260305 012700;209.371000;209.375000;209.345000;209.366000;0 +20260305 012800;209.366000;209.372000;209.354000;209.364000;0 +20260305 012900;209.366000;209.368000;209.340000;209.346000;0 +20260305 013000;209.349000;209.360000;209.331000;209.338000;0 +20260305 013100;209.335000;209.344000;209.315000;209.325000;0 +20260305 013200;209.325000;209.335000;209.306000;209.314000;0 +20260305 013300;209.315000;209.329000;209.282000;209.294000;0 +20260305 013400;209.294000;209.298000;209.257000;209.272000;0 +20260305 013500;209.277000;209.301000;209.271000;209.294000;0 +20260305 013600;209.295000;209.323000;209.294000;209.320000;0 +20260305 013700;209.320000;209.330000;209.289000;209.290000;0 +20260305 013800;209.291000;209.302000;209.276000;209.285000;0 +20260305 013900;209.292000;209.311000;209.239000;209.262000;0 +20260305 014000;209.262000;209.277000;209.249000;209.255000;0 +20260305 014100;209.254000;209.258000;209.224000;209.234000;0 +20260305 014200;209.234000;209.249000;209.221000;209.240000;0 +20260305 014300;209.239000;209.330000;209.239000;209.272000;0 +20260305 014400;209.272000;209.294000;209.245000;209.294000;0 +20260305 014500;209.292000;209.294000;209.243000;209.250000;0 +20260305 014600;209.251000;209.254000;209.220000;209.237000;0 +20260305 014700;209.236000;209.255000;209.229000;209.244000;0 +20260305 014800;209.244000;209.252000;209.222000;209.229000;0 +20260305 014900;209.230000;209.270000;209.188000;209.260000;0 +20260305 015000;209.256000;209.329000;209.246000;209.308000;0 +20260305 015100;209.307000;209.362000;209.274000;209.346000;0 +20260305 015200;209.349000;209.353000;209.256000;209.265000;0 +20260305 015300;209.270000;209.316000;209.241000;209.254000;0 +20260305 015400;209.252000;209.267000;209.230000;209.262000;0 +20260305 015500;209.264000;209.320000;209.263000;209.320000;0 +20260305 015600;209.318000;209.350000;209.301000;209.346000;0 +20260305 015700;209.344000;209.385000;209.344000;209.372000;0 +20260305 015800;209.373000;209.385000;209.354000;209.358000;0 +20260305 015900;209.358000;209.370000;209.347000;209.362000;0 +20260305 020000;209.371000;209.433000;209.370000;209.411000;0 +20260305 020100;209.408000;209.463000;209.406000;209.453000;0 +20260305 020200;209.453000;209.473000;209.443000;209.462000;0 +20260305 020300;209.461000;209.490000;209.456000;209.480000;0 +20260305 020400;209.479000;209.484000;209.441000;209.445000;0 +20260305 020500;209.452000;209.493000;209.452000;209.482000;0 +20260305 020600;209.481000;209.481000;209.427000;209.457000;0 +20260305 020700;209.454000;209.469000;209.426000;209.430000;0 +20260305 020800;209.421000;209.451000;209.413000;209.446000;0 +20260305 020900;209.448000;209.462000;209.431000;209.460000;0 +20260305 021000;209.456000;209.468000;209.432000;209.444000;0 +20260305 021100;209.452000;209.461000;209.441000;209.449000;0 +20260305 021200;209.451000;209.473000;209.440000;209.447000;0 +20260305 021300;209.443000;209.443000;209.392000;209.408000;0 +20260305 021400;209.405000;209.465000;209.399000;209.457000;0 +20260305 021500;209.460000;209.491000;209.460000;209.470000;0 +20260305 021600;209.467000;209.473000;209.389000;209.403000;0 +20260305 021700;209.405000;209.435000;209.383000;209.425000;0 +20260305 021800;209.427000;209.476000;209.425000;209.458000;0 +20260305 021900;209.456000;209.473000;209.443000;209.461000;0 +20260305 022000;209.459000;209.461000;209.431000;209.443000;0 +20260305 022100;209.443000;209.453000;209.423000;209.452000;0 +20260305 022200;209.451000;209.506000;209.448000;209.485000;0 +20260305 022300;209.482000;209.491000;209.449000;209.470000;0 +20260305 022400;209.472000;209.479000;209.458000;209.466000;0 +20260305 022500;209.469000;209.476000;209.398000;209.409000;0 +20260305 022600;209.409000;209.437000;209.406000;209.423000;0 +20260305 022700;209.424000;209.439000;209.412000;209.430000;0 +20260305 022800;209.430000;209.477000;209.424000;209.475000;0 +20260305 022900;209.478000;209.528000;209.472000;209.525000;0 +20260305 023000;209.532000;209.563000;209.532000;209.547000;0 +20260305 023100;209.547000;209.626000;209.545000;209.626000;0 +20260305 023200;209.628000;209.637000;209.587000;209.599000;0 +20260305 023300;209.598000;209.611000;209.580000;209.603000;0 +20260305 023400;209.603000;209.625000;209.588000;209.588000;0 +20260305 023500;209.587000;209.616000;209.587000;209.603000;0 +20260305 023600;209.605000;209.623000;209.591000;209.602000;0 +20260305 023700;209.608000;209.675000;209.608000;209.675000;0 +20260305 023800;209.675000;209.704000;209.661000;209.696000;0 +20260305 023900;209.696000;209.739000;209.684000;209.727000;0 +20260305 024000;209.742000;209.751000;209.722000;209.725000;0 +20260305 024100;209.723000;209.775000;209.723000;209.757000;0 +20260305 024200;209.755000;209.784000;209.747000;209.779000;0 +20260305 024300;209.783000;209.799000;209.780000;209.799000;0 +20260305 024400;209.796000;209.811000;209.769000;209.771000;0 +20260305 024500;209.774000;209.776000;209.722000;209.732000;0 +20260305 024600;209.731000;209.740000;209.703000;209.730000;0 +20260305 024700;209.730000;209.754000;209.715000;209.753000;0 +20260305 024800;209.752000;209.762000;209.731000;209.758000;0 +20260305 024900;209.759000;209.778000;209.756000;209.768000;0 +20260305 025000;209.769000;209.778000;209.741000;209.748000;0 +20260305 025100;209.750000;209.752000;209.703000;209.732000;0 +20260305 025200;209.733000;209.780000;209.727000;209.762000;0 +20260305 025300;209.759000;209.763000;209.728000;209.728000;0 +20260305 025400;209.729000;209.747000;209.712000;209.716000;0 +20260305 025500;209.718000;209.791000;209.716000;209.768000;0 +20260305 025600;209.769000;209.792000;209.743000;209.757000;0 +20260305 025700;209.756000;209.778000;209.741000;209.761000;0 +20260305 025800;209.760000;209.778000;209.748000;209.755000;0 +20260305 025900;209.754000;209.805000;209.747000;209.805000;0 +20260305 030000;209.805000;209.813000;209.726000;209.736000;0 +20260305 030100;209.737000;209.742000;209.672000;209.702000;0 +20260305 030200;209.699000;209.741000;209.672000;209.726000;0 +20260305 030300;209.725000;209.728000;209.649000;209.651000;0 +20260305 030400;209.648000;209.680000;209.614000;209.637000;0 +20260305 030500;209.639000;209.674000;209.609000;209.612000;0 +20260305 030600;209.611000;209.615000;209.555000;209.556000;0 +20260305 030700;209.555000;209.631000;209.555000;209.596000;0 +20260305 030800;209.597000;209.652000;209.584000;209.647000;0 +20260305 030900;209.646000;209.666000;209.617000;209.659000;0 +20260305 031000;209.659000;209.734000;209.659000;209.675000;0 +20260305 031100;209.675000;209.692000;209.608000;209.652000;0 +20260305 031200;209.651000;209.652000;209.592000;209.601000;0 +20260305 031300;209.599000;209.619000;209.578000;209.591000;0 +20260305 031400;209.593000;209.622000;209.586000;209.599000;0 +20260305 031500;209.599000;209.665000;209.582000;209.648000;0 +20260305 031600;209.648000;209.677000;209.642000;209.667000;0 +20260305 031700;209.667000;209.682000;209.629000;209.672000;0 +20260305 031800;209.663000;209.665000;209.615000;209.623000;0 +20260305 031900;209.625000;209.650000;209.602000;209.602000;0 +20260305 032000;209.603000;209.633000;209.603000;209.626000;0 +20260305 032100;209.629000;209.648000;209.580000;209.584000;0 +20260305 032200;209.586000;209.605000;209.558000;209.563000;0 +20260305 032300;209.561000;209.568000;209.527000;209.552000;0 +20260305 032400;209.555000;209.579000;209.520000;209.520000;0 +20260305 032500;209.523000;209.575000;209.518000;209.526000;0 +20260305 032600;209.524000;209.569000;209.510000;209.546000;0 +20260305 032700;209.550000;209.566000;209.514000;209.524000;0 +20260305 032800;209.523000;209.544000;209.489000;209.502000;0 +20260305 032900;209.504000;209.504000;209.482000;209.487000;0 +20260305 033000;209.486000;209.489000;209.381000;209.406000;0 +20260305 033100;209.405000;209.443000;209.402000;209.414000;0 +20260305 033200;209.416000;209.449000;209.355000;209.391000;0 +20260305 033300;209.391000;209.464000;209.390000;209.428000;0 +20260305 033400;209.426000;209.440000;209.402000;209.439000;0 +20260305 033500;209.439000;209.479000;209.433000;209.456000;0 +20260305 033600;209.459000;209.484000;209.428000;209.428000;0 +20260305 033700;209.427000;209.480000;209.419000;209.476000;0 +20260305 033800;209.476000;209.492000;209.437000;209.488000;0 +20260305 033900;209.488000;209.497000;209.470000;209.492000;0 +20260305 034000;209.495000;209.518000;209.453000;209.518000;0 +20260305 034100;209.516000;209.516000;209.457000;209.459000;0 +20260305 034200;209.461000;209.475000;209.425000;209.438000;0 +20260305 034300;209.438000;209.439000;209.407000;209.417000;0 +20260305 034400;209.417000;209.451000;209.409000;209.441000;0 +20260305 034500;209.443000;209.481000;209.430000;209.477000;0 +20260305 034600;209.477000;209.499000;209.468000;209.482000;0 +20260305 034700;209.488000;209.526000;209.488000;209.508000;0 +20260305 034800;209.508000;209.527000;209.507000;209.513000;0 +20260305 034900;209.515000;209.534000;209.493000;209.493000;0 +20260305 035000;209.493000;209.530000;209.488000;209.527000;0 +20260305 035100;209.526000;209.570000;209.518000;209.568000;0 +20260305 035200;209.572000;209.574000;209.552000;209.569000;0 +20260305 035300;209.568000;209.571000;209.528000;209.532000;0 +20260305 035400;209.535000;209.535000;209.488000;209.508000;0 +20260305 035500;209.513000;209.588000;209.513000;209.582000;0 +20260305 035600;209.582000;209.645000;209.582000;209.631000;0 +20260305 035700;209.631000;209.642000;209.615000;209.623000;0 +20260305 035800;209.619000;209.631000;209.609000;209.624000;0 +20260305 035900;209.625000;209.628000;209.580000;209.583000;0 +20260305 040000;209.583000;209.593000;209.565000;209.585000;0 +20260305 040100;209.585000;209.624000;209.572000;209.620000;0 +20260305 040200;209.621000;209.621000;209.546000;209.556000;0 +20260305 040300;209.559000;209.616000;209.536000;209.608000;0 +20260305 040400;209.608000;209.670000;209.572000;209.654000;0 +20260305 040500;209.655000;209.661000;209.613000;209.655000;0 +20260305 040600;209.651000;209.809000;209.650000;209.729000;0 +20260305 040700;209.729000;209.836000;209.715000;209.799000;0 +20260305 040800;209.794000;209.886000;209.755000;209.871000;0 +20260305 040900;209.859000;209.883000;209.806000;209.839000;0 +20260305 041000;209.835000;209.851000;209.786000;209.820000;0 +20260305 041100;209.823000;209.849000;209.782000;209.819000;0 +20260305 041200;209.818000;209.836000;209.754000;209.785000;0 +20260305 041300;209.789000;209.818000;209.778000;209.792000;0 +20260305 041400;209.791000;209.846000;209.791000;209.837000;0 +20260305 041500;209.839000;209.856000;209.802000;209.819000;0 +20260305 041600;209.820000;209.833000;209.772000;209.793000;0 +20260305 041700;209.794000;209.801000;209.707000;209.717000;0 +20260305 041800;209.716000;209.717000;209.677000;209.693000;0 +20260305 041900;209.692000;209.709000;209.670000;209.699000;0 +20260305 042000;209.698000;209.736000;209.683000;209.690000;0 +20260305 042100;209.692000;209.748000;209.661000;209.685000;0 +20260305 042200;209.685000;209.764000;209.665000;209.741000;0 +20260305 042300;209.737000;209.774000;209.735000;209.765000;0 +20260305 042400;209.763000;209.775000;209.718000;209.721000;0 +20260305 042500;209.723000;209.753000;209.698000;209.705000;0 +20260305 042600;209.701000;209.721000;209.670000;209.706000;0 +20260305 042700;209.703000;209.732000;209.693000;209.725000;0 +20260305 042800;209.725000;209.757000;209.707000;209.735000;0 +20260305 042900;209.735000;209.786000;209.722000;209.771000;0 +20260305 043000;209.771000;209.789000;209.721000;209.741000;0 +20260305 043100;209.741000;209.835000;209.737000;209.827000;0 +20260305 043200;209.826000;209.835000;209.774000;209.787000;0 +20260305 043300;209.784000;209.794000;209.767000;209.784000;0 +20260305 043400;209.788000;209.789000;209.688000;209.739000;0 +20260305 043500;209.744000;209.809000;209.729000;209.809000;0 +20260305 043600;209.805000;209.816000;209.742000;209.762000;0 +20260305 043700;209.762000;209.762000;209.670000;209.674000;0 +20260305 043800;209.671000;209.717000;209.653000;209.654000;0 +20260305 043900;209.654000;209.669000;209.624000;209.626000;0 +20260305 044000;209.624000;209.689000;209.624000;209.667000;0 +20260305 044100;209.665000;209.724000;209.650000;209.714000;0 +20260305 044200;209.717000;209.761000;209.702000;209.756000;0 +20260305 044300;209.757000;209.786000;209.743000;209.749000;0 +20260305 044400;209.748000;209.778000;209.734000;209.763000;0 +20260305 044500;209.767000;209.839000;209.766000;209.807000;0 +20260305 044600;209.805000;209.844000;209.799000;209.835000;0 +20260305 044700;209.837000;209.879000;209.813000;209.849000;0 +20260305 044800;209.849000;209.854000;209.788000;209.818000;0 +20260305 044900;209.816000;209.915000;209.790000;209.914000;0 +20260305 045000;209.914000;209.914000;209.853000;209.860000;0 +20260305 045100;209.860000;209.862000;209.805000;209.824000;0 +20260305 045200;209.825000;209.825000;209.792000;209.813000;0 +20260305 045300;209.812000;209.816000;209.781000;209.814000;0 +20260305 045400;209.814000;209.836000;209.768000;209.774000;0 +20260305 045500;209.771000;209.801000;209.729000;209.736000;0 +20260305 045600;209.735000;209.773000;209.719000;209.757000;0 +20260305 045700;209.754000;209.803000;209.750000;209.795000;0 +20260305 045800;209.792000;209.823000;209.792000;209.822000;0 +20260305 045900;209.825000;209.874000;209.819000;209.874000;0 +20260305 050000;209.875000;209.875000;209.836000;209.838000;0 +20260305 050100;209.838000;209.917000;209.835000;209.893000;0 +20260305 050200;209.894000;209.952000;209.892000;209.918000;0 +20260305 050300;209.918000;209.922000;209.884000;209.894000;0 +20260305 050400;209.894000;209.907000;209.862000;209.905000;0 +20260305 050500;209.908000;209.916000;209.881000;209.910000;0 +20260305 050600;209.907000;209.925000;209.890000;209.893000;0 +20260305 050700;209.895000;209.901000;209.864000;209.879000;0 +20260305 050800;209.876000;209.915000;209.857000;209.869000;0 +20260305 050900;209.870000;209.892000;209.864000;209.868000;0 +20260305 051000;209.874000;209.887000;209.837000;209.838000;0 +20260305 051100;209.842000;209.857000;209.823000;209.851000;0 +20260305 051200;209.854000;209.894000;209.851000;209.887000;0 +20260305 051300;209.889000;209.903000;209.871000;209.880000;0 +20260305 051400;209.879000;209.887000;209.860000;209.862000;0 +20260305 051500;209.863000;209.869000;209.829000;209.838000;0 +20260305 051600;209.836000;209.853000;209.814000;209.826000;0 +20260305 051700;209.825000;209.853000;209.797000;209.842000;0 +20260305 051800;209.847000;209.851000;209.826000;209.843000;0 +20260305 051900;209.842000;209.858000;209.842000;209.846000;0 +20260305 052000;209.847000;209.854000;209.833000;209.835000;0 +20260305 052100;209.835000;209.842000;209.813000;209.834000;0 +20260305 052200;209.832000;209.869000;209.832000;209.869000;0 +20260305 052300;209.867000;209.873000;209.852000;209.862000;0 +20260305 052400;209.863000;209.867000;209.821000;209.833000;0 +20260305 052500;209.829000;209.834000;209.784000;209.798000;0 +20260305 052600;209.799000;209.832000;209.786000;209.824000;0 +20260305 052700;209.827000;209.839000;209.823000;209.832000;0 +20260305 052800;209.835000;209.849000;209.823000;209.841000;0 +20260305 052900;209.841000;209.859000;209.836000;209.859000;0 +20260305 053000;209.859000;209.891000;209.848000;209.876000;0 +20260305 053100;209.876000;209.877000;209.827000;209.845000;0 +20260305 053200;209.843000;209.897000;209.843000;209.883000;0 +20260305 053300;209.884000;209.896000;209.841000;209.859000;0 +20260305 053400;209.858000;209.898000;209.852000;209.896000;0 +20260305 053500;209.894000;209.905000;209.879000;209.881000;0 +20260305 053600;209.885000;209.885000;209.833000;209.835000;0 +20260305 053700;209.835000;209.846000;209.815000;209.840000;0 +20260305 053800;209.843000;209.863000;209.837000;209.860000;0 +20260305 053900;209.861000;209.863000;209.795000;209.812000;0 +20260305 054000;209.804000;209.806000;209.738000;209.738000;0 +20260305 054100;209.737000;209.740000;209.705000;209.705000;0 +20260305 054200;209.704000;209.746000;209.704000;209.741000;0 +20260305 054300;209.742000;209.743000;209.706000;209.738000;0 +20260305 054400;209.736000;209.758000;209.736000;209.750000;0 +20260305 054500;209.753000;209.771000;209.744000;209.762000;0 +20260305 054600;209.761000;209.804000;209.749000;209.795000;0 +20260305 054700;209.798000;209.808000;209.779000;209.807000;0 +20260305 054800;209.807000;209.830000;209.806000;209.815000;0 +20260305 054900;209.817000;209.829000;209.790000;209.798000;0 +20260305 055000;209.799000;209.804000;209.776000;209.789000;0 +20260305 055100;209.790000;209.821000;209.768000;209.800000;0 +20260305 055200;209.798000;209.851000;209.796000;209.848000;0 +20260305 055300;209.848000;209.864000;209.832000;209.860000;0 +20260305 055400;209.860000;209.946000;209.860000;209.940000;0 +20260305 055500;209.940000;209.992000;209.936000;209.979000;0 +20260305 055600;209.981000;210.007000;209.979000;209.998000;0 +20260305 055700;209.996000;210.011000;209.982000;209.997000;0 +20260305 055800;209.997000;209.998000;209.960000;209.968000;0 +20260305 055900;209.968000;209.988000;209.950000;209.987000;0 +20260305 060000;209.987000;210.021000;209.970000;209.998000;0 +20260305 060100;209.998000;210.019000;209.957000;209.971000;0 +20260305 060200;209.971000;210.038000;209.971000;210.038000;0 +20260305 060300;210.037000;210.082000;210.025000;210.066000;0 +20260305 060400;210.063000;210.095000;210.045000;210.045000;0 +20260305 060500;210.047000;210.071000;210.047000;210.066000;0 +20260305 060600;210.066000;210.073000;210.042000;210.044000;0 +20260305 060700;210.044000;210.095000;210.044000;210.087000;0 +20260305 060800;210.088000;210.098000;210.081000;210.092000;0 +20260305 060900;210.091000;210.108000;210.079000;210.093000;0 +20260305 061000;210.094000;210.094000;210.067000;210.075000;0 +20260305 061100;210.079000;210.108000;210.069000;210.100000;0 +20260305 061200;210.100000;210.100000;210.087000;210.090000;0 +20260305 061300;210.089000;210.103000;210.079000;210.096000;0 +20260305 061400;210.098000;210.131000;210.085000;210.113000;0 +20260305 061500;210.112000;210.113000;210.086000;210.088000;0 +20260305 061600;210.089000;210.106000;210.085000;210.106000;0 +20260305 061700;210.105000;210.113000;210.063000;210.080000;0 +20260305 061800;210.079000;210.107000;210.072000;210.099000;0 +20260305 061900;210.103000;210.107000;210.060000;210.069000;0 +20260305 062000;210.075000;210.114000;210.068000;210.111000;0 +20260305 062100;210.111000;210.133000;210.092000;210.133000;0 +20260305 062200;210.137000;210.137000;210.098000;210.101000;0 +20260305 062300;210.100000;210.113000;210.070000;210.071000;0 +20260305 062400;210.075000;210.078000;210.030000;210.037000;0 +20260305 062500;210.038000;210.066000;210.032000;210.060000;0 +20260305 062600;210.059000;210.069000;210.023000;210.069000;0 +20260305 062700;210.063000;210.082000;210.063000;210.066000;0 +20260305 062800;210.068000;210.074000;210.035000;210.037000;0 +20260305 062900;210.035000;210.048000;210.025000;210.027000;0 +20260305 063000;210.024000;210.027000;209.999000;210.026000;0 +20260305 063100;210.025000;210.026000;210.000000;210.006000;0 +20260305 063200;210.005000;210.010000;209.969000;209.993000;0 +20260305 063300;209.992000;209.994000;209.977000;209.990000;0 +20260305 063400;209.988000;209.991000;209.974000;209.989000;0 +20260305 063500;209.991000;210.005000;209.978000;209.993000;0 +20260305 063600;209.993000;210.035000;209.993000;210.020000;0 +20260305 063700;210.022000;210.042000;210.018000;210.033000;0 +20260305 063800;210.033000;210.033000;209.987000;209.989000;0 +20260305 063900;209.988000;209.996000;209.977000;209.987000;0 +20260305 064000;209.989000;210.022000;209.980000;210.007000;0 +20260305 064100;210.008000;210.025000;210.003000;210.007000;0 +20260305 064200;210.008000;210.019000;209.998000;210.005000;0 +20260305 064300;210.006000;210.041000;210.005000;210.027000;0 +20260305 064400;210.030000;210.055000;210.030000;210.051000;0 +20260305 064500;210.053000;210.074000;210.041000;210.067000;0 +20260305 064600;210.068000;210.113000;210.061000;210.113000;0 +20260305 064700;210.116000;210.122000;210.103000;210.112000;0 +20260305 064800;210.113000;210.154000;210.112000;210.132000;0 +20260305 064900;210.134000;210.171000;210.134000;210.162000;0 +20260305 065000;210.163000;210.245000;210.162000;210.245000;0 +20260305 065100;210.245000;210.245000;210.190000;210.190000;0 +20260305 065200;210.190000;210.235000;210.168000;210.180000;0 +20260305 065300;210.180000;210.257000;210.147000;210.226000;0 +20260305 065400;210.226000;210.232000;210.198000;210.200000;0 +20260305 065500;210.201000;210.212000;210.161000;210.168000;0 +20260305 065600;210.167000;210.186000;210.143000;210.164000;0 +20260305 065700;210.163000;210.165000;210.128000;210.152000;0 +20260305 065800;210.153000;210.213000;210.144000;210.201000;0 +20260305 065900;210.201000;210.218000;210.187000;210.195000;0 +20260305 070000;210.195000;210.223000;210.168000;210.183000;0 +20260305 070100;210.179000;210.209000;210.175000;210.181000;0 +20260305 070200;210.191000;210.200000;210.169000;210.185000;0 +20260305 070300;210.180000;210.183000;210.159000;210.175000;0 +20260305 070400;210.176000;210.219000;210.163000;210.214000;0 +20260305 070500;210.212000;210.236000;210.206000;210.236000;0 +20260305 070600;210.233000;210.253000;210.232000;210.240000;0 +20260305 070700;210.235000;210.259000;210.229000;210.233000;0 +20260305 070800;210.235000;210.248000;210.231000;210.244000;0 +20260305 070900;210.245000;210.246000;210.207000;210.208000;0 +20260305 071000;210.208000;210.208000;210.188000;210.189000;0 +20260305 071100;210.192000;210.205000;210.176000;210.195000;0 +20260305 071200;210.194000;210.212000;210.188000;210.211000;0 +20260305 071300;210.211000;210.224000;210.204000;210.223000;0 +20260305 071400;210.223000;210.224000;210.189000;210.189000;0 +20260305 071500;210.190000;210.224000;210.186000;210.224000;0 +20260305 071600;210.225000;210.240000;210.208000;210.220000;0 +20260305 071700;210.215000;210.215000;210.197000;210.207000;0 +20260305 071800;210.205000;210.232000;210.204000;210.226000;0 +20260305 071900;210.227000;210.304000;210.227000;210.303000;0 +20260305 072000;210.304000;210.347000;210.304000;210.342000;0 +20260305 072100;210.342000;210.377000;210.315000;210.330000;0 +20260305 072200;210.330000;210.344000;210.312000;210.327000;0 +20260305 072300;210.323000;210.331000;210.293000;210.311000;0 +20260305 072400;210.313000;210.317000;210.281000;210.293000;0 +20260305 072500;210.296000;210.323000;210.275000;210.292000;0 +20260305 072600;210.292000;210.325000;210.289000;210.324000;0 +20260305 072700;210.325000;210.338000;210.285000;210.306000;0 +20260305 072800;210.307000;210.325000;210.292000;210.317000;0 +20260305 072900;210.315000;210.348000;210.315000;210.341000;0 +20260305 073000;210.341000;210.347000;210.322000;210.329000;0 +20260305 073100;210.330000;210.340000;210.319000;210.324000;0 +20260305 073200;210.324000;210.340000;210.322000;210.340000;0 +20260305 073300;210.341000;210.386000;210.336000;210.377000;0 +20260305 073400;210.376000;210.376000;210.342000;210.358000;0 +20260305 073500;210.361000;210.386000;210.358000;210.375000;0 +20260305 073600;210.375000;210.397000;210.368000;210.387000;0 +20260305 073700;210.387000;210.409000;210.374000;210.405000;0 +20260305 073800;210.403000;210.442000;210.396000;210.439000;0 +20260305 073900;210.436000;210.448000;210.400000;210.400000;0 +20260305 074000;210.402000;210.414000;210.379000;210.393000;0 +20260305 074100;210.397000;210.446000;210.391000;210.443000;0 +20260305 074200;210.438000;210.442000;210.406000;210.415000;0 +20260305 074300;210.412000;210.439000;210.410000;210.412000;0 +20260305 074400;210.414000;210.431000;210.399000;210.406000;0 +20260305 074500;210.399000;210.437000;210.388000;210.434000;0 +20260305 074600;210.435000;210.456000;210.422000;210.444000;0 +20260305 074700;210.440000;210.455000;210.414000;210.419000;0 +20260305 074800;210.417000;210.422000;210.388000;210.391000;0 +20260305 074900;210.393000;210.415000;210.372000;210.392000;0 +20260305 075000;210.392000;210.401000;210.364000;210.370000;0 +20260305 075100;210.369000;210.387000;210.365000;210.369000;0 +20260305 075200;210.365000;210.369000;210.336000;210.342000;0 +20260305 075300;210.340000;210.356000;210.322000;210.351000;0 +20260305 075400;210.350000;210.387000;210.350000;210.384000;0 +20260305 075500;210.385000;210.385000;210.357000;210.374000;0 +20260305 075600;210.374000;210.416000;210.363000;210.416000;0 +20260305 075700;210.420000;210.449000;210.410000;210.443000;0 +20260305 075800;210.441000;210.462000;210.433000;210.443000;0 +20260305 075900;210.439000;210.450000;210.423000;210.447000;0 +20260305 080000;210.446000;210.476000;210.432000;210.455000;0 +20260305 080100;210.461000;210.485000;210.449000;210.473000;0 +20260305 080200;210.472000;210.481000;210.452000;210.468000;0 +20260305 080300;210.463000;210.486000;210.452000;210.471000;0 +20260305 080400;210.471000;210.486000;210.456000;210.473000;0 +20260305 080500;210.470000;210.470000;210.446000;210.458000;0 +20260305 080600;210.460000;210.471000;210.439000;210.454000;0 +20260305 080700;210.450000;210.475000;210.447000;210.457000;0 +20260305 080800;210.458000;210.488000;210.453000;210.481000;0 +20260305 080900;210.485000;210.511000;210.485000;210.496000;0 +20260305 081000;210.494000;210.517000;210.477000;210.511000;0 +20260305 081100;210.514000;210.544000;210.507000;210.543000;0 +20260305 081200;210.546000;210.555000;210.529000;210.549000;0 +20260305 081300;210.550000;210.557000;210.533000;210.545000;0 +20260305 081400;210.543000;210.558000;210.526000;210.534000;0 +20260305 081500;210.535000;210.551000;210.519000;210.551000;0 +20260305 081600;210.548000;210.555000;210.531000;210.538000;0 +20260305 081700;210.541000;210.541000;210.513000;210.516000;0 +20260305 081800;210.517000;210.518000;210.462000;210.480000;0 +20260305 081900;210.477000;210.508000;210.476000;210.495000;0 +20260305 082000;210.494000;210.517000;210.489000;210.502000;0 +20260305 082100;210.501000;210.524000;210.482000;210.524000;0 +20260305 082200;210.523000;210.536000;210.478000;210.482000;0 +20260305 082300;210.482000;210.482000;210.417000;210.424000;0 +20260305 082400;210.423000;210.443000;210.412000;210.439000;0 +20260305 082500;210.439000;210.455000;210.406000;210.415000;0 +20260305 082600;210.415000;210.451000;210.413000;210.447000;0 +20260305 082700;210.448000;210.458000;210.431000;210.445000;0 +20260305 082800;210.446000;210.460000;210.432000;210.434000;0 +20260305 082900;210.443000;210.443000;210.403000;210.407000;0 +20260305 083000;210.400000;210.437000;210.386000;210.387000;0 +20260305 083100;210.387000;210.388000;210.334000;210.348000;0 +20260305 083200;210.350000;210.382000;210.339000;210.374000;0 +20260305 083300;210.377000;210.457000;210.372000;210.450000;0 +20260305 083400;210.451000;210.486000;210.414000;210.478000;0 +20260305 083500;210.479000;210.510000;210.449000;210.469000;0 +20260305 083600;210.470000;210.470000;210.410000;210.426000;0 +20260305 083700;210.425000;210.453000;210.408000;210.447000;0 +20260305 083800;210.444000;210.503000;210.425000;210.499000;0 +20260305 083900;210.495000;210.524000;210.451000;210.451000;0 +20260305 084000;210.451000;210.501000;210.451000;210.492000;0 +20260305 084100;210.492000;210.496000;210.454000;210.475000;0 +20260305 084200;210.475000;210.535000;210.475000;210.534000;0 +20260305 084300;210.535000;210.552000;210.517000;210.542000;0 +20260305 084400;210.543000;210.543000;210.487000;210.503000;0 +20260305 084500;210.501000;210.517000;210.484000;210.505000;0 +20260305 084600;210.507000;210.530000;210.479000;210.495000;0 +20260305 084700;210.496000;210.506000;210.450000;210.454000;0 +20260305 084800;210.457000;210.507000;210.451000;210.485000;0 +20260305 084900;210.489000;210.508000;210.446000;210.452000;0 +20260305 085000;210.455000;210.474000;210.424000;210.433000;0 +20260305 085100;210.436000;210.482000;210.430000;210.451000;0 +20260305 085200;210.452000;210.505000;210.449000;210.479000;0 +20260305 085300;210.479000;210.511000;210.469000;210.472000;0 +20260305 085400;210.474000;210.483000;210.448000;210.471000;0 +20260305 085500;210.467000;210.477000;210.446000;210.455000;0 +20260305 085600;210.454000;210.517000;210.452000;210.482000;0 +20260305 085700;210.479000;210.541000;210.474000;210.538000;0 +20260305 085800;210.539000;210.562000;210.522000;210.526000;0 +20260305 085900;210.530000;210.549000;210.516000;210.539000;0 +20260305 090000;210.535000;210.578000;210.520000;210.557000;0 +20260305 090100;210.558000;210.565000;210.513000;210.553000;0 +20260305 090200;210.553000;210.579000;210.518000;210.535000;0 +20260305 090300;210.537000;210.565000;210.502000;210.504000;0 +20260305 090400;210.503000;210.530000;210.470000;210.472000;0 +20260305 090500;210.470000;210.611000;210.470000;210.601000;0 +20260305 090600;210.600000;210.620000;210.569000;210.590000;0 +20260305 090700;210.587000;210.590000;210.549000;210.552000;0 +20260305 090800;210.553000;210.560000;210.516000;210.533000;0 +20260305 090900;210.531000;210.557000;210.511000;210.546000;0 +20260305 091000;210.548000;210.552000;210.511000;210.518000;0 +20260305 091100;210.518000;210.567000;210.518000;210.553000;0 +20260305 091200;210.555000;210.562000;210.492000;210.514000;0 +20260305 091300;210.509000;210.534000;210.478000;210.518000;0 +20260305 091400;210.524000;210.537000;210.515000;210.519000;0 +20260305 091500;210.520000;210.554000;210.509000;210.543000;0 +20260305 091600;210.545000;210.567000;210.544000;210.555000;0 +20260305 091700;210.554000;210.574000;210.543000;210.545000;0 +20260305 091800;210.543000;210.548000;210.507000;210.513000;0 +20260305 091900;210.512000;210.527000;210.493000;210.495000;0 +20260305 092000;210.490000;210.504000;210.475000;210.491000;0 +20260305 092100;210.490000;210.519000;210.481000;210.495000;0 +20260305 092200;210.494000;210.502000;210.453000;210.462000;0 +20260305 092300;210.461000;210.480000;210.448000;210.448000;0 +20260305 092400;210.447000;210.457000;210.413000;210.428000;0 +20260305 092500;210.428000;210.475000;210.428000;210.468000;0 +20260305 092600;210.469000;210.497000;210.468000;210.479000;0 +20260305 092700;210.477000;210.478000;210.447000;210.454000;0 +20260305 092800;210.452000;210.480000;210.448000;210.468000;0 +20260305 092900;210.467000;210.480000;210.451000;210.452000;0 +20260305 093000;210.451000;210.501000;210.432000;210.497000;0 +20260305 093100;210.498000;210.520000;210.483000;210.520000;0 +20260305 093200;210.521000;210.557000;210.514000;210.539000;0 +20260305 093300;210.541000;210.549000;210.483000;210.503000;0 +20260305 093400;210.505000;210.515000;210.479000;210.484000;0 +20260305 093500;210.485000;210.485000;210.423000;210.430000;0 +20260305 093600;210.428000;210.450000;210.376000;210.387000;0 +20260305 093700;210.387000;210.400000;210.327000;210.398000;0 +20260305 093800;210.399000;210.409000;210.371000;210.392000;0 +20260305 093900;210.390000;210.390000;210.285000;210.328000;0 +20260305 094000;210.320000;210.323000;210.254000;210.257000;0 +20260305 094100;210.268000;210.275000;210.229000;210.248000;0 +20260305 094200;210.249000;210.292000;210.233000;210.255000;0 +20260305 094300;210.258000;210.258000;210.181000;210.213000;0 +20260305 094400;210.211000;210.211000;210.183000;210.203000;0 +20260305 094500;210.201000;210.209000;210.166000;210.204000;0 +20260305 094600;210.204000;210.229000;210.181000;210.185000;0 +20260305 094700;210.184000;210.219000;210.169000;210.217000;0 +20260305 094800;210.218000;210.281000;210.210000;210.280000;0 +20260305 094900;210.278000;210.315000;210.268000;210.298000;0 +20260305 095000;210.295000;210.308000;210.259000;210.274000;0 +20260305 095100;210.271000;210.281000;210.230000;210.238000;0 +20260305 095200;210.239000;210.257000;210.221000;210.231000;0 +20260305 095300;210.232000;210.292000;210.211000;210.276000;0 +20260305 095400;210.279000;210.291000;210.259000;210.286000;0 +20260305 095500;210.286000;210.289000;210.251000;210.262000;0 +20260305 095600;210.261000;210.261000;210.204000;210.210000;0 +20260305 095700;210.207000;210.218000;210.167000;210.175000;0 +20260305 095800;210.173000;210.239000;210.171000;210.228000;0 +20260305 095900;210.229000;210.288000;210.213000;210.252000;0 +20260305 100000;210.261000;210.267000;210.209000;210.250000;0 +20260305 100100;210.253000;210.263000;210.186000;210.236000;0 +20260305 100200;210.236000;210.242000;210.213000;210.235000;0 +20260305 100300;210.235000;210.235000;210.178000;210.189000;0 +20260305 100400;210.190000;210.190000;210.122000;210.122000;0 +20260305 100500;210.125000;210.147000;210.092000;210.099000;0 +20260305 100600;210.099000;210.104000;210.067000;210.099000;0 +20260305 100700;210.096000;210.115000;210.086000;210.101000;0 +20260305 100800;210.101000;210.120000;210.079000;210.083000;0 +20260305 100900;210.085000;210.144000;210.081000;210.131000;0 +20260305 101000;210.135000;210.166000;210.128000;210.165000;0 +20260305 101100;210.165000;210.191000;210.156000;210.159000;0 +20260305 101200;210.157000;210.211000;210.148000;210.194000;0 +20260305 101300;210.194000;210.215000;210.149000;210.214000;0 +20260305 101400;210.223000;210.249000;210.205000;210.240000;0 +20260305 101500;210.241000;210.257000;210.220000;210.225000;0 +20260305 101600;210.220000;210.242000;210.175000;210.195000;0 +20260305 101700;210.196000;210.205000;210.162000;210.169000;0 +20260305 101800;210.171000;210.200000;210.140000;210.193000;0 +20260305 101900;210.193000;210.195000;210.141000;210.168000;0 +20260305 102000;210.170000;210.198000;210.136000;210.185000;0 +20260305 102100;210.184000;210.232000;210.172000;210.228000;0 +20260305 102200;210.234000;210.239000;210.195000;210.222000;0 +20260305 102300;210.223000;210.271000;210.209000;210.262000;0 +20260305 102400;210.262000;210.264000;210.194000;210.202000;0 +20260305 102500;210.201000;210.209000;210.185000;210.186000;0 +20260305 102600;210.188000;210.199000;210.164000;210.176000;0 +20260305 102700;210.174000;210.182000;210.105000;210.110000;0 +20260305 102800;210.107000;210.133000;210.083000;210.122000;0 +20260305 102900;210.120000;210.164000;210.120000;210.159000;0 +20260305 103000;210.159000;210.176000;210.097000;210.103000;0 +20260305 103100;210.106000;210.151000;210.091000;210.145000;0 +20260305 103200;210.147000;210.172000;210.131000;210.147000;0 +20260305 103300;210.147000;210.176000;210.139000;210.159000;0 +20260305 103400;210.156000;210.171000;210.133000;210.170000;0 +20260305 103500;210.167000;210.177000;210.132000;210.132000;0 +20260305 103600;210.138000;210.165000;210.116000;210.125000;0 +20260305 103700;210.124000;210.134000;210.072000;210.075000;0 +20260305 103800;210.074000;210.074000;210.029000;210.070000;0 +20260305 103900;210.078000;210.087000;210.051000;210.051000;0 +20260305 104000;210.057000;210.107000;210.048000;210.085000;0 +20260305 104100;210.082000;210.087000;210.035000;210.036000;0 +20260305 104200;210.036000;210.058000;210.022000;210.026000;0 +20260305 104300;210.029000;210.048000;209.993000;210.016000;0 +20260305 104400;210.014000;210.016000;209.957000;210.011000;0 +20260305 104500;210.011000;210.074000;210.011000;210.051000;0 +20260305 104600;210.051000;210.051000;209.989000;209.997000;0 +20260305 104700;209.995000;210.007000;209.943000;209.959000;0 +20260305 104800;209.958000;209.974000;209.933000;209.934000;0 +20260305 104900;209.933000;209.972000;209.919000;209.953000;0 +20260305 105000;209.954000;209.977000;209.936000;209.970000;0 +20260305 105100;209.970000;210.028000;209.965000;209.987000;0 +20260305 105200;209.992000;210.005000;209.961000;209.961000;0 +20260305 105300;209.958000;209.984000;209.937000;209.941000;0 +20260305 105400;209.940000;209.956000;209.890000;209.899000;0 +20260305 105500;209.899000;209.928000;209.894000;209.917000;0 +20260305 105600;209.924000;209.931000;209.895000;209.919000;0 +20260305 105700;209.923000;209.996000;209.886000;209.981000;0 +20260305 105800;209.983000;209.985000;209.934000;209.936000;0 +20260305 105900;209.935000;209.991000;209.916000;209.987000;0 +20260305 110000;209.988000;210.002000;209.923000;209.933000;0 +20260305 110100;209.931000;209.941000;209.875000;209.889000;0 +20260305 110200;209.885000;209.890000;209.836000;209.875000;0 +20260305 110300;209.875000;209.884000;209.844000;209.864000;0 +20260305 110400;209.869000;209.871000;209.849000;209.854000;0 +20260305 110500;209.853000;209.877000;209.824000;209.825000;0 +20260305 110600;209.826000;209.844000;209.820000;209.835000;0 +20260305 110700;209.835000;209.854000;209.808000;209.811000;0 +20260305 110800;209.813000;209.851000;209.780000;209.842000;0 +20260305 110900;209.843000;209.854000;209.817000;209.836000;0 +20260305 111000;209.834000;209.846000;209.808000;209.826000;0 +20260305 111100;209.824000;209.841000;209.806000;209.840000;0 +20260305 111200;209.841000;209.844000;209.813000;209.841000;0 +20260305 111300;209.842000;209.877000;209.810000;209.875000;0 +20260305 111400;209.877000;209.885000;209.854000;209.860000;0 +20260305 111500;209.857000;209.892000;209.856000;209.871000;0 +20260305 111600;209.867000;209.888000;209.831000;209.831000;0 +20260305 111700;209.824000;209.836000;209.807000;209.813000;0 +20260305 111800;209.817000;209.870000;209.794000;209.862000;0 +20260305 111900;209.865000;209.886000;209.852000;209.859000;0 +20260305 112000;209.859000;209.909000;209.859000;209.880000;0 +20260305 112100;209.880000;209.898000;209.851000;209.864000;0 +20260305 112200;209.863000;209.885000;209.825000;209.849000;0 +20260305 112300;209.847000;209.869000;209.840000;209.859000;0 +20260305 112400;209.859000;209.888000;209.829000;209.869000;0 +20260305 112500;209.869000;209.885000;209.836000;209.839000;0 +20260305 112600;209.839000;209.850000;209.791000;209.791000;0 +20260305 112700;209.791000;209.849000;209.781000;209.842000;0 +20260305 112800;209.841000;209.877000;209.829000;209.846000;0 +20260305 112900;209.841000;209.846000;209.819000;209.829000;0 +20260305 113000;209.829000;209.852000;209.804000;209.844000;0 +20260305 113100;209.841000;209.889000;209.819000;209.878000;0 +20260305 113200;209.878000;209.932000;209.878000;209.898000;0 +20260305 113300;209.897000;209.934000;209.894000;209.931000;0 +20260305 113400;209.935000;209.939000;209.894000;209.933000;0 +20260305 113500;209.932000;209.959000;209.912000;209.927000;0 +20260305 113600;209.927000;209.966000;209.916000;209.950000;0 +20260305 113700;209.948000;210.021000;209.948000;209.985000;0 +20260305 113800;209.982000;210.006000;209.937000;209.938000;0 +20260305 113900;209.938000;209.960000;209.918000;209.954000;0 +20260305 114000;209.954000;210.006000;209.940000;209.980000;0 +20260305 114100;209.979000;209.988000;209.951000;209.957000;0 +20260305 114200;209.954000;209.958000;209.919000;209.933000;0 +20260305 114300;209.937000;209.952000;209.924000;209.932000;0 +20260305 114400;209.932000;209.949000;209.917000;209.924000;0 +20260305 114500;209.922000;209.938000;209.890000;209.906000;0 +20260305 114600;209.902000;209.924000;209.884000;209.884000;0 +20260305 114700;209.883000;209.908000;209.839000;209.840000;0 +20260305 114800;209.841000;209.853000;209.827000;209.827000;0 +20260305 114900;209.827000;209.855000;209.817000;209.843000;0 +20260305 115000;209.849000;209.879000;209.848000;209.879000;0 +20260305 115100;209.876000;209.876000;209.817000;209.818000;0 +20260305 115200;209.820000;209.883000;209.817000;209.872000;0 +20260305 115300;209.873000;209.879000;209.833000;209.853000;0 +20260305 115400;209.854000;209.863000;209.827000;209.855000;0 +20260305 115500;209.853000;209.863000;209.827000;209.842000;0 +20260305 115600;209.841000;209.852000;209.829000;209.833000;0 +20260305 115700;209.835000;209.848000;209.816000;209.841000;0 +20260305 115800;209.843000;209.880000;209.840000;209.880000;0 +20260305 115900;209.880000;209.888000;209.852000;209.873000;0 +20260305 120000;209.875000;209.913000;209.844000;209.910000;0 +20260305 120100;209.910000;209.924000;209.879000;209.914000;0 +20260305 120200;209.913000;209.995000;209.904000;209.979000;0 +20260305 120300;209.979000;210.003000;209.955000;209.988000;0 +20260305 120400;209.990000;210.030000;209.988000;210.010000;0 +20260305 120500;210.006000;210.009000;209.983000;209.997000;0 +20260305 120600;209.997000;210.009000;209.955000;209.960000;0 +20260305 120700;209.958000;209.965000;209.911000;209.928000;0 +20260305 120800;209.929000;209.944000;209.907000;209.939000;0 +20260305 120900;209.940000;209.940000;209.904000;209.911000;0 +20260305 121000;209.915000;209.915000;209.881000;209.887000;0 +20260305 121100;209.887000;209.931000;209.880000;209.931000;0 +20260305 121200;209.931000;209.981000;209.928000;209.980000;0 +20260305 121300;209.980000;209.995000;209.969000;209.972000;0 +20260305 121400;209.973000;209.992000;209.967000;209.983000;0 +20260305 121500;209.983000;210.013000;209.979000;209.994000;0 +20260305 121600;209.996000;210.002000;209.973000;209.976000;0 +20260305 121700;209.979000;209.995000;209.962000;209.974000;0 +20260305 121800;209.974000;209.982000;209.962000;209.975000;0 +20260305 121900;209.975000;209.979000;209.946000;209.975000;0 +20260305 122000;209.978000;210.013000;209.978000;209.981000;0 +20260305 122100;209.982000;209.989000;209.960000;209.972000;0 +20260305 122200;209.971000;210.006000;209.971000;210.005000;0 +20260305 122300;210.005000;210.026000;209.993000;210.024000;0 +20260305 122400;210.027000;210.027000;209.996000;210.013000;0 +20260305 122500;210.016000;210.022000;209.984000;209.999000;0 +20260305 122600;209.997000;210.000000;209.948000;209.971000;0 +20260305 122700;209.970000;210.024000;209.966000;210.022000;0 +20260305 122800;210.022000;210.055000;210.022000;210.043000;0 +20260305 122900;210.043000;210.069000;210.026000;210.031000;0 +20260305 123000;210.029000;210.089000;210.029000;210.073000;0 +20260305 123100;210.072000;210.073000;210.038000;210.065000;0 +20260305 123200;210.066000;210.072000;210.033000;210.035000;0 +20260305 123300;210.034000;210.066000;210.030000;210.049000;0 +20260305 123400;210.049000;210.060000;210.022000;210.038000;0 +20260305 123500;210.039000;210.046000;210.018000;210.033000;0 +20260305 123600;210.034000;210.060000;210.031000;210.053000;0 +20260305 123700;210.050000;210.144000;210.050000;210.134000;0 +20260305 123800;210.134000;210.152000;210.073000;210.081000;0 +20260305 123900;210.077000;210.100000;210.068000;210.099000;0 +20260305 124000;210.099000;210.133000;210.096000;210.123000;0 +20260305 124100;210.131000;210.158000;210.098000;210.139000;0 +20260305 124200;210.135000;210.173000;210.115000;210.151000;0 +20260305 124300;210.153000;210.203000;210.144000;210.190000;0 +20260305 124400;210.190000;210.215000;210.174000;210.212000;0 +20260305 124500;210.213000;210.228000;210.162000;210.168000;0 +20260305 124600;210.167000;210.193000;210.164000;210.190000;0 +20260305 124700;210.190000;210.193000;210.157000;210.159000;0 +20260305 124800;210.161000;210.177000;210.111000;210.124000;0 +20260305 124900;210.123000;210.150000;210.100000;210.108000;0 +20260305 125000;210.104000;210.117000;210.090000;210.105000;0 +20260305 125100;210.106000;210.162000;210.103000;210.144000;0 +20260305 125200;210.144000;210.204000;210.144000;210.202000;0 +20260305 125300;210.202000;210.255000;210.182000;210.252000;0 +20260305 125400;210.251000;210.272000;210.195000;210.267000;0 +20260305 125500;210.265000;210.302000;210.234000;210.235000;0 +20260305 125600;210.234000;210.239000;210.185000;210.199000;0 +20260305 125700;210.200000;210.244000;210.199000;210.237000;0 +20260305 125800;210.237000;210.237000;210.198000;210.205000;0 +20260305 125900;210.207000;210.210000;210.190000;210.191000;0 +20260305 130000;210.186000;210.214000;210.176000;210.197000;0 +20260305 130100;210.200000;210.202000;210.169000;210.188000;0 +20260305 130200;210.183000;210.199000;210.149000;210.166000;0 +20260305 130300;210.166000;210.170000;210.125000;210.143000;0 +20260305 130400;210.146000;210.160000;210.136000;210.150000;0 +20260305 130500;210.150000;210.189000;210.133000;210.178000;0 +20260305 130600;210.177000;210.195000;210.167000;210.175000;0 +20260305 130700;210.178000;210.241000;210.161000;210.237000;0 +20260305 130800;210.236000;210.236000;210.197000;210.197000;0 +20260305 130900;210.196000;210.207000;210.176000;210.188000;0 +20260305 131000;210.188000;210.195000;210.164000;210.182000;0 +20260305 131100;210.180000;210.181000;210.136000;210.158000;0 +20260305 131200;210.157000;210.177000;210.122000;210.172000;0 +20260305 131300;210.171000;210.192000;210.165000;210.192000;0 +20260305 131400;210.190000;210.198000;210.168000;210.170000;0 +20260305 131500;210.168000;210.195000;210.156000;210.194000;0 +20260305 131600;210.194000;210.225000;210.187000;210.202000;0 +20260305 131700;210.202000;210.203000;210.154000;210.165000;0 +20260305 131800;210.167000;210.184000;210.148000;210.160000;0 +20260305 131900;210.162000;210.171000;210.127000;210.134000;0 +20260305 132000;210.134000;210.158000;210.125000;210.125000;0 +20260305 132100;210.128000;210.167000;210.115000;210.152000;0 +20260305 132200;210.156000;210.234000;210.149000;210.222000;0 +20260305 132300;210.222000;210.269000;210.218000;210.238000;0 +20260305 132400;210.238000;210.255000;210.230000;210.255000;0 +20260305 132500;210.251000;210.260000;210.223000;210.225000;0 +20260305 132600;210.225000;210.229000;210.199000;210.211000;0 +20260305 132700;210.208000;210.268000;210.199000;210.268000;0 +20260305 132800;210.269000;210.280000;210.256000;210.280000;0 +20260305 132900;210.280000;210.301000;210.275000;210.300000;0 +20260305 133000;210.297000;210.340000;210.297000;210.338000;0 +20260305 133100;210.338000;210.357000;210.309000;210.345000;0 +20260305 133200;210.349000;210.350000;210.305000;210.314000;0 +20260305 133300;210.315000;210.327000;210.302000;210.311000;0 +20260305 133400;210.314000;210.376000;210.303000;210.367000;0 +20260305 133500;210.371000;210.447000;210.365000;210.431000;0 +20260305 133600;210.430000;210.444000;210.410000;210.412000;0 +20260305 133700;210.412000;210.424000;210.381000;210.393000;0 +20260305 133800;210.395000;210.468000;210.392000;210.456000;0 +20260305 133900;210.454000;210.462000;210.442000;210.442000;0 +20260305 134000;210.446000;210.459000;210.418000;210.428000;0 +20260305 134100;210.428000;210.440000;210.416000;210.418000;0 +20260305 134200;210.417000;210.460000;210.415000;210.448000;0 +20260305 134300;210.450000;210.462000;210.392000;210.394000;0 +20260305 134400;210.391000;210.412000;210.382000;210.402000;0 +20260305 134500;210.398000;210.408000;210.319000;210.330000;0 +20260305 134600;210.328000;210.328000;210.295000;210.296000;0 +20260305 134700;210.301000;210.325000;210.301000;210.309000;0 +20260305 134800;210.310000;210.318000;210.271000;210.289000;0 +20260305 134900;210.285000;210.291000;210.253000;210.286000;0 +20260305 135000;210.288000;210.293000;210.259000;210.282000;0 +20260305 135100;210.283000;210.294000;210.237000;210.243000;0 +20260305 135200;210.240000;210.247000;210.230000;210.247000;0 +20260305 135300;210.246000;210.268000;210.239000;210.256000;0 +20260305 135400;210.256000;210.270000;210.245000;210.257000;0 +20260305 135500;210.257000;210.283000;210.255000;210.274000;0 +20260305 135600;210.271000;210.275000;210.253000;210.256000;0 +20260305 135700;210.257000;210.281000;210.250000;210.272000;0 +20260305 135800;210.276000;210.310000;210.269000;210.298000;0 +20260305 135900;210.300000;210.300000;210.262000;210.269000;0 +20260305 140000;210.271000;210.271000;210.241000;210.264000;0 +20260305 140100;210.263000;210.292000;210.244000;210.248000;0 +20260305 140200;210.246000;210.268000;210.244000;210.268000;0 +20260305 140300;210.270000;210.297000;210.266000;210.271000;0 +20260305 140400;210.271000;210.289000;210.246000;210.264000;0 +20260305 140500;210.265000;210.274000;210.253000;210.272000;0 +20260305 140600;210.269000;210.280000;210.256000;210.258000;0 +20260305 140700;210.255000;210.263000;210.236000;210.238000;0 +20260305 140800;210.239000;210.256000;210.236000;210.242000;0 +20260305 140900;210.241000;210.249000;210.228000;210.236000;0 +20260305 141000;210.236000;210.243000;210.219000;210.227000;0 +20260305 141100;210.230000;210.235000;210.204000;210.209000;0 +20260305 141200;210.212000;210.232000;210.201000;210.221000;0 +20260305 141300;210.221000;210.258000;210.221000;210.255000;0 +20260305 141400;210.255000;210.259000;210.237000;210.245000;0 +20260305 141500;210.246000;210.247000;210.209000;210.213000;0 +20260305 141600;210.214000;210.223000;210.202000;210.210000;0 +20260305 141700;210.213000;210.237000;210.202000;210.234000;0 +20260305 141800;210.234000;210.254000;210.227000;210.249000;0 +20260305 141900;210.248000;210.281000;210.233000;210.280000;0 +20260305 142000;210.282000;210.301000;210.251000;210.259000;0 +20260305 142100;210.258000;210.276000;210.254000;210.261000;0 +20260305 142200;210.262000;210.263000;210.236000;210.247000;0 +20260305 142300;210.246000;210.253000;210.232000;210.247000;0 +20260305 142400;210.250000;210.255000;210.230000;210.234000;0 +20260305 142500;210.232000;210.247000;210.207000;210.209000;0 +20260305 142600;210.218000;210.221000;210.199000;210.212000;0 +20260305 142700;210.212000;210.234000;210.211000;210.219000;0 +20260305 142800;210.219000;210.231000;210.210000;210.220000;0 +20260305 142900;210.220000;210.290000;210.220000;210.285000;0 +20260305 143000;210.286000;210.296000;210.254000;210.254000;0 +20260305 143100;210.260000;210.278000;210.247000;210.276000;0 +20260305 143200;210.276000;210.281000;210.254000;210.274000;0 +20260305 143300;210.274000;210.277000;210.246000;210.246000;0 +20260305 143400;210.248000;210.256000;210.235000;210.243000;0 +20260305 143500;210.240000;210.240000;210.218000;210.226000;0 +20260305 143600;210.226000;210.250000;210.218000;210.218000;0 +20260305 143700;210.222000;210.242000;210.214000;210.241000;0 +20260305 143800;210.241000;210.257000;210.224000;210.233000;0 +20260305 143900;210.231000;210.246000;210.228000;210.236000;0 +20260305 144000;210.236000;210.246000;210.222000;210.241000;0 +20260305 144100;210.242000;210.271000;210.240000;210.266000;0 +20260305 144200;210.264000;210.292000;210.254000;210.273000;0 +20260305 144300;210.274000;210.277000;210.255000;210.261000;0 +20260305 144400;210.263000;210.273000;210.244000;210.254000;0 +20260305 144500;210.257000;210.260000;210.212000;210.248000;0 +20260305 144600;210.246000;210.257000;210.235000;210.253000;0 +20260305 144700;210.252000;210.270000;210.250000;210.261000;0 +20260305 144800;210.261000;210.265000;210.259000;210.263000;0 +20260305 144900;210.269000;210.282000;210.263000;210.266000;0 +20260305 145000;210.270000;210.308000;210.269000;210.307000;0 +20260305 145100;210.309000;210.309000;210.250000;210.250000;0 +20260305 145200;210.247000;210.260000;210.238000;210.250000;0 +20260305 145300;210.249000;210.257000;210.231000;210.254000;0 +20260305 145400;210.250000;210.255000;210.225000;210.226000;0 +20260305 145500;210.223000;210.229000;210.211000;210.223000;0 +20260305 145600;210.224000;210.230000;210.208000;210.221000;0 +20260305 145700;210.220000;210.226000;210.197000;210.197000;0 +20260305 145800;210.194000;210.209000;210.180000;210.200000;0 +20260305 145900;210.200000;210.204000;210.179000;210.201000;0 +20260305 150000;210.197000;210.223000;210.196000;210.223000;0 +20260305 150100;210.222000;210.234000;210.214000;210.231000;0 +20260305 150200;210.231000;210.248000;210.224000;210.240000;0 +20260305 150300;210.241000;210.249000;210.222000;210.222000;0 +20260305 150400;210.220000;210.283000;210.212000;210.273000;0 +20260305 150500;210.273000;210.301000;210.239000;210.266000;0 +20260305 150600;210.269000;210.280000;210.229000;210.255000;0 +20260305 150700;210.250000;210.271000;210.236000;210.238000;0 +20260305 150800;210.240000;210.321000;210.232000;210.309000;0 +20260305 150900;210.310000;210.387000;210.308000;210.360000;0 +20260305 151000;210.357000;210.440000;210.348000;210.421000;0 +20260305 151100;210.417000;210.433000;210.387000;210.399000;0 +20260305 151200;210.403000;210.435000;210.372000;210.393000;0 +20260305 151300;210.395000;210.421000;210.388000;210.399000;0 +20260305 151400;210.397000;210.438000;210.374000;210.429000;0 +20260305 151500;210.434000;210.445000;210.389000;210.397000;0 +20260305 151600;210.395000;210.428000;210.380000;210.395000;0 +20260305 151700;210.388000;210.395000;210.344000;210.370000;0 +20260305 151800;210.368000;210.377000;210.337000;210.377000;0 +20260305 151900;210.374000;210.394000;210.323000;210.328000;0 +20260305 152000;210.327000;210.353000;210.307000;210.316000;0 +20260305 152100;210.316000;210.326000;210.299000;210.322000;0 +20260305 152200;210.321000;210.334000;210.296000;210.304000;0 +20260305 152300;210.306000;210.329000;210.306000;210.321000;0 +20260305 152400;210.325000;210.328000;210.301000;210.312000;0 +20260305 152500;210.307000;210.342000;210.295000;210.301000;0 +20260305 152600;210.303000;210.359000;210.297000;210.354000;0 +20260305 152700;210.358000;210.371000;210.334000;210.362000;0 +20260305 152800;210.369000;210.374000;210.335000;210.345000;0 +20260305 152900;210.340000;210.347000;210.301000;210.332000;0 +20260305 153000;210.332000;210.348000;210.308000;210.340000;0 +20260305 153100;210.338000;210.375000;210.336000;210.358000;0 +20260305 153200;210.356000;210.394000;210.353000;210.383000;0 +20260305 153300;210.386000;210.386000;210.349000;210.352000;0 +20260305 153400;210.354000;210.367000;210.332000;210.339000;0 +20260305 153500;210.338000;210.373000;210.332000;210.369000;0 +20260305 153600;210.369000;210.387000;210.354000;210.368000;0 +20260305 153700;210.371000;210.404000;210.362000;210.380000;0 +20260305 153800;210.377000;210.386000;210.360000;210.373000;0 +20260305 153900;210.376000;210.384000;210.349000;210.383000;0 +20260305 154000;210.380000;210.422000;210.374000;210.421000;0 +20260305 154100;210.423000;210.433000;210.403000;210.420000;0 +20260305 154200;210.422000;210.438000;210.417000;210.427000;0 +20260305 154300;210.430000;210.442000;210.403000;210.419000;0 +20260305 154400;210.417000;210.429000;210.399000;210.420000;0 +20260305 154500;210.426000;210.435000;210.411000;210.417000;0 +20260305 154600;210.413000;210.418000;210.382000;210.395000;0 +20260305 154700;210.394000;210.395000;210.374000;210.375000;0 +20260305 154800;210.375000;210.416000;210.372000;210.399000;0 +20260305 154900;210.401000;210.408000;210.391000;210.406000;0 +20260305 155000;210.407000;210.443000;210.407000;210.439000;0 +20260305 155100;210.442000;210.453000;210.415000;210.433000;0 +20260305 155200;210.437000;210.437000;210.414000;210.426000;0 +20260305 155300;210.424000;210.440000;210.406000;210.432000;0 +20260305 155400;210.428000;210.455000;210.425000;210.450000;0 +20260305 155500;210.451000;210.451000;210.423000;210.430000;0 +20260305 155600;210.437000;210.449000;210.422000;210.437000;0 +20260305 155700;210.436000;210.460000;210.430000;210.459000;0 +20260305 155800;210.462000;210.462000;210.436000;210.442000;0 +20260305 155900;210.439000;210.448000;210.429000;210.434000;0 +20260305 160000;210.436000;210.454000;210.421000;210.433000;0 +20260305 160100;210.433000;210.437000;210.419000;210.420000;0 +20260305 160200;210.421000;210.460000;210.421000;210.445000;0 +20260305 160300;210.447000;210.458000;210.431000;210.445000;0 +20260305 160400;210.444000;210.445000;210.417000;210.425000;0 +20260305 160500;210.423000;210.452000;210.414000;210.452000;0 +20260305 160600;210.452000;210.460000;210.438000;210.445000;0 +20260305 160700;210.445000;210.451000;210.432000;210.449000;0 +20260305 160800;210.453000;210.453000;210.421000;210.433000;0 +20260305 160900;210.433000;210.461000;210.431000;210.456000;0 +20260305 161000;210.455000;210.470000;210.438000;210.466000;0 +20260305 161100;210.463000;210.463000;210.426000;210.433000;0 +20260305 161200;210.435000;210.443000;210.407000;210.409000;0 +20260305 161300;210.411000;210.430000;210.408000;210.419000;0 +20260305 161400;210.421000;210.426000;210.404000;210.416000;0 +20260305 161500;210.417000;210.418000;210.400000;210.405000;0 +20260305 161600;210.414000;210.423000;210.410000;210.420000;0 +20260305 161700;210.419000;210.420000;210.404000;210.408000;0 +20260305 161800;210.404000;210.422000;210.400000;210.411000;0 +20260305 161900;210.408000;210.420000;210.393000;210.400000;0 +20260305 162000;210.400000;210.418000;210.388000;210.395000;0 +20260305 162100;210.398000;210.403000;210.394000;210.396000;0 +20260305 162200;210.400000;210.406000;210.379000;210.379000;0 +20260305 162300;210.383000;210.387000;210.380000;210.385000;0 +20260305 162400;210.385000;210.401000;210.383000;210.395000;0 +20260305 162500;210.397000;210.397000;210.377000;210.383000;0 +20260305 162600;210.383000;210.392000;210.378000;210.389000;0 +20260305 162700;210.391000;210.391000;210.380000;210.385000;0 +20260305 162800;210.383000;210.398000;210.377000;210.392000;0 +20260305 162900;210.392000;210.393000;210.359000;210.381000;0 +20260305 163000;210.376000;210.391000;210.348000;210.356000;0 +20260305 163100;210.358000;210.376000;210.356000;210.361000;0 +20260305 163200;210.360000;210.390000;210.359000;210.375000;0 +20260305 163300;210.374000;210.404000;210.371000;210.385000;0 +20260305 163400;210.383000;210.384000;210.372000;210.375000;0 +20260305 163500;210.376000;210.382000;210.368000;210.380000;0 +20260305 163600;210.382000;210.394000;210.377000;210.390000;0 +20260305 163700;210.388000;210.409000;210.383000;210.396000;0 +20260305 163800;210.396000;210.408000;210.391000;210.401000;0 +20260305 163900;210.399000;210.414000;210.396000;210.411000;0 +20260305 164000;210.420000;210.429000;210.418000;210.429000;0 +20260305 164100;210.429000;210.432000;210.417000;210.430000;0 +20260305 164200;210.432000;210.445000;210.425000;210.430000;0 +20260305 164300;210.429000;210.434000;210.414000;210.418000;0 +20260305 164400;210.420000;210.439000;210.420000;210.438000;0 +20260305 164500;210.433000;210.436000;210.418000;210.434000;0 +20260305 164600;210.433000;210.441000;210.422000;210.428000;0 +20260305 164700;210.428000;210.440000;210.428000;210.431000;0 +20260305 164800;210.433000;210.444000;210.420000;210.430000;0 +20260305 164900;210.428000;210.436000;210.422000;210.424000;0 +20260305 165000;210.426000;210.445000;210.419000;210.445000;0 +20260305 165100;210.443000;210.447000;210.428000;210.444000;0 +20260305 165200;210.436000;210.447000;210.428000;210.443000;0 +20260305 165300;210.444000;210.458000;210.436000;210.452000;0 +20260305 165400;210.452000;210.476000;210.452000;210.463000;0 +20260305 165500;210.460000;210.465000;210.438000;210.439000;0 +20260305 165600;210.450000;210.455000;210.438000;210.450000;0 +20260305 165700;210.455000;210.459000;210.436000;210.445000;0 +20260305 165800;210.443000;210.467000;210.436000;210.445000;0 +20260305 165900;210.445000;210.450000;210.436000;210.436000;0 +20260305 170700;210.123000;210.123000;210.123000;210.123000;0 +20260305 170800;210.123000;210.124000;210.115000;210.115000;0 +20260305 170900;210.115000;210.116000;210.111000;210.112000;0 +20260305 171000;210.111000;210.180000;210.111000;210.153000;0 +20260305 171100;210.153000;210.153000;209.951000;210.104000;0 +20260305 171200;210.089000;210.089000;210.081000;210.081000;0 +20260305 171300;210.082000;210.198000;210.077000;210.189000;0 +20260305 171400;210.189000;210.259000;210.167000;210.259000;0 +20260305 171500;210.259000;210.278000;210.254000;210.265000;0 +20260305 171600;210.262000;210.326000;210.256000;210.260000;0 +20260305 171700;210.253000;210.301000;210.253000;210.290000;0 +20260305 171800;210.295000;210.314000;210.228000;210.228000;0 +20260305 171900;210.238000;210.241000;210.232000;210.237000;0 +20260305 172000;210.242000;210.260000;210.166000;210.166000;0 +20260305 172100;210.165000;210.212000;210.165000;210.204000;0 +20260305 172200;210.207000;210.207000;210.179000;210.179000;0 +20260305 172300;210.193000;210.272000;210.191000;210.272000;0 +20260305 172400;210.272000;210.294000;210.257000;210.292000;0 +20260305 172500;210.290000;210.375000;210.258000;210.277000;0 +20260305 172600;210.288000;210.289000;210.278000;210.279000;0 +20260305 172700;210.276000;210.276000;210.276000;210.276000;0 +20260305 172800;210.277000;210.288000;210.276000;210.276000;0 +20260305 172900;210.277000;210.298000;210.262000;210.274000;0 +20260305 173000;210.288000;210.307000;210.274000;210.293000;0 +20260305 173100;210.285000;210.304000;210.284000;210.285000;0 +20260305 173200;210.287000;210.304000;210.264000;210.268000;0 +20260305 173300;210.261000;210.276000;210.251000;210.260000;0 +20260305 173400;210.259000;210.287000;210.259000;210.277000;0 +20260305 173500;210.278000;210.295000;210.275000;210.291000;0 +20260305 173600;210.287000;210.293000;210.272000;210.274000;0 +20260305 173700;210.273000;210.289000;210.271000;210.271000;0 +20260305 173800;210.275000;210.295000;210.248000;210.248000;0 +20260305 173900;210.249000;210.259000;210.245000;210.246000;0 +20260305 174000;210.247000;210.303000;210.216000;210.244000;0 +20260305 174100;210.244000;210.296000;210.239000;210.251000;0 +20260305 174200;210.248000;210.268000;210.245000;210.255000;0 +20260305 174300;210.248000;210.261000;210.237000;210.261000;0 +20260305 174400;210.260000;210.288000;210.255000;210.258000;0 +20260305 174500;210.258000;210.338000;210.258000;210.305000;0 +20260305 174600;210.306000;210.363000;210.302000;210.315000;0 +20260305 174700;210.314000;210.394000;210.314000;210.352000;0 +20260305 174800;210.351000;210.361000;210.305000;210.336000;0 +20260305 174900;210.334000;210.351000;210.323000;210.338000;0 +20260305 175000;210.352000;210.352000;210.318000;210.318000;0 +20260305 175100;210.321000;210.335000;210.310000;210.324000;0 +20260305 175200;210.324000;210.369000;210.308000;210.334000;0 +20260305 175300;210.334000;210.354000;210.278000;210.311000;0 +20260305 175400;210.312000;210.343000;210.303000;210.325000;0 +20260305 175500;210.332000;210.332000;210.246000;210.302000;0 +20260305 175600;210.303000;210.303000;210.216000;210.275000;0 +20260305 175700;210.257000;210.287000;210.233000;210.279000;0 +20260305 175800;210.287000;210.299000;210.226000;210.259000;0 +20260305 175900;210.258000;210.286000;210.255000;210.286000;0 +20260305 180000;210.286000;210.343000;210.263000;210.331000;0 +20260305 180100;210.331000;210.332000;210.218000;210.307000;0 +20260305 180200;210.251000;210.319000;210.222000;210.261000;0 +20260305 180300;210.261000;210.320000;210.243000;210.306000;0 +20260305 180400;210.306000;210.424000;210.283000;210.360000;0 +20260305 180500;210.361000;210.361000;210.310000;210.330000;0 +20260305 180600;210.316000;210.382000;210.314000;210.369000;0 +20260305 180700;210.355000;210.355000;210.346000;210.352000;0 +20260305 180800;210.361000;210.363000;210.349000;210.355000;0 +20260305 180900;210.361000;210.401000;210.361000;210.393000;0 +20260305 181000;210.393000;210.394000;210.353000;210.359000;0 +20260305 181100;210.366000;210.366000;210.353000;210.362000;0 +20260305 181200;210.362000;210.375000;210.343000;210.374000;0 +20260305 181300;210.373000;210.380000;210.368000;210.378000;0 +20260305 181400;210.378000;210.380000;210.376000;210.376000;0 +20260305 181500;210.376000;210.393000;210.371000;210.383000;0 +20260305 181600;210.383000;210.386000;210.377000;210.384000;0 +20260305 181700;210.380000;210.386000;210.369000;210.380000;0 +20260305 181800;210.378000;210.444000;210.371000;210.443000;0 +20260305 181900;210.443000;210.460000;210.430000;210.437000;0 +20260305 182000;210.437000;210.446000;210.424000;210.434000;0 +20260305 182100;210.434000;210.453000;210.432000;210.447000;0 +20260305 182200;210.449000;210.451000;210.446000;210.446000;0 +20260305 182300;210.446000;210.470000;210.446000;210.470000;0 +20260305 182400;210.469000;210.472000;210.458000;210.464000;0 +20260305 182500;210.463000;210.468000;210.442000;210.459000;0 +20260305 182600;210.458000;210.469000;210.452000;210.465000;0 +20260305 182700;210.466000;210.466000;210.452000;210.455000;0 +20260305 182800;210.455000;210.468000;210.451000;210.468000;0 +20260305 182900;210.467000;210.475000;210.459000;210.474000;0 +20260305 183000;210.468000;210.487000;210.462000;210.470000;0 +20260305 183100;210.470000;210.494000;210.468000;210.490000;0 +20260305 183200;210.491000;210.491000;210.459000;210.460000;0 +20260305 183300;210.462000;210.476000;210.454000;210.461000;0 +20260305 183400;210.463000;210.473000;210.449000;210.456000;0 +20260305 183500;210.450000;210.461000;210.444000;210.447000;0 +20260305 183600;210.444000;210.453000;210.437000;210.437000;0 +20260305 183700;210.433000;210.437000;210.414000;210.422000;0 +20260305 183800;210.421000;210.433000;210.408000;210.420000;0 +20260305 183900;210.421000;210.429000;210.412000;210.415000;0 +20260305 184000;210.410000;210.412000;210.402000;210.402000;0 +20260305 184100;210.405000;210.428000;210.405000;210.417000;0 +20260305 184200;210.416000;210.427000;210.407000;210.417000;0 +20260305 184300;210.417000;210.418000;210.410000;210.417000;0 +20260305 184400;210.417000;210.432000;210.396000;210.403000;0 +20260305 184500;210.403000;210.409000;210.387000;210.390000;0 +20260305 184600;210.392000;210.403000;210.367000;210.375000;0 +20260305 184700;210.375000;210.381000;210.365000;210.368000;0 +20260305 184800;210.369000;210.386000;210.368000;210.374000;0 +20260305 184900;210.375000;210.384000;210.358000;210.361000;0 +20260305 185000;210.358000;210.364000;210.336000;210.355000;0 +20260305 185100;210.352000;210.368000;210.348000;210.358000;0 +20260305 185200;210.360000;210.383000;210.360000;210.373000;0 +20260305 185300;210.372000;210.378000;210.369000;210.378000;0 +20260305 185400;210.381000;210.386000;210.375000;210.384000;0 +20260305 185500;210.385000;210.396000;210.379000;210.390000;0 +20260305 185600;210.394000;210.408000;210.392000;210.395000;0 +20260305 185700;210.397000;210.416000;210.390000;210.412000;0 +20260305 185800;210.412000;210.440000;210.408000;210.428000;0 +20260305 185900;210.428000;210.448000;210.417000;210.435000;0 +20260305 190000;210.435000;210.436000;210.290000;210.301000;0 +20260305 190100;210.304000;210.388000;210.256000;210.374000;0 +20260305 190200;210.373000;210.406000;210.370000;210.378000;0 +20260305 190300;210.380000;210.405000;210.374000;210.382000;0 +20260305 190400;210.384000;210.407000;210.347000;210.389000;0 +20260305 190500;210.391000;210.435000;210.373000;210.433000;0 +20260305 190600;210.430000;210.449000;210.415000;210.446000;0 +20260305 190700;210.445000;210.451000;210.427000;210.441000;0 +20260305 190800;210.440000;210.457000;210.439000;210.454000;0 +20260305 190900;210.452000;210.456000;210.430000;210.435000;0 +20260305 191000;210.437000;210.460000;210.432000;210.438000;0 +20260305 191100;210.437000;210.458000;210.436000;210.452000;0 +20260305 191200;210.451000;210.493000;210.448000;210.448000;0 +20260305 191300;210.448000;210.474000;210.447000;210.464000;0 +20260305 191400;210.465000;210.491000;210.464000;210.474000;0 +20260305 191500;210.474000;210.482000;210.459000;210.465000;0 +20260305 191600;210.470000;210.510000;210.464000;210.510000;0 +20260305 191700;210.510000;210.511000;210.465000;210.467000;0 +20260305 191800;210.471000;210.496000;210.453000;210.470000;0 +20260305 191900;210.470000;210.488000;210.468000;210.484000;0 +20260305 192000;210.483000;210.492000;210.469000;210.492000;0 +20260305 192100;210.490000;210.506000;210.466000;210.505000;0 +20260305 192200;210.497000;210.508000;210.470000;210.479000;0 +20260305 192300;210.479000;210.479000;210.435000;210.437000;0 +20260305 192400;210.433000;210.440000;210.417000;210.428000;0 +20260305 192500;210.428000;210.441000;210.418000;210.421000;0 +20260305 192600;210.419000;210.437000;210.412000;210.422000;0 +20260305 192700;210.425000;210.425000;210.408000;210.412000;0 +20260305 192800;210.412000;210.430000;210.399000;210.428000;0 +20260305 192900;210.437000;210.442000;210.413000;210.431000;0 +20260305 193000;210.431000;210.466000;210.431000;210.435000;0 +20260305 193100;210.434000;210.442000;210.423000;210.435000;0 +20260305 193200;210.442000;210.445000;210.430000;210.440000;0 +20260305 193300;210.440000;210.449000;210.430000;210.443000;0 +20260305 193400;210.442000;210.446000;210.423000;210.425000;0 +20260305 193500;210.425000;210.435000;210.403000;210.408000;0 +20260305 193600;210.409000;210.429000;210.397000;210.424000;0 +20260305 193700;210.424000;210.430000;210.417000;210.418000;0 +20260305 193800;210.418000;210.439000;210.404000;210.429000;0 +20260305 193900;210.429000;210.437000;210.418000;210.429000;0 +20260305 194000;210.429000;210.440000;210.417000;210.428000;0 +20260305 194100;210.429000;210.442000;210.414000;210.442000;0 +20260305 194200;210.439000;210.448000;210.425000;210.429000;0 +20260305 194300;210.431000;210.437000;210.412000;210.413000;0 +20260305 194400;210.412000;210.435000;210.412000;210.431000;0 +20260305 194500;210.432000;210.435000;210.419000;210.428000;0 +20260305 194600;210.426000;210.462000;210.425000;210.457000;0 +20260305 194700;210.457000;210.457000;210.430000;210.437000;0 +20260305 194800;210.439000;210.446000;210.421000;210.421000;0 +20260305 194900;210.422000;210.427000;210.399000;210.417000;0 +20260305 195000;210.416000;210.417000;210.371000;210.386000;0 +20260305 195100;210.388000;210.395000;210.365000;210.370000;0 +20260305 195200;210.368000;210.384000;210.349000;210.355000;0 +20260305 195300;210.359000;210.380000;210.317000;210.362000;0 +20260305 195400;210.367000;210.400000;210.290000;210.307000;0 +20260305 195500;210.305000;210.384000;210.305000;210.370000;0 +20260305 195600;210.371000;210.390000;210.360000;210.386000;0 +20260305 195700;210.385000;210.406000;210.349000;210.349000;0 +20260305 195800;210.350000;210.370000;210.345000;210.355000;0 +20260305 195900;210.353000;210.363000;210.321000;210.362000;0 +20260305 200000;210.362000;210.382000;210.343000;210.379000;0 +20260305 200100;210.379000;210.401000;210.357000;210.401000;0 +20260305 200200;210.401000;210.462000;210.390000;210.453000;0 +20260305 200300;210.455000;210.470000;210.447000;210.460000;0 +20260305 200400;210.463000;210.481000;210.448000;210.470000;0 +20260305 200500;210.469000;210.512000;210.464000;210.484000;0 +20260305 200600;210.484000;210.497000;210.463000;210.469000;0 +20260305 200700;210.470000;210.478000;210.451000;210.452000;0 +20260305 200800;210.451000;210.452000;210.416000;210.431000;0 +20260305 200900;210.428000;210.462000;210.428000;210.444000;0 +20260305 201000;210.444000;210.466000;210.428000;210.449000;0 +20260305 201100;210.447000;210.459000;210.432000;210.453000;0 +20260305 201200;210.454000;210.512000;210.449000;210.483000;0 +20260305 201300;210.488000;210.505000;210.482000;210.503000;0 +20260305 201400;210.498000;210.499000;210.483000;210.494000;0 +20260305 201500;210.499000;210.519000;210.482000;210.513000;0 +20260305 201600;210.512000;210.526000;210.495000;210.495000;0 +20260305 201700;210.493000;210.494000;210.473000;210.483000;0 +20260305 201800;210.481000;210.498000;210.476000;210.479000;0 +20260305 201900;210.479000;210.487000;210.469000;210.470000;0 +20260305 202000;210.470000;210.491000;210.469000;210.484000;0 +20260305 202100;210.484000;210.488000;210.461000;210.473000;0 +20260305 202200;210.471000;210.483000;210.449000;210.479000;0 +20260305 202300;210.479000;210.482000;210.450000;210.460000;0 +20260305 202400;210.463000;210.487000;210.463000;210.477000;0 +20260305 202500;210.477000;210.494000;210.477000;210.478000;0 +20260305 202600;210.478000;210.479000;210.457000;210.462000;0 +20260305 202700;210.463000;210.463000;210.443000;210.458000;0 +20260305 202800;210.454000;210.454000;210.433000;210.433000;0 +20260305 202900;210.432000;210.465000;210.429000;210.461000;0 +20260305 203000;210.465000;210.527000;210.463000;210.511000;0 +20260305 203100;210.511000;210.532000;210.505000;210.520000;0 +20260305 203200;210.517000;210.547000;210.514000;210.529000;0 +20260305 203300;210.530000;210.530000;210.489000;210.491000;0 +20260305 203400;210.491000;210.553000;210.488000;210.547000;0 +20260305 203500;210.545000;210.565000;210.467000;210.481000;0 +20260305 203600;210.482000;210.509000;210.452000;210.488000;0 +20260305 203700;210.484000;210.533000;210.483000;210.501000;0 +20260305 203800;210.501000;210.512000;210.474000;210.501000;0 +20260305 203900;210.501000;210.516000;210.486000;210.499000;0 +20260305 204000;210.501000;210.523000;210.500000;210.519000;0 +20260305 204100;210.517000;210.517000;210.482000;210.486000;0 +20260305 204200;210.486000;210.498000;210.451000;210.470000;0 +20260305 204300;210.470000;210.501000;210.457000;210.494000;0 +20260305 204400;210.493000;210.493000;210.474000;210.479000;0 +20260305 204500;210.480000;210.490000;210.472000;210.480000;0 +20260305 204600;210.481000;210.495000;210.449000;210.469000;0 +20260305 204700;210.469000;210.473000;210.442000;210.442000;0 +20260305 204800;210.446000;210.454000;210.433000;210.445000;0 +20260305 204900;210.444000;210.444000;210.430000;210.437000;0 +20260305 205000;210.434000;210.448000;210.431000;210.440000;0 +20260305 205100;210.439000;210.458000;210.429000;210.453000;0 +20260305 205200;210.455000;210.483000;210.453000;210.463000;0 +20260305 205300;210.464000;210.475000;210.456000;210.473000;0 +20260305 205400;210.475000;210.477000;210.442000;210.457000;0 +20260305 205500;210.454000;210.482000;210.454000;210.475000;0 +20260305 205600;210.478000;210.512000;210.478000;210.500000;0 +20260305 205700;210.500000;210.525000;210.485000;210.492000;0 +20260305 205800;210.495000;210.496000;210.447000;210.450000;0 +20260305 205900;210.450000;210.473000;210.448000;210.467000;0 +20260305 210000;210.466000;210.497000;210.463000;210.496000;0 +20260305 210100;210.496000;210.542000;210.495000;210.527000;0 +20260305 210200;210.530000;210.572000;210.525000;210.572000;0 +20260305 210300;210.571000;210.582000;210.554000;210.562000;0 +20260305 210400;210.560000;210.585000;210.560000;210.583000;0 +20260305 210500;210.584000;210.594000;210.563000;210.565000;0 +20260305 210600;210.565000;210.580000;210.559000;210.564000;0 +20260305 210700;210.565000;210.569000;210.542000;210.546000;0 +20260305 210800;210.546000;210.548000;210.535000;210.537000;0 +20260305 210900;210.551000;210.551000;210.524000;210.532000;0 +20260305 211000;210.534000;210.548000;210.521000;210.542000;0 +20260305 211100;210.543000;210.559000;210.541000;210.549000;0 +20260305 211200;210.551000;210.580000;210.549000;210.573000;0 +20260305 211300;210.581000;210.591000;210.572000;210.582000;0 +20260305 211400;210.583000;210.587000;210.566000;210.579000;0 +20260305 211500;210.577000;210.583000;210.534000;210.548000;0 +20260305 211600;210.546000;210.557000;210.520000;210.527000;0 +20260305 211700;210.528000;210.557000;210.527000;210.534000;0 +20260305 211800;210.536000;210.549000;210.530000;210.534000;0 +20260305 211900;210.535000;210.546000;210.524000;210.544000;0 +20260305 212000;210.544000;210.544000;210.519000;210.524000;0 +20260305 212100;210.522000;210.522000;210.512000;210.519000;0 +20260305 212200;210.520000;210.531000;210.509000;210.518000;0 +20260305 212300;210.519000;210.543000;210.517000;210.517000;0 +20260305 212400;210.519000;210.533000;210.516000;210.532000;0 +20260305 212500;210.528000;210.539000;210.516000;210.523000;0 +20260305 212600;210.523000;210.539000;210.519000;210.536000;0 +20260305 212700;210.538000;210.540000;210.521000;210.523000;0 +20260305 212800;210.527000;210.558000;210.524000;210.555000;0 +20260305 212900;210.555000;210.579000;210.548000;210.574000;0 +20260305 213000;210.574000;210.585000;210.559000;210.559000;0 +20260305 213100;210.561000;210.575000;210.551000;210.556000;0 +20260305 213200;210.550000;210.564000;210.519000;210.534000;0 +20260305 213300;210.535000;210.551000;210.531000;210.538000;0 +20260305 213400;210.539000;210.565000;210.534000;210.558000;0 +20260305 213500;210.557000;210.564000;210.537000;210.542000;0 +20260305 213600;210.543000;210.548000;210.535000;210.539000;0 +20260305 213700;210.540000;210.550000;210.535000;210.539000;0 +20260305 213800;210.539000;210.541000;210.525000;210.538000;0 +20260305 213900;210.538000;210.538000;210.516000;210.522000;0 +20260305 214000;210.524000;210.532000;210.521000;210.523000;0 +20260305 214100;210.521000;210.542000;210.521000;210.535000;0 +20260305 214200;210.535000;210.535000;210.522000;210.529000;0 +20260305 214300;210.528000;210.534000;210.501000;210.508000;0 +20260305 214400;210.507000;210.507000;210.491000;210.493000;0 +20260305 214500;210.493000;210.529000;210.493000;210.519000;0 +20260305 214600;210.518000;210.521000;210.514000;210.516000;0 +20260305 214700;210.514000;210.526000;210.502000;210.517000;0 +20260305 214800;210.517000;210.537000;210.506000;210.535000;0 +20260305 214900;210.536000;210.543000;210.522000;210.528000;0 +20260305 215000;210.526000;210.534000;210.502000;210.502000;0 +20260305 215100;210.504000;210.524000;210.504000;210.515000;0 +20260305 215200;210.514000;210.521000;210.509000;210.519000;0 +20260305 215300;210.514000;210.523000;210.506000;210.515000;0 +20260305 215400;210.517000;210.517000;210.494000;210.494000;0 +20260305 215500;210.494000;210.513000;210.494000;210.499000;0 +20260305 215600;210.501000;210.505000;210.492000;210.501000;0 +20260305 215700;210.496000;210.509000;210.494000;210.504000;0 +20260305 215800;210.503000;210.510000;210.488000;210.498000;0 +20260305 215900;210.501000;210.508000;210.489000;210.507000;0 +20260305 220000;210.504000;210.536000;210.503000;210.535000;0 +20260305 220100;210.537000;210.537000;210.512000;210.520000;0 +20260305 220200;210.517000;210.530000;210.513000;210.530000;0 +20260305 220300;210.528000;210.529000;210.504000;210.512000;0 +20260305 220400;210.512000;210.532000;210.508000;210.519000;0 +20260305 220500;210.518000;210.529000;210.513000;210.527000;0 +20260305 220600;210.529000;210.531000;210.519000;210.525000;0 +20260305 220700;210.523000;210.532000;210.513000;210.516000;0 +20260305 220800;210.515000;210.527000;210.511000;210.515000;0 +20260305 220900;210.515000;210.518000;210.505000;210.505000;0 +20260305 221000;210.508000;210.513000;210.506000;210.508000;0 +20260305 221100;210.507000;210.512000;210.500000;210.512000;0 +20260305 221200;210.509000;210.517000;210.485000;210.489000;0 +20260305 221300;210.492000;210.498000;210.487000;210.489000;0 +20260305 221400;210.487000;210.487000;210.473000;210.476000;0 +20260305 221500;210.477000;210.477000;210.464000;210.472000;0 +20260305 221600;210.471000;210.489000;210.471000;210.489000;0 +20260305 221700;210.497000;210.516000;210.495000;210.515000;0 +20260305 221800;210.513000;210.513000;210.491000;210.509000;0 +20260305 221900;210.510000;210.523000;210.506000;210.520000;0 +20260305 222000;210.523000;210.535000;210.513000;210.535000;0 +20260305 222100;210.536000;210.540000;210.530000;210.533000;0 +20260305 222200;210.532000;210.542000;210.525000;210.528000;0 +20260305 222300;210.535000;210.556000;210.535000;210.553000;0 +20260305 222400;210.554000;210.563000;210.541000;210.541000;0 +20260305 222500;210.544000;210.544000;210.534000;210.538000;0 +20260305 222600;210.538000;210.540000;210.526000;210.526000;0 +20260305 222700;210.525000;210.534000;210.524000;210.528000;0 +20260305 222800;210.528000;210.542000;210.519000;210.538000;0 +20260305 222900;210.540000;210.551000;210.536000;210.549000;0 +20260305 223000;210.550000;210.556000;210.543000;210.555000;0 +20260305 223100;210.553000;210.561000;210.523000;210.526000;0 +20260305 223200;210.528000;210.528000;210.512000;210.526000;0 +20260305 223300;210.529000;210.530000;210.512000;210.522000;0 +20260305 223400;210.518000;210.534000;210.514000;210.526000;0 +20260305 223500;210.525000;210.531000;210.518000;210.528000;0 +20260305 223600;210.530000;210.549000;210.530000;210.532000;0 +20260305 223700;210.530000;210.534000;210.522000;210.526000;0 +20260305 223800;210.528000;210.528000;210.496000;210.497000;0 +20260305 223900;210.499000;210.514000;210.495000;210.510000;0 +20260305 224000;210.508000;210.526000;210.507000;210.523000;0 +20260305 224100;210.523000;210.539000;210.522000;210.530000;0 +20260305 224200;210.539000;210.540000;210.524000;210.531000;0 +20260305 224300;210.532000;210.533000;210.523000;210.529000;0 +20260305 224400;210.527000;210.538000;210.522000;210.526000;0 +20260305 224500;210.527000;210.534000;210.523000;210.534000;0 +20260305 224600;210.535000;210.553000;210.526000;210.548000;0 +20260305 224700;210.549000;210.573000;210.540000;210.573000;0 +20260305 224800;210.573000;210.591000;210.572000;210.577000;0 +20260305 224900;210.577000;210.588000;210.572000;210.574000;0 +20260305 225000;210.572000;210.579000;210.565000;210.578000;0 +20260305 225100;210.578000;210.583000;210.563000;210.563000;0 +20260305 225200;210.568000;210.572000;210.557000;210.567000;0 +20260305 225300;210.566000;210.568000;210.560000;210.560000;0 +20260305 225400;210.559000;210.560000;210.553000;210.555000;0 +20260305 225500;210.552000;210.557000;210.550000;210.555000;0 +20260305 225600;210.554000;210.565000;210.553000;210.564000;0 +20260305 225700;210.564000;210.572000;210.563000;210.565000;0 +20260305 225800;210.564000;210.569000;210.559000;210.569000;0 +20260305 225900;210.566000;210.588000;210.566000;210.587000;0 +20260305 230000;210.588000;210.592000;210.569000;210.569000;0 +20260305 230100;210.571000;210.587000;210.571000;210.584000;0 +20260305 230200;210.585000;210.585000;210.582000;210.582000;0 +20260305 230300;210.582000;210.597000;210.577000;210.597000;0 +20260305 230400;210.595000;210.596000;210.588000;210.588000;0 +20260305 230500;210.592000;210.607000;210.592000;210.596000;0 +20260305 230600;210.598000;210.618000;210.594000;210.616000;0 +20260305 230700;210.615000;210.623000;210.598000;210.598000;0 +20260305 230800;210.598000;210.600000;210.589000;210.598000;0 +20260305 230900;210.601000;210.635000;210.601000;210.633000;0 +20260305 231000;210.637000;210.638000;210.605000;210.608000;0 +20260305 231100;210.605000;210.606000;210.595000;210.600000;0 +20260305 231200;210.601000;210.611000;210.596000;210.598000;0 +20260305 231300;210.599000;210.600000;210.588000;210.588000;0 +20260305 231400;210.588000;210.592000;210.578000;210.582000;0 +20260305 231500;210.582000;210.613000;210.581000;210.604000;0 +20260305 231600;210.604000;210.604000;210.594000;210.600000;0 +20260305 231700;210.602000;210.648000;210.600000;210.622000;0 +20260305 231800;210.620000;210.621000;210.584000;210.616000;0 +20260305 231900;210.613000;210.631000;210.612000;210.628000;0 +20260305 232000;210.625000;210.632000;210.607000;210.607000;0 +20260305 232100;210.607000;210.618000;210.594000;210.613000;0 +20260305 232200;210.613000;210.615000;210.602000;210.608000;0 +20260305 232300;210.609000;210.615000;210.607000;210.612000;0 +20260305 232400;210.615000;210.619000;210.612000;210.616000;0 +20260305 232500;210.616000;210.627000;210.615000;210.627000;0 +20260305 232600;210.629000;210.634000;210.623000;210.626000;0 +20260305 232700;210.626000;210.631000;210.623000;210.629000;0 +20260305 232800;210.627000;210.639000;210.627000;210.638000;0 +20260305 232900;210.638000;210.651000;210.634000;210.645000;0 +20260305 233000;210.644000;210.651000;210.644000;210.649000;0 +20260305 233100;210.649000;210.652000;210.634000;210.639000;0 +20260305 233200;210.640000;210.644000;210.636000;210.642000;0 +20260305 233300;210.644000;210.663000;210.644000;210.650000;0 +20260305 233400;210.649000;210.651000;210.645000;210.646000;0 +20260305 233500;210.645000;210.652000;210.631000;210.649000;0 +20260305 233600;210.650000;210.654000;210.643000;210.653000;0 +20260305 233700;210.648000;210.654000;210.641000;210.644000;0 +20260305 233800;210.643000;210.648000;210.634000;210.645000;0 +20260305 233900;210.643000;210.656000;210.643000;210.651000;0 +20260305 234000;210.650000;210.657000;210.641000;210.652000;0 +20260305 234100;210.653000;210.667000;210.653000;210.663000;0 +20260305 234200;210.664000;210.677000;210.662000;210.672000;0 +20260305 234300;210.674000;210.676000;210.660000;210.660000;0 +20260305 234400;210.660000;210.666000;210.651000;210.661000;0 +20260305 234500;210.660000;210.672000;210.658000;210.664000;0 +20260305 234600;210.666000;210.708000;210.665000;210.701000;0 +20260305 234700;210.704000;210.711000;210.693000;210.693000;0 +20260305 234800;210.693000;210.699000;210.689000;210.698000;0 +20260305 234900;210.702000;210.709000;210.699000;210.703000;0 +20260305 235000;210.704000;210.708000;210.693000;210.695000;0 +20260305 235100;210.697000;210.708000;210.684000;210.703000;0 +20260305 235200;210.701000;210.708000;210.696000;210.705000;0 +20260305 235300;210.706000;210.721000;210.690000;210.711000;0 +20260305 235400;210.709000;210.720000;210.706000;210.706000;0 +20260305 235500;210.703000;210.725000;210.701000;210.714000;0 +20260305 235600;210.719000;210.720000;210.706000;210.714000;0 +20260305 235700;210.714000;210.715000;210.684000;210.687000;0 +20260305 235800;210.686000;210.691000;210.669000;210.673000;0 +20260305 235900;210.675000;210.696000;210.674000;210.682000;0 +20260306 000000;210.681000;210.693000;210.674000;210.685000;0 +20260306 000100;210.686000;210.695000;210.682000;210.683000;0 +20260306 000200;210.681000;210.695000;210.670000;210.694000;0 +20260306 000300;210.692000;210.714000;210.691000;210.706000;0 +20260306 000400;210.702000;210.708000;210.695000;210.700000;0 +20260306 000500;210.701000;210.738000;210.700000;210.731000;0 +20260306 000600;210.733000;210.743000;210.731000;210.735000;0 +20260306 000700;210.736000;210.749000;210.736000;210.749000;0 +20260306 000800;210.751000;210.764000;210.736000;210.744000;0 +20260306 000900;210.744000;210.785000;210.739000;210.780000;0 +20260306 001000;210.780000;210.787000;210.778000;210.784000;0 +20260306 001100;210.783000;210.786000;210.777000;210.782000;0 +20260306 001200;210.784000;210.791000;210.768000;210.777000;0 +20260306 001300;210.774000;210.777000;210.754000;210.767000;0 +20260306 001400;210.767000;210.768000;210.752000;210.761000;0 +20260306 001500;210.760000;210.785000;210.758000;210.782000;0 +20260306 001600;210.780000;210.787000;210.770000;210.778000;0 +20260306 001700;210.777000;210.787000;210.777000;210.785000;0 +20260306 001800;210.788000;210.804000;210.775000;210.791000;0 +20260306 001900;210.792000;210.802000;210.785000;210.801000;0 +20260306 002000;210.799000;210.803000;210.782000;210.783000;0 +20260306 002100;210.783000;210.799000;210.780000;210.780000;0 +20260306 002200;210.779000;210.806000;210.777000;210.799000;0 +20260306 002300;210.800000;210.811000;210.796000;210.803000;0 +20260306 002400;210.804000;210.814000;210.787000;210.797000;0 +20260306 002500;210.800000;210.819000;210.795000;210.819000;0 +20260306 002600;210.816000;210.819000;210.804000;210.806000;0 +20260306 002700;210.810000;210.820000;210.804000;210.804000;0 +20260306 002800;210.802000;210.834000;210.800000;210.816000;0 +20260306 002900;210.816000;210.845000;210.815000;210.834000;0 +20260306 003000;210.836000;210.842000;210.827000;210.828000;0 +20260306 003100;210.827000;210.829000;210.789000;210.797000;0 +20260306 003200;210.797000;210.805000;210.783000;210.792000;0 +20260306 003300;210.793000;210.805000;210.793000;210.797000;0 +20260306 003400;210.798000;210.802000;210.780000;210.781000;0 +20260306 003500;210.780000;210.783000;210.767000;210.771000;0 +20260306 003600;210.773000;210.783000;210.756000;210.779000;0 +20260306 003700;210.782000;210.802000;210.782000;210.784000;0 +20260306 003800;210.791000;210.793000;210.776000;210.782000;0 +20260306 003900;210.784000;210.802000;210.770000;210.801000;0 +20260306 004000;210.800000;210.805000;210.772000;210.774000;0 +20260306 004100;210.774000;210.777000;210.748000;210.748000;0 +20260306 004200;210.750000;210.774000;210.747000;210.765000;0 +20260306 004300;210.766000;210.783000;210.749000;210.749000;0 +20260306 004400;210.750000;210.788000;210.750000;210.785000;0 +20260306 004500;210.785000;210.786000;210.674000;210.721000;0 +20260306 004600;210.720000;210.774000;210.719000;210.764000;0 +20260306 004700;210.763000;210.799000;210.762000;210.790000;0 +20260306 004800;210.789000;210.851000;210.780000;210.849000;0 +20260306 004900;210.848000;210.866000;210.812000;210.818000;0 +20260306 005000;210.821000;210.847000;210.780000;210.780000;0 +20260306 005100;210.779000;210.805000;210.771000;210.788000;0 +20260306 005200;210.790000;210.805000;210.723000;210.743000;0 +20260306 005300;210.747000;210.801000;210.741000;210.797000;0 +20260306 005400;210.797000;210.818000;210.771000;210.818000;0 +20260306 005500;210.816000;210.831000;210.796000;210.826000;0 +20260306 005600;210.824000;210.888000;210.824000;210.888000;0 +20260306 005700;210.880000;210.896000;210.841000;210.846000;0 +20260306 005800;210.848000;210.863000;210.813000;210.821000;0 +20260306 005900;210.819000;210.832000;210.806000;210.812000;0 +20260306 010000;210.813000;210.862000;210.804000;210.845000;0 +20260306 010100;210.847000;210.853000;210.793000;210.806000;0 +20260306 010200;210.808000;210.870000;210.807000;210.868000;0 +20260306 010300;210.865000;210.877000;210.831000;210.849000;0 +20260306 010400;210.848000;210.848000;210.817000;210.829000;0 +20260306 010500;210.827000;210.831000;210.814000;210.818000;0 +20260306 010600;210.823000;210.836000;210.809000;210.811000;0 +20260306 010700;210.809000;210.811000;210.783000;210.802000;0 +20260306 010800;210.804000;210.814000;210.769000;210.775000;0 +20260306 010900;210.776000;210.803000;210.776000;210.791000;0 +20260306 011000;210.789000;210.796000;210.779000;210.790000;0 +20260306 011100;210.793000;210.800000;210.778000;210.795000;0 +20260306 011200;210.792000;210.796000;210.774000;210.779000;0 +20260306 011300;210.781000;210.785000;210.769000;210.776000;0 +20260306 011400;210.780000;210.785000;210.763000;210.765000;0 +20260306 011500;210.763000;210.790000;210.763000;210.789000;0 +20260306 011600;210.788000;210.823000;210.788000;210.814000;0 +20260306 011700;210.811000;210.863000;210.811000;210.857000;0 +20260306 011800;210.860000;210.871000;210.831000;210.832000;0 +20260306 011900;210.833000;210.855000;210.829000;210.849000;0 +20260306 012000;210.849000;210.855000;210.846000;210.852000;0 +20260306 012100;210.853000;210.853000;210.745000;210.756000;0 +20260306 012200;210.742000;210.794000;210.735000;210.776000;0 +20260306 012300;210.777000;210.784000;210.764000;210.777000;0 +20260306 012400;210.776000;210.809000;210.771000;210.801000;0 +20260306 012500;210.802000;210.812000;210.780000;210.806000;0 +20260306 012600;210.809000;210.832000;210.798000;210.827000;0 +20260306 012700;210.825000;210.832000;210.800000;210.808000;0 +20260306 012800;210.811000;210.850000;210.804000;210.836000;0 +20260306 012900;210.837000;210.837000;210.800000;210.817000;0 +20260306 013000;210.817000;210.854000;210.800000;210.846000;0 +20260306 013100;210.848000;210.857000;210.823000;210.827000;0 +20260306 013200;210.826000;210.862000;210.820000;210.859000;0 +20260306 013300;210.860000;210.862000;210.849000;210.853000;0 +20260306 013400;210.854000;210.895000;210.844000;210.891000;0 +20260306 013500;210.892000;210.914000;210.880000;210.886000;0 +20260306 013600;210.883000;210.899000;210.871000;210.899000;0 +20260306 013700;210.898000;210.922000;210.895000;210.921000;0 +20260306 013800;210.921000;210.927000;210.909000;210.916000;0 +20260306 013900;210.915000;210.931000;210.903000;210.903000;0 +20260306 014000;210.904000;210.917000;210.889000;210.908000;0 +20260306 014100;210.904000;210.916000;210.895000;210.897000;0 +20260306 014200;210.897000;210.944000;210.894000;210.929000;0 +20260306 014300;210.928000;210.984000;210.925000;210.983000;0 +20260306 014400;210.983000;210.983000;210.942000;210.953000;0 +20260306 014500;210.953000;210.958000;210.927000;210.939000;0 +20260306 014600;210.939000;210.959000;210.921000;210.958000;0 +20260306 014700;210.957000;210.959000;210.883000;210.891000;0 +20260306 014800;210.892000;210.894000;210.848000;210.852000;0 +20260306 014900;210.852000;210.880000;210.843000;210.874000;0 +20260306 015000;210.873000;210.879000;210.854000;210.854000;0 +20260306 015100;210.853000;210.855000;210.836000;210.839000;0 +20260306 015200;210.837000;210.881000;210.834000;210.881000;0 +20260306 015300;210.882000;210.888000;210.868000;210.885000;0 +20260306 015400;210.885000;210.892000;210.873000;210.875000;0 +20260306 015500;210.874000;210.888000;210.855000;210.874000;0 +20260306 015600;210.874000;210.887000;210.870000;210.880000;0 +20260306 015700;210.879000;210.885000;210.859000;210.879000;0 +20260306 015800;210.880000;210.888000;210.864000;210.865000;0 +20260306 015900;210.865000;210.867000;210.846000;210.850000;0 +20260306 020000;210.848000;210.895000;210.847000;210.866000;0 +20260306 020100;210.868000;210.887000;210.867000;210.867000;0 +20260306 020200;210.866000;210.884000;210.842000;210.850000;0 +20260306 020300;210.850000;210.866000;210.843000;210.856000;0 +20260306 020400;210.856000;210.865000;210.823000;210.825000;0 +20260306 020500;210.826000;210.852000;210.820000;210.844000;0 +20260306 020600;210.844000;210.849000;210.801000;210.803000;0 +20260306 020700;210.802000;210.810000;210.791000;210.803000;0 +20260306 020800;210.802000;210.823000;210.789000;210.807000;0 +20260306 020900;210.814000;210.814000;210.765000;210.767000;0 +20260306 021000;210.765000;210.766000;210.748000;210.754000;0 +20260306 021100;210.754000;210.761000;210.743000;210.755000;0 +20260306 021200;210.751000;210.769000;210.750000;210.761000;0 +20260306 021300;210.764000;210.790000;210.764000;210.779000;0 +20260306 021400;210.776000;210.804000;210.776000;210.800000;0 +20260306 021500;210.801000;210.815000;210.797000;210.800000;0 +20260306 021600;210.799000;210.799000;210.762000;210.784000;0 +20260306 021700;210.784000;210.793000;210.738000;210.748000;0 +20260306 021800;210.742000;210.750000;210.701000;210.701000;0 +20260306 021900;210.703000;210.720000;210.692000;210.715000;0 +20260306 022000;210.714000;210.737000;210.713000;210.721000;0 +20260306 022100;210.721000;210.763000;210.721000;210.759000;0 +20260306 022200;210.758000;210.792000;210.755000;210.782000;0 +20260306 022300;210.781000;210.786000;210.744000;210.745000;0 +20260306 022400;210.758000;210.788000;210.752000;210.781000;0 +20260306 022500;210.777000;210.787000;210.763000;210.771000;0 +20260306 022600;210.773000;210.788000;210.760000;210.781000;0 +20260306 022700;210.785000;210.794000;210.769000;210.786000;0 +20260306 022800;210.786000;210.786000;210.757000;210.771000;0 +20260306 022900;210.769000;210.769000;210.743000;210.750000;0 +20260306 023000;210.749000;210.753000;210.691000;210.700000;0 +20260306 023100;210.702000;210.706000;210.663000;210.677000;0 +20260306 023200;210.676000;210.676000;210.657000;210.662000;0 +20260306 023300;210.657000;210.672000;210.647000;210.671000;0 +20260306 023400;210.671000;210.680000;210.652000;210.660000;0 +20260306 023500;210.661000;210.679000;210.639000;210.670000;0 +20260306 023600;210.668000;210.687000;210.666000;210.685000;0 +20260306 023700;210.686000;210.705000;210.659000;210.659000;0 +20260306 023800;210.662000;210.664000;210.642000;210.643000;0 +20260306 023900;210.644000;210.645000;210.622000;210.626000;0 +20260306 024000;210.624000;210.663000;210.620000;210.649000;0 +20260306 024100;210.648000;210.669000;210.633000;210.652000;0 +20260306 024200;210.650000;210.662000;210.614000;210.621000;0 +20260306 024300;210.623000;210.679000;210.623000;210.672000;0 +20260306 024400;210.672000;210.693000;210.669000;210.689000;0 +20260306 024500;210.692000;210.711000;210.659000;210.660000;0 +20260306 024600;210.661000;210.663000;210.641000;210.662000;0 +20260306 024700;210.663000;210.672000;210.631000;210.638000;0 +20260306 024800;210.636000;210.642000;210.618000;210.642000;0 +20260306 024900;210.640000;210.640000;210.606000;210.633000;0 +20260306 025000;210.628000;210.652000;210.621000;210.639000;0 +20260306 025100;210.640000;210.666000;210.635000;210.653000;0 +20260306 025200;210.654000;210.673000;210.603000;210.603000;0 +20260306 025300;210.604000;210.622000;210.594000;210.602000;0 +20260306 025400;210.601000;210.614000;210.598000;210.610000;0 +20260306 025500;210.610000;210.651000;210.605000;210.642000;0 +20260306 025600;210.644000;210.682000;210.638000;210.649000;0 +20260306 025700;210.649000;210.667000;210.619000;210.627000;0 +20260306 025800;210.631000;210.631000;210.583000;210.591000;0 +20260306 025900;210.591000;210.622000;210.585000;210.612000;0 +20260306 030000;210.610000;210.612000;210.574000;210.601000;0 +20260306 030100;210.606000;210.625000;210.552000;210.568000;0 +20260306 030200;210.567000;210.606000;210.557000;210.575000;0 +20260306 030300;210.573000;210.621000;210.572000;210.604000;0 +20260306 030400;210.605000;210.617000;210.549000;210.549000;0 +20260306 030500;210.549000;210.600000;210.549000;210.592000;0 +20260306 030600;210.589000;210.647000;210.589000;210.625000;0 +20260306 030700;210.625000;210.644000;210.600000;210.612000;0 +20260306 030800;210.609000;210.634000;210.573000;210.586000;0 +20260306 030900;210.586000;210.596000;210.546000;210.550000;0 +20260306 031000;210.550000;210.606000;210.537000;210.602000;0 +20260306 031100;210.602000;210.602000;210.536000;210.559000;0 +20260306 031200;210.562000;210.566000;210.526000;210.526000;0 +20260306 031300;210.527000;210.563000;210.517000;210.562000;0 +20260306 031400;210.568000;210.570000;210.545000;210.560000;0 +20260306 031500;210.561000;210.568000;210.550000;210.552000;0 +20260306 031600;210.556000;210.614000;210.553000;210.595000;0 +20260306 031700;210.597000;210.607000;210.542000;210.544000;0 +20260306 031800;210.542000;210.552000;210.521000;210.530000;0 +20260306 031900;210.532000;210.589000;210.529000;210.582000;0 +20260306 032000;210.583000;210.605000;210.579000;210.603000;0 +20260306 032100;210.603000;210.612000;210.575000;210.582000;0 +20260306 032200;210.583000;210.618000;210.583000;210.595000;0 +20260306 032300;210.592000;210.600000;210.555000;210.563000;0 +20260306 032400;210.565000;210.583000;210.541000;210.541000;0 +20260306 032500;210.541000;210.568000;210.529000;210.546000;0 +20260306 032600;210.547000;210.574000;210.542000;210.566000;0 +20260306 032700;210.569000;210.569000;210.544000;210.549000;0 +20260306 032800;210.547000;210.592000;210.546000;210.592000;0 +20260306 032900;210.592000;210.604000;210.558000;210.596000;0 +20260306 033000;210.596000;210.609000;210.578000;210.592000;0 +20260306 033100;210.594000;210.627000;210.594000;210.625000;0 +20260306 033200;210.630000;210.681000;210.614000;210.651000;0 +20260306 033300;210.652000;210.670000;210.627000;210.649000;0 +20260306 033400;210.649000;210.675000;210.646000;210.651000;0 +20260306 033500;210.656000;210.668000;210.648000;210.652000;0 +20260306 033600;210.654000;210.671000;210.623000;210.633000;0 +20260306 033700;210.636000;210.656000;210.628000;210.650000;0 +20260306 033800;210.649000;210.695000;210.647000;210.687000;0 +20260306 033900;210.690000;210.727000;210.690000;210.723000;0 +20260306 034000;210.723000;210.769000;210.723000;210.742000;0 +20260306 034100;210.741000;210.755000;210.729000;210.743000;0 +20260306 034200;210.739000;210.753000;210.727000;210.730000;0 +20260306 034300;210.732000;210.773000;210.725000;210.760000;0 +20260306 034400;210.763000;210.774000;210.751000;210.756000;0 +20260306 034500;210.760000;210.770000;210.755000;210.770000;0 +20260306 034600;210.774000;210.783000;210.758000;210.781000;0 +20260306 034700;210.780000;210.784000;210.755000;210.758000;0 +20260306 034800;210.757000;210.774000;210.736000;210.736000;0 +20260306 034900;210.736000;210.747000;210.718000;210.719000;0 +20260306 035000;210.718000;210.724000;210.684000;210.709000;0 +20260306 035100;210.713000;210.721000;210.690000;210.702000;0 +20260306 035200;210.699000;210.716000;210.690000;210.716000;0 +20260306 035300;210.714000;210.727000;210.703000;210.721000;0 +20260306 035400;210.719000;210.737000;210.715000;210.734000;0 +20260306 035500;210.735000;210.754000;210.690000;210.692000;0 +20260306 035600;210.691000;210.704000;210.658000;210.660000;0 +20260306 035700;210.660000;210.683000;210.653000;210.674000;0 +20260306 035800;210.671000;210.703000;210.671000;210.701000;0 +20260306 035900;210.703000;210.719000;210.692000;210.698000;0 +20260306 040000;210.696000;210.711000;210.663000;210.697000;0 +20260306 040100;210.696000;210.704000;210.664000;210.686000;0 +20260306 040200;210.688000;210.694000;210.650000;210.667000;0 +20260306 040300;210.662000;210.671000;210.640000;210.651000;0 +20260306 040400;210.650000;210.667000;210.620000;210.622000;0 +20260306 040500;210.623000;210.662000;210.615000;210.633000;0 +20260306 040600;210.634000;210.689000;210.632000;210.655000;0 +20260306 040700;210.660000;210.678000;210.649000;210.650000;0 +20260306 040800;210.651000;210.661000;210.595000;210.601000;0 +20260306 040900;210.602000;210.632000;210.585000;210.586000;0 +20260306 041000;210.585000;210.592000;210.568000;210.575000;0 +20260306 041100;210.579000;210.598000;210.565000;210.578000;0 +20260306 041200;210.580000;210.609000;210.571000;210.599000;0 +20260306 041300;210.600000;210.621000;210.578000;210.590000;0 +20260306 041400;210.590000;210.600000;210.569000;210.588000;0 +20260306 041500;210.588000;210.607000;210.573000;210.587000;0 +20260306 041600;210.587000;210.599000;210.568000;210.597000;0 +20260306 041700;210.597000;210.599000;210.556000;210.591000;0 +20260306 041800;210.593000;210.617000;210.584000;210.598000;0 +20260306 041900;210.596000;210.607000;210.584000;210.594000;0 +20260306 042000;210.596000;210.617000;210.577000;210.600000;0 +20260306 042100;210.601000;210.632000;210.598000;210.624000;0 +20260306 042200;210.624000;210.634000;210.603000;210.603000;0 +20260306 042300;210.601000;210.618000;210.554000;210.570000;0 +20260306 042400;210.570000;210.581000;210.549000;210.550000;0 +20260306 042500;210.547000;210.573000;210.539000;210.547000;0 +20260306 042600;210.548000;210.556000;210.517000;210.529000;0 +20260306 042700;210.528000;210.572000;210.515000;210.557000;0 +20260306 042800;210.551000;210.598000;210.551000;210.574000;0 +20260306 042900;210.569000;210.576000;210.555000;210.564000;0 +20260306 043000;210.561000;210.600000;210.553000;210.582000;0 +20260306 043100;210.582000;210.587000;210.512000;210.522000;0 +20260306 043200;210.524000;210.525000;210.489000;210.513000;0 +20260306 043300;210.513000;210.526000;210.502000;210.506000;0 +20260306 043400;210.505000;210.508000;210.440000;210.449000;0 +20260306 043500;210.450000;210.463000;210.400000;210.413000;0 +20260306 043600;210.418000;210.426000;210.360000;210.400000;0 +20260306 043700;210.402000;210.425000;210.378000;210.393000;0 +20260306 043800;210.394000;210.420000;210.384000;210.401000;0 +20260306 043900;210.402000;210.417000;210.378000;210.403000;0 +20260306 044000;210.402000;210.416000;210.378000;210.406000;0 +20260306 044100;210.402000;210.421000;210.394000;210.401000;0 +20260306 044200;210.399000;210.403000;210.372000;210.382000;0 +20260306 044300;210.383000;210.391000;210.367000;210.390000;0 +20260306 044400;210.388000;210.401000;210.375000;210.396000;0 +20260306 044500;210.396000;210.424000;210.381000;210.418000;0 +20260306 044600;210.417000;210.417000;210.322000;210.326000;0 +20260306 044700;210.326000;210.366000;210.320000;210.345000;0 +20260306 044800;210.345000;210.357000;210.330000;210.330000;0 +20260306 044900;210.329000;210.332000;210.308000;210.318000;0 +20260306 045000;210.316000;210.350000;210.295000;210.313000;0 +20260306 045100;210.313000;210.314000;210.275000;210.287000;0 +20260306 045200;210.287000;210.308000;210.259000;210.291000;0 +20260306 045300;210.290000;210.304000;210.261000;210.289000;0 +20260306 045400;210.289000;210.352000;210.287000;210.343000;0 +20260306 045500;210.341000;210.355000;210.314000;210.335000;0 +20260306 045600;210.334000;210.354000;210.313000;210.347000;0 +20260306 045700;210.347000;210.359000;210.302000;210.306000;0 +20260306 045800;210.305000;210.320000;210.300000;210.317000;0 +20260306 045900;210.316000;210.328000;210.308000;210.324000;0 +20260306 050000;210.323000;210.353000;210.306000;210.322000;0 +20260306 050100;210.321000;210.337000;210.301000;210.301000;0 +20260306 050200;210.306000;210.367000;210.306000;210.345000;0 +20260306 050300;210.340000;210.389000;210.333000;210.365000;0 +20260306 050400;210.366000;210.397000;210.346000;210.376000;0 +20260306 050500;210.380000;210.428000;210.377000;210.417000;0 +20260306 050600;210.416000;210.417000;210.362000;210.366000;0 +20260306 050700;210.363000;210.363000;210.337000;210.350000;0 +20260306 050800;210.346000;210.353000;210.301000;210.307000;0 +20260306 050900;210.306000;210.352000;210.306000;210.346000;0 +20260306 051000;210.346000;210.347000;210.303000;210.320000;0 +20260306 051100;210.320000;210.345000;210.305000;210.335000;0 +20260306 051200;210.337000;210.455000;210.329000;210.423000;0 +20260306 051300;210.423000;210.432000;210.380000;210.398000;0 +20260306 051400;210.400000;210.416000;210.389000;210.401000;0 +20260306 051500;210.411000;210.449000;210.410000;210.412000;0 +20260306 051600;210.412000;210.438000;210.411000;210.431000;0 +20260306 051700;210.433000;210.440000;210.398000;210.404000;0 +20260306 051800;210.404000;210.431000;210.401000;210.421000;0 +20260306 051900;210.421000;210.436000;210.409000;210.425000;0 +20260306 052000;210.425000;210.439000;210.411000;210.423000;0 +20260306 052100;210.424000;210.440000;210.420000;210.434000;0 +20260306 052200;210.433000;210.456000;210.424000;210.452000;0 +20260306 052300;210.449000;210.452000;210.431000;210.439000;0 +20260306 052400;210.439000;210.439000;210.377000;210.394000;0 +20260306 052500;210.395000;210.420000;210.371000;210.373000;0 +20260306 052600;210.375000;210.380000;210.347000;210.363000;0 +20260306 052700;210.361000;210.385000;210.350000;210.358000;0 +20260306 052800;210.356000;210.408000;210.356000;210.396000;0 +20260306 052900;210.396000;210.490000;210.392000;210.435000;0 +20260306 053000;210.436000;210.490000;210.421000;210.470000;0 +20260306 053100;210.474000;210.504000;210.470000;210.490000;0 +20260306 053200;210.490000;210.494000;210.458000;210.463000;0 +20260306 053300;210.465000;210.481000;210.441000;210.441000;0 +20260306 053400;210.442000;210.485000;210.441000;210.474000;0 +20260306 053500;210.473000;210.524000;210.469000;210.487000;0 +20260306 053600;210.491000;210.538000;210.473000;210.492000;0 +20260306 053700;210.493000;210.517000;210.465000;210.476000;0 +20260306 053800;210.477000;210.492000;210.470000;210.492000;0 +20260306 053900;210.492000;210.520000;210.479000;210.515000;0 +20260306 054000;210.516000;210.518000;210.486000;210.503000;0 +20260306 054100;210.502000;210.528000;210.497000;210.522000;0 +20260306 054200;210.523000;210.526000;210.491000;210.492000;0 +20260306 054300;210.491000;210.491000;210.450000;210.458000;0 +20260306 054400;210.454000;210.458000;210.407000;210.416000;0 +20260306 054500;210.416000;210.421000;210.389000;210.399000;0 +20260306 054600;210.397000;210.426000;210.384000;210.420000;0 +20260306 054700;210.420000;210.476000;210.407000;210.457000;0 +20260306 054800;210.456000;210.474000;210.450000;210.465000;0 +20260306 054900;210.461000;210.477000;210.453000;210.458000;0 +20260306 055000;210.462000;210.492000;210.460000;210.468000;0 +20260306 055100;210.470000;210.554000;210.462000;210.530000;0 +20260306 055200;210.531000;210.594000;210.526000;210.552000;0 +20260306 055300;210.553000;210.568000;210.538000;210.542000;0 +20260306 055400;210.542000;210.547000;210.534000;210.538000;0 +20260306 055500;210.538000;210.588000;210.538000;210.582000;0 +20260306 055600;210.586000;210.600000;210.567000;210.589000;0 +20260306 055700;210.588000;210.603000;210.575000;210.576000;0 +20260306 055800;210.575000;210.610000;210.575000;210.607000;0 +20260306 055900;210.609000;210.629000;210.606000;210.615000;0 +20260306 060000;210.612000;210.633000;210.591000;210.600000;0 +20260306 060100;210.601000;210.618000;210.579000;210.592000;0 +20260306 060200;210.594000;210.608000;210.480000;210.503000;0 +20260306 060300;210.504000;210.507000;210.455000;210.472000;0 +20260306 060400;210.473000;210.484000;210.467000;210.474000;0 +20260306 060500;210.475000;210.475000;210.422000;210.434000;0 +20260306 060600;210.433000;210.453000;210.424000;210.430000;0 +20260306 060700;210.428000;210.437000;210.402000;210.411000;0 +20260306 060800;210.410000;210.419000;210.359000;210.363000;0 +20260306 060900;210.361000;210.424000;210.361000;210.385000;0 +20260306 061000;210.385000;210.435000;210.368000;210.418000;0 +20260306 061100;210.416000;210.515000;210.411000;210.514000;0 +20260306 061200;210.515000;210.648000;210.515000;210.562000;0 +20260306 061300;210.565000;210.614000;210.565000;210.609000;0 +20260306 061400;210.611000;210.635000;210.577000;210.577000;0 +20260306 061500;210.581000;210.586000;210.548000;210.565000;0 +20260306 061600;210.566000;210.574000;210.518000;210.541000;0 +20260306 061700;210.539000;210.539000;210.501000;210.506000;0 +20260306 061800;210.504000;210.506000;210.486000;210.496000;0 +20260306 061900;210.496000;210.535000;210.488000;210.533000;0 +20260306 062000;210.532000;210.574000;210.531000;210.561000;0 +20260306 062100;210.565000;210.590000;210.550000;210.590000;0 +20260306 062200;210.590000;210.593000;210.570000;210.575000;0 +20260306 062300;210.575000;210.595000;210.571000;210.580000;0 +20260306 062400;210.580000;210.605000;210.579000;210.590000;0 +20260306 062500;210.593000;210.596000;210.564000;210.579000;0 +20260306 062600;210.580000;210.617000;210.570000;210.615000;0 +20260306 062700;210.617000;210.619000;210.580000;210.613000;0 +20260306 062800;210.610000;210.628000;210.579000;210.623000;0 +20260306 062900;210.622000;210.641000;210.619000;210.623000;0 +20260306 063000;210.625000;210.636000;210.588000;210.592000;0 +20260306 063100;210.589000;210.600000;210.579000;210.585000;0 +20260306 063200;210.582000;210.595000;210.569000;210.591000;0 +20260306 063300;210.588000;210.594000;210.550000;210.555000;0 +20260306 063400;210.551000;210.576000;210.551000;210.560000;0 +20260306 063500;210.559000;210.587000;210.545000;210.578000;0 +20260306 063600;210.576000;210.604000;210.553000;210.553000;0 +20260306 063700;210.555000;210.571000;210.536000;210.551000;0 +20260306 063800;210.554000;210.579000;210.548000;210.559000;0 +20260306 063900;210.559000;210.570000;210.544000;210.555000;0 +20260306 064000;210.560000;210.594000;210.557000;210.563000;0 +20260306 064100;210.560000;210.571000;210.522000;210.532000;0 +20260306 064200;210.531000;210.576000;210.497000;210.512000;0 +20260306 064300;210.513000;210.529000;210.434000;210.434000;0 +20260306 064400;210.432000;210.479000;210.428000;210.465000;0 +20260306 064500;210.466000;210.479000;210.439000;210.454000;0 +20260306 064600;210.453000;210.496000;210.450000;210.480000;0 +20260306 064700;210.479000;210.500000;210.473000;210.484000;0 +20260306 064800;210.487000;210.507000;210.473000;210.488000;0 +20260306 064900;210.487000;210.491000;210.465000;210.471000;0 +20260306 065000;210.471000;210.486000;210.447000;210.473000;0 +20260306 065100;210.473000;210.474000;210.445000;210.448000;0 +20260306 065200;210.451000;210.469000;210.415000;210.419000;0 +20260306 065300;210.417000;210.472000;210.417000;210.456000;0 +20260306 065400;210.454000;210.480000;210.440000;210.443000;0 +20260306 065500;210.442000;210.461000;210.418000;210.418000;0 +20260306 065600;210.419000;210.443000;210.401000;210.433000;0 +20260306 065700;210.432000;210.445000;210.386000;210.386000;0 +20260306 065800;210.385000;210.409000;210.372000;210.381000;0 +20260306 065900;210.382000;210.388000;210.358000;210.365000;0 +20260306 070000;210.362000;210.405000;210.362000;210.398000;0 +20260306 070100;210.395000;210.415000;210.382000;210.399000;0 +20260306 070200;210.399000;210.422000;210.371000;210.376000;0 +20260306 070300;210.375000;210.379000;210.345000;210.370000;0 +20260306 070400;210.371000;210.387000;210.332000;210.335000;0 +20260306 070500;210.336000;210.367000;210.321000;210.329000;0 +20260306 070600;210.329000;210.371000;210.328000;210.328000;0 +20260306 070700;210.333000;210.394000;210.321000;210.374000;0 +20260306 070800;210.373000;210.398000;210.361000;210.380000;0 +20260306 070900;210.378000;210.387000;210.354000;210.354000;0 +20260306 071000;210.356000;210.356000;210.313000;210.333000;0 +20260306 071100;210.334000;210.347000;210.308000;210.334000;0 +20260306 071200;210.335000;210.335000;210.307000;210.321000;0 +20260306 071300;210.322000;210.335000;210.315000;210.329000;0 +20260306 071400;210.325000;210.344000;210.314000;210.324000;0 +20260306 071500;210.324000;210.351000;210.308000;210.336000;0 +20260306 071600;210.336000;210.350000;210.325000;210.339000;0 +20260306 071700;210.336000;210.366000;210.333000;210.365000;0 +20260306 071800;210.367000;210.410000;210.361000;210.405000;0 +20260306 071900;210.405000;210.417000;210.368000;210.380000;0 +20260306 072000;210.380000;210.429000;210.363000;210.427000;0 +20260306 072100;210.428000;210.456000;210.415000;210.436000;0 +20260306 072200;210.439000;210.476000;210.424000;210.458000;0 +20260306 072300;210.463000;210.469000;210.409000;210.420000;0 +20260306 072400;210.426000;210.447000;210.415000;210.436000;0 +20260306 072500;210.436000;210.473000;210.404000;210.410000;0 +20260306 072600;210.407000;210.449000;210.402000;210.441000;0 +20260306 072700;210.440000;210.440000;210.396000;210.429000;0 +20260306 072800;210.427000;210.467000;210.414000;210.454000;0 +20260306 072900;210.452000;210.454000;210.413000;210.418000;0 +20260306 073000;210.419000;210.469000;210.416000;210.440000;0 +20260306 073100;210.441000;210.511000;210.434000;210.484000;0 +20260306 073200;210.483000;210.506000;210.458000;210.491000;0 +20260306 073300;210.491000;210.526000;210.479000;210.507000;0 +20260306 073400;210.510000;210.527000;210.484000;210.489000;0 +20260306 073500;210.491000;210.494000;210.445000;210.464000;0 +20260306 073600;210.467000;210.474000;210.370000;210.420000;0 +20260306 073700;210.419000;210.459000;210.405000;210.451000;0 +20260306 073800;210.450000;210.468000;210.432000;210.467000;0 +20260306 073900;210.470000;210.502000;210.450000;210.501000;0 +20260306 074000;210.502000;210.505000;210.473000;210.489000;0 +20260306 074100;210.489000;210.517000;210.484000;210.515000;0 +20260306 074200;210.523000;210.548000;210.513000;210.541000;0 +20260306 074300;210.543000;210.548000;210.512000;210.531000;0 +20260306 074400;210.530000;210.531000;210.500000;210.526000;0 +20260306 074500;210.527000;210.544000;210.521000;210.535000;0 +20260306 074600;210.538000;210.580000;210.538000;210.552000;0 +20260306 074700;210.554000;210.575000;210.546000;210.566000;0 +20260306 074800;210.564000;210.623000;210.558000;210.605000;0 +20260306 074900;210.613000;210.635000;210.603000;210.614000;0 +20260306 075000;210.613000;210.664000;210.601000;210.635000;0 +20260306 075100;210.636000;210.682000;210.630000;210.677000;0 +20260306 075200;210.684000;210.706000;210.677000;210.679000;0 +20260306 075300;210.680000;210.699000;210.669000;210.670000;0 +20260306 075400;210.675000;210.676000;210.611000;210.618000;0 +20260306 075500;210.618000;210.661000;210.614000;210.649000;0 +20260306 075600;210.649000;210.660000;210.618000;210.639000;0 +20260306 075700;210.636000;210.645000;210.575000;210.584000;0 +20260306 075800;210.582000;210.582000;210.549000;210.562000;0 +20260306 075900;210.565000;210.580000;210.550000;210.557000;0 +20260306 080000;210.553000;210.561000;210.529000;210.554000;0 +20260306 080100;210.552000;210.568000;210.534000;210.568000;0 +20260306 080200;210.570000;210.618000;210.557000;210.614000;0 +20260306 080300;210.616000;210.631000;210.555000;210.559000;0 +20260306 080400;210.562000;210.572000;210.527000;210.542000;0 +20260306 080500;210.543000;210.544000;210.497000;210.497000;0 +20260306 080600;210.496000;210.579000;210.493000;210.578000;0 +20260306 080700;210.580000;210.623000;210.571000;210.619000;0 +20260306 080800;210.615000;210.638000;210.586000;210.616000;0 +20260306 080900;210.619000;210.624000;210.575000;210.588000;0 +20260306 081000;210.589000;210.624000;210.579000;210.623000;0 +20260306 081100;210.627000;210.711000;210.627000;210.711000;0 +20260306 081200;210.712000;210.721000;210.670000;210.694000;0 +20260306 081300;210.700000;210.705000;210.678000;210.701000;0 +20260306 081400;210.697000;210.700000;210.675000;210.700000;0 +20260306 081500;210.702000;210.722000;210.683000;210.716000;0 +20260306 081600;210.719000;210.750000;210.707000;210.720000;0 +20260306 081700;210.722000;210.758000;210.716000;210.748000;0 +20260306 081800;210.748000;210.763000;210.731000;210.736000;0 +20260306 081900;210.735000;210.790000;210.729000;210.779000;0 +20260306 082000;210.776000;210.808000;210.744000;210.803000;0 +20260306 082100;210.804000;210.820000;210.784000;210.804000;0 +20260306 082200;210.807000;210.839000;210.780000;210.786000;0 +20260306 082300;210.788000;210.869000;210.788000;210.853000;0 +20260306 082400;210.853000;210.855000;210.835000;210.841000;0 +20260306 082500;210.837000;210.870000;210.825000;210.836000;0 +20260306 082600;210.832000;210.854000;210.825000;210.836000;0 +20260306 082700;210.832000;210.858000;210.820000;210.850000;0 +20260306 082800;210.855000;210.866000;210.840000;210.855000;0 +20260306 082900;210.859000;210.882000;210.767000;210.778000;0 +20260306 083000;210.776000;210.776000;210.574000;210.581000;0 +20260306 083100;210.578000;210.654000;210.521000;210.609000;0 +20260306 083200;210.606000;210.703000;210.569000;210.680000;0 +20260306 083300;210.677000;210.705000;210.608000;210.655000;0 +20260306 083400;210.655000;210.721000;210.602000;210.659000;0 +20260306 083500;210.655000;210.793000;210.647000;210.759000;0 +20260306 083600;210.757000;210.776000;210.689000;210.694000;0 +20260306 083700;210.694000;210.708000;210.628000;210.666000;0 +20260306 083800;210.665000;210.767000;210.649000;210.724000;0 +20260306 083900;210.732000;210.744000;210.699000;210.725000;0 +20260306 084000;210.725000;210.727000;210.582000;210.582000;0 +20260306 084100;210.584000;210.645000;210.554000;210.636000;0 +20260306 084200;210.635000;210.678000;210.610000;210.611000;0 +20260306 084300;210.610000;210.639000;210.592000;210.625000;0 +20260306 084400;210.621000;210.769000;210.613000;210.732000;0 +20260306 084500;210.734000;210.736000;210.642000;210.681000;0 +20260306 084600;210.678000;210.719000;210.652000;210.693000;0 +20260306 084700;210.685000;210.768000;210.660000;210.762000;0 +20260306 084800;210.762000;210.807000;210.725000;210.798000;0 +20260306 084900;210.809000;210.827000;210.778000;210.800000;0 +20260306 085000;210.800000;210.811000;210.693000;210.696000;0 +20260306 085100;210.692000;210.713000;210.628000;210.631000;0 +20260306 085200;210.634000;210.685000;210.626000;210.661000;0 +20260306 085300;210.663000;210.663000;210.604000;210.608000;0 +20260306 085400;210.608000;210.670000;210.599000;210.654000;0 +20260306 085500;210.655000;210.673000;210.608000;210.630000;0 +20260306 085600;210.625000;210.633000;210.548000;210.627000;0 +20260306 085700;210.630000;210.671000;210.612000;210.616000;0 +20260306 085800;210.620000;210.636000;210.568000;210.590000;0 +20260306 085900;210.592000;210.605000;210.550000;210.572000;0 +20260306 090000;210.572000;210.575000;210.514000;210.546000;0 +20260306 090100;210.543000;210.622000;210.532000;210.607000;0 +20260306 090200;210.599000;210.612000;210.530000;210.543000;0 +20260306 090300;210.549000;210.591000;210.526000;210.589000;0 +20260306 090400;210.589000;210.633000;210.539000;210.633000;0 +20260306 090500;210.634000;210.640000;210.586000;210.586000;0 +20260306 090600;210.584000;210.606000;210.555000;210.566000;0 +20260306 090700;210.563000;210.591000;210.535000;210.570000;0 +20260306 090800;210.574000;210.633000;210.567000;210.585000;0 +20260306 090900;210.585000;210.590000;210.514000;210.543000;0 +20260306 091000;210.544000;210.571000;210.526000;210.558000;0 +20260306 091100;210.558000;210.618000;210.555000;210.583000;0 +20260306 091200;210.583000;210.609000;210.541000;210.595000;0 +20260306 091300;210.597000;210.624000;210.585000;210.596000;0 +20260306 091400;210.594000;210.597000;210.543000;210.553000;0 +20260306 091500;210.551000;210.557000;210.510000;210.539000;0 +20260306 091600;210.538000;210.594000;210.532000;210.594000;0 +20260306 091700;210.596000;210.630000;210.574000;210.609000;0 +20260306 091800;210.616000;210.644000;210.585000;210.632000;0 +20260306 091900;210.633000;210.642000;210.601000;210.605000;0 +20260306 092000;210.606000;210.653000;210.593000;210.633000;0 +20260306 092100;210.632000;210.646000;210.577000;210.603000;0 +20260306 092200;210.599000;210.641000;210.577000;210.603000;0 +20260306 092300;210.604000;210.611000;210.561000;210.602000;0 +20260306 092400;210.606000;210.655000;210.596000;210.653000;0 +20260306 092500;210.654000;210.680000;210.613000;210.668000;0 +20260306 092600;210.671000;210.739000;210.670000;210.712000;0 +20260306 092700;210.716000;210.735000;210.664000;210.735000;0 +20260306 092800;210.737000;210.778000;210.706000;210.761000;0 +20260306 092900;210.762000;210.782000;210.735000;210.761000;0 +20260306 093000;210.769000;210.805000;210.705000;210.711000;0 +20260306 093100;210.714000;210.720000;210.668000;210.684000;0 +20260306 093200;210.680000;210.718000;210.650000;210.706000;0 +20260306 093300;210.707000;210.745000;210.667000;210.667000;0 +20260306 093400;210.666000;210.676000;210.615000;210.655000;0 +20260306 093500;210.652000;210.666000;210.555000;210.577000;0 +20260306 093600;210.574000;210.618000;210.556000;210.582000;0 +20260306 093700;210.574000;210.623000;210.547000;210.576000;0 +20260306 093800;210.582000;210.661000;210.573000;210.648000;0 +20260306 093900;210.647000;210.666000;210.609000;210.643000;0 +20260306 094000;210.639000;210.658000;210.587000;210.591000;0 +20260306 094100;210.593000;210.649000;210.584000;210.641000;0 +20260306 094200;210.637000;210.650000;210.568000;210.588000;0 +20260306 094300;210.592000;210.706000;210.586000;210.603000;0 +20260306 094400;210.605000;210.647000;210.547000;210.572000;0 +20260306 094500;210.567000;210.616000;210.567000;210.579000;0 +20260306 094600;210.579000;210.597000;210.480000;210.528000;0 +20260306 094700;210.532000;210.554000;210.491000;210.548000;0 +20260306 094800;210.553000;210.557000;210.505000;210.523000;0 +20260306 094900;210.523000;210.538000;210.450000;210.450000;0 +20260306 095000;210.448000;210.469000;210.341000;210.362000;0 +20260306 095100;210.364000;210.436000;210.361000;210.420000;0 +20260306 095200;210.423000;210.433000;210.336000;210.375000;0 +20260306 095300;210.377000;210.381000;210.303000;210.332000;0 +20260306 095400;210.331000;210.376000;210.310000;210.322000;0 +20260306 095500;210.325000;210.353000;210.302000;210.326000;0 +20260306 095600;210.322000;210.325000;210.284000;210.296000;0 +20260306 095700;210.295000;210.362000;210.278000;210.332000;0 +20260306 095800;210.331000;210.349000;210.316000;210.318000;0 +20260306 095900;210.318000;210.389000;210.307000;210.338000;0 +20260306 100000;210.338000;210.638000;210.313000;210.610000;0 +20260306 100100;210.612000;210.680000;210.580000;210.629000;0 +20260306 100200;210.632000;210.716000;210.617000;210.657000;0 +20260306 100300;210.653000;210.661000;210.556000;210.563000;0 +20260306 100400;210.563000;210.662000;210.563000;210.662000;0 +20260306 100500;210.660000;210.670000;210.588000;210.617000;0 +20260306 100600;210.618000;210.687000;210.607000;210.617000;0 +20260306 100700;210.613000;210.613000;210.547000;210.550000;0 +20260306 100800;210.553000;210.597000;210.502000;210.507000;0 +20260306 100900;210.510000;210.510000;210.411000;210.472000;0 +20260306 101000;210.471000;210.544000;210.470000;210.508000;0 +20260306 101100;210.504000;210.607000;210.489000;210.600000;0 +20260306 101200;210.601000;210.682000;210.586000;210.651000;0 +20260306 101300;210.654000;210.828000;210.653000;210.814000;0 +20260306 101400;210.816000;210.832000;210.769000;210.829000;0 +20260306 101500;210.826000;210.898000;210.795000;210.840000;0 +20260306 101600;210.837000;210.864000;210.811000;210.837000;0 +20260306 101700;210.837000;210.853000;210.775000;210.795000;0 +20260306 101800;210.795000;210.818000;210.779000;210.791000;0 +20260306 101900;210.795000;210.830000;210.757000;210.784000;0 +20260306 102000;210.783000;210.800000;210.677000;210.678000;0 +20260306 102100;210.679000;210.715000;210.650000;210.681000;0 +20260306 102200;210.679000;210.687000;210.626000;210.660000;0 +20260306 102300;210.656000;210.669000;210.623000;210.629000;0 +20260306 102400;210.635000;210.787000;210.634000;210.781000;0 +20260306 102500;210.777000;210.780000;210.705000;210.751000;0 +20260306 102600;210.751000;210.758000;210.700000;210.747000;0 +20260306 102700;210.750000;210.783000;210.701000;210.716000;0 +20260306 102800;210.718000;210.719000;210.646000;210.662000;0 +20260306 102900;210.663000;210.684000;210.626000;210.681000;0 +20260306 103000;210.682000;210.760000;210.682000;210.740000;0 +20260306 103100;210.741000;210.853000;210.739000;210.842000;0 +20260306 103200;210.840000;210.860000;210.799000;210.836000;0 +20260306 103300;210.835000;210.842000;210.787000;210.806000;0 +20260306 103400;210.803000;210.820000;210.770000;210.790000;0 +20260306 103500;210.788000;210.799000;210.739000;210.761000;0 +20260306 103600;210.758000;210.758000;210.710000;210.750000;0 +20260306 103700;210.744000;210.759000;210.718000;210.735000;0 +20260306 103800;210.737000;210.760000;210.679000;210.710000;0 +20260306 103900;210.709000;210.717000;210.660000;210.688000;0 +20260306 104000;210.688000;210.688000;210.560000;210.566000;0 +20260306 104100;210.563000;210.599000;210.538000;210.571000;0 +20260306 104200;210.571000;210.596000;210.536000;210.557000;0 +20260306 104300;210.548000;210.588000;210.537000;210.572000;0 +20260306 104400;210.575000;210.654000;210.570000;210.653000;0 +20260306 104500;210.654000;210.671000;210.620000;210.646000;0 +20260306 104600;210.643000;210.652000;210.570000;210.587000;0 +20260306 104700;210.588000;210.638000;210.582000;210.612000;0 +20260306 104800;210.617000;210.645000;210.586000;210.637000;0 +20260306 104900;210.632000;210.632000;210.548000;210.581000;0 +20260306 105000;210.583000;210.583000;210.483000;210.495000;0 +20260306 105100;210.491000;210.491000;210.397000;210.405000;0 +20260306 105200;210.409000;210.452000;210.406000;210.433000;0 +20260306 105300;210.431000;210.531000;210.430000;210.512000;0 +20260306 105400;210.509000;210.578000;210.509000;210.555000;0 +20260306 105500;210.554000;210.644000;210.553000;210.598000;0 +20260306 105600;210.595000;210.632000;210.542000;210.549000;0 +20260306 105700;210.546000;210.564000;210.456000;210.465000;0 +20260306 105800;210.465000;210.510000;210.451000;210.497000;0 +20260306 105900;210.499000;210.537000;210.499000;210.514000;0 +20260306 110000;210.515000;210.604000;210.514000;210.591000;0 +20260306 110100;210.596000;210.644000;210.587000;210.633000;0 +20260306 110200;210.637000;210.718000;210.601000;210.713000;0 +20260306 110300;210.712000;210.824000;210.711000;210.821000;0 +20260306 110400;210.818000;210.946000;210.817000;210.944000;0 +20260306 110500;210.940000;210.997000;210.929000;210.957000;0 +20260306 110600;210.956000;211.033000;210.945000;210.981000;0 +20260306 110700;210.987000;211.007000;210.948000;210.982000;0 +20260306 110800;210.987000;211.043000;210.971000;211.026000;0 +20260306 110900;211.020000;211.081000;211.005000;211.060000;0 +20260306 111000;211.061000;211.067000;210.968000;210.968000;0 +20260306 111100;210.968000;211.001000;210.939000;210.990000;0 +20260306 111200;210.989000;211.010000;210.975000;210.978000;0 +20260306 111300;210.979000;211.007000;210.969000;211.005000;0 +20260306 111400;211.005000;211.008000;210.965000;210.991000;0 +20260306 111500;210.989000;211.050000;210.968000;211.049000;0 +20260306 111600;211.051000;211.078000;211.013000;211.022000;0 +20260306 111700;211.022000;211.061000;211.014000;211.018000;0 +20260306 111800;211.020000;211.042000;210.991000;211.038000;0 +20260306 111900;211.039000;211.051000;211.009000;211.041000;0 +20260306 112000;211.041000;211.068000;210.997000;211.024000;0 +20260306 112100;211.021000;211.057000;210.991000;211.010000;0 +20260306 112200;211.009000;211.036000;210.981000;211.004000;0 +20260306 112300;211.002000;211.011000;210.959000;210.994000;0 +20260306 112400;210.994000;211.011000;210.962000;211.008000;0 +20260306 112500;211.007000;211.030000;210.983000;211.021000;0 +20260306 112600;211.029000;211.048000;211.020000;211.034000;0 +20260306 112700;211.036000;211.072000;211.027000;211.029000;0 +20260306 112800;211.034000;211.048000;211.008000;211.041000;0 +20260306 112900;211.038000;211.070000;211.010000;211.042000;0 +20260306 113000;211.043000;211.077000;211.031000;211.037000;0 +20260306 113100;211.041000;211.103000;211.033000;211.074000;0 +20260306 113200;211.071000;211.113000;211.071000;211.085000;0 +20260306 113300;211.089000;211.094000;211.022000;211.023000;0 +20260306 113400;211.023000;211.034000;210.957000;210.999000;0 +20260306 113500;210.996000;211.088000;210.975000;211.079000;0 +20260306 113600;211.079000;211.109000;211.064000;211.097000;0 +20260306 113700;211.096000;211.152000;211.079000;211.148000;0 +20260306 113800;211.155000;211.162000;211.115000;211.119000;0 +20260306 113900;211.121000;211.173000;211.121000;211.139000;0 +20260306 114000;211.140000;211.156000;211.099000;211.120000;0 +20260306 114100;211.121000;211.128000;211.086000;211.100000;0 +20260306 114200;211.102000;211.125000;211.066000;211.123000;0 +20260306 114300;211.126000;211.157000;211.118000;211.157000;0 +20260306 114400;211.162000;211.162000;211.122000;211.146000;0 +20260306 114500;211.141000;211.229000;211.134000;211.226000;0 +20260306 114600;211.227000;211.236000;211.168000;211.185000;0 +20260306 114700;211.189000;211.210000;211.155000;211.178000;0 +20260306 114800;211.178000;211.207000;211.166000;211.205000;0 +20260306 114900;211.205000;211.221000;211.175000;211.178000;0 +20260306 115000;211.180000;211.189000;211.157000;211.163000;0 +20260306 115100;211.163000;211.194000;211.151000;211.182000;0 +20260306 115200;211.179000;211.210000;211.157000;211.203000;0 +20260306 115300;211.204000;211.217000;211.174000;211.186000;0 +20260306 115400;211.188000;211.188000;211.126000;211.156000;0 +20260306 115500;211.159000;211.168000;211.109000;211.143000;0 +20260306 115600;211.142000;211.153000;211.077000;211.109000;0 +20260306 115700;211.107000;211.153000;211.101000;211.123000;0 +20260306 115800;211.123000;211.155000;211.116000;211.147000;0 +20260306 115900;211.145000;211.201000;211.144000;211.195000;0 +20260306 120000;211.195000;211.222000;211.188000;211.189000;0 +20260306 120100;211.190000;211.207000;211.168000;211.191000;0 +20260306 120200;211.192000;211.206000;211.154000;211.155000;0 +20260306 120300;211.157000;211.237000;211.139000;211.237000;0 +20260306 120400;211.233000;211.303000;211.227000;211.264000;0 +20260306 120500;211.266000;211.283000;211.237000;211.256000;0 +20260306 120600;211.253000;211.253000;211.211000;211.211000;0 +20260306 120700;211.211000;211.226000;211.187000;211.201000;0 +20260306 120800;211.198000;211.226000;211.184000;211.214000;0 +20260306 120900;211.215000;211.242000;211.189000;211.222000;0 +20260306 121000;211.225000;211.246000;211.214000;211.215000;0 +20260306 121100;211.219000;211.248000;211.207000;211.208000;0 +20260306 121200;211.208000;211.226000;211.197000;211.200000;0 +20260306 121300;211.200000;211.221000;211.178000;211.184000;0 +20260306 121400;211.185000;211.204000;211.180000;211.185000;0 +20260306 121500;211.183000;211.213000;211.165000;211.191000;0 +20260306 121600;211.193000;211.194000;211.152000;211.166000;0 +20260306 121700;211.168000;211.174000;211.136000;211.165000;0 +20260306 121800;211.162000;211.185000;211.151000;211.161000;0 +20260306 121900;211.159000;211.224000;211.159000;211.222000;0 +20260306 122000;211.221000;211.234000;211.207000;211.221000;0 +20260306 122100;211.221000;211.251000;211.197000;211.246000;0 +20260306 122200;211.245000;211.287000;211.241000;211.277000;0 +20260306 122300;211.278000;211.290000;211.260000;211.261000;0 +20260306 122400;211.262000;211.287000;211.246000;211.279000;0 +20260306 122500;211.276000;211.282000;211.193000;211.194000;0 +20260306 122600;211.190000;211.222000;211.180000;211.190000;0 +20260306 122700;211.191000;211.229000;211.187000;211.207000;0 +20260306 122800;211.204000;211.240000;211.204000;211.231000;0 +20260306 122900;211.232000;211.240000;211.214000;211.217000;0 +20260306 123000;211.215000;211.226000;211.196000;211.213000;0 +20260306 123100;211.214000;211.221000;211.194000;211.221000;0 +20260306 123200;211.220000;211.250000;211.210000;211.248000;0 +20260306 123300;211.250000;211.298000;211.243000;211.287000;0 +20260306 123400;211.288000;211.308000;211.263000;211.307000;0 +20260306 123500;211.305000;211.308000;211.269000;211.271000;0 +20260306 123600;211.273000;211.302000;211.268000;211.287000;0 +20260306 123700;211.288000;211.330000;211.269000;211.309000;0 +20260306 123800;211.309000;211.328000;211.288000;211.292000;0 +20260306 123900;211.292000;211.313000;211.278000;211.303000;0 +20260306 124000;211.301000;211.318000;211.268000;211.293000;0 +20260306 124100;211.297000;211.306000;211.285000;211.303000;0 +20260306 124200;211.302000;211.315000;211.266000;211.282000;0 +20260306 124300;211.283000;211.341000;211.275000;211.336000;0 +20260306 124400;211.335000;211.351000;211.309000;211.309000;0 +20260306 124500;211.310000;211.323000;211.266000;211.284000;0 +20260306 124600;211.282000;211.319000;211.282000;211.299000;0 +20260306 124700;211.298000;211.304000;211.272000;211.277000;0 +20260306 124800;211.268000;211.282000;211.253000;211.260000;0 +20260306 124900;211.260000;211.299000;211.250000;211.250000;0 +20260306 125000;211.252000;211.304000;211.252000;211.300000;0 +20260306 125100;211.299000;211.302000;211.263000;211.264000;0 +20260306 125200;211.263000;211.274000;211.236000;211.259000;0 +20260306 125300;211.261000;211.275000;211.242000;211.264000;0 +20260306 125400;211.264000;211.265000;211.208000;211.209000;0 +20260306 125500;211.208000;211.232000;211.201000;211.211000;0 +20260306 125600;211.215000;211.246000;211.210000;211.233000;0 +20260306 125700;211.234000;211.239000;211.210000;211.214000;0 +20260306 125800;211.215000;211.239000;211.200000;211.232000;0 +20260306 125900;211.232000;211.250000;211.230000;211.244000;0 +20260306 130000;211.243000;211.279000;211.234000;211.265000;0 +20260306 130100;211.269000;211.322000;211.266000;211.317000;0 +20260306 130200;211.308000;211.372000;211.301000;211.352000;0 +20260306 130300;211.355000;211.357000;211.321000;211.327000;0 +20260306 130400;211.325000;211.341000;211.275000;211.286000;0 +20260306 130500;211.285000;211.328000;211.262000;211.327000;0 +20260306 130600;211.319000;211.393000;211.312000;211.387000;0 +20260306 130700;211.388000;211.397000;211.359000;211.365000;0 +20260306 130800;211.365000;211.366000;211.337000;211.349000;0 +20260306 130900;211.347000;211.388000;211.347000;211.354000;0 +20260306 131000;211.352000;211.361000;211.296000;211.311000;0 +20260306 131100;211.312000;211.319000;211.274000;211.282000;0 +20260306 131200;211.284000;211.293000;211.223000;211.241000;0 +20260306 131300;211.244000;211.300000;211.233000;211.293000;0 +20260306 131400;211.294000;211.334000;211.226000;211.228000;0 +20260306 131500;211.227000;211.268000;211.192000;211.255000;0 +20260306 131600;211.257000;211.291000;211.241000;211.273000;0 +20260306 131700;211.273000;211.287000;211.227000;211.266000;0 +20260306 131800;211.265000;211.298000;211.264000;211.280000;0 +20260306 131900;211.284000;211.284000;211.255000;211.262000;0 +20260306 132000;211.261000;211.277000;211.223000;211.238000;0 +20260306 132100;211.241000;211.264000;211.219000;211.249000;0 +20260306 132200;211.243000;211.263000;211.156000;211.164000;0 +20260306 132300;211.167000;211.183000;211.136000;211.157000;0 +20260306 132400;211.159000;211.181000;211.131000;211.177000;0 +20260306 132500;211.175000;211.195000;211.117000;211.140000;0 +20260306 132600;211.138000;211.146000;211.114000;211.145000;0 +20260306 132700;211.145000;211.164000;211.124000;211.130000;0 +20260306 132800;211.133000;211.168000;211.133000;211.152000;0 +20260306 132900;211.149000;211.170000;211.144000;211.167000;0 +20260306 133000;211.172000;211.181000;211.155000;211.165000;0 +20260306 133100;211.161000;211.208000;211.161000;211.208000;0 +20260306 133200;211.209000;211.235000;211.208000;211.214000;0 +20260306 133300;211.213000;211.215000;211.167000;211.187000;0 +20260306 133400;211.192000;211.257000;211.191000;211.255000;0 +20260306 133500;211.256000;211.272000;211.229000;211.250000;0 +20260306 133600;211.252000;211.262000;211.230000;211.234000;0 +20260306 133700;211.234000;211.243000;211.201000;211.229000;0 +20260306 133800;211.233000;211.274000;211.226000;211.248000;0 +20260306 133900;211.250000;211.263000;211.235000;211.242000;0 +20260306 134000;211.246000;211.253000;211.224000;211.231000;0 +20260306 134100;211.232000;211.255000;211.229000;211.243000;0 +20260306 134200;211.245000;211.249000;211.228000;211.243000;0 +20260306 134300;211.243000;211.263000;211.242000;211.262000;0 +20260306 134400;211.262000;211.279000;211.257000;211.273000;0 +20260306 134500;211.269000;211.278000;211.234000;211.250000;0 +20260306 134600;211.248000;211.259000;211.229000;211.247000;0 +20260306 134700;211.246000;211.274000;211.244000;211.267000;0 +20260306 134800;211.267000;211.276000;211.241000;211.268000;0 +20260306 134900;211.269000;211.286000;211.266000;211.285000;0 +20260306 135000;211.288000;211.294000;211.223000;211.227000;0 +20260306 135100;211.228000;211.240000;211.213000;211.231000;0 +20260306 135200;211.234000;211.258000;211.221000;211.258000;0 +20260306 135300;211.258000;211.259000;211.232000;211.242000;0 +20260306 135400;211.241000;211.243000;211.199000;211.215000;0 +20260306 135500;211.215000;211.217000;211.204000;211.216000;0 +20260306 135600;211.219000;211.256000;211.215000;211.249000;0 +20260306 135700;211.251000;211.311000;211.248000;211.294000;0 +20260306 135800;211.294000;211.315000;211.285000;211.288000;0 +20260306 135900;211.287000;211.291000;211.249000;211.254000;0 +20260306 140000;211.253000;211.256000;211.228000;211.248000;0 +20260306 140100;211.250000;211.280000;211.248000;211.269000;0 +20260306 140200;211.269000;211.270000;211.236000;211.264000;0 +20260306 140300;211.264000;211.279000;211.253000;211.272000;0 +20260306 140400;211.273000;211.275000;211.238000;211.246000;0 +20260306 140500;211.242000;211.262000;211.224000;211.252000;0 +20260306 140600;211.251000;211.288000;211.246000;211.274000;0 +20260306 140700;211.275000;211.310000;211.275000;211.293000;0 +20260306 140800;211.293000;211.294000;211.262000;211.269000;0 +20260306 140900;211.263000;211.283000;211.259000;211.274000;0 +20260306 141000;211.270000;211.308000;211.264000;211.301000;0 +20260306 141100;211.302000;211.314000;211.285000;211.285000;0 +20260306 141200;211.285000;211.294000;211.279000;211.284000;0 +20260306 141300;211.285000;211.314000;211.280000;211.314000;0 +20260306 141400;211.313000;211.330000;211.299000;211.305000;0 +20260306 141500;211.304000;211.304000;211.281000;211.297000;0 +20260306 141600;211.297000;211.335000;211.291000;211.309000;0 +20260306 141700;211.308000;211.312000;211.279000;211.294000;0 +20260306 141800;211.295000;211.295000;211.268000;211.280000;0 +20260306 141900;211.289000;211.323000;211.289000;211.315000;0 +20260306 142000;211.315000;211.320000;211.305000;211.316000;0 +20260306 142100;211.322000;211.325000;211.301000;211.316000;0 +20260306 142200;211.316000;211.337000;211.302000;211.312000;0 +20260306 142300;211.308000;211.316000;211.275000;211.299000;0 +20260306 142400;211.299000;211.312000;211.283000;211.297000;0 +20260306 142500;211.296000;211.310000;211.278000;211.302000;0 +20260306 142600;211.301000;211.331000;211.291000;211.325000;0 +20260306 142700;211.327000;211.347000;211.316000;211.316000;0 +20260306 142800;211.319000;211.325000;211.297000;211.309000;0 +20260306 142900;211.309000;211.332000;211.307000;211.320000;0 +20260306 143000;211.317000;211.328000;211.298000;211.298000;0 +20260306 143100;211.298000;211.329000;211.297000;211.324000;0 +20260306 143200;211.325000;211.325000;211.294000;211.298000;0 +20260306 143300;211.293000;211.320000;211.291000;211.306000;0 +20260306 143400;211.304000;211.308000;211.277000;211.299000;0 +20260306 143500;211.300000;211.305000;211.288000;211.302000;0 +20260306 143600;211.296000;211.296000;211.270000;211.276000;0 +20260306 143700;211.272000;211.303000;211.269000;211.271000;0 +20260306 143800;211.268000;211.272000;211.242000;211.270000;0 +20260306 143900;211.270000;211.275000;211.249000;211.255000;0 +20260306 144000;211.254000;211.276000;211.247000;211.273000;0 +20260306 144100;211.273000;211.301000;211.255000;211.301000;0 +20260306 144200;211.300000;211.349000;211.298000;211.349000;0 +20260306 144300;211.349000;211.350000;211.307000;211.338000;0 +20260306 144400;211.338000;211.338000;211.294000;211.294000;0 +20260306 144500;211.296000;211.298000;211.274000;211.291000;0 +20260306 144600;211.294000;211.305000;211.283000;211.296000;0 +20260306 144700;211.299000;211.300000;211.264000;211.276000;0 +20260306 144800;211.278000;211.310000;211.272000;211.299000;0 +20260306 144900;211.299000;211.323000;211.296000;211.313000;0 +20260306 145000;211.312000;211.327000;211.310000;211.326000;0 +20260306 145100;211.327000;211.327000;211.300000;211.307000;0 +20260306 145200;211.307000;211.316000;211.282000;211.314000;0 +20260306 145300;211.316000;211.335000;211.314000;211.333000;0 +20260306 145400;211.333000;211.352000;211.331000;211.344000;0 +20260306 145500;211.344000;211.348000;211.315000;211.329000;0 +20260306 145600;211.333000;211.351000;211.333000;211.344000;0 +20260306 145700;211.347000;211.364000;211.319000;211.323000;0 +20260306 145800;211.323000;211.337000;211.315000;211.324000;0 +20260306 145900;211.327000;211.346000;211.318000;211.334000;0 +20260306 150000;211.341000;211.382000;211.341000;211.373000;0 +20260306 150100;211.373000;211.410000;211.368000;211.403000;0 +20260306 150200;211.407000;211.430000;211.381000;211.382000;0 +20260306 150300;211.383000;211.391000;211.375000;211.388000;0 +20260306 150400;211.390000;211.404000;211.376000;211.404000;0 +20260306 150500;211.407000;211.411000;211.391000;211.398000;0 +20260306 150600;211.396000;211.424000;211.395000;211.418000;0 +20260306 150700;211.418000;211.427000;211.406000;211.412000;0 +20260306 150800;211.414000;211.426000;211.405000;211.422000;0 +20260306 150900;211.423000;211.437000;211.415000;211.434000;0 +20260306 151000;211.437000;211.441000;211.394000;211.405000;0 +20260306 151100;211.401000;211.409000;211.383000;211.395000;0 +20260306 151200;211.396000;211.415000;211.395000;211.403000;0 +20260306 151300;211.403000;211.430000;211.400000;211.426000;0 +20260306 151400;211.428000;211.435000;211.402000;211.404000;0 +20260306 151500;211.404000;211.417000;211.395000;211.404000;0 +20260306 151600;211.407000;211.438000;211.407000;211.417000;0 +20260306 151700;211.417000;211.428000;211.413000;211.414000;0 +20260306 151800;211.414000;211.422000;211.401000;211.404000;0 +20260306 151900;211.404000;211.416000;211.376000;211.381000;0 +20260306 152000;211.379000;211.385000;211.365000;211.378000;0 +20260306 152100;211.377000;211.380000;211.355000;211.370000;0 +20260306 152200;211.370000;211.370000;211.340000;211.345000;0 +20260306 152300;211.345000;211.350000;211.333000;211.335000;0 +20260306 152400;211.335000;211.366000;211.335000;211.341000;0 +20260306 152500;211.337000;211.353000;211.331000;211.351000;0 +20260306 152600;211.346000;211.353000;211.336000;211.347000;0 +20260306 152700;211.347000;211.352000;211.316000;211.321000;0 +20260306 152800;211.321000;211.355000;211.321000;211.351000;0 +20260306 152900;211.351000;211.355000;211.335000;211.352000;0 +20260306 153000;211.356000;211.372000;211.346000;211.368000;0 +20260306 153100;211.367000;211.372000;211.342000;211.350000;0 +20260306 153200;211.349000;211.369000;211.342000;211.359000;0 +20260306 153300;211.358000;211.369000;211.348000;211.367000;0 +20260306 153400;211.371000;211.373000;211.347000;211.349000;0 +20260306 153500;211.350000;211.352000;211.325000;211.338000;0 +20260306 153600;211.342000;211.344000;211.302000;211.306000;0 +20260306 153700;211.310000;211.330000;211.303000;211.323000;0 +20260306 153800;211.323000;211.336000;211.314000;211.319000;0 +20260306 153900;211.316000;211.362000;211.314000;211.350000;0 +20260306 154000;211.354000;211.385000;211.329000;211.377000;0 +20260306 154100;211.378000;211.395000;211.356000;211.391000;0 +20260306 154200;211.394000;211.394000;211.373000;211.376000;0 +20260306 154300;211.375000;211.375000;211.343000;211.356000;0 +20260306 154400;211.358000;211.358000;211.320000;211.341000;0 +20260306 154500;211.342000;211.360000;211.334000;211.360000;0 +20260306 154600;211.355000;211.364000;211.337000;211.363000;0 +20260306 154700;211.363000;211.401000;211.356000;211.400000;0 +20260306 154800;211.398000;211.423000;211.391000;211.422000;0 +20260306 154900;211.421000;211.436000;211.389000;211.399000;0 +20260306 155000;211.400000;211.408000;211.350000;211.356000;0 +20260306 155100;211.357000;211.386000;211.351000;211.370000;0 +20260306 155200;211.368000;211.404000;211.368000;211.397000;0 +20260306 155300;211.395000;211.406000;211.378000;211.406000;0 +20260306 155400;211.405000;211.448000;211.397000;211.448000;0 +20260306 155500;211.448000;211.453000;211.422000;211.451000;0 +20260306 155600;211.449000;211.449000;211.412000;211.428000;0 +20260306 155700;211.428000;211.483000;211.428000;211.465000;0 +20260306 155800;211.465000;211.465000;211.429000;211.456000;0 +20260306 155900;211.446000;211.458000;211.422000;211.450000;0 +20260306 160000;211.447000;211.448000;211.404000;211.427000;0 +20260306 160100;211.428000;211.439000;211.417000;211.437000;0 +20260306 160200;211.438000;211.438000;211.402000;211.419000;0 +20260306 160300;211.419000;211.460000;211.419000;211.455000;0 +20260306 160400;211.454000;211.471000;211.431000;211.441000;0 +20260306 160500;211.439000;211.449000;211.429000;211.447000;0 +20260306 160600;211.451000;211.468000;211.443000;211.455000;0 +20260306 160700;211.452000;211.461000;211.435000;211.456000;0 +20260306 160800;211.450000;211.462000;211.439000;211.447000;0 +20260306 160900;211.444000;211.448000;211.435000;211.444000;0 +20260306 161000;211.444000;211.450000;211.423000;211.436000;0 +20260306 161100;211.437000;211.461000;211.431000;211.435000;0 +20260306 161200;211.435000;211.507000;211.432000;211.489000;0 +20260306 161300;211.487000;211.493000;211.479000;211.487000;0 +20260306 161400;211.486000;211.503000;211.480000;211.502000;0 +20260306 161500;211.498000;211.506000;211.472000;211.498000;0 +20260306 161600;211.503000;211.511000;211.486000;211.486000;0 +20260306 161700;211.482000;211.518000;211.478000;211.510000;0 +20260306 161800;211.510000;211.525000;211.510000;211.515000;0 +20260306 161900;211.515000;211.532000;211.515000;211.532000;0 +20260306 162000;211.524000;211.538000;211.519000;211.537000;0 +20260306 162100;211.536000;211.536000;211.511000;211.524000;0 +20260306 162200;211.522000;211.528000;211.506000;211.506000;0 +20260306 162300;211.509000;211.521000;211.509000;211.514000;0 +20260306 162400;211.518000;211.518000;211.505000;211.512000;0 +20260306 162500;211.512000;211.519000;211.494000;211.505000;0 +20260306 162600;211.509000;211.512000;211.490000;211.500000;0 +20260306 162700;211.498000;211.512000;211.485000;211.495000;0 +20260306 162800;211.497000;211.526000;211.493000;211.508000;0 +20260306 162900;211.506000;211.508000;211.468000;211.471000;0 +20260306 163000;211.473000;211.491000;211.468000;211.478000;0 +20260306 163100;211.476000;211.494000;211.472000;211.491000;0 +20260306 163200;211.493000;211.501000;211.474000;211.474000;0 +20260306 163300;211.474000;211.476000;211.465000;211.466000;0 +20260306 163400;211.465000;211.465000;211.446000;211.454000;0 +20260306 163500;211.452000;211.461000;211.422000;211.436000;0 +20260306 163600;211.441000;211.444000;211.420000;211.422000;0 +20260306 163700;211.426000;211.434000;211.410000;211.422000;0 +20260306 163800;211.425000;211.425000;211.379000;211.381000;0 +20260306 163900;211.380000;211.399000;211.378000;211.378000;0 +20260306 164000;211.376000;211.389000;211.362000;211.366000;0 +20260306 164100;211.349000;211.370000;211.338000;211.367000;0 +20260306 164200;211.366000;211.375000;211.353000;211.355000;0 +20260306 164300;211.353000;211.391000;211.349000;211.386000;0 +20260306 164400;211.385000;211.401000;211.369000;211.372000;0 +20260306 164500;211.368000;211.390000;211.360000;211.384000;0 +20260306 164600;211.383000;211.387000;211.352000;211.363000;0 +20260306 164700;211.362000;211.380000;211.353000;211.376000;0 +20260306 164800;211.374000;211.378000;211.354000;211.373000;0 +20260306 164900;211.372000;211.380000;211.357000;211.360000;0 +20260306 165000;211.360000;211.366000;211.351000;211.357000;0 +20260306 165100;211.357000;211.387000;211.343000;211.386000;0 +20260306 165200;211.387000;211.405000;211.342000;211.383000;0 +20260306 165300;211.381000;211.432000;211.381000;211.411000;0 +20260306 165400;211.412000;211.449000;211.408000;211.435000;0 +20260306 165500;211.429000;211.539000;211.429000;211.525000;0 +20260306 165600;211.514000;211.598000;211.501000;211.568000;0 +20260306 165700;211.563000;211.584000;211.492000;211.579000;0 +20260306 165800;211.598000;211.627000;211.536000;211.592000;0 +20260306 165900;211.583000;211.633000;211.583000;211.612000;0 +20260308 160400;210.765000;210.784000;210.737000;210.737000;0 +20260308 160500;210.714000;210.958000;210.711000;210.831000;0 +20260308 160600;210.903000;211.061000;210.894000;210.915000;0 +20260308 160700;210.915000;210.917000;210.915000;210.915000;0 +20260308 160800;210.916000;211.063000;210.907000;210.921000;0 +20260308 160900;210.922000;210.962000;210.901000;210.911000;0 +20260308 161000;210.920000;210.939000;210.823000;210.869000;0 +20260308 161100;210.878000;210.951000;210.865000;210.901000;0 +20260308 161200;210.902000;210.938000;210.898000;210.938000;0 +20260308 161300;210.943000;210.947000;210.942000;210.945000;0 +20260308 161400;210.944000;210.959000;210.944000;210.956000;0 +20260308 161500;210.969000;210.969000;210.882000;210.947000;0 +20260308 161600;210.945000;210.947000;210.937000;210.942000;0 +20260308 161700;210.942000;210.942000;210.935000;210.935000;0 +20260308 161800;210.935000;210.956000;210.928000;210.939000;0 +20260308 161900;210.939000;211.010000;210.867000;210.942000;0 +20260308 162000;210.941000;210.960000;210.923000;210.936000;0 +20260308 162100;210.934000;210.934000;210.933000;210.933000;0 +20260308 162200;210.932000;210.945000;210.932000;210.934000;0 +20260308 162300;210.939000;210.939000;210.920000;210.921000;0 +20260308 162400;210.920000;210.920000;210.909000;210.909000;0 +20260308 162500;210.911000;210.912000;210.902000;210.904000;0 +20260308 162600;210.902000;210.913000;210.899000;210.900000;0 +20260308 162700;210.897000;210.897000;210.882000;210.892000;0 +20260308 162800;210.889000;210.895000;210.889000;210.892000;0 +20260308 162900;210.891000;210.892000;210.872000;210.877000;0 +20260308 163000;210.881000;210.891000;210.875000;210.882000;0 +20260308 163200;210.877000;210.894000;210.877000;210.885000;0 +20260308 163300;210.891000;210.892000;210.891000;210.891000;0 +20260308 163400;210.893000;210.922000;210.893000;210.901000;0 +20260308 163500;210.902000;210.902000;210.899000;210.900000;0 +20260308 163600;210.899000;210.899000;210.898000;210.899000;0 +20260308 163700;210.898000;210.947000;210.884000;210.912000;0 +20260308 163800;210.905000;210.906000;210.898000;210.904000;0 +20260308 163900;210.905000;210.905000;210.904000;210.904000;0 +20260308 164000;210.905000;210.907000;210.904000;210.904000;0 +20260308 164100;210.903000;210.910000;210.880000;210.890000;0 +20260308 164200;210.889000;210.897000;210.867000;210.892000;0 +20260308 164300;210.888000;210.899000;210.878000;210.890000;0 +20260308 164400;210.892000;210.892000;210.877000;210.881000;0 +20260308 164500;210.880000;210.900000;210.869000;210.887000;0 +20260308 164600;210.888000;210.931000;210.888000;210.905000;0 +20260308 164700;210.899000;210.947000;210.879000;210.887000;0 +20260308 164800;210.887000;210.899000;210.810000;210.813000;0 +20260308 164900;210.814000;210.819000;210.807000;210.808000;0 +20260308 165000;210.808000;210.875000;210.807000;210.828000;0 +20260308 165100;210.827000;210.848000;210.820000;210.830000;0 +20260308 165200;210.830000;210.836000;210.830000;210.833000;0 +20260308 165300;210.826000;210.827000;210.812000;210.826000;0 +20260308 165400;210.823000;210.825000;210.805000;210.808000;0 +20260308 165500;210.808000;210.812000;210.808000;210.811000;0 +20260308 165600;210.812000;210.864000;210.792000;210.834000;0 +20260308 165700;210.835000;210.846000;210.835000;210.846000;0 +20260308 165800;210.848000;210.848000;210.826000;210.840000;0 +20260308 165900;210.841000;210.850000;210.819000;210.850000;0 +20260308 170000;210.852000;211.012000;210.852000;210.978000;0 +20260308 170100;211.011000;211.011000;210.861000;210.884000;0 +20260308 170200;210.888000;210.933000;210.864000;210.870000;0 +20260308 170300;210.870000;210.886000;210.857000;210.866000;0 +20260308 170400;210.868000;210.875000;210.854000;210.864000;0 +20260308 170500;210.864000;210.869000;210.739000;210.796000;0 +20260308 170600;210.801000;210.847000;210.798000;210.813000;0 +20260308 170700;210.811000;210.868000;210.797000;210.861000;0 +20260308 170800;210.859000;210.903000;210.829000;210.839000;0 +20260308 170900;210.838000;210.859000;210.811000;210.843000;0 +20260308 171000;210.850000;210.953000;210.837000;210.952000;0 +20260308 171100;210.965000;211.029000;210.914000;210.984000;0 +20260308 171200;210.985000;210.985000;210.936000;210.956000;0 +20260308 171300;210.957000;211.004000;210.956000;211.004000;0 +20260308 171400;211.004000;211.029000;210.952000;210.960000;0 +20260308 171500;210.963000;211.043000;210.961000;211.032000;0 +20260308 171600;211.031000;211.042000;210.990000;211.010000;0 +20260308 171700;211.006000;211.097000;211.006000;211.033000;0 +20260308 171800;211.031000;211.035000;210.956000;210.971000;0 +20260308 171900;210.976000;211.026000;210.960000;211.009000;0 +20260308 172000;211.009000;211.009000;210.916000;210.947000;0 +20260308 172100;210.947000;211.000000;210.921000;210.993000;0 +20260308 172200;210.989000;211.063000;210.947000;210.973000;0 +20260308 172300;210.971000;211.075000;210.970000;211.044000;0 +20260308 172400;211.044000;211.058000;210.978000;210.996000;0 +20260308 172500;210.996000;211.031000;210.952000;210.953000;0 +20260308 172600;210.952000;210.970000;210.921000;210.943000;0 +20260308 172700;210.948000;210.966000;210.916000;210.931000;0 +20260308 172800;210.938000;210.996000;210.935000;210.980000;0 +20260308 172900;210.981000;211.051000;210.972000;211.036000;0 +20260308 173000;211.036000;211.052000;210.976000;211.032000;0 +20260308 173100;211.033000;211.105000;211.032000;211.037000;0 +20260308 173200;211.036000;211.051000;210.944000;210.944000;0 +20260308 173300;210.946000;210.956000;210.882000;210.882000;0 +20260308 173400;210.891000;210.946000;210.888000;210.919000;0 +20260308 173500;210.920000;210.936000;210.888000;210.892000;0 +20260308 173600;210.901000;210.977000;210.891000;210.972000;0 +20260308 173700;210.972000;210.993000;210.956000;210.988000;0 +20260308 173800;210.989000;211.085000;210.987000;211.002000;0 +20260308 173900;211.003000;211.027000;210.980000;211.023000;0 +20260308 174000;211.023000;211.030000;210.956000;210.957000;0 +20260308 174100;210.956000;210.974000;210.948000;210.968000;0 +20260308 174200;210.966000;210.972000;210.911000;210.937000;0 +20260308 174300;210.938000;210.963000;210.937000;210.957000;0 +20260308 174400;210.957000;210.981000;210.912000;210.912000;0 +20260308 174500;210.917000;210.943000;210.917000;210.936000;0 +20260308 174600;210.938000;211.002000;210.937000;210.950000;0 +20260308 174700;210.949000;210.973000;210.926000;210.957000;0 +20260308 174800;210.956000;210.964000;210.915000;210.920000;0 +20260308 174900;210.922000;210.949000;210.909000;210.931000;0 +20260308 175000;210.931000;210.969000;210.911000;210.958000;0 +20260308 175100;210.951000;210.958000;210.879000;210.900000;0 +20260308 175200;210.891000;210.916000;210.873000;210.899000;0 +20260308 175300;210.902000;210.905000;210.815000;210.831000;0 +20260308 175400;210.833000;210.887000;210.815000;210.866000;0 +20260308 175500;210.865000;210.895000;210.805000;210.842000;0 +20260308 175600;210.841000;210.863000;210.785000;210.801000;0 +20260308 175700;210.800000;210.815000;210.749000;210.754000;0 +20260308 175800;210.765000;210.803000;210.759000;210.782000;0 +20260308 175900;210.783000;210.837000;210.771000;210.825000;0 +20260308 180000;210.825000;210.860000;210.795000;210.815000;0 +20260308 180100;210.821000;210.861000;210.811000;210.855000;0 +20260308 180200;210.855000;210.871000;210.831000;210.835000;0 +20260308 180300;210.834000;210.869000;210.832000;210.855000;0 +20260308 180400;210.855000;210.862000;210.822000;210.827000;0 +20260308 180500;210.828000;210.834000;210.748000;210.781000;0 +20260308 180600;210.781000;210.791000;210.753000;210.789000;0 +20260308 180700;210.788000;210.798000;210.744000;210.779000;0 +20260308 180800;210.778000;210.780000;210.748000;210.749000;0 +20260308 180900;210.748000;210.799000;210.736000;210.784000;0 +20260308 181000;210.780000;210.789000;210.738000;210.744000;0 +20260308 181100;210.747000;210.777000;210.734000;210.737000;0 +20260308 181200;210.737000;210.740000;210.715000;210.728000;0 +20260308 181300;210.724000;210.741000;210.722000;210.739000;0 +20260308 181400;210.736000;210.772000;210.734000;210.772000;0 +20260308 181500;210.773000;210.786000;210.722000;210.740000;0 +20260308 181600;210.743000;210.775000;210.738000;210.752000;0 +20260308 181700;210.759000;210.770000;210.737000;210.768000;0 +20260308 181800;210.769000;210.810000;210.750000;210.802000;0 +20260308 181900;210.801000;210.807000;210.755000;210.771000;0 +20260308 182000;210.771000;210.813000;210.753000;210.806000;0 +20260308 182100;210.808000;210.836000;210.803000;210.814000;0 +20260308 182200;210.807000;210.812000;210.781000;210.810000;0 +20260308 182300;210.809000;210.830000;210.797000;210.826000;0 +20260308 182400;210.829000;210.849000;210.812000;210.813000;0 +20260308 182500;210.820000;210.820000;210.799000;210.808000;0 +20260308 182600;210.811000;210.816000;210.796000;210.811000;0 +20260308 182700;210.809000;210.821000;210.805000;210.812000;0 +20260308 182800;210.813000;210.823000;210.776000;210.795000;0 +20260308 182900;210.801000;210.812000;210.782000;210.806000;0 +20260308 183000;210.804000;210.821000;210.766000;210.774000;0 +20260308 183100;210.772000;210.776000;210.718000;210.743000;0 +20260308 183200;210.743000;210.764000;210.709000;210.748000;0 +20260308 183300;210.741000;210.751000;210.687000;210.712000;0 +20260308 183400;210.711000;210.741000;210.701000;210.731000;0 +20260308 183500;210.732000;210.765000;210.726000;210.736000;0 +20260308 183600;210.734000;210.745000;210.697000;210.705000;0 +20260308 183700;210.700000;210.703000;210.658000;210.675000;0 +20260308 183800;210.676000;210.676000;210.619000;210.628000;0 +20260308 183900;210.628000;210.635000;210.597000;210.613000;0 +20260308 184000;210.616000;210.636000;210.609000;210.625000;0 +20260308 184100;210.625000;210.640000;210.606000;210.628000;0 +20260308 184200;210.636000;210.670000;210.624000;210.660000;0 +20260308 184300;210.662000;210.690000;210.651000;210.690000;0 +20260308 184400;210.690000;210.698000;210.678000;210.684000;0 +20260308 184500;210.685000;210.686000;210.662000;210.664000;0 +20260308 184600;210.666000;210.688000;210.656000;210.686000;0 +20260308 184700;210.687000;210.744000;210.672000;210.744000;0 +20260308 184800;210.744000;210.752000;210.724000;210.740000;0 +20260308 184900;210.741000;210.814000;210.741000;210.783000;0 +20260308 185000;210.785000;210.801000;210.779000;210.791000;0 +20260308 185100;210.791000;210.798000;210.782000;210.785000;0 +20260308 185200;210.786000;210.810000;210.782000;210.795000;0 +20260308 185300;210.796000;210.797000;210.769000;210.780000;0 +20260308 185400;210.785000;210.794000;210.757000;210.757000;0 +20260308 185500;210.757000;210.818000;210.755000;210.806000;0 +20260308 185600;210.807000;210.828000;210.792000;210.800000;0 +20260308 185700;210.803000;210.809000;210.717000;210.743000;0 +20260308 185800;210.740000;210.803000;210.712000;210.738000;0 +20260308 185900;210.737000;210.765000;210.722000;210.742000;0 +20260308 190000;210.743000;210.770000;210.680000;210.699000;0 +20260308 190100;210.699000;210.758000;210.690000;210.730000;0 +20260308 190200;210.732000;210.737000;210.672000;210.704000;0 +20260308 190300;210.705000;210.768000;210.695000;210.738000;0 +20260308 190400;210.738000;210.797000;210.720000;210.797000;0 +20260308 190500;210.796000;210.837000;210.792000;210.825000;0 +20260308 190600;210.825000;210.876000;210.824000;210.837000;0 +20260308 190700;210.837000;210.840000;210.815000;210.818000;0 +20260308 190800;210.816000;210.840000;210.773000;210.808000;0 +20260308 190900;210.804000;210.815000;210.787000;210.790000;0 +20260308 191000;210.797000;210.845000;210.790000;210.833000;0 +20260308 191100;210.830000;210.861000;210.808000;210.822000;0 +20260308 191200;210.822000;210.828000;210.784000;210.800000;0 +20260308 191300;210.800000;210.800000;210.739000;210.742000;0 +20260308 191400;210.739000;210.754000;210.726000;210.742000;0 +20260308 191500;210.741000;210.747000;210.651000;210.679000;0 +20260308 191600;210.677000;210.741000;210.653000;210.736000;0 +20260308 191700;210.743000;210.748000;210.678000;210.687000;0 +20260308 191800;210.691000;210.724000;210.676000;210.715000;0 +20260308 191900;210.715000;210.763000;210.694000;210.727000;0 +20260308 192000;210.728000;210.779000;210.716000;210.766000;0 +20260308 192100;210.766000;210.770000;210.726000;210.756000;0 +20260308 192200;210.756000;210.775000;210.734000;210.753000;0 +20260308 192300;210.753000;210.805000;210.747000;210.798000;0 +20260308 192400;210.798000;210.801000;210.732000;210.749000;0 +20260308 192500;210.749000;210.749000;210.655000;210.661000;0 +20260308 192600;210.660000;210.717000;210.660000;210.692000;0 +20260308 192700;210.696000;210.699000;210.666000;210.686000;0 +20260308 192800;210.686000;210.725000;210.686000;210.724000;0 +20260308 192900;210.718000;210.782000;210.718000;210.782000;0 +20260308 193000;210.777000;210.855000;210.771000;210.855000;0 +20260308 193100;210.861000;210.873000;210.850000;210.863000;0 +20260308 193200;210.864000;210.915000;210.855000;210.915000;0 +20260308 193300;210.914000;210.942000;210.903000;210.937000;0 +20260308 193400;210.945000;211.017000;210.944000;211.017000;0 +20260308 193500;211.018000;211.024000;210.982000;210.999000;0 +20260308 193600;210.999000;211.007000;210.979000;210.979000;0 +20260308 193700;210.979000;211.002000;210.948000;210.948000;0 +20260308 193800;210.947000;210.984000;210.947000;210.979000;0 +20260308 193900;210.980000;210.990000;210.959000;210.962000;0 +20260308 194000;210.957000;210.970000;210.934000;210.945000;0 +20260308 194100;210.948000;210.978000;210.948000;210.978000;0 +20260308 194200;210.977000;211.016000;210.936000;211.013000;0 +20260308 194300;211.018000;211.018000;210.967000;210.988000;0 +20260308 194400;210.991000;211.006000;210.980000;210.988000;0 +20260308 194500;210.990000;210.997000;210.940000;210.982000;0 +20260308 194600;210.982000;210.997000;210.953000;210.959000;0 +20260308 194700;210.958000;210.970000;210.939000;210.948000;0 +20260308 194800;210.944000;210.972000;210.930000;210.959000;0 +20260308 194900;210.962000;210.980000;210.955000;210.965000;0 +20260308 195000;210.967000;211.009000;210.961000;210.961000;0 +20260308 195100;210.964000;210.976000;210.917000;210.932000;0 +20260308 195200;210.936000;210.966000;210.889000;210.892000;0 +20260308 195300;210.894000;210.954000;210.873000;210.919000;0 +20260308 195400;210.913000;210.994000;210.869000;210.985000;0 +20260308 195500;211.003000;211.019000;210.979000;211.002000;0 +20260308 195600;210.999000;211.026000;210.994000;211.016000;0 +20260308 195700;211.016000;211.016000;210.977000;210.998000;0 +20260308 195800;210.997000;211.042000;210.975000;211.039000;0 +20260308 195900;211.038000;211.047000;210.975000;210.999000;0 +20260308 200000;211.010000;211.016000;210.936000;210.940000;0 +20260308 200100;210.942000;211.002000;210.925000;210.973000;0 +20260308 200200;210.973000;210.991000;210.921000;210.940000;0 +20260308 200300;210.940000;210.943000;210.828000;210.832000;0 +20260308 200400;210.834000;210.896000;210.834000;210.856000;0 +20260308 200500;210.855000;210.886000;210.823000;210.877000;0 +20260308 200600;210.874000;210.897000;210.849000;210.868000;0 +20260308 200700;210.867000;210.890000;210.852000;210.860000;0 +20260308 200800;210.859000;210.903000;210.858000;210.903000;0 +20260308 200900;210.903000;210.911000;210.872000;210.893000;0 +20260308 201000;210.893000;210.907000;210.874000;210.905000;0 +20260308 201100;210.903000;210.962000;210.896000;210.930000;0 +20260308 201200;210.929000;210.937000;210.889000;210.901000;0 +20260308 201300;210.899000;210.957000;210.890000;210.908000;0 +20260308 201400;210.907000;210.955000;210.884000;210.906000;0 +20260308 201500;210.909000;210.921000;210.857000;210.863000;0 +20260308 201600;210.868000;210.889000;210.854000;210.870000;0 +20260308 201700;210.870000;210.892000;210.857000;210.866000;0 +20260308 201800;210.866000;210.888000;210.854000;210.857000;0 +20260308 201900;210.857000;210.879000;210.832000;210.834000;0 +20260308 202000;210.834000;210.855000;210.834000;210.838000;0 +20260308 202100;210.840000;210.854000;210.819000;210.831000;0 +20260308 202200;210.832000;210.838000;210.807000;210.820000;0 +20260308 202300;210.820000;210.855000;210.806000;210.806000;0 +20260308 202400;210.805000;210.857000;210.799000;210.856000;0 +20260308 202500;210.857000;210.873000;210.831000;210.838000;0 +20260308 202600;210.838000;210.866000;210.832000;210.862000;0 +20260308 202700;210.861000;210.862000;210.833000;210.852000;0 +20260308 202800;210.854000;210.875000;210.836000;210.860000;0 +20260308 202900;210.856000;210.858000;210.818000;210.821000;0 +20260308 203000;210.820000;210.844000;210.807000;210.820000;0 +20260308 203100;210.821000;210.848000;210.815000;210.847000;0 +20260308 203200;210.846000;210.913000;210.846000;210.904000;0 +20260308 203300;210.904000;210.925000;210.896000;210.910000;0 +20260308 203400;210.912000;210.915000;210.863000;210.864000;0 +20260308 203500;210.868000;210.881000;210.862000;210.877000;0 +20260308 203600;210.877000;210.908000;210.867000;210.900000;0 +20260308 203700;210.900000;210.923000;210.885000;210.887000;0 +20260308 203800;210.889000;210.900000;210.855000;210.865000;0 +20260308 203900;210.862000;210.870000;210.838000;210.839000;0 +20260308 204000;210.836000;210.859000;210.820000;210.846000;0 +20260308 204100;210.846000;210.858000;210.831000;210.852000;0 +20260308 204200;210.851000;210.890000;210.851000;210.886000;0 +20260308 204300;210.885000;210.886000;210.859000;210.861000;0 +20260308 204400;210.862000;210.871000;210.839000;210.839000;0 +20260308 204500;210.836000;210.864000;210.834000;210.855000;0 +20260308 204600;210.854000;210.880000;210.829000;210.854000;0 +20260308 204700;210.851000;210.867000;210.823000;210.838000;0 +20260308 204800;210.839000;210.850000;210.797000;210.805000;0 +20260308 204900;210.806000;210.816000;210.785000;210.794000;0 +20260308 205000;210.796000;210.799000;210.749000;210.762000;0 +20260308 205100;210.760000;210.800000;210.750000;210.783000;0 +20260308 205200;210.782000;210.785000;210.735000;210.757000;0 +20260308 205300;210.758000;210.766000;210.742000;210.758000;0 +20260308 205400;210.754000;210.787000;210.746000;210.780000;0 +20260308 205500;210.774000;210.832000;210.768000;210.827000;0 +20260308 205600;210.827000;210.854000;210.800000;210.811000;0 +20260308 205700;210.807000;210.812000;210.770000;210.807000;0 +20260308 205800;210.806000;210.855000;210.802000;210.847000;0 +20260308 205900;210.849000;210.850000;210.821000;210.829000;0 +20260308 210000;210.833000;210.908000;210.833000;210.897000;0 +20260308 210100;210.897000;210.927000;210.886000;210.926000;0 +20260308 210200;210.927000;210.947000;210.899000;210.903000;0 +20260308 210300;210.903000;210.914000;210.858000;210.868000;0 +20260308 210400;210.868000;210.896000;210.868000;210.877000;0 +20260308 210500;210.877000;210.920000;210.851000;210.917000;0 +20260308 210600;210.916000;210.965000;210.907000;210.959000;0 +20260308 210700;210.957000;211.004000;210.942000;210.999000;0 +20260308 210800;211.001000;211.040000;210.983000;211.031000;0 +20260308 210900;211.032000;211.048000;211.028000;211.041000;0 +20260308 211000;211.044000;211.102000;211.036000;211.049000;0 +20260308 211100;211.048000;211.080000;211.028000;211.043000;0 +20260308 211200;211.042000;211.052000;210.999000;211.000000;0 +20260308 211300;211.005000;211.020000;210.983000;210.987000;0 +20260308 211400;210.986000;210.989000;210.950000;210.970000;0 +20260308 211500;210.970000;210.971000;210.911000;210.920000;0 +20260308 211600;210.921000;210.942000;210.902000;210.911000;0 +20260308 211700;210.912000;210.916000;210.889000;210.891000;0 +20260308 211800;210.892000;210.894000;210.861000;210.877000;0 +20260308 211900;210.875000;210.891000;210.855000;210.887000;0 +20260308 212000;210.890000;210.899000;210.873000;210.892000;0 +20260308 212100;210.891000;210.968000;210.890000;210.936000;0 +20260308 212200;210.934000;210.967000;210.928000;210.967000;0 +20260308 212300;210.967000;211.003000;210.965000;210.985000;0 +20260308 212400;210.985000;210.998000;210.972000;210.993000;0 +20260308 212500;210.991000;210.993000;210.963000;210.973000;0 +20260308 212600;210.975000;210.975000;210.942000;210.952000;0 +20260308 212700;210.951000;210.963000;210.942000;210.958000;0 +20260308 212800;210.958000;210.965000;210.941000;210.965000;0 +20260308 212900;210.968000;210.977000;210.954000;210.962000;0 +20260308 213000;210.961000;210.980000;210.950000;210.953000;0 +20260308 213100;210.950000;210.954000;210.895000;210.904000;0 +20260308 213200;210.904000;210.989000;210.900000;210.973000;0 +20260308 213300;210.974000;210.984000;210.959000;210.978000;0 +20260308 213400;210.977000;211.001000;210.974000;210.993000;0 +20260308 213500;210.997000;211.012000;210.981000;211.007000;0 +20260308 213600;211.004000;211.059000;211.004000;211.036000;0 +20260308 213700;211.032000;211.055000;211.025000;211.037000;0 +20260308 213800;211.037000;211.057000;211.011000;211.045000;0 +20260308 213900;211.045000;211.057000;211.005000;211.029000;0 +20260308 214000;211.033000;211.079000;211.030000;211.077000;0 +20260308 214100;211.075000;211.079000;211.052000;211.073000;0 +20260308 214200;211.078000;211.121000;211.075000;211.120000;0 +20260308 214300;211.120000;211.121000;211.081000;211.085000;0 +20260308 214400;211.085000;211.128000;211.080000;211.119000;0 +20260308 214500;211.118000;211.149000;211.105000;211.121000;0 +20260308 214600;211.121000;211.126000;211.099000;211.112000;0 +20260308 214700;211.111000;211.148000;211.111000;211.115000;0 +20260308 214800;211.114000;211.169000;211.110000;211.166000;0 +20260308 214900;211.163000;211.199000;211.157000;211.162000;0 +20260308 215000;211.163000;211.163000;211.128000;211.144000;0 +20260308 215100;211.146000;211.162000;211.132000;211.139000;0 +20260308 215200;211.139000;211.152000;211.108000;211.124000;0 +20260308 215300;211.123000;211.169000;211.120000;211.168000;0 +20260308 215400;211.169000;211.187000;211.132000;211.142000;0 +20260308 215500;211.146000;211.164000;211.139000;211.155000;0 +20260308 215600;211.157000;211.178000;211.149000;211.157000;0 +20260308 215700;211.157000;211.170000;211.138000;211.140000;0 +20260308 215800;211.137000;211.177000;211.123000;211.125000;0 +20260308 215900;211.120000;211.152000;211.110000;211.148000;0 +20260308 220000;211.147000;211.196000;211.118000;211.193000;0 +20260308 220100;211.192000;211.221000;211.174000;211.216000;0 +20260308 220200;211.216000;211.226000;211.196000;211.216000;0 +20260308 220300;211.211000;211.224000;211.189000;211.202000;0 +20260308 220400;211.202000;211.206000;211.151000;211.155000;0 +20260308 220500;211.156000;211.191000;211.145000;211.177000;0 +20260308 220600;211.174000;211.201000;211.172000;211.186000;0 +20260308 220700;211.187000;211.232000;211.187000;211.218000;0 +20260308 220800;211.216000;211.220000;211.172000;211.172000;0 +20260308 220900;211.172000;211.188000;211.108000;211.122000;0 +20260308 221000;211.119000;211.123000;211.093000;211.096000;0 +20260308 221100;211.096000;211.130000;211.094000;211.115000;0 +20260308 221200;211.117000;211.119000;211.096000;211.098000;0 +20260308 221300;211.098000;211.105000;211.085000;211.087000;0 +20260308 221400;211.087000;211.108000;211.082000;211.100000;0 +20260308 221500;211.099000;211.122000;211.097000;211.119000;0 +20260308 221600;211.119000;211.151000;211.119000;211.138000;0 +20260308 221700;211.140000;211.167000;211.140000;211.146000;0 +20260308 221800;211.152000;211.164000;211.111000;211.120000;0 +20260308 221900;211.122000;211.152000;211.117000;211.143000;0 +20260308 222000;211.149000;211.205000;211.141000;211.202000;0 +20260308 222100;211.200000;211.243000;211.198000;211.235000;0 +20260308 222200;211.232000;211.235000;211.196000;211.196000;0 +20260308 222300;211.195000;211.199000;211.164000;211.185000;0 +20260308 222400;211.189000;211.193000;211.163000;211.176000;0 +20260308 222500;211.174000;211.213000;211.172000;211.206000;0 +20260308 222600;211.205000;211.227000;211.198000;211.211000;0 +20260308 222700;211.212000;211.226000;211.204000;211.217000;0 +20260308 222800;211.217000;211.227000;211.182000;211.196000;0 +20260308 222900;211.198000;211.222000;211.193000;211.213000;0 +20260308 223000;211.208000;211.221000;211.191000;211.205000;0 +20260308 223100;211.205000;211.268000;211.205000;211.262000;0 +20260308 223200;211.265000;211.265000;211.235000;211.252000;0 +20260308 223300;211.253000;211.282000;211.245000;211.276000;0 +20260308 223400;211.280000;211.300000;211.276000;211.291000;0 +20260308 223500;211.291000;211.299000;211.242000;211.245000;0 +20260308 223600;211.249000;211.251000;211.229000;211.247000;0 +20260308 223700;211.245000;211.275000;211.238000;211.274000;0 +20260308 223800;211.270000;211.277000;211.226000;211.228000;0 +20260308 223900;211.226000;211.247000;211.213000;211.213000;0 +20260308 224000;211.214000;211.217000;211.178000;211.183000;0 +20260308 224100;211.181000;211.195000;211.161000;211.168000;0 +20260308 224200;211.167000;211.172000;211.155000;211.167000;0 +20260308 224300;211.166000;211.174000;211.154000;211.169000;0 +20260308 224400;211.169000;211.187000;211.156000;211.180000;0 +20260308 224500;211.180000;211.206000;211.180000;211.188000;0 +20260308 224600;211.194000;211.223000;211.175000;211.175000;0 +20260308 224700;211.172000;211.179000;211.152000;211.160000;0 +20260308 224800;211.162000;211.188000;211.160000;211.163000;0 +20260308 224900;211.165000;211.173000;211.138000;211.153000;0 +20260308 225000;211.156000;211.175000;211.146000;211.172000;0 +20260308 225100;211.175000;211.198000;211.166000;211.197000;0 +20260308 225200;211.198000;211.225000;211.195000;211.220000;0 +20260308 225300;211.219000;211.228000;211.189000;211.194000;0 +20260308 225400;211.194000;211.210000;211.192000;211.199000;0 +20260308 225500;211.196000;211.214000;211.191000;211.203000;0 +20260308 225600;211.205000;211.210000;211.188000;211.190000;0 +20260308 225700;211.188000;211.207000;211.179000;211.179000;0 +20260308 225800;211.178000;211.199000;211.166000;211.193000;0 +20260308 225900;211.197000;211.214000;211.176000;211.200000;0 +20260308 230000;211.200000;211.244000;211.200000;211.209000;0 +20260308 230100;211.208000;211.211000;211.162000;211.177000;0 +20260308 230200;211.177000;211.226000;211.174000;211.174000;0 +20260308 230300;211.173000;211.194000;211.162000;211.170000;0 +20260308 230400;211.171000;211.225000;211.168000;211.214000;0 +20260308 230500;211.215000;211.226000;211.190000;211.213000;0 +20260308 230600;211.212000;211.296000;211.211000;211.296000;0 +20260308 230700;211.295000;211.318000;211.295000;211.316000;0 +20260308 230800;211.316000;211.341000;211.308000;211.324000;0 +20260308 230900;211.325000;211.369000;211.321000;211.357000;0 +20260308 231000;211.358000;211.383000;211.358000;211.373000;0 +20260308 231100;211.373000;211.380000;211.338000;211.348000;0 +20260308 231200;211.347000;211.353000;211.324000;211.334000;0 +20260308 231300;211.333000;211.338000;211.298000;211.303000;0 +20260308 231400;211.304000;211.306000;211.287000;211.293000;0 +20260308 231500;211.293000;211.293000;211.253000;211.258000;0 +20260308 231600;211.260000;211.266000;211.236000;211.251000;0 +20260308 231700;211.252000;211.266000;211.198000;211.209000;0 +20260308 231800;211.207000;211.231000;211.207000;211.231000;0 +20260308 231900;211.231000;211.249000;211.227000;211.246000;0 +20260308 232000;211.245000;211.264000;211.243000;211.260000;0 +20260308 232100;211.257000;211.263000;211.242000;211.253000;0 +20260308 232200;211.254000;211.255000;211.230000;211.244000;0 +20260308 232300;211.243000;211.248000;211.228000;211.228000;0 +20260308 232400;211.228000;211.234000;211.218000;211.231000;0 +20260308 232500;211.231000;211.267000;211.217000;211.266000;0 +20260308 232600;211.267000;211.282000;211.255000;211.280000;0 +20260308 232700;211.284000;211.297000;211.235000;211.241000;0 +20260308 232800;211.240000;211.240000;211.220000;211.235000;0 +20260308 232900;211.231000;211.245000;211.221000;211.228000;0 +20260308 233000;211.230000;211.230000;211.150000;211.156000;0 +20260308 233100;211.154000;211.160000;211.124000;211.143000;0 +20260308 233200;211.140000;211.169000;211.122000;211.162000;0 +20260308 233300;211.166000;211.170000;211.121000;211.158000;0 +20260308 233400;211.157000;211.218000;211.151000;211.208000;0 +20260308 233500;211.207000;211.213000;211.195000;211.213000;0 +20260308 233600;211.209000;211.225000;211.201000;211.201000;0 +20260308 233700;211.201000;211.218000;211.194000;211.212000;0 +20260308 233800;211.214000;211.227000;211.207000;211.222000;0 +20260308 233900;211.222000;211.256000;211.210000;211.248000;0 +20260308 234000;211.248000;211.266000;211.240000;211.248000;0 +20260308 234100;211.249000;211.252000;211.220000;211.234000;0 +20260308 234200;211.234000;211.235000;211.218000;211.229000;0 +20260308 234300;211.229000;211.243000;211.206000;211.213000;0 +20260308 234400;211.213000;211.236000;211.213000;211.230000;0 +20260308 234500;211.230000;211.246000;211.193000;211.198000;0 +20260308 234600;211.199000;211.210000;211.185000;211.205000;0 +20260308 234700;211.203000;211.203000;211.167000;211.169000;0 +20260308 234800;211.172000;211.184000;211.168000;211.170000;0 +20260308 234900;211.172000;211.173000;211.112000;211.143000;0 +20260308 235000;211.139000;211.168000;211.139000;211.152000;0 +20260308 235100;211.151000;211.159000;211.139000;211.144000;0 +20260308 235200;211.144000;211.144000;211.118000;211.131000;0 +20260308 235300;211.132000;211.137000;211.116000;211.126000;0 +20260308 235400;211.124000;211.125000;211.089000;211.106000;0 +20260308 235500;211.113000;211.125000;211.039000;211.045000;0 +20260308 235600;211.045000;211.056000;211.027000;211.052000;0 +20260308 235700;211.054000;211.069000;211.053000;211.061000;0 +20260308 235800;211.060000;211.069000;211.052000;211.064000;0 +20260308 235900;211.061000;211.064000;211.053000;211.053000;0 +20260309 000000;211.052000;211.110000;211.050000;211.103000;0 +20260309 000100;211.103000;211.114000;211.091000;211.108000;0 +20260309 000200;211.107000;211.107000;211.087000;211.101000;0 +20260309 000300;211.099000;211.151000;211.096000;211.108000;0 +20260309 000400;211.109000;211.136000;211.101000;211.130000;0 +20260309 000500;211.131000;211.164000;211.126000;211.151000;0 +20260309 000600;211.152000;211.192000;211.131000;211.188000;0 +20260309 000700;211.189000;211.189000;211.143000;211.153000;0 +20260309 000800;211.151000;211.164000;211.129000;211.138000;0 +20260309 000900;211.138000;211.148000;211.130000;211.144000;0 +20260309 001000;211.144000;211.161000;211.132000;211.137000;0 +20260309 001100;211.135000;211.138000;211.117000;211.122000;0 +20260309 001200;211.125000;211.158000;211.120000;211.151000;0 +20260309 001300;211.151000;211.156000;211.129000;211.149000;0 +20260309 001400;211.151000;211.171000;211.150000;211.167000;0 +20260309 001500;211.166000;211.172000;211.114000;211.126000;0 +20260309 001600;211.126000;211.160000;211.125000;211.143000;0 +20260309 001700;211.143000;211.155000;211.123000;211.130000;0 +20260309 001800;211.132000;211.133000;211.117000;211.131000;0 +20260309 001900;211.127000;211.132000;211.111000;211.118000;0 +20260309 002000;211.117000;211.148000;211.102000;211.130000;0 +20260309 002100;211.132000;211.327000;211.106000;211.310000;0 +20260309 002200;211.315000;211.363000;211.273000;211.318000;0 +20260309 002300;211.320000;211.347000;211.214000;211.237000;0 +20260309 002400;211.240000;211.243000;211.148000;211.170000;0 +20260309 002500;211.176000;211.221000;211.161000;211.163000;0 +20260309 002600;211.168000;211.168000;211.111000;211.141000;0 +20260309 002700;211.137000;211.180000;211.079000;211.093000;0 +20260309 002800;211.092000;211.114000;211.052000;211.066000;0 +20260309 002900;211.067000;211.102000;211.042000;211.101000;0 +20260309 003000;211.101000;211.115000;211.063000;211.080000;0 +20260309 003100;211.078000;211.155000;211.073000;211.151000;0 +20260309 003200;211.151000;211.151000;211.055000;211.071000;0 +20260309 003300;211.073000;211.073000;210.999000;211.022000;0 +20260309 003400;211.023000;211.038000;210.989000;211.029000;0 +20260309 003500;211.035000;211.037000;210.998000;211.027000;0 +20260309 003600;211.031000;211.062000;211.025000;211.038000;0 +20260309 003700;211.037000;211.052000;210.998000;211.026000;0 +20260309 003800;211.027000;211.030000;211.000000;211.006000;0 +20260309 003900;211.002000;211.017000;210.989000;211.012000;0 +20260309 004000;211.012000;211.043000;211.010000;211.041000;0 +20260309 004100;211.039000;211.075000;211.025000;211.063000;0 +20260309 004200;211.060000;211.145000;211.049000;211.135000;0 +20260309 004300;211.140000;211.210000;211.134000;211.160000;0 +20260309 004400;211.161000;211.165000;211.125000;211.134000;0 +20260309 004500;211.138000;211.179000;211.126000;211.175000;0 +20260309 004600;211.174000;211.183000;211.131000;211.147000;0 +20260309 004700;211.146000;211.155000;211.065000;211.092000;0 +20260309 004800;211.091000;211.148000;211.091000;211.134000;0 +20260309 004900;211.135000;211.183000;211.116000;211.166000;0 +20260309 005000;211.168000;211.183000;211.146000;211.180000;0 +20260309 005100;211.179000;211.195000;211.160000;211.193000;0 +20260309 005200;211.194000;211.209000;211.130000;211.134000;0 +20260309 005300;211.134000;211.212000;211.134000;211.210000;0 +20260309 005400;211.207000;211.213000;211.183000;211.193000;0 +20260309 005500;211.195000;211.215000;211.186000;211.208000;0 +20260309 005600;211.203000;211.207000;211.158000;211.172000;0 +20260309 005700;211.174000;211.198000;211.171000;211.177000;0 +20260309 005800;211.167000;211.174000;211.147000;211.151000;0 +20260309 005900;211.152000;211.173000;211.151000;211.163000;0 +20260309 010000;211.167000;211.169000;211.114000;211.133000;0 +20260309 010100;211.131000;211.159000;211.116000;211.154000;0 +20260309 010200;211.157000;211.167000;211.092000;211.092000;0 +20260309 010300;211.096000;211.097000;211.058000;211.061000;0 +20260309 010400;211.060000;211.095000;211.060000;211.084000;0 +20260309 010500;211.080000;211.102000;211.066000;211.067000;0 +20260309 010600;211.068000;211.136000;211.062000;211.134000;0 +20260309 010700;211.131000;211.140000;211.111000;211.123000;0 +20260309 010800;211.125000;211.170000;211.125000;211.162000;0 +20260309 010900;211.161000;211.204000;211.118000;211.203000;0 +20260309 011000;211.202000;211.300000;211.189000;211.300000;0 +20260309 011100;211.298000;211.301000;211.270000;211.280000;0 +20260309 011200;211.270000;211.276000;211.212000;211.248000;0 +20260309 011300;211.252000;211.261000;211.204000;211.206000;0 +20260309 011400;211.205000;211.205000;211.134000;211.153000;0 +20260309 011500;211.152000;211.181000;211.147000;211.164000;0 +20260309 011600;211.161000;211.210000;211.149000;211.184000;0 +20260309 011700;211.187000;211.190000;211.166000;211.174000;0 +20260309 011800;211.178000;211.207000;211.176000;211.197000;0 +20260309 011900;211.199000;211.199000;211.137000;211.149000;0 +20260309 012000;211.148000;211.163000;211.127000;211.161000;0 +20260309 012100;211.158000;211.180000;211.148000;211.180000;0 +20260309 012200;211.183000;211.193000;211.164000;211.169000;0 +20260309 012300;211.169000;211.169000;211.142000;211.147000;0 +20260309 012400;211.147000;211.176000;211.133000;211.176000;0 +20260309 012500;211.175000;211.259000;211.169000;211.252000;0 +20260309 012600;211.254000;211.282000;211.234000;211.268000;0 +20260309 012700;211.265000;211.297000;211.257000;211.295000;0 +20260309 012800;211.303000;211.324000;211.277000;211.309000;0 +20260309 012900;211.313000;211.335000;211.293000;211.296000;0 +20260309 013000;211.297000;211.297000;211.237000;211.254000;0 +20260309 013100;211.253000;211.345000;211.253000;211.318000;0 +20260309 013200;211.318000;211.331000;211.290000;211.293000;0 +20260309 013300;211.297000;211.314000;211.280000;211.298000;0 +20260309 013400;211.295000;211.298000;211.257000;211.280000;0 +20260309 013500;211.277000;211.281000;211.223000;211.234000;0 +20260309 013600;211.232000;211.264000;211.213000;211.251000;0 +20260309 013700;211.252000;211.260000;211.217000;211.223000;0 +20260309 013800;211.227000;211.255000;211.207000;211.223000;0 +20260309 013900;211.221000;211.224000;211.197000;211.210000;0 +20260309 014000;211.209000;211.228000;211.189000;211.217000;0 +20260309 014100;211.221000;211.236000;211.210000;211.211000;0 +20260309 014200;211.209000;211.257000;211.203000;211.253000;0 +20260309 014300;211.255000;211.255000;211.233000;211.238000;0 +20260309 014400;211.238000;211.261000;211.238000;211.261000;0 +20260309 014500;211.256000;211.263000;211.217000;211.232000;0 +20260309 014600;211.232000;211.259000;211.216000;211.236000;0 +20260309 014700;211.238000;211.248000;211.226000;211.237000;0 +20260309 014800;211.238000;211.248000;211.201000;211.227000;0 +20260309 014900;211.227000;211.228000;211.184000;211.194000;0 +20260309 015000;211.199000;211.253000;211.174000;211.247000;0 +20260309 015100;211.246000;211.278000;211.243000;211.258000;0 +20260309 015200;211.254000;211.259000;211.209000;211.226000;0 +20260309 015300;211.218000;211.244000;211.208000;211.241000;0 +20260309 015400;211.234000;211.245000;211.211000;211.229000;0 +20260309 015500;211.228000;211.253000;211.223000;211.227000;0 +20260309 015600;211.229000;211.237000;211.214000;211.219000;0 +20260309 015700;211.222000;211.243000;211.211000;211.221000;0 +20260309 015800;211.221000;211.228000;211.188000;211.192000;0 +20260309 015900;211.192000;211.192000;211.147000;211.147000;0 +20260309 020000;211.150000;211.266000;211.147000;211.196000;0 +20260309 020100;211.197000;211.206000;211.148000;211.170000;0 +20260309 020200;211.171000;211.171000;211.117000;211.126000;0 +20260309 020300;211.132000;211.161000;211.084000;211.088000;0 +20260309 020400;211.091000;211.160000;211.084000;211.158000;0 +20260309 020500;211.156000;211.160000;211.097000;211.117000;0 +20260309 020600;211.118000;211.184000;211.114000;211.177000;0 +20260309 020700;211.179000;211.206000;211.142000;211.181000;0 +20260309 020800;211.183000;211.192000;211.156000;211.178000;0 +20260309 020900;211.176000;211.193000;211.156000;211.174000;0 +20260309 021000;211.172000;211.197000;211.143000;211.167000;0 +20260309 021100;211.167000;211.199000;211.146000;211.189000;0 +20260309 021200;211.187000;211.187000;211.141000;211.154000;0 +20260309 021300;211.152000;211.172000;211.142000;211.170000;0 +20260309 021400;211.169000;211.189000;211.154000;211.181000;0 +20260309 021500;211.180000;211.184000;211.140000;211.153000;0 +20260309 021600;211.152000;211.166000;211.129000;211.149000;0 +20260309 021700;211.152000;211.183000;211.145000;211.157000;0 +20260309 021800;211.156000;211.183000;211.149000;211.165000;0 +20260309 021900;211.166000;211.202000;211.153000;211.179000;0 +20260309 022000;211.180000;211.209000;211.175000;211.187000;0 +20260309 022100;211.187000;211.214000;211.175000;211.209000;0 +20260309 022200;211.206000;211.213000;211.180000;211.211000;0 +20260309 022300;211.212000;211.238000;211.210000;211.238000;0 +20260309 022400;211.237000;211.244000;211.214000;211.228000;0 +20260309 022500;211.226000;211.241000;211.219000;211.239000;0 +20260309 022600;211.238000;211.253000;211.230000;211.248000;0 +20260309 022700;211.251000;211.267000;211.238000;211.263000;0 +20260309 022800;211.258000;211.275000;211.230000;211.272000;0 +20260309 022900;211.270000;211.273000;211.239000;211.258000;0 +20260309 023000;211.258000;211.272000;211.242000;211.248000;0 +20260309 023100;211.255000;211.355000;211.248000;211.341000;0 +20260309 023200;211.350000;211.395000;211.350000;211.391000;0 +20260309 023300;211.391000;211.394000;211.345000;211.375000;0 +20260309 023400;211.377000;211.472000;211.345000;211.418000;0 +20260309 023500;211.419000;211.467000;211.390000;211.390000;0 +20260309 023600;211.391000;211.437000;211.387000;211.408000;0 +20260309 023700;211.405000;211.410000;211.368000;211.371000;0 +20260309 023800;211.370000;211.379000;211.335000;211.355000;0 +20260309 023900;211.354000;211.369000;211.333000;211.344000;0 +20260309 024000;211.340000;211.365000;211.322000;211.327000;0 +20260309 024100;211.326000;211.384000;211.320000;211.362000;0 +20260309 024200;211.360000;211.370000;211.330000;211.369000;0 +20260309 024300;211.365000;211.386000;211.361000;211.368000;0 +20260309 024400;211.366000;211.417000;211.361000;211.413000;0 +20260309 024500;211.413000;211.413000;211.340000;211.342000;0 +20260309 024600;211.346000;211.359000;211.333000;211.357000;0 +20260309 024700;211.360000;211.384000;211.324000;211.364000;0 +20260309 024800;211.365000;211.399000;211.359000;211.394000;0 +20260309 024900;211.393000;211.426000;211.393000;211.416000;0 +20260309 025000;211.414000;211.431000;211.409000;211.414000;0 +20260309 025100;211.414000;211.438000;211.410000;211.425000;0 +20260309 025200;211.425000;211.452000;211.415000;211.449000;0 +20260309 025300;211.450000;211.467000;211.444000;211.450000;0 +20260309 025400;211.452000;211.482000;211.440000;211.472000;0 +20260309 025500;211.472000;211.480000;211.445000;211.468000;0 +20260309 025600;211.467000;211.476000;211.439000;211.440000;0 +20260309 025700;211.441000;211.446000;211.414000;211.437000;0 +20260309 025800;211.435000;211.456000;211.417000;211.435000;0 +20260309 025900;211.435000;211.466000;211.434000;211.452000;0 +20260309 030000;211.454000;211.479000;211.386000;211.386000;0 +20260309 030100;211.383000;211.430000;211.371000;211.371000;0 +20260309 030200;211.365000;211.385000;211.350000;211.365000;0 +20260309 030300;211.363000;211.425000;211.363000;211.398000;0 +20260309 030400;211.397000;211.423000;211.365000;211.370000;0 +20260309 030500;211.369000;211.398000;211.311000;211.375000;0 +20260309 030600;211.374000;211.376000;211.289000;211.292000;0 +20260309 030700;211.290000;211.323000;211.279000;211.316000;0 +20260309 030800;211.311000;211.349000;211.277000;211.304000;0 +20260309 030900;211.298000;211.337000;211.289000;211.312000;0 +20260309 031000;211.308000;211.329000;211.290000;211.305000;0 +20260309 031100;211.308000;211.312000;211.270000;211.294000;0 +20260309 031200;211.291000;211.358000;211.290000;211.346000;0 +20260309 031300;211.346000;211.349000;211.301000;211.333000;0 +20260309 031400;211.333000;211.391000;211.331000;211.350000;0 +20260309 031500;211.347000;211.349000;211.288000;211.291000;0 +20260309 031600;211.291000;211.292000;211.220000;211.224000;0 +20260309 031700;211.224000;211.289000;211.210000;211.279000;0 +20260309 031800;211.280000;211.301000;211.227000;211.244000;0 +20260309 031900;211.242000;211.244000;211.204000;211.214000;0 +20260309 032000;211.212000;211.217000;211.145000;211.177000;0 +20260309 032100;211.178000;211.230000;211.178000;211.218000;0 +20260309 032200;211.219000;211.284000;211.215000;211.278000;0 +20260309 032300;211.278000;211.301000;211.265000;211.283000;0 +20260309 032400;211.287000;211.287000;211.227000;211.250000;0 +20260309 032500;211.250000;211.266000;211.221000;211.245000;0 +20260309 032600;211.245000;211.274000;211.226000;211.273000;0 +20260309 032700;211.273000;211.276000;211.219000;211.220000;0 +20260309 032800;211.226000;211.239000;211.195000;211.195000;0 +20260309 032900;211.196000;211.204000;211.162000;211.175000;0 +20260309 033000;211.172000;211.196000;211.119000;211.123000;0 +20260309 033100;211.126000;211.157000;211.103000;211.133000;0 +20260309 033200;211.133000;211.139000;211.072000;211.109000;0 +20260309 033300;211.114000;211.170000;211.114000;211.133000;0 +20260309 033400;211.134000;211.143000;211.048000;211.084000;0 +20260309 033500;211.083000;211.128000;211.070000;211.095000;0 +20260309 033600;211.098000;211.098000;211.053000;211.065000;0 +20260309 033700;211.062000;211.066000;211.031000;211.036000;0 +20260309 033800;211.036000;211.087000;211.027000;211.078000;0 +20260309 033900;211.078000;211.119000;211.062000;211.092000;0 +20260309 034000;211.093000;211.153000;211.079000;211.146000;0 +20260309 034100;211.146000;211.205000;211.146000;211.176000;0 +20260309 034200;211.180000;211.213000;211.161000;211.201000;0 +20260309 034300;211.201000;211.230000;211.167000;211.177000;0 +20260309 034400;211.177000;211.190000;211.149000;211.190000;0 +20260309 034500;211.193000;211.211000;211.171000;211.204000;0 +20260309 034600;211.202000;211.209000;211.155000;211.193000;0 +20260309 034700;211.193000;211.198000;211.160000;211.190000;0 +20260309 034800;211.191000;211.218000;211.161000;211.180000;0 +20260309 034900;211.183000;211.191000;211.147000;211.159000;0 +20260309 035000;211.159000;211.179000;211.101000;211.105000;0 +20260309 035100;211.107000;211.157000;211.105000;211.146000;0 +20260309 035200;211.150000;211.177000;211.134000;211.149000;0 +20260309 035300;211.152000;211.154000;211.081000;211.095000;0 +20260309 035400;211.094000;211.179000;211.093000;211.173000;0 +20260309 035500;211.171000;211.226000;211.167000;211.218000;0 +20260309 035600;211.217000;211.261000;211.210000;211.239000;0 +20260309 035700;211.237000;211.241000;211.194000;211.217000;0 +20260309 035800;211.215000;211.267000;211.214000;211.234000;0 +20260309 035900;211.235000;211.280000;211.226000;211.272000;0 +20260309 040000;211.274000;211.327000;211.267000;211.270000;0 +20260309 040100;211.271000;211.281000;211.234000;211.246000;0 +20260309 040200;211.246000;211.267000;211.210000;211.213000;0 +20260309 040300;211.212000;211.229000;211.142000;211.143000;0 +20260309 040400;211.141000;211.206000;211.136000;211.176000;0 +20260309 040500;211.174000;211.205000;211.161000;211.189000;0 +20260309 040600;211.191000;211.196000;211.149000;211.153000;0 +20260309 040700;211.154000;211.224000;211.127000;211.217000;0 +20260309 040800;211.219000;211.240000;211.198000;211.233000;0 +20260309 040900;211.232000;211.245000;211.213000;211.220000;0 +20260309 041000;211.218000;211.264000;211.210000;211.230000;0 +20260309 041100;211.230000;211.238000;211.199000;211.214000;0 +20260309 041200;211.213000;211.264000;211.197000;211.226000;0 +20260309 041300;211.226000;211.228000;211.179000;211.202000;0 +20260309 041400;211.202000;211.227000;211.177000;211.214000;0 +20260309 041500;211.210000;211.259000;211.205000;211.259000;0 +20260309 041600;211.259000;211.290000;211.259000;211.290000;0 +20260309 041700;211.289000;211.326000;211.269000;211.302000;0 +20260309 041800;211.301000;211.307000;211.221000;211.221000;0 +20260309 041900;211.221000;211.262000;211.199000;211.259000;0 +20260309 042000;211.255000;211.275000;211.232000;211.262000;0 +20260309 042100;211.265000;211.347000;211.243000;211.330000;0 +20260309 042200;211.327000;211.333000;211.272000;211.274000;0 +20260309 042300;211.274000;211.315000;211.272000;211.291000;0 +20260309 042400;211.290000;211.343000;211.290000;211.323000;0 +20260309 042500;211.321000;211.348000;211.301000;211.332000;0 +20260309 042600;211.332000;211.355000;211.316000;211.334000;0 +20260309 042700;211.339000;211.348000;211.318000;211.332000;0 +20260309 042800;211.333000;211.344000;211.296000;211.297000;0 +20260309 042900;211.297000;211.317000;211.271000;211.317000;0 +20260309 043000;211.316000;211.321000;211.276000;211.302000;0 +20260309 043100;211.302000;211.387000;211.283000;211.387000;0 +20260309 043200;211.389000;211.475000;211.370000;211.455000;0 +20260309 043300;211.452000;211.496000;211.425000;211.489000;0 +20260309 043400;211.490000;211.501000;211.397000;211.398000;0 +20260309 043500;211.400000;211.438000;211.322000;211.349000;0 +20260309 043600;211.353000;211.384000;211.321000;211.328000;0 +20260309 043700;211.328000;211.346000;211.296000;211.320000;0 +20260309 043800;211.321000;211.343000;211.304000;211.318000;0 +20260309 043900;211.319000;211.337000;211.295000;211.322000;0 +20260309 044000;211.320000;211.320000;211.262000;211.292000;0 +20260309 044100;211.289000;211.325000;211.276000;211.306000;0 +20260309 044200;211.307000;211.344000;211.296000;211.322000;0 +20260309 044300;211.323000;211.341000;211.288000;211.340000;0 +20260309 044400;211.343000;211.378000;211.330000;211.367000;0 +20260309 044500;211.370000;211.374000;211.332000;211.341000;0 +20260309 044600;211.341000;211.346000;211.296000;211.327000;0 +20260309 044700;211.329000;211.351000;211.317000;211.329000;0 +20260309 044800;211.330000;211.349000;211.314000;211.347000;0 +20260309 044900;211.344000;211.384000;211.319000;211.373000;0 +20260309 045000;211.367000;211.397000;211.367000;211.382000;0 +20260309 045100;211.397000;211.400000;211.368000;211.377000;0 +20260309 045200;211.376000;211.415000;211.363000;211.379000;0 +20260309 045300;211.379000;211.401000;211.332000;211.337000;0 +20260309 045400;211.336000;211.338000;211.266000;211.291000;0 +20260309 045500;211.289000;211.350000;211.286000;211.341000;0 +20260309 045600;211.339000;211.370000;211.332000;211.338000;0 +20260309 045700;211.339000;211.362000;211.325000;211.348000;0 +20260309 045800;211.345000;211.380000;211.326000;211.348000;0 +20260309 045900;211.348000;211.365000;211.319000;211.333000;0 +20260309 050000;211.334000;211.347000;211.289000;211.314000;0 +20260309 050100;211.316000;211.339000;211.298000;211.315000;0 +20260309 050200;211.315000;211.320000;211.271000;211.278000;0 +20260309 050300;211.284000;211.361000;211.269000;211.346000;0 +20260309 050400;211.345000;211.377000;211.328000;211.333000;0 +20260309 050500;211.335000;211.414000;211.304000;211.410000;0 +20260309 050600;211.407000;211.446000;211.380000;211.439000;0 +20260309 050700;211.438000;211.450000;211.381000;211.381000;0 +20260309 050800;211.382000;211.393000;211.319000;211.325000;0 +20260309 050900;211.325000;211.356000;211.315000;211.325000;0 +20260309 051000;211.323000;211.332000;211.301000;211.312000;0 +20260309 051100;211.312000;211.336000;211.301000;211.301000;0 +20260309 051200;211.302000;211.319000;211.293000;211.314000;0 +20260309 051300;211.313000;211.338000;211.307000;211.324000;0 +20260309 051400;211.322000;211.340000;211.302000;211.325000;0 +20260309 051500;211.325000;211.329000;211.303000;211.320000;0 +20260309 051600;211.319000;211.321000;211.273000;211.288000;0 +20260309 051700;211.289000;211.292000;211.229000;211.239000;0 +20260309 051800;211.239000;211.259000;211.222000;211.253000;0 +20260309 051900;211.249000;211.293000;211.244000;211.249000;0 +20260309 052000;211.248000;211.278000;211.231000;211.274000;0 +20260309 052100;211.278000;211.298000;211.268000;211.298000;0 +20260309 052200;211.297000;211.314000;211.270000;211.309000;0 +20260309 052300;211.305000;211.308000;211.263000;211.263000;0 +20260309 052400;211.264000;211.288000;211.235000;211.248000;0 +20260309 052500;211.247000;211.311000;211.239000;211.292000;0 +20260309 052600;211.293000;211.302000;211.271000;211.286000;0 +20260309 052700;211.286000;211.321000;211.271000;211.311000;0 +20260309 052800;211.311000;211.358000;211.311000;211.357000;0 +20260309 052900;211.357000;211.367000;211.327000;211.331000;0 +20260309 053000;211.327000;211.345000;211.290000;211.294000;0 +20260309 053100;211.291000;211.297000;211.263000;211.276000;0 +20260309 053200;211.276000;211.291000;211.270000;211.277000;0 +20260309 053300;211.278000;211.284000;211.246000;211.260000;0 +20260309 053400;211.264000;211.280000;211.235000;211.263000;0 +20260309 053500;211.262000;211.292000;211.260000;211.284000;0 +20260309 053600;211.284000;211.305000;211.262000;211.302000;0 +20260309 053700;211.302000;211.338000;211.300000;211.335000;0 +20260309 053800;211.334000;211.334000;211.254000;211.279000;0 +20260309 053900;211.275000;211.315000;211.265000;211.314000;0 +20260309 054000;211.312000;211.354000;211.308000;211.349000;0 +20260309 054100;211.347000;211.373000;211.338000;211.339000;0 +20260309 054200;211.341000;211.352000;211.325000;211.330000;0 +20260309 054300;211.330000;211.344000;211.291000;211.343000;0 +20260309 054400;211.344000;211.376000;211.334000;211.358000;0 +20260309 054500;211.357000;211.381000;211.338000;211.346000;0 +20260309 054600;211.346000;211.379000;211.328000;211.377000;0 +20260309 054700;211.381000;211.386000;211.321000;211.350000;0 +20260309 054800;211.347000;211.353000;211.314000;211.340000;0 +20260309 054900;211.341000;211.355000;211.293000;211.305000;0 +20260309 055000;211.307000;211.335000;211.293000;211.335000;0 +20260309 055100;211.343000;211.396000;211.328000;211.382000;0 +20260309 055200;211.383000;211.456000;211.368000;211.404000;0 +20260309 055300;211.404000;211.436000;211.400000;211.435000;0 +20260309 055400;211.435000;211.451000;211.401000;211.432000;0 +20260309 055500;211.428000;211.450000;211.424000;211.446000;0 +20260309 055600;211.448000;211.460000;211.425000;211.448000;0 +20260309 055700;211.450000;211.464000;211.440000;211.445000;0 +20260309 055800;211.443000;211.457000;211.420000;211.426000;0 +20260309 055900;211.427000;211.478000;211.427000;211.455000;0 +20260309 060000;211.453000;211.507000;211.423000;211.459000;0 +20260309 060100;211.455000;211.487000;211.447000;211.473000;0 +20260309 060200;211.474000;211.475000;211.436000;211.464000;0 +20260309 060300;211.467000;211.470000;211.439000;211.453000;0 +20260309 060400;211.454000;211.484000;211.438000;211.482000;0 +20260309 060500;211.482000;211.541000;211.475000;211.516000;0 +20260309 060600;211.516000;211.541000;211.508000;211.522000;0 +20260309 060700;211.518000;211.567000;211.513000;211.533000;0 +20260309 060800;211.531000;211.547000;211.505000;211.531000;0 +20260309 060900;211.529000;211.542000;211.489000;211.499000;0 +20260309 061000;211.500000;211.513000;211.480000;211.500000;0 +20260309 061100;211.500000;211.520000;211.495000;211.506000;0 +20260309 061200;211.506000;211.524000;211.503000;211.513000;0 +20260309 061300;211.515000;211.544000;211.512000;211.524000;0 +20260309 061400;211.524000;211.557000;211.524000;211.551000;0 +20260309 061500;211.548000;211.576000;211.532000;211.534000;0 +20260309 061600;211.532000;211.532000;211.496000;211.514000;0 +20260309 061700;211.510000;211.512000;211.473000;211.475000;0 +20260309 061800;211.476000;211.492000;211.467000;211.491000;0 +20260309 061900;211.489000;211.509000;211.482000;211.497000;0 +20260309 062000;211.495000;211.504000;211.469000;211.469000;0 +20260309 062100;211.471000;211.483000;211.450000;211.459000;0 +20260309 062200;211.463000;211.497000;211.453000;211.487000;0 +20260309 062300;211.487000;211.510000;211.479000;211.498000;0 +20260309 062400;211.499000;211.509000;211.487000;211.506000;0 +20260309 062500;211.510000;211.513000;211.492000;211.500000;0 +20260309 062600;211.499000;211.499000;211.462000;211.471000;0 +20260309 062700;211.471000;211.504000;211.471000;211.486000;0 +20260309 062800;211.484000;211.496000;211.462000;211.483000;0 +20260309 062900;211.482000;211.482000;211.464000;211.469000;0 +20260309 063000;211.471000;211.487000;211.457000;211.478000;0 +20260309 063100;211.478000;211.479000;211.407000;211.407000;0 +20260309 063200;211.407000;211.441000;211.407000;211.424000;0 +20260309 063300;211.424000;211.451000;211.417000;211.445000;0 +20260309 063400;211.447000;211.498000;211.442000;211.498000;0 +20260309 063500;211.498000;211.518000;211.481000;211.518000;0 +20260309 063600;211.518000;211.523000;211.496000;211.502000;0 +20260309 063700;211.501000;211.508000;211.485000;211.503000;0 +20260309 063800;211.504000;211.509000;211.471000;211.484000;0 +20260309 063900;211.481000;211.537000;211.480000;211.530000;0 +20260309 064000;211.530000;211.539000;211.507000;211.519000;0 +20260309 064100;211.519000;211.525000;211.483000;211.497000;0 +20260309 064200;211.494000;211.525000;211.490000;211.520000;0 +20260309 064300;211.521000;211.527000;211.496000;211.502000;0 +20260309 064400;211.501000;211.516000;211.447000;211.447000;0 +20260309 064500;211.445000;211.463000;211.432000;211.463000;0 +20260309 064600;211.463000;211.484000;211.445000;211.470000;0 +20260309 064700;211.471000;211.501000;211.398000;211.404000;0 +20260309 064800;211.402000;211.426000;211.396000;211.425000;0 +20260309 064900;211.425000;211.433000;211.397000;211.397000;0 +20260309 065000;211.398000;211.430000;211.398000;211.425000;0 +20260309 065100;211.426000;211.461000;211.422000;211.455000;0 +20260309 065200;211.453000;211.463000;211.426000;211.462000;0 +20260309 065300;211.459000;211.499000;211.437000;211.499000;0 +20260309 065400;211.502000;211.534000;211.498000;211.500000;0 +20260309 065500;211.501000;211.529000;211.479000;211.529000;0 +20260309 065600;211.532000;211.533000;211.502000;211.502000;0 +20260309 065700;211.501000;211.518000;211.470000;211.493000;0 +20260309 065800;211.490000;211.509000;211.481000;211.505000;0 +20260309 065900;211.505000;211.526000;211.498000;211.512000;0 +20260309 070000;211.512000;211.540000;211.502000;211.530000;0 +20260309 070100;211.530000;211.570000;211.518000;211.550000;0 +20260309 070200;211.546000;211.579000;211.532000;211.559000;0 +20260309 070300;211.558000;211.579000;211.511000;211.516000;0 +20260309 070400;211.518000;211.537000;211.504000;211.522000;0 +20260309 070500;211.524000;211.554000;211.519000;211.527000;0 +20260309 070600;211.525000;211.536000;211.504000;211.523000;0 +20260309 070700;211.522000;211.556000;211.510000;211.548000;0 +20260309 070800;211.547000;211.547000;211.523000;211.539000;0 +20260309 070900;211.540000;211.563000;211.540000;211.543000;0 +20260309 071000;211.546000;211.558000;211.530000;211.558000;0 +20260309 071100;211.560000;211.567000;211.523000;211.523000;0 +20260309 071200;211.522000;211.527000;211.502000;211.510000;0 +20260309 071300;211.509000;211.528000;211.493000;211.514000;0 +20260309 071400;211.515000;211.542000;211.505000;211.538000;0 +20260309 071500;211.537000;211.538000;211.505000;211.525000;0 +20260309 071600;211.528000;211.587000;211.514000;211.578000;0 +20260309 071700;211.577000;211.595000;211.548000;211.567000;0 +20260309 071800;211.566000;211.566000;211.514000;211.520000;0 +20260309 071900;211.519000;211.529000;211.499000;211.529000;0 +20260309 072000;211.530000;211.577000;211.506000;211.530000;0 +20260309 072100;211.532000;211.534000;211.489000;211.489000;0 +20260309 072200;211.489000;211.515000;211.470000;211.485000;0 +20260309 072300;211.484000;211.497000;211.464000;211.477000;0 +20260309 072400;211.477000;211.488000;211.451000;211.485000;0 +20260309 072500;211.488000;211.517000;211.483000;211.491000;0 +20260309 072600;211.488000;211.510000;211.486000;211.500000;0 +20260309 072700;211.499000;211.508000;211.482000;211.483000;0 +20260309 072800;211.482000;211.509000;211.481000;211.496000;0 +20260309 072900;211.499000;211.541000;211.498000;211.535000;0 +20260309 073000;211.536000;211.562000;211.521000;211.556000;0 +20260309 073100;211.554000;211.589000;211.547000;211.548000;0 +20260309 073200;211.547000;211.567000;211.525000;211.545000;0 +20260309 073300;211.546000;211.557000;211.526000;211.535000;0 +20260309 073400;211.533000;211.597000;211.532000;211.582000;0 +20260309 073500;211.583000;211.585000;211.559000;211.566000;0 +20260309 073600;211.565000;211.593000;211.561000;211.585000;0 +20260309 073700;211.585000;211.617000;211.550000;211.554000;0 +20260309 073800;211.554000;211.568000;211.532000;211.534000;0 +20260309 073900;211.532000;211.570000;211.529000;211.553000;0 +20260309 074000;211.554000;211.558000;211.522000;211.541000;0 +20260309 074100;211.541000;211.582000;211.537000;211.564000;0 +20260309 074200;211.565000;211.580000;211.546000;211.565000;0 +20260309 074300;211.567000;211.578000;211.561000;211.567000;0 +20260309 074400;211.569000;211.596000;211.569000;211.574000;0 +20260309 074500;211.573000;211.620000;211.539000;211.618000;0 +20260309 074600;211.619000;211.662000;211.611000;211.656000;0 +20260309 074700;211.656000;211.656000;211.633000;211.645000;0 +20260309 074800;211.646000;211.676000;211.634000;211.664000;0 +20260309 074900;211.662000;211.695000;211.644000;211.647000;0 +20260309 075000;211.643000;211.682000;211.637000;211.653000;0 +20260309 075100;211.652000;211.707000;211.647000;211.668000;0 +20260309 075200;211.668000;211.698000;211.638000;211.693000;0 +20260309 075300;211.696000;211.736000;211.672000;211.728000;0 +20260309 075400;211.727000;211.757000;211.720000;211.740000;0 +20260309 075500;211.744000;211.770000;211.744000;211.752000;0 +20260309 075600;211.755000;211.779000;211.745000;211.747000;0 +20260309 075700;211.745000;211.745000;211.672000;211.682000;0 +20260309 075800;211.680000;211.698000;211.653000;211.691000;0 +20260309 075900;211.692000;211.739000;211.692000;211.728000;0 +20260309 080000;211.737000;211.792000;211.736000;211.752000;0 +20260309 080100;211.749000;211.758000;211.703000;211.705000;0 +20260309 080200;211.704000;211.726000;211.688000;211.695000;0 +20260309 080300;211.695000;211.695000;211.676000;211.683000;0 +20260309 080400;211.687000;211.713000;211.676000;211.694000;0 +20260309 080500;211.693000;211.693000;211.643000;211.658000;0 +20260309 080600;211.656000;211.674000;211.638000;211.668000;0 +20260309 080700;211.667000;211.672000;211.630000;211.653000;0 +20260309 080800;211.651000;211.688000;211.633000;211.681000;0 +20260309 080900;211.685000;211.685000;211.627000;211.649000;0 +20260309 081000;211.652000;211.710000;211.640000;211.705000;0 +20260309 081100;211.704000;211.711000;211.661000;211.684000;0 +20260309 081200;211.681000;211.690000;211.658000;211.680000;0 +20260309 081300;211.677000;211.679000;211.630000;211.638000;0 +20260309 081400;211.635000;211.673000;211.589000;211.650000;0 +20260309 081500;211.650000;211.680000;211.632000;211.643000;0 +20260309 081600;211.645000;211.654000;211.623000;211.641000;0 +20260309 081700;211.642000;211.655000;211.619000;211.650000;0 +20260309 081800;211.651000;211.670000;211.632000;211.644000;0 +20260309 081900;211.644000;211.668000;211.628000;211.663000;0 +20260309 082000;211.661000;211.673000;211.632000;211.635000;0 +20260309 082100;211.636000;211.679000;211.636000;211.652000;0 +20260309 082200;211.652000;211.707000;211.652000;211.707000;0 +20260309 082300;211.706000;211.723000;211.698000;211.722000;0 +20260309 082400;211.723000;211.746000;211.704000;211.735000;0 +20260309 082500;211.733000;211.793000;211.731000;211.779000;0 +20260309 082600;211.780000;211.792000;211.759000;211.765000;0 +20260309 082700;211.761000;211.775000;211.737000;211.752000;0 +20260309 082800;211.752000;211.784000;211.743000;211.761000;0 +20260309 082900;211.758000;211.798000;211.753000;211.777000;0 +20260309 083000;211.778000;211.801000;211.718000;211.752000;0 +20260309 083100;211.755000;211.768000;211.716000;211.749000;0 +20260309 083200;211.750000;211.757000;211.650000;211.678000;0 +20260309 083300;211.676000;211.710000;211.645000;211.689000;0 +20260309 083400;211.692000;211.702000;211.667000;211.678000;0 +20260309 083500;211.675000;211.727000;211.654000;211.722000;0 +20260309 083600;211.721000;211.723000;211.686000;211.702000;0 +20260309 083700;211.699000;211.722000;211.671000;211.672000;0 +20260309 083800;211.674000;211.696000;211.655000;211.688000;0 +20260309 083900;211.686000;211.715000;211.673000;211.690000;0 +20260309 084000;211.689000;211.693000;211.638000;211.654000;0 +20260309 084100;211.653000;211.689000;211.636000;211.669000;0 +20260309 084200;211.669000;211.677000;211.646000;211.658000;0 +20260309 084300;211.656000;211.756000;211.656000;211.750000;0 +20260309 084400;211.749000;211.777000;211.742000;211.775000;0 +20260309 084500;211.771000;211.791000;211.714000;211.720000;0 +20260309 084600;211.718000;211.776000;211.718000;211.761000;0 +20260309 084700;211.762000;211.775000;211.722000;211.770000;0 +20260309 084800;211.773000;211.808000;211.768000;211.792000;0 +20260309 084900;211.794000;211.799000;211.686000;211.692000;0 +20260309 085000;211.695000;211.757000;211.685000;211.696000;0 +20260309 085100;211.697000;211.728000;211.680000;211.707000;0 +20260309 085200;211.709000;211.719000;211.677000;211.686000;0 +20260309 085300;211.684000;211.712000;211.658000;211.711000;0 +20260309 085400;211.708000;211.737000;211.692000;211.710000;0 +20260309 085500;211.713000;211.767000;211.690000;211.766000;0 +20260309 085600;211.765000;211.810000;211.745000;211.795000;0 +20260309 085700;211.792000;211.808000;211.752000;211.808000;0 +20260309 085800;211.810000;211.826000;211.705000;211.709000;0 +20260309 085900;211.710000;211.750000;211.667000;211.720000;0 +20260309 090000;211.725000;211.740000;211.657000;211.692000;0 +20260309 090100;211.691000;211.696000;211.645000;211.658000;0 +20260309 090200;211.662000;211.701000;211.646000;211.693000;0 +20260309 090300;211.694000;211.717000;211.687000;211.704000;0 +20260309 090400;211.702000;211.717000;211.670000;211.709000;0 +20260309 090500;211.709000;211.724000;211.622000;211.688000;0 +20260309 090600;211.694000;211.699000;211.602000;211.636000;0 +20260309 090700;211.637000;211.653000;211.606000;211.633000;0 +20260309 090800;211.628000;211.629000;211.570000;211.585000;0 +20260309 090900;211.586000;211.637000;211.574000;211.618000;0 +20260309 091000;211.624000;211.662000;211.607000;211.642000;0 +20260309 091100;211.638000;211.649000;211.586000;211.591000;0 +20260309 091200;211.593000;211.633000;211.590000;211.606000;0 +20260309 091300;211.609000;211.653000;211.603000;211.639000;0 +20260309 091400;211.637000;211.692000;211.632000;211.663000;0 +20260309 091500;211.664000;211.708000;211.653000;211.659000;0 +20260309 091600;211.659000;211.690000;211.651000;211.658000;0 +20260309 091700;211.657000;211.666000;211.628000;211.649000;0 +20260309 091800;211.652000;211.660000;211.610000;211.660000;0 +20260309 091900;211.660000;211.664000;211.627000;211.634000;0 +20260309 092000;211.637000;211.653000;211.624000;211.637000;0 +20260309 092100;211.634000;211.639000;211.560000;211.564000;0 +20260309 092200;211.565000;211.587000;211.539000;211.584000;0 +20260309 092300;211.586000;211.591000;211.513000;211.523000;0 +20260309 092400;211.523000;211.530000;211.489000;211.519000;0 +20260309 092500;211.516000;211.568000;211.510000;211.543000;0 +20260309 092600;211.543000;211.553000;211.508000;211.524000;0 +20260309 092700;211.526000;211.539000;211.503000;211.535000;0 +20260309 092800;211.535000;211.555000;211.529000;211.541000;0 +20260309 092900;211.533000;211.545000;211.496000;211.520000;0 +20260309 093000;211.519000;211.586000;211.517000;211.571000;0 +20260309 093100;211.569000;211.596000;211.568000;211.581000;0 +20260309 093200;211.577000;211.603000;211.559000;211.583000;0 +20260309 093300;211.581000;211.595000;211.554000;211.572000;0 +20260309 093400;211.569000;211.597000;211.558000;211.597000;0 +20260309 093500;211.596000;211.641000;211.567000;211.640000;0 +20260309 093600;211.643000;211.676000;211.632000;211.643000;0 +20260309 093700;211.635000;211.674000;211.629000;211.645000;0 +20260309 093800;211.644000;211.668000;211.634000;211.655000;0 +20260309 093900;211.652000;211.665000;211.624000;211.637000;0 +20260309 094000;211.636000;211.683000;211.626000;211.674000;0 +20260309 094100;211.677000;211.705000;211.641000;211.655000;0 +20260309 094200;211.655000;211.706000;211.623000;211.696000;0 +20260309 094300;211.690000;211.702000;211.660000;211.695000;0 +20260309 094400;211.693000;211.714000;211.670000;211.703000;0 +20260309 094500;211.709000;211.730000;211.694000;211.717000;0 +20260309 094600;211.720000;211.751000;211.700000;211.749000;0 +20260309 094700;211.753000;211.754000;211.694000;211.731000;0 +20260309 094800;211.728000;211.791000;211.725000;211.782000;0 +20260309 094900;211.783000;211.823000;211.765000;211.784000;0 +20260309 095000;211.783000;211.828000;211.767000;211.824000;0 +20260309 095100;211.822000;211.878000;211.821000;211.848000;0 +20260309 095200;211.848000;211.856000;211.827000;211.854000;0 +20260309 095300;211.854000;211.854000;211.805000;211.831000;0 +20260309 095400;211.832000;211.880000;211.825000;211.858000;0 +20260309 095500;211.859000;211.902000;211.857000;211.899000;0 +20260309 095600;211.897000;211.937000;211.869000;211.878000;0 +20260309 095700;211.878000;211.914000;211.873000;211.909000;0 +20260309 095800;211.906000;211.919000;211.882000;211.886000;0 +20260309 095900;211.887000;211.914000;211.864000;211.872000;0 +20260309 100000;211.874000;211.958000;211.860000;211.949000;0 +20260309 100100;211.949000;212.002000;211.931000;211.996000;0 +20260309 100200;211.999000;212.037000;211.973000;211.993000;0 +20260309 100300;211.994000;212.017000;211.972000;212.013000;0 +20260309 100400;212.012000;212.030000;211.980000;211.991000;0 +20260309 100500;211.991000;212.004000;211.965000;211.999000;0 +20260309 100600;211.997000;212.021000;211.975000;211.996000;0 +20260309 100700;211.999000;212.020000;211.986000;212.006000;0 +20260309 100800;212.005000;212.044000;211.976000;212.025000;0 +20260309 100900;212.023000;212.024000;211.962000;211.966000;0 +20260309 101000;211.967000;212.024000;211.965000;212.008000;0 +20260309 101100;212.009000;212.045000;211.953000;211.973000;0 +20260309 101200;211.971000;211.975000;211.934000;211.948000;0 +20260309 101300;211.947000;211.948000;211.923000;211.928000;0 +20260309 101400;211.929000;211.949000;211.911000;211.949000;0 +20260309 101500;211.948000;211.979000;211.939000;211.945000;0 +20260309 101600;211.944000;211.952000;211.882000;211.887000;0 +20260309 101700;211.890000;211.912000;211.871000;211.900000;0 +20260309 101800;211.900000;211.919000;211.859000;211.886000;0 +20260309 101900;211.884000;211.929000;211.880000;211.915000;0 +20260309 102000;211.920000;211.928000;211.881000;211.888000;0 +20260309 102100;211.890000;211.890000;211.832000;211.861000;0 +20260309 102200;211.859000;211.866000;211.818000;211.827000;0 +20260309 102300;211.827000;211.848000;211.802000;211.802000;0 +20260309 102400;211.805000;211.826000;211.795000;211.803000;0 +20260309 102500;211.808000;211.861000;211.787000;211.860000;0 +20260309 102600;211.864000;211.871000;211.837000;211.849000;0 +20260309 102700;211.857000;211.857000;211.805000;211.810000;0 +20260309 102800;211.807000;211.814000;211.761000;211.779000;0 +20260309 102900;211.778000;211.792000;211.747000;211.755000;0 +20260309 103000;211.755000;211.755000;211.694000;211.705000;0 +20260309 103100;211.707000;211.740000;211.663000;211.667000;0 +20260309 103200;211.671000;211.688000;211.648000;211.674000;0 +20260309 103300;211.671000;211.725000;211.654000;211.723000;0 +20260309 103400;211.726000;211.730000;211.672000;211.679000;0 +20260309 103500;211.676000;211.678000;211.629000;211.629000;0 +20260309 103600;211.634000;211.652000;211.626000;211.645000;0 +20260309 103700;211.646000;211.683000;211.638000;211.681000;0 +20260309 103800;211.683000;211.697000;211.648000;211.695000;0 +20260309 103900;211.699000;211.700000;211.668000;211.674000;0 +20260309 104000;211.674000;211.674000;211.651000;211.651000;0 +20260309 104100;211.647000;211.692000;211.636000;211.687000;0 +20260309 104200;211.687000;211.694000;211.644000;211.680000;0 +20260309 104300;211.680000;211.721000;211.667000;211.699000;0 +20260309 104400;211.701000;211.711000;211.655000;211.694000;0 +20260309 104500;211.692000;211.708000;211.671000;211.694000;0 +20260309 104600;211.692000;211.708000;211.680000;211.690000;0 +20260309 104700;211.688000;211.688000;211.633000;211.656000;0 +20260309 104800;211.655000;211.672000;211.630000;211.655000;0 +20260309 104900;211.655000;211.700000;211.638000;211.640000;0 +20260309 105000;211.641000;211.643000;211.617000;211.623000;0 +20260309 105100;211.619000;211.687000;211.619000;211.685000;0 +20260309 105200;211.688000;211.689000;211.613000;211.619000;0 +20260309 105300;211.616000;211.637000;211.611000;211.637000;0 +20260309 105400;211.641000;211.663000;211.620000;211.659000;0 +20260309 105500;211.663000;211.694000;211.620000;211.645000;0 +20260309 105600;211.645000;211.651000;211.621000;211.641000;0 +20260309 105700;211.641000;211.681000;211.617000;211.666000;0 +20260309 105800;211.666000;211.705000;211.662000;211.677000;0 +20260309 105900;211.677000;211.713000;211.672000;211.711000;0 +20260309 110000;211.711000;211.742000;211.705000;211.726000;0 +20260309 110100;211.730000;211.767000;211.721000;211.753000;0 +20260309 110200;211.754000;211.783000;211.725000;211.776000;0 +20260309 110300;211.779000;211.814000;211.779000;211.779000;0 +20260309 110400;211.778000;211.816000;211.754000;211.807000;0 +20260309 110500;211.806000;211.823000;211.743000;211.744000;0 +20260309 110600;211.746000;211.810000;211.733000;211.795000;0 +20260309 110700;211.795000;211.811000;211.763000;211.795000;0 +20260309 110800;211.793000;211.795000;211.772000;211.788000;0 +20260309 110900;211.789000;211.809000;211.780000;211.792000;0 +20260309 111000;211.793000;211.795000;211.750000;211.761000;0 +20260309 111100;211.761000;211.775000;211.739000;211.775000;0 +20260309 111200;211.775000;211.821000;211.766000;211.817000;0 +20260309 111300;211.816000;211.840000;211.804000;211.825000;0 +20260309 111400;211.829000;211.834000;211.814000;211.828000;0 +20260309 111500;211.828000;211.850000;211.817000;211.846000;0 +20260309 111600;211.847000;211.858000;211.788000;211.788000;0 +20260309 111700;211.789000;211.794000;211.768000;211.769000;0 +20260309 111800;211.770000;211.781000;211.763000;211.766000;0 +20260309 111900;211.766000;211.814000;211.766000;211.805000;0 +20260309 112000;211.810000;211.833000;211.800000;211.814000;0 +20260309 112100;211.816000;211.816000;211.788000;211.799000;0 +20260309 112200;211.799000;211.811000;211.783000;211.784000;0 +20260309 112300;211.784000;211.861000;211.784000;211.860000;0 +20260309 112400;211.859000;211.948000;211.847000;211.948000;0 +20260309 112500;211.948000;211.956000;211.869000;211.881000;0 +20260309 112600;211.881000;211.923000;211.876000;211.896000;0 +20260309 112700;211.897000;211.900000;211.877000;211.889000;0 +20260309 112800;211.889000;211.895000;211.863000;211.863000;0 +20260309 112900;211.865000;211.870000;211.828000;211.835000;0 +20260309 113000;211.838000;211.875000;211.835000;211.858000;0 +20260309 113100;211.859000;211.887000;211.832000;211.834000;0 +20260309 113200;211.830000;211.853000;211.810000;211.827000;0 +20260309 113300;211.826000;211.861000;211.823000;211.845000;0 +20260309 113400;211.846000;211.858000;211.830000;211.845000;0 +20260309 113500;211.844000;211.864000;211.831000;211.834000;0 +20260309 113600;211.835000;211.835000;211.771000;211.776000;0 +20260309 113700;211.776000;211.813000;211.773000;211.808000;0 +20260309 113800;211.807000;211.829000;211.791000;211.823000;0 +20260309 113900;211.825000;211.828000;211.793000;211.811000;0 +20260309 114000;211.815000;211.827000;211.793000;211.800000;0 +20260309 114100;211.802000;211.830000;211.801000;211.812000;0 +20260309 114200;211.812000;211.844000;211.807000;211.828000;0 +20260309 114300;211.830000;211.831000;211.789000;211.792000;0 +20260309 114400;211.789000;211.799000;211.768000;211.794000;0 +20260309 114500;211.798000;211.821000;211.790000;211.819000;0 +20260309 114600;211.818000;211.831000;211.802000;211.831000;0 +20260309 114700;211.830000;211.840000;211.813000;211.826000;0 +20260309 114800;211.823000;211.824000;211.801000;211.809000;0 +20260309 114900;211.809000;211.812000;211.782000;211.785000;0 +20260309 115000;211.787000;211.792000;211.758000;211.772000;0 +20260309 115100;211.771000;211.827000;211.771000;211.827000;0 +20260309 115200;211.825000;211.825000;211.795000;211.807000;0 +20260309 115300;211.807000;211.808000;211.778000;211.788000;0 +20260309 115400;211.788000;211.788000;211.759000;211.779000;0 +20260309 115500;211.780000;211.798000;211.774000;211.792000;0 +20260309 115600;211.789000;211.800000;211.778000;211.779000;0 +20260309 115700;211.776000;211.800000;211.770000;211.781000;0 +20260309 115800;211.777000;211.777000;211.729000;211.740000;0 +20260309 115900;211.741000;211.758000;211.715000;211.756000;0 +20260309 120000;211.756000;211.782000;211.749000;211.765000;0 +20260309 120100;211.765000;211.765000;211.745000;211.749000;0 +20260309 120200;211.749000;211.764000;211.729000;211.762000;0 +20260309 120300;211.763000;211.774000;211.752000;211.763000;0 +20260309 120400;211.765000;211.779000;211.765000;211.768000;0 +20260309 120500;211.767000;211.811000;211.757000;211.803000;0 +20260309 120600;211.801000;211.812000;211.784000;211.796000;0 +20260309 120700;211.794000;211.794000;211.761000;211.772000;0 +20260309 120800;211.774000;211.796000;211.771000;211.774000;0 +20260309 120900;211.773000;211.791000;211.759000;211.789000;0 +20260309 121000;211.787000;211.832000;211.777000;211.813000;0 +20260309 121100;211.813000;211.814000;211.795000;211.804000;0 +20260309 121200;211.804000;211.824000;211.799000;211.814000;0 +20260309 121300;211.813000;211.849000;211.812000;211.836000;0 +20260309 121400;211.836000;211.875000;211.822000;211.875000;0 +20260309 121500;211.875000;211.875000;211.835000;211.836000;0 +20260309 121600;211.835000;211.861000;211.827000;211.859000;0 +20260309 121700;211.855000;211.865000;211.839000;211.839000;0 +20260309 121800;211.841000;211.864000;211.833000;211.845000;0 +20260309 121900;211.845000;211.856000;211.831000;211.843000;0 +20260309 122000;211.843000;211.867000;211.842000;211.866000;0 +20260309 122100;211.868000;211.868000;211.830000;211.838000;0 +20260309 122200;211.840000;211.866000;211.828000;211.861000;0 +20260309 122300;211.861000;211.861000;211.828000;211.836000;0 +20260309 122400;211.835000;211.869000;211.835000;211.868000;0 +20260309 122500;211.867000;211.869000;211.818000;211.823000;0 +20260309 122600;211.823000;211.833000;211.809000;211.827000;0 +20260309 122700;211.827000;211.834000;211.818000;211.827000;0 +20260309 122800;211.827000;211.845000;211.827000;211.838000;0 +20260309 122900;211.838000;211.841000;211.825000;211.834000;0 +20260309 123000;211.835000;211.885000;211.827000;211.884000;0 +20260309 123100;211.882000;211.892000;211.875000;211.875000;0 +20260309 123200;211.875000;211.878000;211.848000;211.849000;0 +20260309 123300;211.850000;211.864000;211.840000;211.842000;0 +20260309 123400;211.842000;211.860000;211.835000;211.857000;0 +20260309 123500;211.858000;211.874000;211.849000;211.872000;0 +20260309 123600;211.869000;211.872000;211.824000;211.825000;0 +20260309 123700;211.825000;211.871000;211.823000;211.867000;0 +20260309 123800;211.868000;211.879000;211.861000;211.874000;0 +20260309 123900;211.871000;211.897000;211.861000;211.889000;0 +20260309 124000;211.888000;211.901000;211.872000;211.885000;0 +20260309 124100;211.887000;211.888000;211.866000;211.888000;0 +20260309 124200;211.893000;211.911000;211.882000;211.882000;0 +20260309 124300;211.884000;211.899000;211.874000;211.883000;0 +20260309 124400;211.879000;211.911000;211.879000;211.897000;0 +20260309 124500;211.896000;211.936000;211.893000;211.934000;0 +20260309 124600;211.935000;211.952000;211.922000;211.952000;0 +20260309 124700;211.952000;211.952000;211.918000;211.935000;0 +20260309 124800;211.934000;211.952000;211.928000;211.933000;0 +20260309 124900;211.935000;211.952000;211.930000;211.933000;0 +20260309 125000;211.929000;211.950000;211.924000;211.946000;0 +20260309 125100;211.946000;211.951000;211.931000;211.941000;0 +20260309 125200;211.942000;211.971000;211.937000;211.949000;0 +20260309 125300;211.947000;211.963000;211.939000;211.945000;0 +20260309 125400;211.944000;211.957000;211.936000;211.946000;0 +20260309 125500;211.947000;211.981000;211.947000;211.951000;0 +20260309 125600;211.952000;211.970000;211.946000;211.964000;0 +20260309 125700;211.960000;211.967000;211.955000;211.966000;0 +20260309 125800;211.966000;211.966000;211.928000;211.935000;0 +20260309 125900;211.934000;211.943000;211.929000;211.933000;0 +20260309 130000;211.933000;211.962000;211.932000;211.959000;0 +20260309 130100;211.961000;211.973000;211.950000;211.973000;0 +20260309 130200;211.972000;211.985000;211.965000;211.979000;0 +20260309 130300;211.977000;211.993000;211.973000;211.988000;0 +20260309 130400;211.990000;211.995000;211.966000;211.981000;0 +20260309 130500;211.981000;212.011000;211.967000;212.009000;0 +20260309 130600;212.005000;212.029000;212.003000;212.014000;0 +20260309 130700;212.015000;212.026000;211.996000;211.999000;0 +20260309 130800;212.000000;212.000000;211.946000;211.995000;0 +20260309 130900;211.995000;211.998000;211.958000;211.962000;0 +20260309 131000;211.962000;211.996000;211.957000;211.970000;0 +20260309 131100;211.965000;211.972000;211.953000;211.967000;0 +20260309 131200;211.970000;211.983000;211.956000;211.982000;0 +20260309 131300;211.983000;211.995000;211.967000;211.975000;0 +20260309 131400;211.974000;211.988000;211.969000;211.979000;0 +20260309 131500;211.985000;212.001000;211.973000;211.974000;0 +20260309 131600;211.971000;211.982000;211.966000;211.975000;0 +20260309 131700;211.973000;211.990000;211.970000;211.988000;0 +20260309 131800;211.986000;212.003000;211.984000;211.998000;0 +20260309 131900;211.998000;212.018000;211.992000;212.009000;0 +20260309 132000;212.010000;212.014000;211.982000;211.999000;0 +20260309 132100;211.999000;212.007000;211.972000;211.974000;0 +20260309 132200;211.972000;211.984000;211.961000;211.977000;0 +20260309 132300;211.975000;212.050000;211.975000;212.050000;0 +20260309 132400;212.047000;212.054000;212.036000;212.042000;0 +20260309 132500;212.044000;212.048000;212.028000;212.036000;0 +20260309 132600;212.034000;212.057000;212.033000;212.055000;0 +20260309 132700;212.053000;212.055000;212.017000;212.026000;0 +20260309 132800;212.026000;212.039000;212.021000;212.031000;0 +20260309 132900;212.030000;212.034000;212.020000;212.024000;0 +20260309 133000;212.020000;212.031000;212.014000;212.023000;0 +20260309 133100;212.021000;212.037000;212.010000;212.035000;0 +20260309 133200;212.035000;212.047000;212.020000;212.030000;0 +20260309 133300;212.030000;212.031000;211.998000;212.004000;0 +20260309 133400;212.004000;212.012000;211.997000;212.000000;0 +20260309 133500;212.002000;212.013000;211.984000;212.013000;0 +20260309 133600;212.011000;212.027000;212.001000;212.013000;0 +20260309 133700;212.013000;212.013000;211.991000;212.004000;0 +20260309 133800;212.004000;212.004000;211.977000;211.995000;0 +20260309 133900;211.997000;212.008000;211.992000;212.000000;0 +20260309 134000;211.999000;211.999000;211.970000;211.987000;0 +20260309 134100;211.983000;211.996000;211.979000;211.988000;0 +20260309 134200;211.988000;212.001000;211.976000;211.999000;0 +20260309 134300;212.000000;212.014000;211.996000;212.002000;0 +20260309 134400;212.004000;212.005000;211.974000;211.989000;0 +20260309 134500;211.987000;212.002000;211.970000;211.997000;0 +20260309 134600;211.998000;212.039000;211.997000;212.038000;0 +20260309 134700;212.039000;212.053000;212.034000;212.047000;0 +20260309 134800;212.047000;212.060000;212.032000;212.033000;0 +20260309 134900;212.035000;212.044000;212.023000;212.032000;0 +20260309 135000;212.034000;212.050000;212.023000;212.042000;0 +20260309 135100;212.041000;212.068000;212.039000;212.056000;0 +20260309 135200;212.052000;212.059000;212.040000;212.055000;0 +20260309 135300;212.054000;212.074000;212.053000;212.069000;0 +20260309 135400;212.068000;212.068000;212.040000;212.043000;0 +20260309 135500;212.048000;212.055000;212.037000;212.044000;0 +20260309 135600;212.041000;212.049000;212.020000;212.021000;0 +20260309 135700;212.023000;212.046000;212.022000;212.032000;0 +20260309 135800;212.032000;212.034000;212.018000;212.021000;0 +20260309 135900;212.026000;212.030000;212.000000;212.009000;0 +20260309 140000;212.011000;212.024000;211.996000;211.997000;0 +20260309 140100;212.001000;212.034000;212.001000;212.031000;0 +20260309 140200;212.030000;212.046000;212.023000;212.046000;0 +20260309 140300;212.048000;212.053000;212.036000;212.038000;0 +20260309 140400;212.035000;212.050000;212.034000;212.049000;0 +20260309 140500;212.047000;212.049000;212.028000;212.036000;0 +20260309 140600;212.036000;212.044000;212.036000;212.038000;0 +20260309 140700;212.040000;212.047000;212.033000;212.040000;0 +20260309 140800;212.039000;212.061000;212.038000;212.051000;0 +20260309 140900;212.049000;212.079000;212.048000;212.057000;0 +20260309 141000;212.055000;212.075000;212.048000;212.067000;0 +20260309 141100;212.066000;212.083000;212.066000;212.074000;0 +20260309 141200;212.073000;212.090000;212.070000;212.082000;0 +20260309 141300;212.079000;212.092000;212.075000;212.077000;0 +20260309 141400;212.076000;212.083000;212.062000;212.079000;0 +20260309 141500;212.080000;212.091000;212.075000;212.077000;0 +20260309 141600;212.076000;212.079000;212.067000;212.071000;0 +20260309 141700;212.070000;212.090000;212.046000;212.069000;0 +20260309 141800;212.069000;212.078000;212.050000;212.058000;0 +20260309 141900;212.053000;212.122000;212.036000;212.106000;0 +20260309 142000;212.105000;212.122000;212.059000;212.090000;0 +20260309 142100;212.094000;212.166000;212.063000;212.131000;0 +20260309 142200;212.132000;212.176000;212.080000;212.167000;0 +20260309 142300;212.164000;212.169000;212.086000;212.090000;0 +20260309 142400;212.094000;212.149000;212.073000;212.128000;0 +20260309 142500;212.129000;212.134000;212.060000;212.105000;0 +20260309 142600;212.106000;212.110000;212.050000;212.061000;0 +20260309 142700;212.056000;212.083000;212.009000;212.026000;0 +20260309 142800;212.025000;212.054000;212.005000;212.025000;0 +20260309 142900;212.025000;212.092000;212.015000;212.088000;0 +20260309 143000;212.091000;212.098000;212.014000;212.019000;0 +20260309 143100;212.020000;212.057000;211.996000;212.048000;0 +20260309 143200;212.047000;212.087000;212.034000;212.060000;0 +20260309 143300;212.061000;212.075000;212.006000;212.028000;0 +20260309 143400;212.026000;212.029000;211.987000;212.011000;0 +20260309 143500;212.011000;212.017000;211.953000;211.991000;0 +20260309 143600;211.982000;212.036000;211.980000;212.031000;0 +20260309 143700;212.029000;212.048000;212.009000;212.040000;0 +20260309 143800;212.040000;212.082000;212.027000;212.029000;0 +20260309 143900;212.033000;212.068000;212.022000;212.050000;0 +20260309 144000;212.049000;212.073000;212.016000;212.038000;0 +20260309 144100;212.040000;212.064000;211.991000;212.006000;0 +20260309 144200;212.009000;212.011000;211.858000;211.899000;0 +20260309 144300;211.901000;211.994000;211.892000;211.955000;0 +20260309 144400;211.953000;211.984000;211.910000;211.971000;0 +20260309 144500;211.968000;212.031000;211.941000;211.967000;0 +20260309 144600;211.967000;211.999000;211.920000;211.996000;0 +20260309 144700;211.994000;212.003000;211.971000;211.980000;0 +20260309 144800;211.982000;211.982000;211.910000;211.912000;0 +20260309 144900;211.918000;211.967000;211.899000;211.956000;0 +20260309 145000;211.960000;211.960000;211.902000;211.941000;0 +20260309 145100;211.940000;211.950000;211.912000;211.928000;0 +20260309 145200;211.931000;211.943000;211.906000;211.906000;0 +20260309 145300;211.904000;211.913000;211.870000;211.890000;0 +20260309 145400;211.890000;211.902000;211.848000;211.850000;0 +20260309 145500;211.850000;211.927000;211.836000;211.915000;0 +20260309 145600;211.914000;211.935000;211.872000;211.921000;0 +20260309 145700;211.920000;211.920000;211.873000;211.919000;0 +20260309 145800;211.918000;211.982000;211.918000;211.945000;0 +20260309 145900;211.945000;211.984000;211.937000;211.982000;0 +20260309 150000;211.982000;212.075000;211.979000;212.004000;0 +20260309 150100;212.001000;212.070000;211.967000;212.067000;0 +20260309 150200;212.070000;212.094000;211.993000;211.993000;0 +20260309 150300;211.994000;212.004000;211.959000;211.991000;0 +20260309 150400;211.986000;212.034000;211.980000;212.031000;0 +20260309 150500;212.033000;212.047000;211.991000;211.991000;0 +20260309 150600;211.991000;212.013000;211.976000;211.995000;0 +20260309 150700;211.993000;211.996000;211.961000;211.980000;0 +20260309 150800;211.979000;211.990000;211.947000;211.957000;0 +20260309 150900;211.956000;211.967000;211.926000;211.928000;0 +20260309 151000;211.929000;211.943000;211.924000;211.937000;0 +20260309 151100;211.938000;211.938000;211.905000;211.927000;0 +20260309 151200;211.929000;211.943000;211.920000;211.921000;0 +20260309 151300;211.923000;211.931000;211.910000;211.912000;0 +20260309 151400;211.914000;211.938000;211.907000;211.923000;0 +20260309 151500;211.922000;211.922000;211.882000;211.888000;0 +20260309 151600;211.886000;211.887000;211.849000;211.874000;0 +20260309 151700;211.878000;211.901000;211.868000;211.892000;0 +20260309 151800;211.894000;211.924000;211.891000;211.915000;0 +20260309 151900;211.915000;211.946000;211.910000;211.940000;0 +20260309 152000;211.937000;211.955000;211.923000;211.923000;0 +20260309 152100;211.923000;211.943000;211.923000;211.937000;0 +20260309 152200;211.937000;211.984000;211.928000;211.975000;0 +20260309 152300;211.973000;212.053000;211.970000;212.025000;0 +20260309 152400;212.024000;212.025000;212.005000;212.005000;0 +20260309 152500;211.999000;212.003000;211.986000;212.000000;0 +20260309 152600;211.998000;212.000000;211.977000;211.977000;0 +20260309 152700;211.978000;212.007000;211.977000;212.002000;0 +20260309 152800;212.004000;212.020000;211.965000;211.967000;0 +20260309 152900;211.964000;211.989000;211.964000;211.989000;0 +20260309 153000;211.987000;211.996000;211.964000;211.980000;0 +20260309 153100;211.981000;211.981000;211.936000;211.943000;0 +20260309 153200;211.943000;211.958000;211.930000;211.945000;0 +20260309 153300;211.942000;211.949000;211.922000;211.932000;0 +20260309 153400;211.931000;211.943000;211.902000;211.918000;0 +20260309 153500;211.918000;211.918000;211.880000;211.886000;0 +20260309 153600;211.885000;211.890000;211.832000;211.833000;0 +20260309 153700;211.835000;211.844000;211.791000;211.791000;0 +20260309 153800;211.790000;211.819000;211.780000;211.807000;0 +20260309 153900;211.806000;211.866000;211.801000;211.863000;0 +20260309 154000;211.867000;211.867000;211.842000;211.843000;0 +20260309 154100;211.841000;211.854000;211.829000;211.854000;0 +20260309 154200;211.856000;211.874000;211.849000;211.874000;0 +20260309 154300;211.876000;211.881000;211.839000;211.856000;0 +20260309 154400;211.855000;211.926000;211.855000;211.914000;0 +20260309 154500;211.913000;211.928000;211.899000;211.915000;0 +20260309 154600;211.908000;211.908000;211.870000;211.902000;0 +20260309 154700;211.899000;211.908000;211.875000;211.908000;0 +20260309 154800;211.913000;211.913000;211.899000;211.907000;0 +20260309 154900;211.907000;211.909000;211.856000;211.879000;0 +20260309 155000;211.883000;211.915000;211.879000;211.909000;0 +20260309 155100;211.909000;211.915000;211.859000;211.868000;0 +20260309 155200;211.878000;211.906000;211.868000;211.900000;0 +20260309 155300;211.898000;211.908000;211.888000;211.900000;0 +20260309 155400;211.905000;211.910000;211.870000;211.909000;0 +20260309 155500;211.893000;211.938000;211.880000;211.934000;0 +20260309 155600;211.933000;211.978000;211.932000;211.977000;0 +20260309 155700;211.971000;211.981000;211.920000;211.925000;0 +20260309 155800;211.925000;211.949000;211.890000;211.894000;0 +20260309 155900;211.894000;211.907000;211.816000;211.837000;0 +20260309 160200;211.920000;211.920000;211.896000;211.896000;0 +20260309 160400;211.890000;211.916000;211.887000;211.889000;0 +20260309 160500;211.860000;211.876000;211.717000;211.748000;0 +20260309 160600;211.764000;211.792000;211.764000;211.780000;0 +20260309 160700;211.779000;211.810000;211.779000;211.810000;0 +20260309 160800;211.811000;211.872000;211.811000;211.871000;0 +20260309 160900;211.869000;211.869000;211.855000;211.864000;0 +20260309 161000;211.863000;211.879000;211.863000;211.864000;0 +20260309 161100;211.867000;211.868000;211.857000;211.857000;0 +20260309 161200;211.861000;211.870000;211.859000;211.860000;0 +20260309 161300;211.792000;211.802000;211.768000;211.773000;0 +20260309 161400;211.772000;211.772000;211.765000;211.770000;0 +20260309 161500;211.763000;211.787000;211.763000;211.787000;0 +20260309 161600;211.788000;211.876000;211.788000;211.872000;0 +20260309 161700;211.873000;211.873000;211.850000;211.860000;0 +20260309 161800;211.861000;211.868000;211.856000;211.861000;0 +20260309 161900;211.860000;211.889000;211.860000;211.889000;0 +20260309 162000;211.890000;211.890000;211.886000;211.886000;0 +20260309 162100;211.885000;211.886000;211.856000;211.858000;0 +20260309 162200;211.859000;211.893000;211.807000;211.866000;0 +20260309 162300;211.865000;211.865000;211.793000;211.796000;0 +20260309 162400;211.798000;211.825000;211.793000;211.822000;0 +20260309 162500;211.821000;211.841000;211.797000;211.839000;0 +20260309 162600;211.818000;211.883000;211.814000;211.883000;0 +20260309 162700;211.855000;211.873000;211.836000;211.873000;0 +20260309 162800;211.886000;211.887000;211.847000;211.886000;0 +20260309 162900;211.886000;211.925000;211.857000;211.887000;0 +20260309 163000;211.855000;211.924000;211.848000;211.883000;0 +20260309 163100;211.883000;211.961000;211.883000;211.936000;0 +20260309 163200;211.928000;211.959000;211.922000;211.944000;0 +20260309 163300;211.947000;211.947000;211.916000;211.920000;0 +20260309 163400;211.921000;211.933000;211.912000;211.912000;0 +20260309 163500;211.913000;211.928000;211.910000;211.919000;0 +20260309 163600;211.923000;211.930000;211.908000;211.908000;0 +20260309 163700;211.909000;211.917000;211.888000;211.913000;0 +20260309 163800;211.922000;211.926000;211.907000;211.916000;0 +20260309 163900;211.915000;211.925000;211.912000;211.924000;0 +20260309 164000;211.927000;211.939000;211.917000;211.930000;0 +20260309 164100;211.929000;211.929000;211.916000;211.925000;0 +20260309 164200;211.926000;211.927000;211.902000;211.908000;0 +20260309 164300;211.907000;211.916000;211.903000;211.908000;0 +20260309 164400;211.908000;211.920000;211.860000;211.867000;0 +20260309 164500;211.867000;211.897000;211.866000;211.879000;0 +20260309 164600;211.879000;211.914000;211.878000;211.893000;0 +20260309 164700;211.891000;211.903000;211.837000;211.878000;0 +20260309 164800;211.879000;211.887000;211.804000;211.873000;0 +20260309 164900;211.875000;211.888000;211.832000;211.888000;0 +20260309 165000;211.888000;211.890000;211.826000;211.846000;0 +20260309 165100;211.845000;211.891000;211.841000;211.889000;0 +20260309 165200;211.889000;211.896000;211.877000;211.889000;0 +20260309 165300;211.893000;211.899000;211.876000;211.891000;0 +20260309 165400;211.893000;211.893000;211.872000;211.875000;0 +20260309 165500;211.876000;211.902000;211.834000;211.865000;0 +20260309 165600;211.865000;211.865000;211.845000;211.845000;0 +20260309 165700;211.848000;211.874000;211.846000;211.874000;0 +20260309 165800;211.862000;211.870000;211.850000;211.866000;0 +20260309 165900;211.869000;211.869000;211.863000;211.863000;0 +20260309 170000;212.004000;212.007000;211.924000;211.956000;0 +20260309 170100;211.957000;211.999000;211.957000;211.975000;0 +20260309 170200;211.975000;211.987000;211.921000;211.925000;0 +20260309 170300;211.934000;211.969000;211.894000;211.895000;0 +20260309 170400;211.894000;211.920000;211.888000;211.908000;0 +20260309 170500;211.908000;211.982000;211.908000;211.960000;0 +20260309 170600;211.967000;211.973000;211.936000;211.971000;0 +20260309 170700;211.968000;212.016000;211.944000;211.977000;0 +20260309 170800;211.976000;212.015000;211.931000;211.950000;0 +20260309 170900;211.951000;211.994000;211.936000;211.992000;0 +20260309 171000;211.993000;212.009000;211.971000;211.980000;0 +20260309 171100;211.987000;211.990000;211.936000;211.956000;0 +20260309 171200;211.956000;211.973000;211.924000;211.941000;0 +20260309 171300;211.936000;211.961000;211.920000;211.959000;0 +20260309 171400;211.960000;211.999000;211.950000;211.996000;0 +20260309 171500;212.001000;212.008000;211.972000;211.975000;0 +20260309 171600;211.974000;211.976000;211.958000;211.962000;0 +20260309 171700;211.964000;212.006000;211.964000;212.005000;0 +20260309 171800;212.006000;212.011000;211.979000;211.992000;0 +20260309 171900;211.991000;212.018000;211.987000;211.999000;0 +20260309 172000;211.999000;212.005000;211.985000;211.997000;0 +20260309 172100;211.995000;212.026000;211.990000;212.024000;0 +20260309 172200;212.026000;212.027000;211.970000;211.972000;0 +20260309 172300;211.974000;211.984000;211.956000;211.970000;0 +20260309 172400;211.967000;211.969000;211.917000;211.936000;0 +20260309 172500;211.936000;212.043000;211.930000;211.995000;0 +20260309 172600;211.994000;212.056000;211.993000;212.033000;0 +20260309 172700;212.033000;212.060000;212.011000;212.013000;0 +20260309 172800;212.012000;212.044000;211.996000;212.042000;0 +20260309 172900;212.041000;212.042000;212.015000;212.032000;0 +20260309 173000;212.034000;212.039000;211.982000;211.987000;0 +20260309 173100;211.986000;211.990000;211.938000;211.945000;0 +20260309 173200;211.938000;212.001000;211.926000;211.963000;0 +20260309 173300;211.961000;211.976000;211.936000;211.971000;0 +20260309 173400;211.965000;211.974000;211.910000;211.960000;0 +20260309 173500;211.961000;212.002000;211.959000;212.000000;0 +20260309 173600;212.000000;212.017000;211.985000;212.001000;0 +20260309 173700;212.001000;212.022000;211.994000;211.995000;0 +20260309 173800;211.995000;212.013000;211.963000;211.992000;0 +20260309 173900;211.997000;212.015000;211.992000;212.013000;0 +20260309 174000;212.012000;212.023000;212.005000;212.008000;0 +20260309 174100;212.008000;212.010000;211.977000;212.001000;0 +20260309 174200;212.000000;212.001000;211.983000;211.985000;0 +20260309 174300;211.985000;212.004000;211.983000;212.001000;0 +20260309 174400;212.001000;212.003000;211.975000;211.977000;0 +20260309 174500;211.977000;211.998000;211.977000;211.986000;0 +20260309 174600;211.986000;211.996000;211.981000;211.993000;0 +20260309 174700;211.994000;212.008000;211.992000;212.007000;0 +20260309 174800;212.006000;212.017000;211.986000;212.012000;0 +20260309 174900;212.014000;212.014000;211.991000;211.992000;0 +20260309 175000;211.991000;211.991000;211.974000;211.975000;0 +20260309 175100;211.975000;211.978000;211.961000;211.973000;0 +20260309 175200;211.973000;211.983000;211.958000;211.981000;0 +20260309 175300;211.983000;211.983000;211.960000;211.965000;0 +20260309 175400;211.962000;211.973000;211.933000;211.952000;0 +20260309 175500;211.951000;211.968000;211.943000;211.963000;0 +20260309 175600;211.963000;211.981000;211.953000;211.969000;0 +20260309 175700;211.969000;211.984000;211.968000;211.976000;0 +20260309 175800;211.975000;211.982000;211.956000;211.964000;0 +20260309 175900;211.964000;211.972000;211.963000;211.967000;0 +20260309 180000;211.966000;212.004000;211.963000;211.989000;0 +20260309 180100;211.987000;211.996000;211.936000;211.942000;0 +20260309 180200;211.943000;211.953000;211.927000;211.947000;0 +20260309 180300;211.944000;211.979000;211.931000;211.969000;0 +20260309 180400;211.968000;211.978000;211.965000;211.969000;0 +20260309 180500;211.971000;211.981000;211.962000;211.967000;0 +20260309 180600;211.966000;211.969000;211.945000;211.966000;0 +20260309 180700;211.965000;211.968000;211.942000;211.952000;0 +20260309 180800;211.953000;211.975000;211.949000;211.972000;0 +20260309 180900;211.967000;211.980000;211.945000;211.966000;0 +20260309 181000;211.964000;212.012000;211.964000;212.009000;0 +20260309 181100;212.008000;212.027000;212.002000;212.014000;0 +20260309 181200;212.013000;212.019000;211.984000;211.998000;0 +20260309 181300;211.997000;212.012000;211.995000;212.000000;0 +20260309 181400;212.000000;212.009000;211.991000;212.008000;0 +20260309 181500;212.006000;212.008000;211.989000;211.993000;0 +20260309 181600;211.995000;211.995000;211.965000;211.971000;0 +20260309 181700;211.969000;211.986000;211.962000;211.982000;0 +20260309 181800;211.983000;211.997000;211.955000;211.997000;0 +20260309 181900;211.996000;212.006000;211.980000;211.996000;0 +20260309 182000;211.996000;212.004000;211.991000;211.995000;0 +20260309 182100;211.998000;212.015000;211.984000;211.991000;0 +20260309 182200;211.991000;211.995000;211.965000;211.981000;0 +20260309 182300;211.983000;211.986000;211.968000;211.970000;0 +20260309 182400;211.968000;211.980000;211.957000;211.973000;0 +20260309 182500;211.973000;211.993000;211.967000;211.990000;0 +20260309 182600;211.991000;212.001000;211.975000;211.989000;0 +20260309 182700;211.987000;212.001000;211.979000;211.981000;0 +20260309 182800;211.988000;211.990000;211.979000;211.990000;0 +20260309 182900;211.990000;211.998000;211.986000;211.997000;0 +20260309 183000;211.997000;211.997000;211.971000;211.981000;0 +20260309 183100;211.977000;211.990000;211.973000;211.979000;0 +20260309 183200;211.977000;211.992000;211.963000;211.989000;0 +20260309 183300;211.986000;211.987000;211.979000;211.984000;0 +20260309 183400;211.983000;211.985000;211.953000;211.955000;0 +20260309 183500;211.955000;211.967000;211.950000;211.964000;0 +20260309 183600;211.962000;211.970000;211.954000;211.964000;0 +20260309 183700;211.970000;211.980000;211.958000;211.961000;0 +20260309 183800;211.962000;211.972000;211.961000;211.967000;0 +20260309 183900;211.965000;211.992000;211.956000;211.969000;0 +20260309 184000;211.972000;211.974000;211.922000;211.955000;0 +20260309 184100;211.955000;211.991000;211.952000;211.973000;0 +20260309 184200;211.972000;211.995000;211.959000;211.989000;0 +20260309 184300;211.988000;212.015000;211.988000;212.001000;0 +20260309 184400;212.001000;212.001000;211.953000;211.997000;0 +20260309 184500;211.999000;212.011000;211.988000;212.000000;0 +20260309 184600;212.001000;212.015000;211.990000;212.014000;0 +20260309 184700;212.013000;212.013000;211.988000;211.988000;0 +20260309 184800;211.988000;212.005000;211.975000;211.995000;0 +20260309 184900;211.997000;212.012000;211.978000;211.999000;0 +20260309 185000;211.997000;211.997000;211.955000;211.961000;0 +20260309 185100;211.961000;211.962000;211.942000;211.943000;0 +20260309 185200;211.946000;211.948000;211.907000;211.914000;0 +20260309 185300;211.911000;211.925000;211.897000;211.924000;0 +20260309 185400;211.923000;211.954000;211.923000;211.933000;0 +20260309 185500;211.932000;211.937000;211.888000;211.889000;0 +20260309 185600;211.890000;211.894000;211.878000;211.882000;0 +20260309 185700;211.883000;211.901000;211.879000;211.894000;0 +20260309 185800;211.892000;211.905000;211.883000;211.896000;0 +20260309 185900;211.896000;211.931000;211.896000;211.923000;0 +20260309 190000;211.923000;211.946000;211.878000;211.936000;0 +20260309 190100;211.941000;211.941000;211.847000;211.852000;0 +20260309 190200;211.848000;211.868000;211.838000;211.858000;0 +20260309 190300;211.859000;211.880000;211.833000;211.871000;0 +20260309 190400;211.871000;211.959000;211.867000;211.948000;0 +20260309 190500;211.947000;211.970000;211.929000;211.940000;0 +20260309 190600;211.942000;211.956000;211.935000;211.937000;0 +20260309 190700;211.937000;211.939000;211.906000;211.938000;0 +20260309 190800;211.937000;211.993000;211.923000;211.974000;0 +20260309 190900;211.974000;211.985000;211.955000;211.970000;0 +20260309 191000;211.970000;211.973000;211.906000;211.915000;0 +20260309 191100;211.916000;211.949000;211.912000;211.949000;0 +20260309 191200;211.950000;211.950000;211.913000;211.937000;0 +20260309 191300;211.943000;211.952000;211.929000;211.936000;0 +20260309 191400;211.938000;211.938000;211.891000;211.900000;0 +20260309 191500;211.899000;211.915000;211.889000;211.902000;0 +20260309 191600;211.901000;211.921000;211.866000;211.871000;0 +20260309 191700;211.874000;211.874000;211.836000;211.859000;0 +20260309 191800;211.854000;211.897000;211.845000;211.892000;0 +20260309 191900;211.891000;211.923000;211.864000;211.878000;0 +20260309 192000;211.879000;211.904000;211.872000;211.875000;0 +20260309 192100;211.875000;211.882000;211.836000;211.881000;0 +20260309 192200;211.878000;211.878000;211.848000;211.857000;0 +20260309 192300;211.858000;211.860000;211.820000;211.834000;0 +20260309 192400;211.831000;211.849000;211.814000;211.842000;0 +20260309 192500;211.843000;211.875000;211.835000;211.869000;0 +20260309 192600;211.870000;211.880000;211.840000;211.847000;0 +20260309 192700;211.848000;211.875000;211.830000;211.869000;0 +20260309 192800;211.870000;211.913000;211.866000;211.905000;0 +20260309 192900;211.904000;211.922000;211.886000;211.914000;0 +20260309 193000;211.913000;211.924000;211.869000;211.871000;0 +20260309 193100;211.872000;211.943000;211.871000;211.932000;0 +20260309 193200;211.935000;211.935000;211.845000;211.851000;0 +20260309 193300;211.847000;211.894000;211.830000;211.888000;0 +20260309 193400;211.885000;211.896000;211.870000;211.890000;0 +20260309 193500;211.892000;211.917000;211.884000;211.916000;0 +20260309 193600;211.917000;212.009000;211.911000;211.990000;0 +20260309 193700;211.990000;212.014000;211.962000;212.011000;0 +20260309 193800;212.006000;212.012000;211.921000;211.934000;0 +20260309 193900;211.928000;211.938000;211.887000;211.904000;0 +20260309 194000;211.902000;211.910000;211.870000;211.886000;0 +20260309 194100;211.886000;211.904000;211.857000;211.890000;0 +20260309 194200;211.890000;211.890000;211.849000;211.852000;0 +20260309 194300;211.855000;211.880000;211.854000;211.876000;0 +20260309 194400;211.874000;211.878000;211.855000;211.866000;0 +20260309 194500;211.866000;211.878000;211.851000;211.869000;0 +20260309 194600;211.869000;211.869000;211.831000;211.852000;0 +20260309 194700;211.851000;211.867000;211.837000;211.852000;0 +20260309 194800;211.852000;211.863000;211.819000;211.863000;0 +20260309 194900;211.862000;211.894000;211.847000;211.888000;0 +20260309 195000;211.888000;211.888000;211.841000;211.844000;0 +20260309 195100;211.844000;211.871000;211.840000;211.854000;0 +20260309 195200;211.854000;211.854000;211.812000;211.837000;0 +20260309 195300;211.835000;211.861000;211.830000;211.839000;0 +20260309 195400;211.837000;211.846000;211.759000;211.810000;0 +20260309 195500;211.819000;211.835000;211.754000;211.778000;0 +20260309 195600;211.776000;211.788000;211.751000;211.755000;0 +20260309 195700;211.759000;211.761000;211.698000;211.709000;0 +20260309 195800;211.711000;211.734000;211.699000;211.712000;0 +20260309 195900;211.714000;211.729000;211.702000;211.722000;0 +20260309 200000;211.724000;211.749000;211.712000;211.720000;0 +20260309 200100;211.720000;211.750000;211.693000;211.695000;0 +20260309 200200;211.695000;211.718000;211.687000;211.688000;0 +20260309 200300;211.678000;211.703000;211.668000;211.681000;0 +20260309 200400;211.678000;211.702000;211.658000;211.695000;0 +20260309 200500;211.695000;211.716000;211.668000;211.678000;0 +20260309 200600;211.676000;211.707000;211.660000;211.701000;0 +20260309 200700;211.699000;211.720000;211.681000;211.697000;0 +20260309 200800;211.695000;211.704000;211.652000;211.663000;0 +20260309 200900;211.658000;211.686000;211.645000;211.684000;0 +20260309 201000;211.685000;211.702000;211.653000;211.673000;0 +20260309 201100;211.673000;211.706000;211.672000;211.678000;0 +20260309 201200;211.676000;211.690000;211.640000;211.683000;0 +20260309 201300;211.681000;211.705000;211.671000;211.686000;0 +20260309 201400;211.687000;211.699000;211.657000;211.657000;0 +20260309 201500;211.658000;211.734000;211.658000;211.711000;0 +20260309 201600;211.713000;211.716000;211.682000;211.704000;0 +20260309 201700;211.702000;211.728000;211.681000;211.717000;0 +20260309 201800;211.720000;211.762000;211.693000;211.760000;0 +20260309 201900;211.761000;211.764000;211.729000;211.730000;0 +20260309 202000;211.732000;211.765000;211.727000;211.749000;0 +20260309 202100;211.747000;211.749000;211.703000;211.722000;0 +20260309 202200;211.721000;211.740000;211.715000;211.733000;0 +20260309 202300;211.731000;211.812000;211.730000;211.791000;0 +20260309 202400;211.792000;211.805000;211.772000;211.805000;0 +20260309 202500;211.805000;211.816000;211.786000;211.809000;0 +20260309 202600;211.810000;211.821000;211.770000;211.777000;0 +20260309 202700;211.775000;211.785000;211.731000;211.742000;0 +20260309 202800;211.744000;211.780000;211.744000;211.766000;0 +20260309 202900;211.767000;211.787000;211.758000;211.771000;0 +20260309 203000;211.768000;211.776000;211.745000;211.771000;0 +20260309 203100;211.768000;211.794000;211.739000;211.756000;0 +20260309 203200;211.756000;211.763000;211.693000;211.698000;0 +20260309 203300;211.700000;211.743000;211.698000;211.737000;0 +20260309 203400;211.737000;211.740000;211.702000;211.720000;0 +20260309 203500;211.720000;211.722000;211.654000;211.659000;0 +20260309 203600;211.662000;211.691000;211.647000;211.664000;0 +20260309 203700;211.665000;211.682000;211.612000;211.633000;0 +20260309 203800;211.630000;211.643000;211.610000;211.616000;0 +20260309 203900;211.616000;211.632000;211.602000;211.628000;0 +20260309 204000;211.627000;211.638000;211.611000;211.626000;0 +20260309 204100;211.627000;211.630000;211.594000;211.599000;0 +20260309 204200;211.600000;211.612000;211.583000;211.599000;0 +20260309 204300;211.596000;211.615000;211.589000;211.600000;0 +20260309 204400;211.600000;211.624000;211.586000;211.622000;0 +20260309 204500;211.621000;211.657000;211.616000;211.627000;0 +20260309 204600;211.627000;211.668000;211.613000;211.625000;0 +20260309 204700;211.629000;211.657000;211.626000;211.652000;0 +20260309 204800;211.652000;211.688000;211.644000;211.682000;0 +20260309 204900;211.681000;211.702000;211.664000;211.692000;0 +20260309 205000;211.693000;211.715000;211.676000;211.676000;0 +20260309 205100;211.678000;211.702000;211.677000;211.691000;0 +20260309 205200;211.694000;211.730000;211.687000;211.728000;0 +20260309 205300;211.724000;211.748000;211.710000;211.718000;0 +20260309 205400;211.718000;211.756000;211.718000;211.751000;0 +20260309 205500;211.746000;211.758000;211.731000;211.737000;0 +20260309 205600;211.739000;211.741000;211.720000;211.728000;0 +20260309 205700;211.726000;211.727000;211.691000;211.696000;0 +20260309 205800;211.697000;211.730000;211.689000;211.723000;0 +20260309 205900;211.724000;211.733000;211.694000;211.700000;0 +20260309 210000;211.700000;211.741000;211.700000;211.728000;0 +20260309 210100;211.728000;211.739000;211.699000;211.714000;0 +20260309 210200;211.715000;211.720000;211.684000;211.718000;0 +20260309 210300;211.720000;211.724000;211.667000;211.674000;0 +20260309 210400;211.673000;211.695000;211.673000;211.687000;0 +20260309 210500;211.689000;211.754000;211.689000;211.743000;0 +20260309 210600;211.743000;211.761000;211.717000;211.739000;0 +20260309 210700;211.738000;211.769000;211.726000;211.761000;0 +20260309 210800;211.760000;211.767000;211.728000;211.733000;0 +20260309 210900;211.733000;211.775000;211.727000;211.772000;0 +20260309 211000;211.770000;211.804000;211.750000;211.760000;0 +20260309 211100;211.760000;211.764000;211.745000;211.762000;0 +20260309 211200;211.762000;211.762000;211.731000;211.756000;0 +20260309 211300;211.757000;211.765000;211.733000;211.751000;0 +20260309 211400;211.752000;211.777000;211.751000;211.771000;0 +20260309 211500;211.772000;211.783000;211.753000;211.755000;0 +20260309 211600;211.755000;211.787000;211.752000;211.780000;0 +20260309 211700;211.782000;211.793000;211.761000;211.773000;0 +20260309 211800;211.773000;211.787000;211.759000;211.779000;0 +20260309 211900;211.777000;211.782000;211.761000;211.778000;0 +20260309 212000;211.778000;211.813000;211.773000;211.804000;0 +20260309 212100;211.803000;211.806000;211.774000;211.792000;0 +20260309 212200;211.791000;211.797000;211.768000;211.781000;0 +20260309 212300;211.782000;211.798000;211.768000;211.787000;0 +20260309 212400;211.793000;211.793000;211.764000;211.786000;0 +20260309 212500;211.786000;211.790000;211.770000;211.782000;0 +20260309 212600;211.783000;211.787000;211.772000;211.782000;0 +20260309 212700;211.783000;211.800000;211.775000;211.777000;0 +20260309 212800;211.778000;211.795000;211.766000;211.774000;0 +20260309 212900;211.770000;211.783000;211.764000;211.775000;0 +20260309 213000;211.776000;211.801000;211.771000;211.784000;0 +20260309 213100;211.785000;211.797000;211.772000;211.787000;0 +20260309 213200;211.788000;211.789000;211.739000;211.746000;0 +20260309 213300;211.746000;211.762000;211.737000;211.744000;0 +20260309 213400;211.742000;211.780000;211.731000;211.762000;0 +20260309 213500;211.760000;211.770000;211.749000;211.763000;0 +20260309 213600;211.762000;211.782000;211.755000;211.762000;0 +20260309 213700;211.761000;211.782000;211.744000;211.753000;0 +20260309 213800;211.754000;211.768000;211.742000;211.744000;0 +20260309 213900;211.754000;211.761000;211.747000;211.747000;0 +20260309 214000;211.750000;211.768000;211.749000;211.759000;0 +20260309 214100;211.761000;211.783000;211.753000;211.777000;0 +20260309 214200;211.776000;211.793000;211.763000;211.792000;0 +20260309 214300;211.791000;211.806000;211.778000;211.783000;0 +20260309 214400;211.781000;211.788000;211.758000;211.764000;0 +20260309 214500;211.762000;211.764000;211.737000;211.742000;0 +20260309 214600;211.745000;211.759000;211.737000;211.742000;0 +20260309 214700;211.741000;211.759000;211.735000;211.758000;0 +20260309 214800;211.761000;211.761000;211.742000;211.752000;0 +20260309 214900;211.751000;211.760000;211.744000;211.747000;0 +20260309 215000;211.749000;211.749000;211.700000;211.722000;0 +20260309 215100;211.725000;211.755000;211.718000;211.744000;0 +20260309 215200;211.742000;211.744000;211.721000;211.731000;0 +20260309 215300;211.731000;211.766000;211.731000;211.759000;0 +20260309 215400;211.760000;211.764000;211.736000;211.741000;0 +20260309 215500;211.739000;211.786000;211.716000;211.779000;0 +20260309 215600;211.779000;211.783000;211.751000;211.767000;0 +20260309 215700;211.766000;211.777000;211.754000;211.774000;0 +20260309 215800;211.773000;211.805000;211.764000;211.801000;0 +20260309 215900;211.805000;211.809000;211.787000;211.803000;0 +20260309 220000;211.802000;211.813000;211.794000;211.804000;0 +20260309 220100;211.803000;211.860000;211.803000;211.851000;0 +20260309 220200;211.851000;211.859000;211.824000;211.835000;0 +20260309 220300;211.836000;211.867000;211.828000;211.832000;0 +20260309 220400;211.832000;211.850000;211.825000;211.839000;0 +20260309 220500;211.837000;211.879000;211.836000;211.879000;0 +20260309 220600;211.877000;211.882000;211.855000;211.865000;0 +20260309 220700;211.866000;211.891000;211.854000;211.889000;0 +20260309 220800;211.888000;211.900000;211.863000;211.863000;0 +20260309 220900;211.865000;211.868000;211.845000;211.858000;0 +20260309 221000;211.860000;211.884000;211.857000;211.872000;0 +20260309 221100;211.872000;211.880000;211.854000;211.856000;0 +20260309 221200;211.855000;211.861000;211.836000;211.845000;0 +20260309 221300;211.847000;211.857000;211.845000;211.855000;0 +20260309 221400;211.855000;211.876000;211.843000;211.869000;0 +20260309 221500;211.870000;211.887000;211.869000;211.883000;0 +20260309 221600;211.883000;211.895000;211.878000;211.889000;0 +20260309 221700;211.895000;211.917000;211.893000;211.912000;0 +20260309 221800;211.913000;211.921000;211.897000;211.900000;0 +20260309 221900;211.901000;211.905000;211.887000;211.891000;0 +20260309 222000;211.892000;211.892000;211.863000;211.876000;0 +20260309 222100;211.876000;211.903000;211.874000;211.900000;0 +20260309 222200;211.900000;211.904000;211.888000;211.893000;0 +20260309 222300;211.891000;211.891000;211.872000;211.883000;0 +20260309 222400;211.881000;211.881000;211.862000;211.874000;0 +20260309 222500;211.879000;211.884000;211.857000;211.858000;0 +20260309 222600;211.858000;211.880000;211.858000;211.869000;0 +20260309 222700;211.870000;211.870000;211.846000;211.847000;0 +20260309 222800;211.847000;211.873000;211.847000;211.868000;0 +20260309 222900;211.869000;211.874000;211.833000;211.836000;0 +20260309 223000;211.835000;211.851000;211.830000;211.845000;0 +20260309 223100;211.846000;211.859000;211.839000;211.847000;0 +20260309 223200;211.847000;211.848000;211.828000;211.840000;0 +20260309 223300;211.840000;211.848000;211.829000;211.829000;0 +20260309 223400;211.831000;211.833000;211.793000;211.797000;0 +20260309 223500;211.797000;211.811000;211.793000;211.808000;0 +20260309 223600;211.805000;211.828000;211.805000;211.812000;0 +20260309 223700;211.813000;211.841000;211.813000;211.839000;0 +20260309 223800;211.839000;211.843000;211.810000;211.814000;0 +20260309 223900;211.814000;211.829000;211.814000;211.827000;0 +20260309 224000;211.827000;211.835000;211.814000;211.815000;0 +20260309 224100;211.822000;211.838000;211.816000;211.825000;0 +20260309 224200;211.828000;211.854000;211.822000;211.851000;0 +20260309 224300;211.852000;211.864000;211.837000;211.842000;0 +20260309 224400;211.840000;211.848000;211.833000;211.836000;0 +20260309 224500;211.838000;211.844000;211.809000;211.809000;0 +20260309 224600;211.807000;211.825000;211.802000;211.821000;0 +20260309 224700;211.821000;211.823000;211.795000;211.801000;0 +20260309 224800;211.798000;211.822000;211.796000;211.812000;0 +20260309 224900;211.812000;211.826000;211.810000;211.817000;0 +20260309 225000;211.817000;211.832000;211.810000;211.826000;0 +20260309 225100;211.829000;211.834000;211.808000;211.808000;0 +20260309 225200;211.808000;211.837000;211.806000;211.828000;0 +20260309 225300;211.830000;211.841000;211.779000;211.784000;0 +20260309 225400;211.781000;211.836000;211.762000;211.826000;0 +20260309 225500;211.827000;211.840000;211.807000;211.814000;0 +20260309 225600;211.811000;211.816000;211.787000;211.790000;0 +20260309 225700;211.791000;211.837000;211.789000;211.818000;0 +20260309 225800;211.818000;211.820000;211.804000;211.816000;0 +20260309 225900;211.816000;211.824000;211.813000;211.823000;0 +20260309 230000;211.823000;211.840000;211.805000;211.812000;0 +20260309 230100;211.812000;211.825000;211.802000;211.825000;0 +20260309 230200;211.828000;211.847000;211.828000;211.836000;0 +20260309 230300;211.835000;211.859000;211.830000;211.847000;0 +20260309 230400;211.847000;211.859000;211.842000;211.851000;0 +20260309 230500;211.852000;211.857000;211.837000;211.844000;0 +20260309 230600;211.848000;211.854000;211.820000;211.822000;0 +20260309 230700;211.824000;211.860000;211.821000;211.854000;0 +20260309 230800;211.857000;211.864000;211.838000;211.852000;0 +20260309 230900;211.854000;211.862000;211.831000;211.832000;0 +20260309 231000;211.831000;211.844000;211.811000;211.813000;0 +20260309 231100;211.813000;211.830000;211.803000;211.813000;0 +20260309 231200;211.814000;211.823000;211.805000;211.818000;0 +20260309 231300;211.818000;211.820000;211.800000;211.800000;0 +20260309 231400;211.800000;211.809000;211.792000;211.803000;0 +20260309 231500;211.804000;211.810000;211.785000;211.807000;0 +20260309 231600;211.806000;211.811000;211.798000;211.808000;0 +20260309 231700;211.809000;211.815000;211.783000;211.788000;0 +20260309 231800;211.787000;211.787000;211.773000;211.778000;0 +20260309 231900;211.778000;211.786000;211.767000;211.767000;0 +20260309 232000;211.768000;211.769000;211.737000;211.759000;0 +20260309 232100;211.758000;211.758000;211.733000;211.753000;0 +20260309 232200;211.757000;211.790000;211.755000;211.780000;0 +20260309 232300;211.779000;211.786000;211.766000;211.784000;0 +20260309 232400;211.784000;211.803000;211.781000;211.801000;0 +20260309 232500;211.802000;211.815000;211.802000;211.813000;0 +20260309 232600;211.814000;211.823000;211.813000;211.813000;0 +20260309 232700;211.815000;211.816000;211.796000;211.800000;0 +20260309 232800;211.801000;211.802000;211.783000;211.791000;0 +20260309 232900;211.789000;211.796000;211.776000;211.787000;0 +20260309 233000;211.788000;211.799000;211.769000;211.773000;0 +20260309 233100;211.771000;211.793000;211.757000;211.793000;0 +20260309 233200;211.791000;211.795000;211.772000;211.777000;0 +20260309 233300;211.772000;211.778000;211.759000;211.774000;0 +20260309 233400;211.775000;211.782000;211.771000;211.775000;0 +20260309 233500;211.776000;211.792000;211.773000;211.783000;0 +20260309 233600;211.782000;211.797000;211.779000;211.796000;0 +20260309 233700;211.798000;211.812000;211.797000;211.799000;0 +20260309 233800;211.797000;211.809000;211.795000;211.801000;0 +20260309 233900;211.798000;211.799000;211.786000;211.793000;0 +20260309 234000;211.795000;211.796000;211.785000;211.795000;0 +20260309 234100;211.796000;211.813000;211.796000;211.805000;0 +20260309 234200;211.810000;211.815000;211.781000;211.786000;0 +20260309 234300;211.784000;211.786000;211.749000;211.763000;0 +20260309 234400;211.762000;211.770000;211.755000;211.755000;0 +20260309 234500;211.756000;211.780000;211.749000;211.775000;0 +20260309 234600;211.769000;211.795000;211.767000;211.794000;0 +20260309 234700;211.791000;211.811000;211.788000;211.810000;0 +20260309 234800;211.812000;211.850000;211.812000;211.849000;0 +20260309 234900;211.848000;211.869000;211.834000;211.843000;0 +20260309 235000;211.844000;211.861000;211.824000;211.824000;0 +20260309 235100;211.822000;211.839000;211.809000;211.834000;0 +20260309 235200;211.834000;211.843000;211.824000;211.833000;0 +20260309 235300;211.832000;211.837000;211.824000;211.834000;0 +20260309 235400;211.833000;211.838000;211.819000;211.822000;0 +20260309 235500;211.822000;211.825000;211.807000;211.821000;0 +20260309 235600;211.820000;211.823000;211.793000;211.798000;0 +20260309 235700;211.799000;211.810000;211.791000;211.792000;0 +20260309 235800;211.793000;211.816000;211.792000;211.812000;0 +20260309 235900;211.811000;211.818000;211.798000;211.807000;0 +20260310 000000;211.806000;211.828000;211.804000;211.815000;0 +20260310 000100;211.813000;211.836000;211.807000;211.825000;0 +20260310 000200;211.824000;211.836000;211.813000;211.830000;0 +20260310 000300;211.828000;211.844000;211.825000;211.841000;0 +20260310 000400;211.843000;211.852000;211.834000;211.842000;0 +20260310 000500;211.844000;211.867000;211.826000;211.857000;0 +20260310 000600;211.857000;211.894000;211.854000;211.865000;0 +20260310 000700;211.864000;211.864000;211.818000;211.824000;0 +20260310 000800;211.823000;211.832000;211.815000;211.822000;0 +20260310 000900;211.822000;211.830000;211.814000;211.825000;0 +20260310 001000;211.825000;211.843000;211.805000;211.807000;0 +20260310 001100;211.805000;211.810000;211.774000;211.777000;0 +20260310 001200;211.778000;211.780000;211.755000;211.769000;0 +20260310 001300;211.771000;211.771000;211.741000;211.746000;0 +20260310 001400;211.746000;211.765000;211.741000;211.753000;0 +20260310 001500;211.755000;211.794000;211.754000;211.773000;0 +20260310 001600;211.775000;211.787000;211.768000;211.783000;0 +20260310 001700;211.783000;211.792000;211.776000;211.777000;0 +20260310 001800;211.776000;211.777000;211.756000;211.774000;0 +20260310 001900;211.774000;211.783000;211.764000;211.769000;0 +20260310 002000;211.772000;211.777000;211.728000;211.738000;0 +20260310 002100;211.737000;211.753000;211.730000;211.745000;0 +20260310 002200;211.745000;211.749000;211.730000;211.742000;0 +20260310 002300;211.742000;211.748000;211.725000;211.728000;0 +20260310 002400;211.727000;211.740000;211.723000;211.737000;0 +20260310 002500;211.737000;211.756000;211.728000;211.756000;0 +20260310 002600;211.755000;211.765000;211.724000;211.727000;0 +20260310 002700;211.725000;211.732000;211.714000;211.726000;0 +20260310 002800;211.724000;211.725000;211.714000;211.718000;0 +20260310 002900;211.717000;211.744000;211.717000;211.742000;0 +20260310 003000;211.745000;211.778000;211.743000;211.778000;0 +20260310 003100;211.778000;211.785000;211.766000;211.775000;0 +20260310 003200;211.775000;211.782000;211.747000;211.760000;0 +20260310 003300;211.760000;211.777000;211.757000;211.766000;0 +20260310 003400;211.769000;211.781000;211.755000;211.755000;0 +20260310 003500;211.755000;211.780000;211.750000;211.779000;0 +20260310 003600;211.778000;211.787000;211.742000;211.753000;0 +20260310 003700;211.753000;211.763000;211.744000;211.761000;0 +20260310 003800;211.758000;211.777000;211.756000;211.756000;0 +20260310 003900;211.755000;211.765000;211.752000;211.755000;0 +20260310 004000;211.756000;211.765000;211.750000;211.756000;0 +20260310 004100;211.749000;211.749000;211.680000;211.688000;0 +20260310 004200;211.690000;211.730000;211.682000;211.710000;0 +20260310 004300;211.712000;211.732000;211.702000;211.720000;0 +20260310 004400;211.720000;211.726000;211.706000;211.725000;0 +20260310 004500;211.725000;211.740000;211.723000;211.730000;0 +20260310 004600;211.730000;211.763000;211.730000;211.761000;0 +20260310 004700;211.764000;211.784000;211.760000;211.766000;0 +20260310 004800;211.766000;211.807000;211.756000;211.796000;0 +20260310 004900;211.799000;211.815000;211.783000;211.806000;0 +20260310 005000;211.807000;211.810000;211.795000;211.801000;0 +20260310 005100;211.801000;211.812000;211.783000;211.812000;0 +20260310 005200;211.811000;211.822000;211.796000;211.812000;0 +20260310 005300;211.811000;211.818000;211.784000;211.788000;0 +20260310 005400;211.787000;211.796000;211.776000;211.788000;0 +20260310 005500;211.792000;211.798000;211.769000;211.769000;0 +20260310 005600;211.772000;211.786000;211.770000;211.776000;0 +20260310 005700;211.779000;211.797000;211.773000;211.788000;0 +20260310 005800;211.791000;211.800000;211.779000;211.782000;0 +20260310 005900;211.783000;211.798000;211.778000;211.795000;0 +20260310 010000;211.797000;211.856000;211.797000;211.845000;0 +20260310 010100;211.846000;211.851000;211.845000;211.846000;0 +20260310 010200;211.847000;211.854000;211.827000;211.834000;0 +20260310 010300;211.833000;211.838000;211.812000;211.819000;0 +20260310 010400;211.819000;211.824000;211.814000;211.820000;0 +20260310 010500;211.820000;211.834000;211.813000;211.822000;0 +20260310 010600;211.821000;211.821000;211.770000;211.772000;0 +20260310 010700;211.770000;211.781000;211.730000;211.736000;0 +20260310 010800;211.734000;211.753000;211.733000;211.746000;0 +20260310 010900;211.745000;211.762000;211.737000;211.755000;0 +20260310 011000;211.757000;211.764000;211.738000;211.738000;0 +20260310 011100;211.741000;211.751000;211.726000;211.748000;0 +20260310 011200;211.751000;211.786000;211.750000;211.771000;0 +20260310 011300;211.772000;211.778000;211.757000;211.762000;0 +20260310 011400;211.763000;211.781000;211.754000;211.767000;0 +20260310 011500;211.766000;211.778000;211.759000;211.772000;0 +20260310 011600;211.771000;211.773000;211.745000;211.763000;0 +20260310 011700;211.760000;211.777000;211.750000;211.763000;0 +20260310 011800;211.764000;211.784000;211.758000;211.772000;0 +20260310 011900;211.772000;211.779000;211.752000;211.760000;0 +20260310 012000;211.760000;211.785000;211.760000;211.776000;0 +20260310 012100;211.784000;211.802000;211.767000;211.791000;0 +20260310 012200;211.792000;211.811000;211.781000;211.807000;0 +20260310 012300;211.807000;211.813000;211.783000;211.799000;0 +20260310 012400;211.801000;211.813000;211.793000;211.802000;0 +20260310 012500;211.803000;211.819000;211.801000;211.817000;0 +20260310 012600;211.819000;211.834000;211.802000;211.806000;0 +20260310 012700;211.802000;211.839000;211.796000;211.828000;0 +20260310 012800;211.829000;211.840000;211.825000;211.839000;0 +20260310 012900;211.840000;211.844000;211.805000;211.840000;0 +20260310 013000;211.844000;211.907000;211.836000;211.901000;0 +20260310 013100;211.905000;211.906000;211.883000;211.885000;0 +20260310 013200;211.883000;211.897000;211.877000;211.892000;0 +20260310 013300;211.892000;211.906000;211.861000;211.861000;0 +20260310 013400;211.861000;211.874000;211.843000;211.860000;0 +20260310 013500;211.859000;211.874000;211.828000;211.829000;0 +20260310 013600;211.829000;211.846000;211.813000;211.816000;0 +20260310 013700;211.815000;211.835000;211.811000;211.832000;0 +20260310 013800;211.838000;211.914000;211.823000;211.907000;0 +20260310 013900;211.907000;211.920000;211.857000;211.903000;0 +20260310 014000;211.904000;211.941000;211.886000;211.932000;0 +20260310 014100;211.936000;211.941000;211.920000;211.929000;0 +20260310 014200;211.928000;211.996000;211.926000;211.988000;0 +20260310 014300;211.989000;211.997000;211.956000;211.993000;0 +20260310 014400;211.994000;212.008000;211.989000;211.990000;0 +20260310 014500;211.996000;212.003000;211.917000;211.951000;0 +20260310 014600;211.952000;211.957000;211.926000;211.930000;0 +20260310 014700;211.933000;211.946000;211.924000;211.929000;0 +20260310 014800;211.938000;211.962000;211.937000;211.961000;0 +20260310 014900;211.962000;211.964000;211.926000;211.936000;0 +20260310 015000;211.937000;211.971000;211.935000;211.940000;0 +20260310 015100;211.938000;211.943000;211.921000;211.929000;0 +20260310 015200;211.928000;211.942000;211.898000;211.913000;0 +20260310 015300;211.911000;211.919000;211.884000;211.892000;0 +20260310 015400;211.889000;211.899000;211.881000;211.885000;0 +20260310 015500;211.887000;211.932000;211.883000;211.926000;0 +20260310 015600;211.926000;211.935000;211.911000;211.935000;0 +20260310 015700;211.931000;211.933000;211.914000;211.925000;0 +20260310 015800;211.925000;211.930000;211.889000;211.902000;0 +20260310 015900;211.902000;211.902000;211.889000;211.898000;0 +20260310 020000;211.904000;211.926000;211.890000;211.911000;0 +20260310 020100;211.913000;211.923000;211.898000;211.898000;0 +20260310 020200;211.903000;211.944000;211.900000;211.939000;0 +20260310 020300;211.940000;211.961000;211.922000;211.925000;0 +20260310 020400;211.925000;211.944000;211.914000;211.933000;0 +20260310 020500;211.932000;211.975000;211.931000;211.971000;0 +20260310 020600;211.970000;212.013000;211.955000;211.957000;0 +20260310 020700;211.957000;211.959000;211.926000;211.952000;0 +20260310 020800;211.952000;211.958000;211.927000;211.954000;0 +20260310 020900;211.951000;212.012000;211.936000;212.011000;0 +20260310 021000;212.010000;212.050000;212.009000;212.033000;0 +20260310 021100;212.032000;212.057000;212.005000;212.016000;0 +20260310 021200;212.018000;212.022000;211.984000;212.017000;0 +20260310 021300;212.016000;212.048000;212.010000;212.022000;0 +20260310 021400;212.024000;212.045000;212.012000;212.023000;0 +20260310 021500;212.023000;212.043000;212.009000;212.033000;0 +20260310 021600;212.036000;212.057000;212.036000;212.039000;0 +20260310 021700;212.038000;212.053000;211.993000;212.007000;0 +20260310 021800;212.008000;212.016000;211.950000;211.960000;0 +20260310 021900;211.960000;211.969000;211.942000;211.963000;0 +20260310 022000;211.966000;212.010000;211.950000;211.994000;0 +20260310 022100;211.996000;212.038000;211.988000;212.020000;0 +20260310 022200;212.020000;212.028000;211.971000;211.981000;0 +20260310 022300;211.983000;212.022000;211.979000;212.001000;0 +20260310 022400;212.001000;212.034000;211.990000;212.005000;0 +20260310 022500;212.001000;212.017000;211.990000;212.008000;0 +20260310 022600;212.009000;212.016000;211.990000;211.993000;0 +20260310 022700;211.991000;212.029000;211.991000;212.029000;0 +20260310 022800;212.032000;212.086000;212.027000;212.073000;0 +20260310 022900;212.073000;212.078000;212.042000;212.050000;0 +20260310 023000;212.057000;212.084000;212.049000;212.056000;0 +20260310 023100;212.048000;212.048000;211.971000;211.998000;0 +20260310 023200;211.989000;211.993000;211.951000;211.989000;0 +20260310 023300;211.991000;211.995000;211.943000;211.980000;0 +20260310 023400;211.982000;212.001000;211.942000;211.960000;0 +20260310 023500;211.963000;211.970000;211.921000;211.922000;0 +20260310 023600;211.921000;211.959000;211.904000;211.906000;0 +20260310 023700;211.912000;211.919000;211.876000;211.883000;0 +20260310 023800;211.884000;211.892000;211.859000;211.862000;0 +20260310 023900;211.853000;211.870000;211.823000;211.839000;0 +20260310 024000;211.839000;211.881000;211.815000;211.867000;0 +20260310 024100;211.864000;211.869000;211.841000;211.853000;0 +20260310 024200;211.852000;211.923000;211.851000;211.919000;0 +20260310 024300;211.917000;211.929000;211.893000;211.925000;0 +20260310 024400;211.925000;211.937000;211.920000;211.926000;0 +20260310 024500;211.924000;211.945000;211.916000;211.940000;0 +20260310 024600;211.940000;211.963000;211.923000;211.945000;0 +20260310 024700;211.945000;211.966000;211.930000;211.963000;0 +20260310 024800;211.963000;211.966000;211.930000;211.943000;0 +20260310 024900;211.948000;211.971000;211.933000;211.957000;0 +20260310 025000;211.954000;211.985000;211.948000;211.978000;0 +20260310 025100;211.982000;212.008000;211.956000;212.004000;0 +20260310 025200;212.005000;212.010000;211.981000;211.984000;0 +20260310 025300;211.984000;212.005000;211.974000;211.987000;0 +20260310 025400;211.987000;212.003000;211.974000;211.978000;0 +20260310 025500;211.976000;211.989000;211.951000;211.951000;0 +20260310 025600;211.952000;211.983000;211.945000;211.981000;0 +20260310 025700;211.981000;211.993000;211.968000;211.990000;0 +20260310 025800;211.992000;212.022000;211.992000;212.017000;0 +20260310 025900;212.012000;212.019000;211.976000;211.992000;0 +20260310 030000;211.989000;212.037000;211.960000;212.037000;0 +20260310 030100;212.036000;212.097000;212.035000;212.067000;0 +20260310 030200;212.067000;212.070000;212.021000;212.062000;0 +20260310 030300;212.062000;212.066000;212.015000;212.016000;0 +20260310 030400;212.015000;212.037000;211.999000;212.016000;0 +20260310 030500;212.018000;212.055000;212.003000;212.017000;0 +20260310 030600;212.020000;212.073000;212.008000;212.042000;0 +20260310 030700;212.042000;212.109000;212.038000;212.094000;0 +20260310 030800;212.092000;212.133000;212.063000;212.130000;0 +20260310 030900;212.129000;212.154000;212.107000;212.150000;0 +20260310 031000;212.150000;212.151000;212.098000;212.116000;0 +20260310 031100;212.112000;212.115000;212.073000;212.109000;0 +20260310 031200;212.110000;212.136000;212.106000;212.108000;0 +20260310 031300;212.102000;212.118000;212.083000;212.103000;0 +20260310 031400;212.108000;212.123000;212.077000;212.077000;0 +20260310 031500;212.078000;212.085000;212.053000;212.063000;0 +20260310 031600;212.065000;212.074000;212.042000;212.058000;0 +20260310 031700;212.057000;212.108000;212.051000;212.102000;0 +20260310 031800;212.103000;212.106000;212.046000;212.065000;0 +20260310 031900;212.070000;212.073000;212.048000;212.048000;0 +20260310 032000;212.049000;212.051000;212.004000;212.010000;0 +20260310 032100;212.010000;212.010000;211.957000;211.972000;0 +20260310 032200;211.972000;211.996000;211.952000;211.995000;0 +20260310 032300;211.994000;212.047000;211.994000;212.017000;0 +20260310 032400;212.016000;212.044000;212.007000;212.011000;0 +20260310 032500;212.015000;212.043000;211.998000;212.016000;0 +20260310 032600;212.022000;212.083000;212.003000;212.046000;0 +20260310 032700;212.048000;212.090000;212.039000;212.090000;0 +20260310 032800;212.087000;212.115000;212.069000;212.098000;0 +20260310 032900;212.099000;212.130000;212.088000;212.117000;0 +20260310 033000;212.117000;212.122000;212.075000;212.122000;0 +20260310 033100;212.123000;212.161000;212.115000;212.159000;0 +20260310 033200;212.162000;212.189000;212.118000;212.131000;0 +20260310 033300;212.130000;212.153000;212.128000;212.149000;0 +20260310 033400;212.145000;212.162000;212.133000;212.151000;0 +20260310 033500;212.145000;212.171000;212.142000;212.161000;0 +20260310 033600;212.160000;212.193000;212.159000;212.191000;0 +20260310 033700;212.188000;212.209000;212.156000;212.194000;0 +20260310 033800;212.193000;212.198000;212.147000;212.159000;0 +20260310 033900;212.157000;212.202000;212.154000;212.201000;0 +20260310 034000;212.205000;212.230000;212.201000;212.203000;0 +20260310 034100;212.206000;212.221000;212.197000;212.218000;0 +20260310 034200;212.215000;212.231000;212.203000;212.220000;0 +20260310 034300;212.219000;212.222000;212.177000;212.183000;0 +20260310 034400;212.184000;212.211000;212.182000;212.208000;0 +20260310 034500;212.210000;212.239000;212.202000;212.217000;0 +20260310 034600;212.217000;212.259000;212.210000;212.257000;0 +20260310 034700;212.257000;212.258000;212.223000;212.223000;0 +20260310 034800;212.226000;212.241000;212.188000;212.188000;0 +20260310 034900;212.192000;212.210000;212.147000;212.149000;0 +20260310 035000;212.153000;212.153000;212.112000;212.118000;0 +20260310 035100;212.118000;212.144000;212.088000;212.135000;0 +20260310 035200;212.134000;212.159000;212.120000;212.138000;0 +20260310 035300;212.134000;212.168000;212.132000;212.165000;0 +20260310 035400;212.166000;212.188000;212.155000;212.188000;0 +20260310 035500;212.185000;212.198000;212.158000;212.163000;0 +20260310 035600;212.161000;212.179000;212.138000;212.152000;0 +20260310 035700;212.156000;212.156000;212.124000;212.128000;0 +20260310 035800;212.128000;212.173000;212.124000;212.154000;0 +20260310 035900;212.158000;212.250000;212.154000;212.246000;0 +20260310 040000;212.246000;212.268000;212.202000;212.214000;0 +20260310 040100;212.214000;212.245000;212.214000;212.227000;0 +20260310 040200;212.223000;212.235000;212.184000;212.185000;0 +20260310 040300;212.186000;212.215000;212.186000;212.206000;0 +20260310 040400;212.203000;212.240000;212.202000;212.217000;0 +20260310 040500;212.209000;212.245000;212.202000;212.226000;0 +20260310 040600;212.226000;212.252000;212.224000;212.240000;0 +20260310 040700;212.236000;212.268000;212.235000;212.251000;0 +20260310 040800;212.249000;212.277000;212.249000;212.252000;0 +20260310 040900;212.252000;212.290000;212.249000;212.273000;0 +20260310 041000;212.276000;212.295000;212.266000;212.281000;0 +20260310 041100;212.281000;212.283000;212.242000;212.246000;0 +20260310 041200;212.245000;212.259000;212.230000;212.248000;0 +20260310 041300;212.247000;212.264000;212.238000;212.246000;0 +20260310 041400;212.248000;212.250000;212.194000;212.196000;0 +20260310 041500;212.194000;212.203000;212.170000;212.187000;0 +20260310 041600;212.188000;212.201000;212.153000;212.158000;0 +20260310 041700;212.160000;212.192000;212.159000;212.170000;0 +20260310 041800;212.164000;212.187000;212.155000;212.186000;0 +20260310 041900;212.189000;212.212000;212.176000;212.179000;0 +20260310 042000;212.179000;212.183000;212.150000;212.166000;0 +20260310 042100;212.165000;212.210000;212.162000;212.207000;0 +20260310 042200;212.206000;212.231000;212.182000;212.184000;0 +20260310 042300;212.184000;212.196000;212.178000;212.189000;0 +20260310 042400;212.187000;212.206000;212.174000;212.195000;0 +20260310 042500;212.194000;212.202000;212.162000;212.164000;0 +20260310 042600;212.166000;212.168000;212.138000;212.141000;0 +20260310 042700;212.140000;212.141000;212.118000;212.133000;0 +20260310 042800;212.133000;212.150000;212.118000;212.150000;0 +20260310 042900;212.148000;212.163000;212.133000;212.142000;0 +20260310 043000;212.139000;212.143000;212.118000;212.130000;0 +20260310 043100;212.131000;212.141000;212.123000;212.136000;0 +20260310 043200;212.136000;212.155000;212.135000;212.153000;0 +20260310 043300;212.155000;212.158000;212.088000;212.092000;0 +20260310 043400;212.091000;212.116000;212.091000;212.099000;0 +20260310 043500;212.100000;212.108000;212.089000;212.105000;0 +20260310 043600;212.109000;212.140000;212.100000;212.125000;0 +20260310 043700;212.124000;212.127000;212.111000;212.127000;0 +20260310 043800;212.125000;212.147000;212.111000;212.130000;0 +20260310 043900;212.130000;212.131000;212.094000;212.120000;0 +20260310 044000;212.116000;212.124000;212.090000;212.111000;0 +20260310 044100;212.113000;212.170000;212.110000;212.168000;0 +20260310 044200;212.164000;212.181000;212.144000;212.178000;0 +20260310 044300;212.177000;212.182000;212.152000;212.180000;0 +20260310 044400;212.181000;212.201000;212.178000;212.191000;0 +20260310 044500;212.196000;212.210000;212.174000;212.201000;0 +20260310 044600;212.201000;212.248000;212.200000;212.248000;0 +20260310 044700;212.247000;212.273000;212.236000;212.250000;0 +20260310 044800;212.250000;212.257000;212.212000;212.221000;0 +20260310 044900;212.225000;212.234000;212.195000;212.229000;0 +20260310 045000;212.230000;212.230000;212.184000;212.191000;0 +20260310 045100;212.190000;212.206000;212.171000;212.173000;0 +20260310 045200;212.172000;212.212000;212.171000;212.206000;0 +20260310 045300;212.206000;212.223000;212.199000;212.216000;0 +20260310 045400;212.215000;212.235000;212.206000;212.214000;0 +20260310 045500;212.211000;212.239000;212.170000;212.171000;0 +20260310 045600;212.170000;212.178000;212.139000;212.139000;0 +20260310 045700;212.142000;212.165000;212.139000;212.158000;0 +20260310 045800;212.157000;212.176000;212.137000;212.175000;0 +20260310 045900;212.173000;212.183000;212.165000;212.166000;0 +20260310 050000;212.169000;212.171000;212.146000;212.146000;0 +20260310 050100;212.149000;212.164000;212.130000;212.154000;0 +20260310 050200;212.151000;212.183000;212.148000;212.175000;0 +20260310 050300;212.179000;212.187000;212.151000;212.161000;0 +20260310 050400;212.161000;212.164000;212.146000;212.155000;0 +20260310 050500;212.152000;212.184000;212.152000;212.182000;0 +20260310 050600;212.182000;212.186000;212.164000;212.181000;0 +20260310 050700;212.180000;212.198000;212.151000;212.169000;0 +20260310 050800;212.168000;212.188000;212.136000;212.139000;0 +20260310 050900;212.138000;212.170000;212.138000;212.163000;0 +20260310 051000;212.163000;212.168000;212.149000;212.168000;0 +20260310 051100;212.168000;212.180000;212.157000;212.171000;0 +20260310 051200;212.173000;212.173000;212.149000;212.151000;0 +20260310 051300;212.150000;212.177000;212.143000;212.177000;0 +20260310 051400;212.175000;212.189000;212.170000;212.172000;0 +20260310 051500;212.171000;212.171000;212.144000;212.158000;0 +20260310 051600;212.160000;212.192000;212.139000;212.178000;0 +20260310 051700;212.178000;212.192000;212.168000;212.178000;0 +20260310 051800;212.179000;212.220000;212.178000;212.217000;0 +20260310 051900;212.212000;212.222000;212.192000;212.201000;0 +20260310 052000;212.204000;212.227000;212.200000;212.202000;0 +20260310 052100;212.202000;212.234000;212.194000;212.212000;0 +20260310 052200;212.214000;212.256000;212.204000;212.252000;0 +20260310 052300;212.254000;212.282000;212.245000;212.273000;0 +20260310 052400;212.275000;212.275000;212.249000;212.254000;0 +20260310 052500;212.255000;212.280000;212.255000;212.263000;0 +20260310 052600;212.265000;212.265000;212.216000;212.218000;0 +20260310 052700;212.218000;212.223000;212.194000;212.194000;0 +20260310 052800;212.195000;212.220000;212.194000;212.216000;0 +20260310 052900;212.215000;212.217000;212.181000;212.202000;0 +20260310 053000;212.205000;212.245000;212.204000;212.239000;0 +20260310 053100;212.238000;212.245000;212.208000;212.214000;0 +20260310 053200;212.212000;212.257000;212.193000;212.244000;0 +20260310 053300;212.243000;212.269000;212.211000;212.264000;0 +20260310 053400;212.263000;212.284000;212.254000;212.258000;0 +20260310 053500;212.260000;212.271000;212.240000;212.244000;0 +20260310 053600;212.246000;212.246000;212.187000;212.201000;0 +20260310 053700;212.199000;212.226000;212.166000;212.175000;0 +20260310 053800;212.178000;212.220000;212.166000;212.171000;0 +20260310 053900;212.168000;212.214000;212.160000;212.202000;0 +20260310 054000;212.204000;212.239000;212.203000;212.216000;0 +20260310 054100;212.218000;212.241000;212.214000;212.217000;0 +20260310 054200;212.220000;212.225000;212.198000;212.203000;0 +20260310 054300;212.204000;212.233000;212.198000;212.207000;0 +20260310 054400;212.205000;212.222000;212.194000;212.215000;0 +20260310 054500;212.213000;212.230000;212.182000;212.213000;0 +20260310 054600;212.213000;212.230000;212.194000;212.228000;0 +20260310 054700;212.230000;212.231000;212.181000;212.199000;0 +20260310 054800;212.198000;212.222000;212.190000;212.204000;0 +20260310 054900;212.203000;212.217000;212.189000;212.212000;0 +20260310 055000;212.212000;212.215000;212.172000;212.174000;0 +20260310 055100;212.174000;212.215000;212.170000;212.210000;0 +20260310 055200;212.211000;212.224000;212.203000;212.209000;0 +20260310 055300;212.212000;212.232000;212.205000;212.221000;0 +20260310 055400;212.220000;212.236000;212.213000;212.213000;0 +20260310 055500;212.213000;212.224000;212.193000;212.211000;0 +20260310 055600;212.210000;212.225000;212.204000;212.219000;0 +20260310 055700;212.221000;212.254000;212.215000;212.245000;0 +20260310 055800;212.244000;212.246000;212.221000;212.222000;0 +20260310 055900;212.224000;212.232000;212.193000;212.202000;0 +20260310 060000;212.203000;212.223000;212.199000;212.219000;0 +20260310 060100;212.218000;212.246000;212.209000;212.218000;0 +20260310 060200;212.216000;212.236000;212.213000;212.235000;0 +20260310 060300;212.237000;212.239000;212.225000;212.229000;0 +20260310 060400;212.230000;212.321000;212.213000;212.310000;0 +20260310 060500;212.310000;212.336000;212.296000;212.317000;0 +20260310 060600;212.317000;212.324000;212.248000;212.277000;0 +20260310 060700;212.278000;212.288000;212.250000;212.257000;0 +20260310 060800;212.256000;212.265000;212.216000;212.252000;0 +20260310 060900;212.252000;212.256000;212.228000;212.237000;0 +20260310 061000;212.238000;212.241000;212.215000;212.216000;0 +20260310 061100;212.215000;212.241000;212.212000;212.235000;0 +20260310 061200;212.230000;212.256000;212.217000;212.255000;0 +20260310 061300;212.254000;212.275000;212.250000;212.264000;0 +20260310 061400;212.259000;212.269000;212.226000;212.234000;0 +20260310 061500;212.232000;212.284000;212.232000;212.275000;0 +20260310 061600;212.277000;212.281000;212.255000;212.255000;0 +20260310 061700;212.255000;212.263000;212.238000;212.249000;0 +20260310 061800;212.249000;212.249000;212.214000;212.216000;0 +20260310 061900;212.214000;212.220000;212.195000;212.209000;0 +20260310 062000;212.210000;212.216000;212.187000;212.214000;0 +20260310 062100;212.213000;212.235000;212.211000;212.230000;0 +20260310 062200;212.229000;212.229000;212.208000;212.216000;0 +20260310 062300;212.220000;212.225000;212.201000;212.225000;0 +20260310 062400;212.219000;212.219000;212.181000;212.215000;0 +20260310 062500;212.214000;212.223000;212.177000;212.178000;0 +20260310 062600;212.176000;212.185000;212.167000;212.167000;0 +20260310 062700;212.167000;212.183000;212.164000;212.179000;0 +20260310 062800;212.181000;212.183000;212.138000;212.139000;0 +20260310 062900;212.142000;212.194000;212.139000;212.194000;0 +20260310 063000;212.195000;212.202000;212.159000;212.177000;0 +20260310 063100;212.174000;212.185000;212.162000;212.163000;0 +20260310 063200;212.157000;212.192000;212.153000;212.187000;0 +20260310 063300;212.184000;212.214000;212.184000;212.197000;0 +20260310 063400;212.198000;212.200000;212.176000;212.184000;0 +20260310 063500;212.186000;212.202000;212.183000;212.200000;0 +20260310 063600;212.197000;212.204000;212.168000;212.169000;0 +20260310 063700;212.172000;212.190000;212.166000;212.173000;0 +20260310 063800;212.174000;212.185000;212.167000;212.174000;0 +20260310 063900;212.173000;212.188000;212.163000;212.182000;0 +20260310 064000;212.177000;212.194000;212.158000;212.194000;0 +20260310 064100;212.192000;212.232000;212.184000;212.218000;0 +20260310 064200;212.224000;212.233000;212.215000;212.224000;0 +20260310 064300;212.224000;212.232000;212.204000;212.213000;0 +20260310 064400;212.215000;212.270000;212.201000;212.270000;0 +20260310 064500;212.273000;212.274000;212.207000;212.215000;0 +20260310 064600;212.216000;212.225000;212.199000;212.206000;0 +20260310 064700;212.208000;212.248000;212.205000;212.243000;0 +20260310 064800;212.241000;212.271000;212.240000;212.261000;0 +20260310 064900;212.263000;212.302000;212.262000;212.276000;0 +20260310 065000;212.279000;212.296000;212.273000;212.284000;0 +20260310 065100;212.282000;212.303000;212.279000;212.283000;0 +20260310 065200;212.284000;212.334000;212.275000;212.312000;0 +20260310 065300;212.314000;212.314000;212.272000;212.276000;0 +20260310 065400;212.279000;212.286000;212.253000;212.263000;0 +20260310 065500;212.263000;212.264000;212.230000;212.231000;0 +20260310 065600;212.229000;212.238000;212.187000;212.221000;0 +20260310 065700;212.225000;212.237000;212.197000;212.205000;0 +20260310 065800;212.204000;212.207000;212.148000;212.156000;0 +20260310 065900;212.156000;212.157000;212.131000;212.138000;0 +20260310 070000;212.144000;212.208000;212.136000;212.185000;0 +20260310 070100;212.187000;212.187000;212.114000;212.114000;0 +20260310 070200;212.119000;212.163000;212.107000;212.136000;0 +20260310 070300;212.134000;212.157000;212.133000;212.149000;0 +20260310 070400;212.147000;212.162000;212.137000;212.143000;0 +20260310 070500;212.145000;212.170000;212.132000;212.148000;0 +20260310 070600;212.150000;212.153000;212.120000;212.143000;0 +20260310 070700;212.139000;212.150000;212.108000;212.117000;0 +20260310 070800;212.118000;212.157000;212.104000;212.128000;0 +20260310 070900;212.127000;212.147000;212.108000;212.126000;0 +20260310 071000;212.126000;212.130000;212.093000;212.101000;0 +20260310 071100;212.099000;212.138000;212.090000;212.138000;0 +20260310 071200;212.137000;212.146000;212.129000;212.136000;0 +20260310 071300;212.136000;212.159000;212.136000;212.141000;0 +20260310 071400;212.144000;212.171000;212.141000;212.148000;0 +20260310 071500;212.151000;212.160000;212.132000;212.155000;0 +20260310 071600;212.151000;212.189000;212.148000;212.173000;0 +20260310 071700;212.174000;212.190000;212.163000;212.186000;0 +20260310 071800;212.189000;212.212000;212.178000;212.212000;0 +20260310 071900;212.210000;212.228000;212.199000;212.221000;0 +20260310 072000;212.219000;212.259000;212.216000;212.232000;0 +20260310 072100;212.230000;212.230000;212.200000;212.209000;0 +20260310 072200;212.209000;212.248000;212.206000;212.238000;0 +20260310 072300;212.234000;212.234000;212.191000;212.211000;0 +20260310 072400;212.212000;212.227000;212.194000;212.206000;0 +20260310 072500;212.211000;212.227000;212.204000;212.216000;0 +20260310 072600;212.214000;212.217000;212.192000;212.205000;0 +20260310 072700;212.205000;212.213000;212.197000;212.206000;0 +20260310 072800;212.207000;212.207000;212.167000;212.175000;0 +20260310 072900;212.177000;212.180000;212.165000;212.174000;0 +20260310 073000;212.174000;212.194000;212.145000;212.185000;0 +20260310 073100;212.186000;212.192000;212.161000;212.171000;0 +20260310 073200;212.170000;212.202000;212.164000;212.190000;0 +20260310 073300;212.195000;212.228000;212.188000;212.228000;0 +20260310 073400;212.226000;212.236000;212.197000;212.201000;0 +20260310 073500;212.197000;212.204000;212.158000;212.176000;0 +20260310 073600;212.175000;212.182000;212.166000;212.175000;0 +20260310 073700;212.174000;212.182000;212.139000;212.149000;0 +20260310 073800;212.149000;212.174000;212.139000;212.161000;0 +20260310 073900;212.160000;212.173000;212.137000;212.141000;0 +20260310 074000;212.143000;212.172000;212.138000;212.171000;0 +20260310 074100;212.171000;212.181000;212.162000;212.163000;0 +20260310 074200;212.165000;212.207000;212.163000;212.203000;0 +20260310 074300;212.202000;212.215000;212.191000;212.211000;0 +20260310 074400;212.212000;212.270000;212.211000;212.222000;0 +20260310 074500;212.228000;212.263000;212.226000;212.240000;0 +20260310 074600;212.239000;212.243000;212.168000;212.168000;0 +20260310 074700;212.169000;212.186000;212.158000;212.167000;0 +20260310 074800;212.172000;212.174000;212.157000;212.161000;0 +20260310 074900;212.160000;212.179000;212.148000;212.158000;0 +20260310 075000;212.159000;212.191000;212.154000;212.183000;0 +20260310 075100;212.184000;212.188000;212.148000;212.162000;0 +20260310 075200;212.161000;212.164000;212.141000;212.142000;0 +20260310 075300;212.140000;212.175000;212.140000;212.171000;0 +20260310 075400;212.173000;212.178000;212.158000;212.164000;0 +20260310 075500;212.162000;212.180000;212.153000;212.176000;0 +20260310 075600;212.171000;212.171000;212.092000;212.093000;0 +20260310 075700;212.094000;212.101000;212.080000;212.095000;0 +20260310 075800;212.093000;212.093000;212.067000;212.069000;0 +20260310 075900;212.068000;212.118000;212.063000;212.110000;0 +20260310 080000;212.110000;212.114000;212.055000;212.074000;0 +20260310 080100;212.072000;212.112000;212.072000;212.089000;0 +20260310 080200;212.087000;212.128000;212.087000;212.123000;0 +20260310 080300;212.125000;212.148000;212.119000;212.127000;0 +20260310 080400;212.123000;212.158000;212.123000;212.137000;0 +20260310 080500;212.139000;212.172000;212.130000;212.162000;0 +20260310 080600;212.162000;212.179000;212.148000;212.150000;0 +20260310 080700;212.152000;212.187000;212.150000;212.174000;0 +20260310 080800;212.173000;212.211000;212.167000;212.210000;0 +20260310 080900;212.211000;212.232000;212.190000;212.221000;0 +20260310 081000;212.221000;212.246000;212.207000;212.233000;0 +20260310 081100;212.230000;212.248000;212.207000;212.215000;0 +20260310 081200;212.216000;212.221000;212.179000;212.198000;0 +20260310 081300;212.196000;212.233000;212.196000;212.220000;0 +20260310 081400;212.219000;212.240000;212.196000;212.234000;0 +20260310 081500;212.236000;212.236000;212.214000;212.226000;0 +20260310 081600;212.225000;212.226000;212.190000;212.190000;0 +20260310 081700;212.192000;212.227000;212.190000;212.219000;0 +20260310 081800;212.220000;212.249000;212.213000;212.236000;0 +20260310 081900;212.235000;212.257000;212.222000;212.253000;0 +20260310 082000;212.247000;212.281000;212.243000;212.265000;0 +20260310 082100;212.267000;212.279000;212.253000;212.265000;0 +20260310 082200;212.265000;212.304000;212.265000;212.298000;0 +20260310 082300;212.298000;212.303000;212.277000;212.279000;0 +20260310 082400;212.278000;212.301000;212.266000;212.287000;0 +20260310 082500;212.288000;212.289000;212.255000;212.267000;0 +20260310 082600;212.268000;212.278000;212.235000;212.245000;0 +20260310 082700;212.248000;212.298000;212.238000;212.280000;0 +20260310 082800;212.281000;212.318000;212.274000;212.297000;0 +20260310 082900;212.295000;212.318000;212.281000;212.309000;0 +20260310 083000;212.313000;212.351000;212.304000;212.339000;0 +20260310 083100;212.344000;212.400000;212.308000;212.356000;0 +20260310 083200;212.358000;212.385000;212.330000;212.332000;0 +20260310 083300;212.329000;212.356000;212.302000;212.311000;0 +20260310 083400;212.311000;212.371000;212.306000;212.355000;0 +20260310 083500;212.359000;212.368000;212.310000;212.316000;0 +20260310 083600;212.316000;212.356000;212.285000;212.291000;0 +20260310 083700;212.293000;212.302000;212.258000;212.273000;0 +20260310 083800;212.275000;212.325000;212.267000;212.323000;0 +20260310 083900;212.323000;212.332000;212.302000;212.317000;0 +20260310 084000;212.317000;212.345000;212.308000;212.327000;0 +20260310 084100;212.326000;212.330000;212.271000;212.301000;0 +20260310 084200;212.302000;212.303000;212.257000;212.301000;0 +20260310 084300;212.300000;212.324000;212.291000;212.291000;0 +20260310 084400;212.292000;212.340000;212.283000;212.320000;0 +20260310 084500;212.315000;212.315000;212.255000;212.268000;0 +20260310 084600;212.267000;212.314000;212.264000;212.290000;0 +20260310 084700;212.290000;212.290000;212.244000;212.244000;0 +20260310 084800;212.240000;212.265000;212.218000;212.253000;0 +20260310 084900;212.251000;212.322000;212.248000;212.313000;0 +20260310 085000;212.312000;212.339000;212.296000;212.325000;0 +20260310 085100;212.322000;212.338000;212.302000;212.307000;0 +20260310 085200;212.305000;212.321000;212.258000;212.261000;0 +20260310 085300;212.262000;212.302000;212.258000;212.299000;0 +20260310 085400;212.304000;212.307000;212.244000;212.244000;0 +20260310 085500;212.244000;212.264000;212.226000;212.238000;0 +20260310 085600;212.236000;212.262000;212.233000;212.252000;0 +20260310 085700;212.250000;212.259000;212.216000;212.226000;0 +20260310 085800;212.229000;212.256000;212.228000;212.253000;0 +20260310 085900;212.254000;212.267000;212.238000;212.251000;0 +20260310 090000;212.256000;212.295000;212.232000;212.271000;0 +20260310 090100;212.275000;212.285000;212.246000;212.271000;0 +20260310 090200;212.268000;212.311000;212.268000;212.302000;0 +20260310 090300;212.301000;212.316000;212.275000;212.309000;0 +20260310 090400;212.308000;212.329000;212.300000;212.318000;0 +20260310 090500;212.321000;212.354000;212.308000;212.309000;0 +20260310 090600;212.307000;212.321000;212.253000;212.255000;0 +20260310 090700;212.254000;212.270000;212.226000;212.230000;0 +20260310 090800;212.229000;212.252000;212.208000;212.215000;0 +20260310 090900;212.219000;212.221000;212.167000;212.183000;0 +20260310 091000;212.181000;212.225000;212.174000;212.213000;0 +20260310 091100;212.220000;212.241000;212.210000;212.222000;0 +20260310 091200;212.225000;212.250000;212.218000;212.230000;0 +20260310 091300;212.225000;212.255000;212.215000;212.225000;0 +20260310 091400;212.222000;212.255000;212.222000;212.245000;0 +20260310 091500;212.245000;212.252000;212.227000;212.233000;0 +20260310 091600;212.230000;212.285000;212.227000;212.257000;0 +20260310 091700;212.257000;212.286000;212.256000;212.286000;0 +20260310 091800;212.285000;212.290000;212.262000;212.275000;0 +20260310 091900;212.273000;212.290000;212.253000;212.275000;0 +20260310 092000;212.273000;212.304000;212.273000;212.298000;0 +20260310 092100;212.297000;212.308000;212.270000;212.279000;0 +20260310 092200;212.279000;212.290000;212.266000;212.284000;0 +20260310 092300;212.284000;212.286000;212.262000;212.277000;0 +20260310 092400;212.277000;212.279000;212.255000;212.259000;0 +20260310 092500;212.260000;212.268000;212.242000;212.256000;0 +20260310 092600;212.255000;212.261000;212.231000;212.239000;0 +20260310 092700;212.237000;212.241000;212.201000;212.205000;0 +20260310 092800;212.208000;212.219000;212.195000;212.202000;0 +20260310 092900;212.201000;212.201000;212.175000;212.192000;0 +20260310 093000;212.193000;212.295000;212.193000;212.239000;0 +20260310 093100;212.239000;212.244000;212.193000;212.200000;0 +20260310 093200;212.198000;212.214000;212.188000;212.205000;0 +20260310 093300;212.205000;212.236000;212.200000;212.236000;0 +20260310 093400;212.235000;212.274000;212.230000;212.246000;0 +20260310 093500;212.241000;212.257000;212.228000;212.245000;0 +20260310 093600;212.246000;212.247000;212.215000;212.228000;0 +20260310 093700;212.227000;212.240000;212.196000;212.229000;0 +20260310 093800;212.226000;212.254000;212.209000;212.209000;0 +20260310 093900;212.206000;212.222000;212.174000;212.202000;0 +20260310 094000;212.200000;212.217000;212.189000;212.212000;0 +20260310 094100;212.214000;212.253000;212.204000;212.234000;0 +20260310 094200;212.237000;212.254000;212.201000;212.226000;0 +20260310 094300;212.224000;212.234000;212.168000;212.231000;0 +20260310 094400;212.233000;212.261000;212.216000;212.258000;0 +20260310 094500;212.255000;212.278000;212.240000;212.277000;0 +20260310 094600;212.280000;212.315000;212.275000;212.283000;0 +20260310 094700;212.285000;212.306000;212.275000;212.305000;0 +20260310 094800;212.305000;212.329000;212.298000;212.305000;0 +20260310 094900;212.302000;212.312000;212.282000;212.312000;0 +20260310 095000;212.310000;212.335000;212.292000;212.329000;0 +20260310 095100;212.329000;212.360000;212.326000;212.353000;0 +20260310 095200;212.353000;212.364000;212.325000;212.335000;0 +20260310 095300;212.334000;212.334000;212.287000;212.307000;0 +20260310 095400;212.314000;212.326000;212.266000;212.277000;0 +20260310 095500;212.279000;212.329000;212.272000;212.326000;0 +20260310 095600;212.325000;212.331000;212.304000;212.328000;0 +20260310 095700;212.328000;212.381000;212.324000;212.381000;0 +20260310 095800;212.382000;212.382000;212.347000;212.366000;0 +20260310 095900;212.363000;212.371000;212.347000;212.359000;0 +20260310 100000;212.360000;212.375000;212.344000;212.364000;0 +20260310 100100;212.361000;212.377000;212.353000;212.368000;0 +20260310 100200;212.365000;212.389000;212.354000;212.381000;0 +20260310 100300;212.380000;212.407000;212.366000;212.391000;0 +20260310 100400;212.392000;212.405000;212.381000;212.402000;0 +20260310 100500;212.401000;212.408000;212.381000;212.396000;0 +20260310 100600;212.395000;212.405000;212.361000;212.393000;0 +20260310 100700;212.394000;212.394000;212.372000;212.384000;0 +20260310 100800;212.382000;212.384000;212.351000;212.365000;0 +20260310 100900;212.364000;212.370000;212.345000;212.358000;0 +20260310 101000;212.355000;212.359000;212.331000;212.343000;0 +20260310 101100;212.346000;212.365000;212.336000;212.362000;0 +20260310 101200;212.360000;212.363000;212.337000;212.351000;0 +20260310 101300;212.353000;212.365000;212.317000;212.334000;0 +20260310 101400;212.331000;212.341000;212.295000;212.296000;0 +20260310 101500;212.298000;212.308000;212.279000;212.293000;0 +20260310 101600;212.288000;212.326000;212.275000;212.293000;0 +20260310 101700;212.292000;212.303000;212.254000;212.263000;0 +20260310 101800;212.261000;212.290000;212.255000;212.264000;0 +20260310 101900;212.264000;212.278000;212.230000;212.243000;0 +20260310 102000;212.241000;212.248000;212.216000;212.232000;0 +20260310 102100;212.232000;212.241000;212.198000;212.233000;0 +20260310 102200;212.233000;212.241000;212.204000;212.225000;0 +20260310 102300;212.226000;212.234000;212.216000;212.220000;0 +20260310 102400;212.225000;212.246000;212.208000;212.245000;0 +20260310 102500;212.247000;212.255000;212.209000;212.210000;0 +20260310 102600;212.214000;212.227000;212.200000;212.207000;0 +20260310 102700;212.203000;212.226000;212.193000;212.226000;0 +20260310 102800;212.226000;212.233000;212.190000;212.197000;0 +20260310 102900;212.197000;212.199000;212.187000;212.190000;0 +20260310 103000;212.190000;212.255000;212.187000;212.246000;0 +20260310 103100;212.247000;212.294000;212.243000;212.293000;0 +20260310 103200;212.294000;212.301000;212.266000;212.282000;0 +20260310 103300;212.283000;212.306000;212.283000;212.291000;0 +20260310 103400;212.285000;212.305000;212.273000;212.281000;0 +20260310 103500;212.281000;212.323000;212.258000;212.323000;0 +20260310 103600;212.322000;212.331000;212.285000;212.291000;0 +20260310 103700;212.289000;212.316000;212.289000;212.312000;0 +20260310 103800;212.315000;212.315000;212.272000;212.284000;0 +20260310 103900;212.283000;212.284000;212.248000;212.249000;0 +20260310 104000;212.248000;212.250000;212.188000;212.189000;0 +20260310 104100;212.188000;212.254000;212.184000;212.248000;0 +20260310 104200;212.248000;212.280000;212.241000;212.266000;0 +20260310 104300;212.267000;212.274000;212.246000;212.260000;0 +20260310 104400;212.260000;212.267000;212.241000;212.251000;0 +20260310 104500;212.248000;212.282000;212.237000;212.266000;0 +20260310 104600;212.264000;212.283000;212.220000;212.223000;0 +20260310 104700;212.222000;212.223000;212.188000;212.188000;0 +20260310 104800;212.192000;212.227000;212.192000;212.215000;0 +20260310 104900;212.215000;212.240000;212.199000;212.219000;0 +20260310 105000;212.223000;212.234000;212.182000;212.183000;0 +20260310 105100;212.180000;212.198000;212.144000;212.152000;0 +20260310 105200;212.153000;212.172000;212.136000;212.166000;0 +20260310 105300;212.174000;212.176000;212.151000;212.154000;0 +20260310 105400;212.154000;212.154000;212.096000;212.130000;0 +20260310 105500;212.132000;212.179000;212.123000;212.156000;0 +20260310 105600;212.155000;212.167000;212.113000;212.139000;0 +20260310 105700;212.137000;212.145000;212.094000;212.110000;0 +20260310 105800;212.110000;212.130000;212.103000;212.129000;0 +20260310 105900;212.129000;212.129000;212.088000;212.090000;0 +20260310 110000;212.089000;212.104000;212.071000;212.088000;0 +20260310 110100;212.087000;212.093000;212.053000;212.058000;0 +20260310 110200;212.060000;212.075000;212.039000;212.073000;0 +20260310 110300;212.073000;212.079000;212.054000;212.063000;0 +20260310 110400;212.064000;212.073000;212.046000;212.055000;0 +20260310 110500;212.056000;212.063000;212.012000;212.027000;0 +20260310 110600;212.029000;212.032000;212.007000;212.023000;0 +20260310 110700;212.022000;212.050000;212.019000;212.043000;0 +20260310 110800;212.041000;212.063000;212.041000;212.063000;0 +20260310 110900;212.062000;212.094000;212.059000;212.093000;0 +20260310 111000;212.095000;212.119000;212.089000;212.111000;0 +20260310 111100;212.109000;212.120000;212.103000;212.119000;0 +20260310 111200;212.118000;212.118000;212.082000;212.090000;0 +20260310 111300;212.089000;212.107000;212.081000;212.103000;0 +20260310 111400;212.106000;212.117000;212.088000;212.090000;0 +20260310 111500;212.090000;212.090000;212.050000;212.067000;0 +20260310 111600;212.066000;212.083000;212.057000;212.079000;0 +20260310 111700;212.079000;212.099000;212.067000;212.078000;0 +20260310 111800;212.082000;212.117000;212.082000;212.111000;0 +20260310 111900;212.108000;212.111000;212.090000;212.092000;0 +20260310 112000;212.096000;212.102000;212.070000;212.093000;0 +20260310 112100;212.096000;212.117000;212.084000;212.086000;0 +20260310 112200;212.085000;212.120000;212.084000;212.108000;0 +20260310 112300;212.107000;212.126000;212.102000;212.117000;0 +20260310 112400;212.115000;212.129000;212.109000;212.121000;0 +20260310 112500;212.123000;212.151000;212.121000;212.145000;0 +20260310 112600;212.144000;212.160000;212.133000;212.135000;0 +20260310 112700;212.136000;212.149000;212.122000;212.130000;0 +20260310 112800;212.127000;212.147000;212.127000;212.131000;0 +20260310 112900;212.132000;212.150000;212.125000;212.133000;0 +20260310 113000;212.133000;212.160000;212.130000;212.146000;0 +20260310 113100;212.149000;212.173000;212.145000;212.161000;0 +20260310 113200;212.161000;212.164000;212.138000;212.146000;0 +20260310 113300;212.147000;212.201000;212.126000;212.136000;0 +20260310 113400;212.139000;212.185000;212.127000;212.168000;0 +20260310 113500;212.169000;212.170000;212.111000;212.119000;0 +20260310 113600;212.122000;212.142000;212.104000;212.114000;0 +20260310 113700;212.111000;212.111000;212.086000;212.103000;0 +20260310 113800;212.101000;212.121000;212.080000;212.081000;0 +20260310 113900;212.082000;212.097000;212.071000;212.076000;0 +20260310 114000;212.073000;212.076000;212.037000;212.051000;0 +20260310 114100;212.049000;212.079000;212.047000;212.079000;0 +20260310 114200;212.082000;212.090000;212.074000;212.079000;0 +20260310 114300;212.080000;212.095000;212.073000;212.092000;0 +20260310 114400;212.091000;212.108000;212.082000;212.083000;0 +20260310 114500;212.083000;212.100000;212.076000;212.099000;0 +20260310 114600;212.103000;212.103000;212.079000;212.080000;0 +20260310 114700;212.078000;212.099000;212.077000;212.096000;0 +20260310 114800;212.096000;212.129000;212.094000;212.124000;0 +20260310 114900;212.125000;212.138000;212.107000;212.126000;0 +20260310 115000;212.127000;212.153000;212.123000;212.150000;0 +20260310 115100;212.151000;212.151000;212.112000;212.112000;0 +20260310 115200;212.111000;212.124000;212.103000;212.123000;0 +20260310 115300;212.120000;212.131000;212.101000;212.107000;0 +20260310 115400;212.107000;212.111000;212.097000;212.111000;0 +20260310 115500;212.113000;212.127000;212.098000;212.127000;0 +20260310 115600;212.127000;212.128000;212.088000;212.096000;0 +20260310 115700;212.093000;212.126000;212.084000;212.120000;0 +20260310 115800;212.120000;212.131000;212.106000;212.125000;0 +20260310 115900;212.125000;212.145000;212.120000;212.126000;0 +20260310 120000;212.128000;212.150000;212.121000;212.135000;0 +20260310 120100;212.134000;212.159000;212.131000;212.136000;0 +20260310 120200;212.135000;212.162000;212.114000;212.116000;0 +20260310 120300;212.116000;212.145000;212.115000;212.131000;0 +20260310 120400;212.135000;212.164000;212.128000;212.164000;0 +20260310 120500;212.163000;212.206000;212.156000;212.206000;0 +20260310 120600;212.205000;212.205000;212.163000;212.173000;0 +20260310 120700;212.173000;212.210000;212.166000;212.209000;0 +20260310 120800;212.205000;212.210000;212.170000;212.173000;0 +20260310 120900;212.174000;212.174000;212.131000;212.136000;0 +20260310 121000;212.133000;212.133000;212.107000;212.107000;0 +20260310 121100;212.108000;212.128000;212.097000;212.104000;0 +20260310 121200;212.106000;212.138000;212.095000;212.100000;0 +20260310 121300;212.101000;212.124000;212.088000;212.094000;0 +20260310 121400;212.090000;212.101000;212.079000;212.092000;0 +20260310 121500;212.091000;212.123000;212.082000;212.116000;0 +20260310 121600;212.115000;212.129000;212.093000;212.114000;0 +20260310 121700;212.115000;212.123000;212.083000;212.108000;0 +20260310 121800;212.108000;212.133000;212.107000;212.123000;0 +20260310 121900;212.124000;212.172000;212.122000;212.163000;0 +20260310 122000;212.161000;212.182000;212.151000;212.169000;0 +20260310 122100;212.165000;212.169000;212.142000;212.155000;0 +20260310 122200;212.157000;212.182000;212.151000;212.156000;0 +20260310 122300;212.156000;212.183000;212.146000;212.163000;0 +20260310 122400;212.161000;212.174000;212.155000;212.156000;0 +20260310 122500;212.159000;212.200000;212.155000;212.197000;0 +20260310 122600;212.197000;212.204000;212.178000;212.204000;0 +20260310 122700;212.206000;212.224000;212.171000;212.174000;0 +20260310 122800;212.174000;212.174000;212.142000;212.149000;0 +20260310 122900;212.149000;212.149000;212.122000;212.131000;0 +20260310 123000;212.129000;212.136000;212.105000;212.111000;0 +20260310 123100;212.110000;212.137000;212.095000;212.134000;0 +20260310 123200;212.134000;212.134000;212.108000;212.117000;0 +20260310 123300;212.111000;212.131000;212.094000;212.121000;0 +20260310 123400;212.119000;212.130000;212.096000;212.119000;0 +20260310 123500;212.121000;212.157000;212.114000;212.131000;0 +20260310 123600;212.131000;212.188000;212.104000;212.104000;0 +20260310 123700;212.108000;212.122000;212.085000;212.122000;0 +20260310 123800;212.124000;212.135000;212.113000;212.121000;0 +20260310 123900;212.122000;212.173000;212.118000;212.164000;0 +20260310 124000;212.165000;212.176000;212.122000;212.131000;0 +20260310 124100;212.132000;212.143000;212.120000;212.128000;0 +20260310 124200;212.131000;212.145000;212.121000;212.123000;0 +20260310 124300;212.118000;212.128000;212.103000;212.112000;0 +20260310 124400;212.110000;212.124000;212.103000;212.118000;0 +20260310 124500;212.120000;212.138000;212.108000;212.118000;0 +20260310 124600;212.118000;212.120000;212.093000;212.111000;0 +20260310 124700;212.109000;212.120000;212.094000;212.095000;0 +20260310 124800;212.094000;212.113000;212.089000;212.110000;0 +20260310 124900;212.108000;212.126000;212.101000;212.118000;0 +20260310 125000;212.120000;212.140000;212.111000;212.138000;0 +20260310 125100;212.139000;212.142000;212.119000;212.134000;0 +20260310 125200;212.133000;212.163000;212.127000;212.161000;0 +20260310 125300;212.162000;212.184000;212.157000;212.171000;0 +20260310 125400;212.171000;212.177000;212.155000;212.176000;0 +20260310 125500;212.176000;212.182000;212.155000;212.160000;0 +20260310 125600;212.160000;212.161000;212.141000;212.145000;0 +20260310 125700;212.144000;212.170000;212.144000;212.165000;0 +20260310 125800;212.166000;212.183000;212.157000;212.170000;0 +20260310 125900;212.167000;212.175000;212.145000;212.162000;0 +20260310 130000;212.167000;212.170000;212.124000;212.127000;0 +20260310 130100;212.127000;212.144000;212.123000;212.138000;0 +20260310 130200;212.139000;212.152000;212.096000;212.107000;0 +20260310 130300;212.107000;212.149000;212.105000;212.138000;0 +20260310 130400;212.137000;212.137000;212.102000;212.115000;0 +20260310 130500;212.114000;212.145000;212.100000;212.144000;0 +20260310 130600;212.142000;212.172000;212.140000;212.166000;0 +20260310 130700;212.162000;212.200000;212.154000;212.156000;0 +20260310 130800;212.157000;212.172000;212.150000;212.160000;0 +20260310 130900;212.161000;212.202000;212.157000;212.189000;0 +20260310 131000;212.185000;212.202000;212.181000;212.191000;0 +20260310 131100;212.192000;212.221000;212.182000;212.216000;0 +20260310 131200;212.213000;212.232000;212.209000;212.216000;0 +20260310 131300;212.220000;212.220000;212.173000;212.176000;0 +20260310 131400;212.173000;212.181000;212.116000;212.117000;0 +20260310 131500;212.116000;212.152000;212.092000;212.105000;0 +20260310 131600;212.102000;212.132000;212.078000;212.093000;0 +20260310 131700;212.092000;212.114000;212.061000;212.086000;0 +20260310 131800;212.086000;212.124000;212.080000;212.083000;0 +20260310 131900;212.084000;212.145000;212.077000;212.130000;0 +20260310 132000;212.129000;212.180000;212.113000;212.124000;0 +20260310 132100;212.124000;212.161000;212.107000;212.129000;0 +20260310 132200;212.128000;212.137000;212.084000;212.114000;0 +20260310 132300;212.111000;212.157000;212.103000;212.149000;0 +20260310 132400;212.150000;212.169000;212.130000;212.130000;0 +20260310 132500;212.133000;212.169000;212.121000;212.152000;0 +20260310 132600;212.152000;212.188000;212.143000;212.180000;0 +20260310 132700;212.177000;212.190000;212.136000;212.148000;0 +20260310 132800;212.148000;212.172000;212.128000;212.156000;0 +20260310 132900;212.157000;212.164000;212.138000;212.150000;0 +20260310 133000;212.150000;212.172000;212.135000;212.154000;0 +20260310 133100;212.152000;212.162000;212.131000;212.136000;0 +20260310 133200;212.140000;212.144000;212.118000;212.138000;0 +20260310 133300;212.138000;212.150000;212.129000;212.145000;0 +20260310 133400;212.145000;212.162000;212.133000;212.158000;0 +20260310 133500;212.162000;212.164000;212.091000;212.108000;0 +20260310 133600;212.107000;212.138000;212.099000;212.120000;0 +20260310 133700;212.120000;212.132000;212.081000;212.124000;0 +20260310 133800;212.126000;212.132000;212.071000;212.080000;0 +20260310 133900;212.080000;212.089000;212.050000;212.062000;0 +20260310 134000;212.063000;212.071000;212.034000;212.044000;0 +20260310 134100;212.042000;212.046000;212.018000;212.025000;0 +20260310 134200;212.025000;212.098000;212.025000;212.072000;0 +20260310 134300;212.073000;212.079000;212.055000;212.057000;0 +20260310 134400;212.056000;212.074000;212.032000;212.069000;0 +20260310 134500;212.068000;212.108000;212.062000;212.085000;0 +20260310 134600;212.081000;212.133000;212.081000;212.110000;0 +20260310 134700;212.115000;212.138000;212.095000;212.108000;0 +20260310 134800;212.108000;212.112000;212.086000;212.101000;0 +20260310 134900;212.101000;212.109000;212.059000;212.067000;0 +20260310 135000;212.067000;212.074000;212.053000;212.062000;0 +20260310 135100;212.062000;212.072000;212.031000;212.039000;0 +20260310 135200;212.036000;212.055000;212.033000;212.040000;0 +20260310 135300;212.038000;212.042000;212.010000;212.012000;0 +20260310 135400;212.014000;212.036000;212.009000;212.029000;0 +20260310 135500;212.027000;212.048000;212.006000;212.007000;0 +20260310 135600;212.007000;212.023000;211.994000;212.000000;0 +20260310 135700;211.998000;212.003000;211.982000;211.994000;0 +20260310 135800;211.996000;212.014000;211.992000;212.003000;0 +20260310 135900;212.005000;212.006000;211.985000;211.989000;0 +20260310 140000;211.986000;212.013000;211.976000;211.976000;0 +20260310 140100;211.978000;212.004000;211.976000;211.991000;0 +20260310 140200;211.993000;212.027000;211.992000;212.020000;0 +20260310 140300;212.019000;212.025000;212.003000;212.019000;0 +20260310 140400;212.016000;212.039000;212.014000;212.014000;0 +20260310 140500;212.012000;212.040000;212.004000;212.029000;0 +20260310 140600;212.028000;212.034000;211.974000;211.975000;0 +20260310 140700;211.975000;212.020000;211.971000;212.020000;0 +20260310 140800;212.017000;212.044000;212.013000;212.038000;0 +20260310 140900;212.038000;212.045000;212.024000;212.031000;0 +20260310 141000;212.028000;212.038000;212.020000;212.031000;0 +20260310 141100;212.032000;212.033000;212.002000;212.008000;0 +20260310 141200;212.008000;212.030000;212.005000;212.022000;0 +20260310 141300;212.024000;212.034000;212.021000;212.028000;0 +20260310 141400;212.028000;212.037000;212.021000;212.031000;0 +20260310 141500;212.034000;212.040000;212.016000;212.028000;0 +20260310 141600;212.027000;212.040000;212.023000;212.038000;0 +20260310 141700;212.039000;212.048000;212.029000;212.048000;0 +20260310 141800;212.046000;212.069000;212.040000;212.059000;0 +20260310 141900;212.056000;212.070000;212.042000;212.057000;0 +20260310 142000;212.053000;212.064000;212.038000;212.045000;0 +20260310 142100;212.049000;212.062000;212.032000;212.038000;0 +20260310 142200;212.040000;212.083000;212.037000;212.069000;0 +20260310 142300;212.071000;212.088000;212.063000;212.068000;0 +20260310 142400;212.069000;212.074000;212.048000;212.060000;0 +20260310 142500;212.059000;212.064000;212.013000;212.026000;0 +20260310 142600;212.026000;212.033000;212.010000;212.011000;0 +20260310 142700;212.012000;212.043000;212.011000;212.027000;0 +20260310 142800;212.028000;212.059000;212.026000;212.054000;0 +20260310 142900;212.054000;212.068000;212.036000;212.046000;0 +20260310 143000;212.044000;212.056000;212.028000;212.031000;0 +20260310 143100;212.031000;212.058000;212.027000;212.034000;0 +20260310 143200;212.033000;212.045000;212.024000;212.027000;0 +20260310 143300;212.028000;212.060000;212.025000;212.046000;0 +20260310 143400;212.040000;212.049000;212.029000;212.045000;0 +20260310 143500;212.046000;212.072000;212.036000;212.063000;0 +20260310 143600;212.062000;212.078000;212.040000;212.075000;0 +20260310 143700;212.081000;212.086000;212.068000;212.068000;0 +20260310 143800;212.074000;212.091000;212.067000;212.086000;0 +20260310 143900;212.084000;212.122000;212.078000;212.117000;0 +20260310 144000;212.115000;212.162000;212.070000;212.154000;0 +20260310 144100;212.155000;212.179000;212.105000;212.110000;0 +20260310 144200;212.110000;212.126000;212.097000;212.119000;0 +20260310 144300;212.116000;212.123000;212.098000;212.108000;0 +20260310 144400;212.109000;212.129000;212.085000;212.095000;0 +20260310 144500;212.097000;212.117000;212.041000;212.044000;0 +20260310 144600;212.043000;212.096000;212.042000;212.075000;0 +20260310 144700;212.073000;212.093000;212.062000;212.074000;0 +20260310 144800;212.072000;212.089000;212.064000;212.071000;0 +20260310 144900;212.071000;212.103000;212.067000;212.087000;0 +20260310 145000;212.090000;212.103000;212.074000;212.087000;0 +20260310 145100;212.086000;212.089000;212.072000;212.075000;0 +20260310 145200;212.076000;212.100000;212.072000;212.083000;0 +20260310 145300;212.083000;212.088000;212.052000;212.054000;0 +20260310 145400;212.052000;212.065000;212.046000;212.063000;0 +20260310 145500;212.063000;212.074000;212.037000;212.043000;0 +20260310 145600;212.050000;212.062000;212.044000;212.061000;0 +20260310 145700;212.061000;212.080000;212.041000;212.071000;0 +20260310 145800;212.070000;212.082000;212.048000;212.051000;0 +20260310 145900;212.047000;212.054000;212.032000;212.049000;0 +20260310 150000;212.051000;212.055000;212.006000;212.006000;0 +20260310 150100;212.007000;212.028000;212.007000;212.014000;0 +20260310 150200;212.014000;212.016000;211.992000;212.001000;0 +20260310 150300;212.003000;212.037000;212.003000;212.036000;0 +20260310 150400;212.036000;212.036000;212.023000;212.032000;0 +20260310 150500;212.033000;212.047000;212.028000;212.029000;0 +20260310 150600;212.027000;212.038000;212.012000;212.015000;0 +20260310 150700;212.015000;212.046000;212.011000;212.028000;0 +20260310 150800;212.028000;212.065000;212.025000;212.050000;0 +20260310 150900;212.049000;212.049000;212.025000;212.026000;0 +20260310 151000;212.025000;212.025000;212.007000;212.017000;0 +20260310 151100;212.012000;212.034000;212.012000;212.033000;0 +20260310 151200;212.033000;212.061000;212.029000;212.054000;0 +20260310 151300;212.057000;212.060000;212.045000;212.052000;0 +20260310 151400;212.060000;212.060000;212.027000;212.035000;0 +20260310 151500;212.034000;212.034000;212.011000;212.018000;0 +20260310 151600;212.018000;212.026000;212.011000;212.013000;0 +20260310 151700;212.015000;212.016000;211.992000;211.997000;0 +20260310 151800;212.000000;212.020000;211.985000;212.013000;0 +20260310 151900;212.011000;212.019000;211.996000;212.006000;0 +20260310 152000;212.006000;212.029000;212.000000;212.021000;0 +20260310 152100;212.019000;212.044000;212.015000;212.038000;0 +20260310 152200;212.037000;212.049000;212.025000;212.028000;0 +20260310 152300;212.028000;212.040000;212.026000;212.037000;0 +20260310 152400;212.039000;212.055000;212.026000;212.055000;0 +20260310 152500;212.053000;212.060000;212.039000;212.050000;0 +20260310 152600;212.051000;212.065000;212.046000;212.058000;0 +20260310 152700;212.056000;212.063000;212.043000;212.055000;0 +20260310 152800;212.053000;212.066000;212.044000;212.047000;0 +20260310 152900;212.049000;212.068000;212.046000;212.067000;0 +20260310 153000;212.063000;212.083000;212.063000;212.071000;0 +20260310 153100;212.079000;212.081000;212.052000;212.054000;0 +20260310 153200;212.048000;212.064000;212.044000;212.057000;0 +20260310 153300;212.057000;212.068000;212.052000;212.062000;0 +20260310 153400;212.063000;212.082000;212.063000;212.080000;0 +20260310 153500;212.077000;212.094000;212.066000;212.073000;0 +20260310 153600;212.071000;212.076000;212.061000;212.072000;0 +20260310 153700;212.070000;212.073000;212.049000;212.049000;0 +20260310 153800;212.049000;212.063000;212.049000;212.063000;0 +20260310 153900;212.068000;212.075000;212.057000;212.068000;0 +20260310 154000;212.068000;212.088000;212.059000;212.076000;0 +20260310 154100;212.079000;212.079000;212.055000;212.079000;0 +20260310 154200;212.078000;212.079000;212.051000;212.054000;0 +20260310 154300;212.055000;212.065000;212.051000;212.065000;0 +20260310 154400;212.066000;212.066000;212.058000;212.060000;0 +20260310 154500;212.059000;212.062000;212.049000;212.054000;0 +20260310 154600;212.054000;212.070000;212.048000;212.060000;0 +20260310 154700;212.060000;212.071000;212.058000;212.060000;0 +20260310 154800;212.060000;212.072000;212.054000;212.072000;0 +20260310 154900;212.068000;212.076000;212.057000;212.063000;0 +20260310 155000;212.061000;212.061000;212.056000;212.060000;0 +20260310 155100;212.058000;212.063000;212.050000;212.062000;0 +20260310 155200;212.062000;212.074000;212.062000;212.069000;0 +20260310 155300;212.068000;212.085000;212.068000;212.085000;0 +20260310 155400;212.081000;212.084000;212.071000;212.075000;0 +20260310 155500;212.073000;212.087000;212.067000;212.070000;0 +20260310 155600;212.053000;212.063000;212.047000;212.055000;0 +20260310 155700;212.058000;212.069000;212.036000;212.038000;0 +20260310 155800;212.034000;212.043000;212.016000;212.034000;0 +20260310 155900;212.034000;212.053000;212.034000;212.039000;0 +20260310 160000;212.042000;212.042000;212.007000;212.010000;0 +20260310 160100;212.007000;212.037000;212.007000;212.033000;0 +20260310 160200;212.037000;212.075000;212.003000;212.017000;0 +20260310 160300;212.018000;212.018000;212.018000;212.018000;0 +20260310 160400;212.022000;212.022000;212.019000;212.019000;0 +20260310 160500;212.005000;212.072000;211.951000;211.951000;0 +20260310 160600;211.963000;211.988000;211.963000;211.986000;0 +20260310 160700;211.985000;212.019000;211.985000;212.016000;0 +20260310 160800;212.005000;212.005000;211.970000;211.970000;0 +20260310 161000;211.985000;211.985000;211.983000;211.983000;0 +20260310 161100;211.982000;211.982000;211.981000;211.981000;0 +20260310 161200;211.981000;211.984000;211.943000;211.973000;0 +20260310 161300;211.970000;211.974000;211.963000;211.974000;0 +20260310 161400;211.969000;211.969000;211.969000;211.969000;0 +20260310 161500;211.969000;211.988000;211.963000;211.975000;0 +20260310 161600;212.010000;212.035000;212.010000;212.026000;0 +20260310 161700;212.034000;212.034000;211.966000;212.021000;0 +20260310 161800;212.020000;212.022000;211.966000;212.012000;0 +20260310 161900;212.016000;212.028000;212.016000;212.018000;0 +20260310 162200;212.024000;212.024000;212.024000;212.024000;0 +20260310 162300;212.022000;212.043000;212.022000;212.034000;0 +20260310 162400;212.053000;212.079000;212.037000;212.069000;0 +20260310 162500;212.071000;212.071000;212.071000;212.071000;0 +20260310 162700;212.073000;212.073000;212.073000;212.073000;0 +20260310 162800;212.075000;212.087000;212.075000;212.077000;0 +20260310 162900;212.079000;212.079000;212.079000;212.079000;0 +20260310 163000;212.117000;212.155000;212.053000;212.133000;0 +20260310 163100;212.125000;212.146000;212.103000;212.124000;0 +20260310 163200;212.120000;212.128000;212.075000;212.107000;0 +20260310 163300;212.108000;212.118000;212.080000;212.098000;0 +20260310 163400;212.079000;212.118000;212.039000;212.099000;0 +20260310 163500;212.092000;212.120000;212.092000;212.109000;0 +20260310 163600;212.116000;212.122000;212.106000;212.109000;0 +20260310 163700;212.116000;212.123000;212.095000;212.108000;0 +20260310 163800;212.115000;212.120000;212.101000;212.103000;0 +20260310 163900;212.096000;212.111000;212.093000;212.095000;0 +20260310 164000;212.104000;212.113000;212.095000;212.104000;0 +20260310 164100;212.103000;212.121000;212.095000;212.107000;0 +20260310 164200;212.108000;212.113000;212.101000;212.112000;0 +20260310 164300;212.113000;212.113000;212.086000;212.102000;0 +20260310 164400;212.111000;212.117000;212.105000;212.117000;0 +20260310 164500;212.110000;212.119000;212.109000;212.109000;0 +20260310 164600;212.098000;212.106000;212.098000;212.106000;0 +20260310 164700;212.114000;212.115000;212.104000;212.111000;0 +20260310 164800;212.110000;212.117000;212.097000;212.099000;0 +20260310 164900;212.099000;212.105000;212.089000;212.099000;0 +20260310 165000;212.099000;212.109000;212.099000;212.099000;0 +20260310 165100;212.099000;212.110000;212.071000;212.084000;0 +20260310 165200;212.085000;212.099000;212.067000;212.085000;0 +20260310 165300;212.089000;212.103000;212.072000;212.091000;0 +20260310 165400;212.080000;212.104000;212.069000;212.074000;0 +20260310 165500;212.085000;212.096000;212.074000;212.092000;0 +20260310 165600;212.094000;212.122000;212.085000;212.121000;0 +20260310 165700;212.123000;212.134000;212.074000;212.074000;0 +20260310 165800;212.049000;212.075000;212.032000;212.053000;0 +20260310 165900;212.049000;212.051000;212.042000;212.042000;0 +20260310 170000;212.087000;212.177000;212.017000;212.069000;0 +20260310 170100;212.073000;212.155000;212.019000;212.062000;0 +20260310 170200;212.081000;212.152000;212.019000;212.054000;0 +20260310 170300;212.054000;212.105000;212.042000;212.062000;0 +20260310 170400;212.068000;212.099000;212.057000;212.071000;0 +20260310 170500;212.069000;212.093000;212.030000;212.079000;0 +20260310 170600;212.077000;212.078000;212.019000;212.052000;0 +20260310 170700;212.035000;212.047000;212.017000;212.018000;0 +20260310 170800;212.018000;212.053000;212.007000;212.017000;0 +20260310 170900;212.044000;212.083000;212.006000;212.043000;0 +20260310 171000;212.052000;212.082000;212.029000;212.029000;0 +20260310 171100;212.075000;212.096000;212.027000;212.048000;0 +20260310 171200;212.051000;212.099000;212.033000;212.037000;0 +20260310 171300;212.049000;212.096000;212.038000;212.086000;0 +20260310 171400;212.044000;212.090000;212.044000;212.089000;0 +20260310 171500;212.088000;212.107000;212.058000;212.105000;0 +20260310 171600;212.105000;212.115000;212.063000;212.100000;0 +20260310 171700;212.071000;212.108000;212.060000;212.067000;0 +20260310 171800;212.067000;212.119000;212.067000;212.119000;0 +20260310 171900;212.120000;212.127000;212.113000;212.127000;0 +20260310 172000;212.127000;212.129000;212.092000;212.092000;0 +20260310 172100;212.094000;212.107000;212.092000;212.101000;0 +20260310 172200;212.098000;212.108000;212.098000;212.102000;0 +20260310 172300;212.102000;212.115000;212.102000;212.113000;0 +20260310 172400;212.115000;212.120000;212.110000;212.115000;0 +20260310 172500;212.114000;212.118000;212.112000;212.114000;0 +20260310 172600;212.114000;212.116000;212.095000;212.102000;0 +20260310 172700;212.101000;212.104000;212.089000;212.101000;0 +20260310 172800;212.102000;212.105000;212.098000;212.103000;0 +20260310 172900;212.100000;212.106000;212.087000;212.098000;0 +20260310 173000;212.099000;212.109000;212.094000;212.104000;0 +20260310 173100;212.103000;212.111000;212.099000;212.099000;0 +20260310 173200;212.099000;212.103000;212.092000;212.100000;0 +20260310 173300;212.101000;212.115000;212.092000;212.096000;0 +20260310 173400;212.096000;212.119000;212.085000;212.099000;0 +20260310 173500;212.101000;212.101000;212.094000;212.094000;0 +20260310 173600;212.095000;212.101000;212.086000;212.096000;0 +20260310 173700;212.096000;212.116000;212.091000;212.110000;0 +20260310 173800;212.110000;212.118000;212.105000;212.115000;0 +20260310 173900;212.118000;212.123000;212.109000;212.114000;0 +20260310 174000;212.110000;212.117000;212.102000;212.116000;0 +20260310 174100;212.117000;212.120000;212.108000;212.119000;0 +20260310 174200;212.118000;212.120000;212.108000;212.115000;0 +20260310 174300;212.112000;212.121000;212.106000;212.117000;0 +20260310 174400;212.118000;212.121000;212.102000;212.116000;0 +20260310 174500;212.117000;212.123000;212.110000;212.110000;0 +20260310 174600;212.108000;212.118000;212.092000;212.099000;0 +20260310 174700;212.100000;212.118000;212.091000;212.116000;0 +20260310 174800;212.115000;212.116000;212.104000;212.104000;0 +20260310 174900;212.104000;212.106000;212.097000;212.102000;0 +20260310 175000;212.103000;212.115000;212.100000;212.114000;0 +20260310 175100;212.115000;212.134000;212.108000;212.132000;0 +20260310 175200;212.133000;212.140000;212.130000;212.139000;0 +20260310 175300;212.137000;212.141000;212.136000;212.139000;0 +20260310 175400;212.138000;212.141000;212.137000;212.140000;0 +20260310 175500;212.141000;212.143000;212.138000;212.140000;0 +20260310 175600;212.138000;212.152000;212.126000;212.137000;0 +20260310 175700;212.137000;212.141000;212.126000;212.132000;0 +20260310 175800;212.132000;212.137000;212.131000;212.133000;0 +20260310 175900;212.134000;212.142000;212.132000;212.140000;0 +20260310 180000;212.139000;212.157000;212.122000;212.157000;0 +20260310 180100;212.155000;212.166000;212.133000;212.139000;0 +20260310 180200;212.141000;212.142000;212.130000;212.134000;0 +20260310 180300;212.140000;212.160000;212.140000;212.160000;0 +20260310 180400;212.157000;212.171000;212.152000;212.160000;0 +20260310 180500;212.165000;212.169000;212.148000;212.148000;0 +20260310 180600;212.148000;212.158000;212.138000;212.138000;0 +20260310 180700;212.138000;212.162000;212.138000;212.162000;0 +20260310 180800;212.162000;212.165000;212.159000;212.163000;0 +20260310 180900;212.167000;212.170000;212.167000;212.168000;0 +20260310 181000;212.167000;212.167000;212.143000;212.157000;0 +20260310 181100;212.158000;212.158000;212.133000;212.135000;0 +20260310 181200;212.135000;212.148000;212.129000;212.147000;0 +20260310 181300;212.141000;212.141000;212.129000;212.136000;0 +20260310 181400;212.135000;212.155000;212.127000;212.151000;0 +20260310 181500;212.150000;212.154000;212.135000;212.138000;0 +20260310 181600;212.139000;212.145000;212.126000;212.132000;0 +20260310 181700;212.134000;212.134000;212.127000;212.133000;0 +20260310 181800;212.133000;212.134000;212.115000;212.118000;0 +20260310 181900;212.119000;212.125000;212.104000;212.104000;0 +20260310 182000;212.107000;212.118000;212.107000;212.113000;0 +20260310 182100;212.111000;212.112000;212.101000;212.110000;0 +20260310 182200;212.111000;212.121000;212.107000;212.119000;0 +20260310 182300;212.120000;212.120000;212.110000;212.111000;0 +20260310 182400;212.110000;212.110000;212.102000;212.102000;0 +20260310 182500;212.103000;212.148000;212.102000;212.145000;0 +20260310 182600;212.141000;212.148000;212.136000;212.146000;0 +20260310 182700;212.144000;212.168000;212.142000;212.142000;0 +20260310 182800;212.143000;212.159000;212.143000;212.147000;0 +20260310 182900;212.149000;212.166000;212.149000;212.160000;0 +20260310 183000;212.163000;212.163000;212.137000;212.140000;0 +20260310 183100;212.140000;212.149000;212.132000;212.132000;0 +20260310 183200;212.130000;212.136000;212.124000;212.124000;0 +20260310 183300;212.125000;212.129000;212.122000;212.123000;0 +20260310 183400;212.122000;212.131000;212.103000;212.114000;0 +20260310 183500;212.114000;212.115000;212.088000;212.110000;0 +20260310 183600;212.111000;212.125000;212.110000;212.122000;0 +20260310 183700;212.120000;212.135000;212.120000;212.134000;0 +20260310 183800;212.129000;212.137000;212.128000;212.136000;0 +20260310 183900;212.136000;212.149000;212.136000;212.145000;0 +20260310 184000;212.145000;212.145000;212.114000;212.119000;0 +20260310 184100;212.120000;212.131000;212.119000;212.122000;0 +20260310 184200;212.122000;212.128000;212.114000;212.121000;0 +20260310 184300;212.121000;212.127000;212.115000;212.127000;0 +20260310 184400;212.128000;212.153000;212.127000;212.153000;0 +20260310 184500;212.151000;212.151000;212.128000;212.138000;0 +20260310 184600;212.139000;212.140000;212.130000;212.134000;0 +20260310 184700;212.135000;212.143000;212.134000;212.142000;0 +20260310 184800;212.142000;212.148000;212.118000;212.121000;0 +20260310 184900;212.122000;212.131000;212.114000;212.126000;0 +20260310 185000;212.128000;212.146000;212.126000;212.132000;0 +20260310 185100;212.132000;212.136000;212.119000;212.128000;0 +20260310 185200;212.124000;212.129000;212.106000;212.112000;0 +20260310 185300;212.113000;212.113000;212.095000;212.095000;0 +20260310 185400;212.095000;212.133000;212.091000;212.131000;0 +20260310 185500;212.131000;212.164000;212.131000;212.163000;0 +20260310 185600;212.163000;212.193000;212.155000;212.191000;0 +20260310 185700;212.199000;212.209000;212.181000;212.200000;0 +20260310 185800;212.200000;212.201000;212.169000;212.184000;0 +20260310 185900;212.183000;212.189000;212.153000;212.163000;0 +20260310 190000;212.165000;212.173000;212.148000;212.150000;0 +20260310 190100;212.152000;212.158000;212.131000;212.134000;0 +20260310 190200;212.135000;212.139000;212.121000;212.125000;0 +20260310 190300;212.126000;212.153000;212.121000;212.140000;0 +20260310 190400;212.140000;212.181000;212.136000;212.176000;0 +20260310 190500;212.177000;212.209000;212.166000;212.174000;0 +20260310 190600;212.180000;212.207000;212.171000;212.201000;0 +20260310 190700;212.198000;212.205000;212.178000;212.190000;0 +20260310 190800;212.196000;212.211000;212.185000;212.199000;0 +20260310 190900;212.200000;212.267000;212.200000;212.250000;0 +20260310 191000;212.245000;212.255000;212.217000;212.220000;0 +20260310 191100;212.220000;212.242000;212.187000;212.214000;0 +20260310 191200;212.213000;212.218000;212.192000;212.194000;0 +20260310 191300;212.195000;212.205000;212.178000;212.181000;0 +20260310 191400;212.181000;212.193000;212.154000;212.170000;0 +20260310 191500;212.169000;212.189000;212.155000;212.159000;0 +20260310 191600;212.163000;212.182000;212.155000;212.178000;0 +20260310 191700;212.181000;212.200000;212.157000;212.167000;0 +20260310 191800;212.167000;212.170000;212.143000;212.155000;0 +20260310 191900;212.155000;212.170000;212.146000;212.157000;0 +20260310 192000;212.157000;212.185000;212.155000;212.179000;0 +20260310 192100;212.182000;212.201000;212.175000;212.184000;0 +20260310 192200;212.195000;212.208000;212.187000;212.197000;0 +20260310 192300;212.198000;212.227000;212.196000;212.226000;0 +20260310 192400;212.226000;212.241000;212.193000;212.230000;0 +20260310 192500;212.229000;212.243000;212.216000;212.241000;0 +20260310 192600;212.244000;212.260000;212.235000;212.249000;0 +20260310 192700;212.255000;212.259000;212.236000;212.258000;0 +20260310 192800;212.258000;212.264000;212.231000;212.240000;0 +20260310 192900;212.240000;212.259000;212.240000;212.248000;0 +20260310 193000;212.249000;212.291000;212.245000;212.284000;0 +20260310 193100;212.284000;212.289000;212.244000;212.260000;0 +20260310 193200;212.263000;212.285000;212.249000;212.280000;0 +20260310 193300;212.279000;212.287000;212.255000;212.259000;0 +20260310 193400;212.259000;212.278000;212.252000;212.276000;0 +20260310 193500;212.276000;212.302000;212.276000;212.295000;0 +20260310 193600;212.294000;212.300000;212.291000;212.297000;0 +20260310 193700;212.303000;212.335000;212.297000;212.332000;0 +20260310 193800;212.333000;212.333000;212.302000;212.306000;0 +20260310 193900;212.308000;212.346000;212.308000;212.332000;0 +20260310 194000;212.331000;212.336000;212.322000;212.325000;0 +20260310 194100;212.330000;212.353000;212.325000;212.349000;0 +20260310 194200;212.351000;212.357000;212.341000;212.344000;0 +20260310 194300;212.344000;212.344000;212.318000;212.342000;0 +20260310 194400;212.339000;212.351000;212.328000;212.347000;0 +20260310 194500;212.349000;212.374000;212.349000;212.373000;0 +20260310 194600;212.376000;212.383000;212.365000;212.375000;0 +20260310 194700;212.374000;212.389000;212.369000;212.384000;0 +20260310 194800;212.382000;212.399000;212.382000;212.392000;0 +20260310 194900;212.393000;212.395000;212.376000;212.392000;0 +20260310 195000;212.392000;212.399000;212.382000;212.399000;0 +20260310 195100;212.399000;212.414000;212.394000;212.402000;0 +20260310 195200;212.401000;212.406000;212.380000;212.402000;0 +20260310 195300;212.406000;212.417000;212.400000;212.409000;0 +20260310 195400;212.410000;212.499000;212.409000;212.497000;0 +20260310 195500;212.494000;212.506000;212.476000;212.490000;0 +20260310 195600;212.491000;212.518000;212.487000;212.497000;0 +20260310 195700;212.497000;212.498000;212.471000;212.472000;0 +20260310 195800;212.471000;212.485000;212.463000;212.485000;0 +20260310 195900;212.485000;212.494000;212.453000;212.459000;0 +20260310 200000;212.459000;212.492000;212.459000;212.484000;0 +20260310 200100;212.486000;212.536000;212.483000;212.531000;0 +20260310 200200;212.532000;212.543000;212.506000;212.518000;0 +20260310 200300;212.519000;212.528000;212.499000;212.514000;0 +20260310 200400;212.514000;212.531000;212.507000;212.513000;0 +20260310 200500;212.511000;212.529000;212.493000;212.529000;0 +20260310 200600;212.529000;212.547000;212.515000;212.517000;0 +20260310 200700;212.517000;212.564000;212.509000;212.562000;0 +20260310 200800;212.562000;212.564000;212.543000;212.550000;0 +20260310 200900;212.552000;212.562000;212.531000;212.554000;0 +20260310 201000;212.554000;212.599000;212.552000;212.599000;0 +20260310 201100;212.597000;212.639000;212.597000;212.601000;0 +20260310 201200;212.601000;212.610000;212.593000;212.600000;0 +20260310 201300;212.618000;212.639000;212.614000;212.626000;0 +20260310 201400;212.624000;212.644000;212.624000;212.631000;0 +20260310 201500;212.632000;212.637000;212.595000;212.620000;0 +20260310 201600;212.617000;212.630000;212.605000;212.622000;0 +20260310 201700;212.622000;212.652000;212.617000;212.627000;0 +20260310 201800;212.629000;212.655000;212.619000;212.633000;0 +20260310 201900;212.633000;212.666000;212.633000;212.662000;0 +20260310 202000;212.664000;212.715000;212.663000;212.705000;0 +20260310 202100;212.704000;212.712000;212.690000;212.705000;0 +20260310 202200;212.703000;212.711000;212.695000;212.703000;0 +20260310 202300;212.702000;212.728000;212.699000;212.716000;0 +20260310 202400;212.718000;212.767000;212.711000;212.756000;0 +20260310 202500;212.757000;212.778000;212.726000;212.731000;0 +20260310 202600;212.733000;212.737000;212.686000;212.688000;0 +20260310 202700;212.689000;212.705000;212.676000;212.704000;0 +20260310 202800;212.705000;212.745000;212.704000;212.745000;0 +20260310 202900;212.747000;212.751000;212.733000;212.736000;0 +20260310 203000;212.736000;212.764000;212.729000;212.754000;0 +20260310 203100;212.757000;212.784000;212.754000;212.784000;0 +20260310 203200;212.780000;212.785000;212.773000;212.778000;0 +20260310 203300;212.778000;212.785000;212.769000;212.774000;0 +20260310 203400;212.774000;212.804000;212.770000;212.791000;0 +20260310 203500;212.790000;212.791000;212.730000;212.734000;0 +20260310 203600;212.735000;212.737000;212.698000;212.714000;0 +20260310 203700;212.715000;212.736000;212.695000;212.722000;0 +20260310 203800;212.722000;212.751000;212.721000;212.743000;0 +20260310 203900;212.737000;212.746000;212.706000;212.716000;0 +20260310 204000;212.713000;212.737000;212.709000;212.725000;0 +20260310 204100;212.725000;212.751000;212.725000;212.745000;0 +20260310 204200;212.748000;212.759000;212.728000;212.750000;0 +20260310 204300;212.752000;212.771000;212.750000;212.754000;0 +20260310 204400;212.754000;212.786000;212.754000;212.771000;0 +20260310 204500;212.769000;212.811000;212.724000;212.724000;0 +20260310 204600;212.725000;212.752000;212.722000;212.751000;0 +20260310 204700;212.750000;212.786000;212.736000;212.784000;0 +20260310 204800;212.783000;212.801000;212.754000;212.754000;0 +20260310 204900;212.756000;212.756000;212.738000;212.750000;0 +20260310 205000;212.750000;212.757000;212.732000;212.751000;0 +20260310 205100;212.751000;212.755000;212.736000;212.755000;0 +20260310 205200;212.750000;212.782000;212.749000;212.781000;0 +20260310 205300;212.781000;212.795000;212.774000;212.795000;0 +20260310 205400;212.796000;212.845000;212.796000;212.829000;0 +20260310 205500;212.827000;212.841000;212.825000;212.833000;0 +20260310 205600;212.830000;212.845000;212.827000;212.834000;0 +20260310 205700;212.834000;212.839000;212.821000;212.828000;0 +20260310 205800;212.825000;212.827000;212.792000;212.802000;0 +20260310 205900;212.803000;212.825000;212.802000;212.810000;0 +20260310 210000;212.812000;212.832000;212.799000;212.823000;0 +20260310 210100;212.824000;212.824000;212.781000;212.781000;0 +20260310 210200;212.783000;212.803000;212.780000;212.786000;0 +20260310 210300;212.789000;212.800000;212.771000;212.786000;0 +20260310 210400;212.786000;212.801000;212.775000;212.782000;0 +20260310 210500;212.784000;212.813000;212.782000;212.813000;0 +20260310 210600;212.813000;212.817000;212.782000;212.790000;0 +20260310 210700;212.789000;212.792000;212.768000;212.773000;0 +20260310 210800;212.773000;212.788000;212.767000;212.775000;0 +20260310 210900;212.776000;212.791000;212.768000;212.771000;0 +20260310 211000;212.773000;212.776000;212.766000;212.770000;0 +20260310 211100;212.768000;212.777000;212.754000;212.756000;0 +20260310 211200;212.764000;212.784000;212.758000;212.770000;0 +20260310 211300;212.772000;212.805000;212.768000;212.805000;0 +20260310 211400;212.806000;212.806000;212.790000;212.797000;0 +20260310 211500;212.799000;212.814000;212.788000;212.814000;0 +20260310 211600;212.811000;212.848000;212.810000;212.846000;0 +20260310 211700;212.846000;212.848000;212.836000;212.836000;0 +20260310 211800;212.839000;212.871000;212.839000;212.871000;0 +20260310 211900;212.871000;212.878000;212.860000;212.860000;0 +20260310 212000;212.861000;212.864000;212.844000;212.847000;0 +20260310 212100;212.846000;212.857000;212.846000;212.852000;0 +20260310 212200;212.851000;212.852000;212.820000;212.820000;0 +20260310 212300;212.822000;212.845000;212.814000;212.845000;0 +20260310 212400;212.846000;212.858000;212.846000;212.850000;0 +20260310 212500;212.848000;212.856000;212.836000;212.849000;0 +20260310 212600;212.848000;212.852000;212.831000;212.852000;0 +20260310 212700;212.850000;212.862000;212.840000;212.862000;0 +20260310 212800;212.861000;212.871000;212.858000;212.861000;0 +20260310 212900;212.859000;212.866000;212.850000;212.850000;0 +20260310 213000;212.851000;212.858000;212.831000;212.831000;0 +20260310 213100;212.831000;212.844000;212.826000;212.842000;0 +20260310 213200;212.842000;212.852000;212.826000;212.836000;0 +20260310 213300;212.835000;212.836000;212.816000;212.817000;0 +20260310 213400;212.819000;212.834000;212.810000;212.827000;0 +20260310 213500;212.827000;212.829000;212.812000;212.821000;0 +20260310 213600;212.821000;212.824000;212.799000;212.802000;0 +20260310 213700;212.803000;212.816000;212.799000;212.799000;0 +20260310 213800;212.799000;212.829000;212.799000;212.820000;0 +20260310 213900;212.820000;212.820000;212.812000;212.813000;0 +20260310 214000;212.814000;212.822000;212.797000;212.811000;0 +20260310 214100;212.811000;212.815000;212.792000;212.798000;0 +20260310 214200;212.796000;212.829000;212.796000;212.823000;0 +20260310 214300;212.823000;212.836000;212.811000;212.824000;0 +20260310 214400;212.824000;212.841000;212.802000;212.839000;0 +20260310 214500;212.837000;212.854000;212.833000;212.838000;0 +20260310 214600;212.838000;212.870000;212.837000;212.851000;0 +20260310 214700;212.855000;212.883000;212.834000;212.834000;0 +20260310 214800;212.836000;212.842000;212.801000;212.813000;0 +20260310 214900;212.817000;212.827000;212.810000;212.816000;0 +20260310 215000;212.822000;212.823000;212.792000;212.806000;0 +20260310 215100;212.804000;212.814000;212.795000;212.808000;0 +20260310 215200;212.809000;212.829000;212.797000;212.810000;0 +20260310 215300;212.818000;212.834000;212.815000;212.817000;0 +20260310 215400;212.814000;212.833000;212.808000;212.808000;0 +20260310 215500;212.805000;212.805000;212.788000;212.796000;0 +20260310 215600;212.794000;212.807000;212.788000;212.794000;0 +20260310 215700;212.795000;212.806000;212.787000;212.794000;0 +20260310 215800;212.795000;212.815000;212.792000;212.815000;0 +20260310 215900;212.816000;212.841000;212.814000;212.841000;0 +20260310 220000;212.840000;212.856000;212.840000;212.846000;0 +20260310 220100;212.846000;212.864000;212.843000;212.850000;0 +20260310 220200;212.851000;212.853000;212.839000;212.845000;0 +20260310 220300;212.845000;212.854000;212.838000;212.852000;0 +20260310 220400;212.852000;212.857000;212.808000;212.816000;0 +20260310 220500;212.815000;212.838000;212.812000;212.828000;0 +20260310 220600;212.830000;212.830000;212.800000;212.800000;0 +20260310 220700;212.801000;212.807000;212.783000;212.785000;0 +20260310 220800;212.785000;212.788000;212.761000;212.767000;0 +20260310 220900;212.765000;212.766000;212.761000;212.763000;0 +20260310 221000;212.761000;212.771000;212.743000;212.744000;0 +20260310 221100;212.751000;212.764000;212.743000;212.764000;0 +20260310 221200;212.761000;212.766000;212.746000;212.746000;0 +20260310 221300;212.746000;212.750000;212.735000;212.749000;0 +20260310 221400;212.749000;212.764000;212.749000;212.761000;0 +20260310 221500;212.761000;212.778000;212.757000;212.778000;0 +20260310 221600;212.779000;212.789000;212.768000;212.775000;0 +20260310 221700;212.776000;212.807000;212.775000;212.806000;0 +20260310 221800;212.809000;212.810000;212.794000;212.798000;0 +20260310 221900;212.797000;212.808000;212.793000;212.799000;0 +20260310 222000;212.801000;212.809000;212.798000;212.799000;0 +20260310 222100;212.798000;212.805000;212.798000;212.800000;0 +20260310 222200;212.805000;212.805000;212.780000;212.783000;0 +20260310 222300;212.785000;212.788000;212.770000;212.773000;0 +20260310 222400;212.771000;212.787000;212.763000;212.787000;0 +20260310 222500;212.786000;212.788000;212.766000;212.779000;0 +20260310 222600;212.779000;212.784000;212.764000;212.776000;0 +20260310 222700;212.777000;212.781000;212.760000;212.762000;0 +20260310 222800;212.762000;212.764000;212.746000;212.753000;0 +20260310 222900;212.757000;212.767000;212.754000;212.758000;0 +20260310 223000;212.758000;212.762000;212.743000;212.755000;0 +20260310 223100;212.751000;212.761000;212.746000;212.753000;0 +20260310 223200;212.756000;212.762000;212.746000;212.756000;0 +20260310 223300;212.754000;212.773000;212.751000;212.768000;0 +20260310 223400;212.767000;212.767000;212.756000;212.762000;0 +20260310 223500;212.763000;212.791000;212.755000;212.763000;0 +20260310 223600;212.764000;212.770000;212.754000;212.770000;0 +20260310 223700;212.767000;212.781000;212.749000;212.749000;0 +20260310 223800;212.748000;212.755000;212.746000;212.749000;0 +20260310 223900;212.747000;212.760000;212.738000;212.759000;0 +20260310 224000;212.759000;212.766000;212.752000;212.761000;0 +20260310 224100;212.762000;212.773000;212.746000;212.768000;0 +20260310 224200;212.767000;212.773000;212.762000;212.772000;0 +20260310 224300;212.771000;212.775000;212.763000;212.767000;0 +20260310 224400;212.765000;212.777000;212.756000;212.777000;0 +20260310 224500;212.781000;212.787000;212.774000;212.777000;0 +20260310 224600;212.780000;212.788000;212.778000;212.781000;0 +20260310 224700;212.781000;212.794000;212.777000;212.791000;0 +20260310 224800;212.790000;212.793000;212.766000;212.778000;0 +20260310 224900;212.776000;212.784000;212.770000;212.784000;0 +20260310 225000;212.787000;212.787000;212.779000;212.783000;0 +20260310 225100;212.783000;212.786000;212.776000;212.781000;0 +20260310 225200;212.784000;212.792000;212.778000;212.781000;0 +20260310 225300;212.784000;212.794000;212.779000;212.783000;0 +20260310 225400;212.788000;212.790000;212.776000;212.780000;0 +20260310 225500;212.783000;212.786000;212.771000;212.777000;0 +20260310 225600;212.779000;212.791000;212.776000;212.777000;0 +20260310 225700;212.777000;212.812000;212.771000;212.800000;0 +20260310 225800;212.800000;212.833000;212.800000;212.815000;0 +20260310 225900;212.816000;212.818000;212.799000;212.801000;0 +20260310 230000;212.803000;212.837000;212.803000;212.836000;0 +20260310 230100;212.837000;212.851000;212.829000;212.844000;0 +20260310 230200;212.848000;212.854000;212.830000;212.846000;0 +20260310 230300;212.847000;212.848000;212.838000;212.845000;0 +20260310 230400;212.845000;212.847000;212.838000;212.841000;0 +20260310 230500;212.842000;212.846000;212.824000;212.826000;0 +20260310 230600;212.824000;212.828000;212.813000;212.818000;0 +20260310 230700;212.820000;212.823000;212.804000;212.808000;0 +20260310 230800;212.807000;212.818000;212.798000;212.800000;0 +20260310 230900;212.802000;212.812000;212.800000;212.804000;0 +20260310 231000;212.802000;212.804000;212.786000;212.793000;0 +20260310 231100;212.793000;212.798000;212.789000;212.796000;0 +20260310 231200;212.794000;212.794000;212.785000;212.788000;0 +20260310 231300;212.788000;212.790000;212.771000;212.778000;0 +20260310 231400;212.777000;212.809000;212.776000;212.802000;0 +20260310 231500;212.801000;212.805000;212.782000;212.803000;0 +20260310 231600;212.803000;212.818000;212.801000;212.806000;0 +20260310 231700;212.807000;212.816000;212.794000;212.811000;0 +20260310 231800;212.811000;212.826000;212.798000;212.802000;0 +20260310 231900;212.801000;212.812000;212.799000;212.807000;0 +20260310 232000;212.808000;212.842000;212.804000;212.841000;0 +20260310 232100;212.842000;212.842000;212.829000;212.837000;0 +20260310 232200;212.835000;212.851000;212.830000;212.848000;0 +20260310 232300;212.849000;212.885000;212.848000;212.881000;0 +20260310 232400;212.879000;212.881000;212.876000;212.876000;0 +20260310 232500;212.877000;212.878000;212.863000;212.864000;0 +20260310 232600;212.867000;212.873000;212.861000;212.865000;0 +20260310 232700;212.867000;212.875000;212.862000;212.867000;0 +20260310 232800;212.864000;212.876000;212.862000;212.872000;0 +20260310 232900;212.871000;212.874000;212.869000;212.871000;0 +20260310 233000;212.876000;212.876000;212.860000;212.862000;0 +20260310 233100;212.863000;212.864000;212.852000;212.857000;0 +20260310 233200;212.858000;212.861000;212.832000;212.846000;0 +20260310 233300;212.846000;212.855000;212.832000;212.839000;0 +20260310 233400;212.838000;212.858000;212.835000;212.840000;0 +20260310 233500;212.840000;212.846000;212.828000;212.844000;0 +20260310 233600;212.843000;212.848000;212.817000;212.826000;0 +20260310 233700;212.823000;212.825000;212.791000;212.803000;0 +20260310 233800;212.800000;212.808000;212.794000;212.799000;0 +20260310 233900;212.800000;212.805000;212.795000;212.802000;0 +20260310 234000;212.801000;212.820000;212.801000;212.818000;0 +20260310 234100;212.818000;212.818000;212.795000;212.806000;0 +20260310 234200;212.807000;212.810000;212.800000;212.806000;0 +20260310 234300;212.804000;212.812000;212.797000;212.799000;0 +20260310 234400;212.801000;212.810000;212.795000;212.795000;0 +20260310 234500;212.794000;212.803000;212.790000;212.796000;0 +20260310 234600;212.794000;212.815000;212.792000;212.793000;0 +20260310 234700;212.794000;212.834000;212.791000;212.819000;0 +20260310 234800;212.816000;212.816000;212.778000;212.786000;0 +20260310 234900;212.787000;212.805000;212.785000;212.800000;0 +20260310 235000;212.802000;212.808000;212.787000;212.787000;0 +20260310 235100;212.785000;212.792000;212.764000;212.767000;0 +20260310 235200;212.768000;212.790000;212.767000;212.779000;0 +20260310 235300;212.781000;212.791000;212.761000;212.761000;0 +20260310 235400;212.773000;212.774000;212.762000;212.763000;0 +20260310 235500;212.764000;212.766000;212.742000;212.749000;0 +20260310 235600;212.753000;212.757000;212.734000;212.744000;0 +20260310 235700;212.740000;212.740000;212.723000;212.731000;0 +20260310 235800;212.731000;212.734000;212.708000;212.712000;0 +20260310 235900;212.713000;212.719000;212.703000;212.711000;0 +20260311 000000;212.713000;212.713000;212.695000;212.706000;0 +20260311 000100;212.712000;212.735000;212.708000;212.726000;0 +20260311 000200;212.726000;212.745000;212.717000;212.722000;0 +20260311 000300;212.722000;212.734000;212.713000;212.722000;0 +20260311 000400;212.722000;212.753000;212.717000;212.751000;0 +20260311 000500;212.751000;212.782000;212.744000;212.763000;0 +20260311 000600;212.757000;212.763000;212.739000;212.746000;0 +20260311 000700;212.745000;212.746000;212.702000;212.705000;0 +20260311 000800;212.705000;212.711000;212.692000;212.695000;0 +20260311 000900;212.694000;212.711000;212.691000;212.695000;0 +20260311 001000;212.695000;212.698000;212.678000;212.689000;0 +20260311 001100;212.689000;212.717000;212.683000;212.713000;0 +20260311 001200;212.709000;212.715000;212.680000;212.683000;0 +20260311 001300;212.683000;212.694000;212.676000;212.688000;0 +20260311 001400;212.687000;212.691000;212.674000;212.683000;0 +20260311 001500;212.681000;212.695000;212.673000;212.674000;0 +20260311 001600;212.674000;212.689000;212.673000;212.684000;0 +20260311 001700;212.686000;212.689000;212.677000;212.689000;0 +20260311 001800;212.689000;212.713000;212.687000;212.712000;0 +20260311 001900;212.713000;212.716000;212.702000;212.702000;0 +20260311 002000;212.701000;212.704000;212.689000;212.694000;0 +20260311 002100;212.691000;212.697000;212.683000;212.684000;0 +20260311 002200;212.686000;212.688000;212.663000;212.671000;0 +20260311 002300;212.672000;212.673000;212.648000;212.657000;0 +20260311 002400;212.654000;212.664000;212.648000;212.659000;0 +20260311 002500;212.660000;212.675000;212.659000;212.667000;0 +20260311 002600;212.671000;212.685000;212.670000;212.681000;0 +20260311 002700;212.680000;212.684000;212.660000;212.672000;0 +20260311 002800;212.671000;212.687000;212.670000;212.687000;0 +20260311 002900;212.687000;212.687000;212.670000;212.671000;0 +20260311 003000;212.671000;212.675000;212.646000;212.651000;0 +20260311 003100;212.652000;212.660000;212.650000;212.657000;0 +20260311 003200;212.652000;212.659000;212.645000;212.648000;0 +20260311 003300;212.648000;212.650000;212.644000;212.646000;0 +20260311 003400;212.645000;212.645000;212.630000;212.634000;0 +20260311 003500;212.635000;212.670000;212.630000;212.670000;0 +20260311 003600;212.668000;212.691000;212.666000;212.688000;0 +20260311 003700;212.688000;212.696000;212.662000;212.685000;0 +20260311 003800;212.685000;212.703000;212.683000;212.693000;0 +20260311 003900;212.693000;212.697000;212.679000;212.679000;0 +20260311 004000;212.682000;212.702000;212.675000;212.690000;0 +20260311 004100;212.695000;212.716000;212.693000;212.694000;0 +20260311 004200;212.694000;212.698000;212.669000;212.672000;0 +20260311 004300;212.670000;212.680000;212.669000;212.673000;0 +20260311 004400;212.669000;212.684000;212.661000;212.675000;0 +20260311 004500;212.676000;212.677000;212.656000;212.662000;0 +20260311 004600;212.660000;212.662000;212.637000;212.643000;0 +20260311 004700;212.644000;212.672000;212.644000;212.662000;0 +20260311 004800;212.661000;212.670000;212.657000;212.670000;0 +20260311 004900;212.667000;212.681000;212.665000;212.666000;0 +20260311 005000;212.665000;212.690000;212.665000;212.682000;0 +20260311 005100;212.682000;212.693000;212.676000;212.686000;0 +20260311 005200;212.689000;212.690000;212.662000;212.663000;0 +20260311 005300;212.662000;212.680000;212.661000;212.673000;0 +20260311 005400;212.674000;212.695000;212.673000;212.689000;0 +20260311 005500;212.689000;212.705000;212.677000;212.685000;0 +20260311 005600;212.686000;212.702000;212.672000;212.702000;0 +20260311 005700;212.707000;212.721000;212.703000;212.720000;0 +20260311 005800;212.720000;212.728000;212.710000;212.720000;0 +20260311 005900;212.720000;212.720000;212.695000;212.706000;0 +20260311 010000;212.708000;212.708000;212.661000;212.662000;0 +20260311 010100;212.663000;212.675000;212.637000;212.640000;0 +20260311 010200;212.640000;212.659000;212.591000;212.592000;0 +20260311 010300;212.591000;212.592000;212.556000;212.575000;0 +20260311 010400;212.576000;212.611000;212.570000;212.609000;0 +20260311 010500;212.607000;212.618000;212.570000;212.585000;0 +20260311 010600;212.581000;212.583000;212.568000;212.582000;0 +20260311 010700;212.583000;212.592000;212.572000;212.582000;0 +20260311 010800;212.580000;212.607000;212.577000;212.601000;0 +20260311 010900;212.603000;212.617000;212.581000;212.588000;0 +20260311 011000;212.589000;212.606000;212.583000;212.602000;0 +20260311 011100;212.603000;212.606000;212.577000;212.584000;0 +20260311 011200;212.584000;212.593000;212.576000;212.592000;0 +20260311 011300;212.592000;212.617000;212.591000;212.617000;0 +20260311 011400;212.616000;212.627000;212.596000;212.617000;0 +20260311 011500;212.617000;212.635000;212.609000;212.635000;0 +20260311 011600;212.636000;212.659000;212.633000;212.635000;0 +20260311 011700;212.635000;212.637000;212.613000;212.614000;0 +20260311 011800;212.612000;212.622000;212.608000;212.619000;0 +20260311 011900;212.616000;212.635000;212.615000;212.623000;0 +20260311 012000;212.624000;212.632000;212.604000;212.619000;0 +20260311 012100;212.621000;212.639000;212.619000;212.633000;0 +20260311 012200;212.633000;212.638000;212.619000;212.627000;0 +20260311 012300;212.637000;212.664000;212.637000;212.655000;0 +20260311 012400;212.654000;212.659000;212.561000;212.562000;0 +20260311 012500;212.563000;212.563000;212.523000;212.533000;0 +20260311 012600;212.533000;212.533000;212.494000;212.501000;0 +20260311 012700;212.500000;212.508000;212.475000;212.492000;0 +20260311 012800;212.491000;212.502000;212.481000;212.492000;0 +20260311 012900;212.493000;212.497000;212.462000;212.492000;0 +20260311 013000;212.491000;212.539000;212.491000;212.533000;0 +20260311 013100;212.533000;212.533000;212.500000;212.516000;0 +20260311 013200;212.515000;212.515000;212.477000;212.488000;0 +20260311 013300;212.489000;212.499000;212.471000;212.479000;0 +20260311 013400;212.483000;212.498000;212.465000;212.471000;0 +20260311 013500;212.471000;212.472000;212.417000;212.448000;0 +20260311 013600;212.447000;212.466000;212.445000;212.455000;0 +20260311 013700;212.456000;212.457000;212.430000;212.439000;0 +20260311 013800;212.437000;212.443000;212.422000;212.429000;0 +20260311 013900;212.428000;212.435000;212.402000;212.412000;0 +20260311 014000;212.417000;212.441000;212.413000;212.430000;0 +20260311 014100;212.429000;212.443000;212.420000;212.426000;0 +20260311 014200;212.425000;212.435000;212.384000;212.384000;0 +20260311 014300;212.385000;212.393000;212.365000;212.374000;0 +20260311 014400;212.374000;212.395000;212.367000;212.394000;0 +20260311 014500;212.389000;212.392000;212.378000;212.387000;0 +20260311 014600;212.390000;212.407000;212.377000;212.404000;0 +20260311 014700;212.405000;212.413000;212.401000;212.404000;0 +20260311 014800;212.405000;212.405000;212.367000;212.374000;0 +20260311 014900;212.376000;212.383000;212.360000;212.366000;0 +20260311 015000;212.368000;212.380000;212.361000;212.378000;0 +20260311 015100;212.380000;212.414000;212.380000;212.414000;0 +20260311 015200;212.414000;212.421000;212.405000;212.414000;0 +20260311 015300;212.416000;212.464000;212.416000;212.450000;0 +20260311 015400;212.449000;212.466000;212.447000;212.464000;0 +20260311 015500;212.458000;212.485000;212.458000;212.475000;0 +20260311 015600;212.473000;212.488000;212.471000;212.483000;0 +20260311 015700;212.483000;212.488000;212.470000;212.471000;0 +20260311 015800;212.471000;212.505000;212.471000;212.488000;0 +20260311 015900;212.489000;212.498000;212.480000;212.480000;0 +20260311 020000;212.482000;212.485000;212.450000;212.485000;0 +20260311 020100;212.483000;212.511000;212.483000;212.486000;0 +20260311 020200;212.488000;212.502000;212.453000;212.457000;0 +20260311 020300;212.454000;212.454000;212.408000;212.427000;0 +20260311 020400;212.425000;212.450000;212.413000;212.444000;0 +20260311 020500;212.445000;212.453000;212.404000;212.404000;0 +20260311 020600;212.407000;212.440000;212.392000;212.432000;0 +20260311 020700;212.434000;212.464000;212.424000;212.462000;0 +20260311 020800;212.460000;212.470000;212.448000;212.458000;0 +20260311 020900;212.460000;212.465000;212.437000;212.444000;0 +20260311 021000;212.445000;212.486000;212.441000;212.475000;0 +20260311 021100;212.473000;212.489000;212.462000;212.462000;0 +20260311 021200;212.460000;212.466000;212.426000;212.427000;0 +20260311 021300;212.429000;212.439000;212.417000;212.430000;0 +20260311 021400;212.429000;212.465000;212.427000;212.449000;0 +20260311 021500;212.447000;212.524000;212.442000;212.512000;0 +20260311 021600;212.513000;212.525000;212.490000;212.511000;0 +20260311 021700;212.507000;212.535000;212.500000;212.506000;0 +20260311 021800;212.505000;212.513000;212.468000;212.480000;0 +20260311 021900;212.479000;212.491000;212.453000;212.459000;0 +20260311 022000;212.458000;212.466000;212.437000;212.440000;0 +20260311 022100;212.441000;212.451000;212.407000;212.414000;0 +20260311 022200;212.410000;212.419000;212.391000;212.407000;0 +20260311 022300;212.403000;212.471000;212.403000;212.470000;0 +20260311 022400;212.470000;212.495000;212.468000;212.487000;0 +20260311 022500;212.483000;212.502000;212.478000;212.497000;0 +20260311 022600;212.497000;212.505000;212.439000;212.441000;0 +20260311 022700;212.441000;212.453000;212.411000;212.414000;0 +20260311 022800;212.414000;212.471000;212.411000;212.459000;0 +20260311 022900;212.457000;212.471000;212.440000;212.457000;0 +20260311 023000;212.453000;212.521000;212.453000;212.512000;0 +20260311 023100;212.511000;212.556000;212.507000;212.536000;0 +20260311 023200;212.548000;212.584000;212.548000;212.553000;0 +20260311 023300;212.554000;212.579000;212.541000;212.576000;0 +20260311 023400;212.574000;212.588000;212.548000;212.554000;0 +20260311 023500;212.555000;212.588000;212.551000;212.583000;0 +20260311 023600;212.586000;212.598000;212.568000;212.568000;0 +20260311 023700;212.568000;212.569000;212.539000;212.563000;0 +20260311 023800;212.564000;212.591000;212.556000;212.572000;0 +20260311 023900;212.572000;212.605000;212.566000;212.571000;0 +20260311 024000;212.571000;212.589000;212.520000;212.520000;0 +20260311 024100;212.519000;212.583000;212.514000;212.583000;0 +20260311 024200;212.586000;212.593000;212.552000;212.555000;0 +20260311 024300;212.555000;212.568000;212.531000;212.546000;0 +20260311 024400;212.549000;212.573000;212.547000;212.572000;0 +20260311 024500;212.572000;212.589000;212.561000;212.589000;0 +20260311 024600;212.589000;212.611000;212.578000;212.604000;0 +20260311 024700;212.603000;212.607000;212.587000;212.601000;0 +20260311 024800;212.602000;212.602000;212.573000;212.584000;0 +20260311 024900;212.584000;212.612000;212.584000;212.608000;0 +20260311 025000;212.607000;212.627000;212.589000;212.621000;0 +20260311 025100;212.622000;212.633000;212.610000;212.625000;0 +20260311 025200;212.624000;212.636000;212.619000;212.635000;0 +20260311 025300;212.635000;212.648000;212.617000;212.641000;0 +20260311 025400;212.643000;212.646000;212.598000;212.617000;0 +20260311 025500;212.620000;212.620000;212.575000;212.579000;0 +20260311 025600;212.579000;212.599000;212.546000;212.546000;0 +20260311 025700;212.544000;212.548000;212.506000;212.515000;0 +20260311 025800;212.517000;212.565000;212.514000;212.556000;0 +20260311 025900;212.559000;212.578000;212.555000;212.566000;0 +20260311 030000;212.567000;212.583000;212.543000;212.547000;0 +20260311 030100;212.547000;212.586000;212.544000;212.563000;0 +20260311 030200;212.563000;212.573000;212.541000;212.554000;0 +20260311 030300;212.555000;212.567000;212.534000;212.539000;0 +20260311 030400;212.540000;212.571000;212.533000;212.564000;0 +20260311 030500;212.562000;212.575000;212.539000;212.542000;0 +20260311 030600;212.541000;212.543000;212.488000;212.490000;0 +20260311 030700;212.490000;212.501000;212.463000;212.483000;0 +20260311 030800;212.481000;212.501000;212.465000;212.482000;0 +20260311 030900;212.486000;212.521000;212.486000;212.513000;0 +20260311 031000;212.513000;212.548000;212.509000;212.530000;0 +20260311 031100;212.531000;212.538000;212.508000;212.527000;0 +20260311 031200;212.527000;212.549000;212.523000;212.525000;0 +20260311 031300;212.524000;212.534000;212.511000;212.517000;0 +20260311 031400;212.516000;212.566000;212.516000;212.566000;0 +20260311 031500;212.563000;212.566000;212.532000;212.536000;0 +20260311 031600;212.536000;212.572000;212.534000;212.569000;0 +20260311 031700;212.570000;212.606000;212.568000;212.588000;0 +20260311 031800;212.587000;212.603000;212.577000;212.586000;0 +20260311 031900;212.589000;212.608000;212.575000;212.577000;0 +20260311 032000;212.575000;212.591000;212.557000;212.561000;0 +20260311 032100;212.558000;212.602000;212.555000;212.602000;0 +20260311 032200;212.602000;212.616000;212.578000;212.600000;0 +20260311 032300;212.603000;212.613000;212.600000;212.610000;0 +20260311 032400;212.614000;212.650000;212.594000;212.650000;0 +20260311 032500;212.649000;212.685000;212.619000;212.625000;0 +20260311 032600;212.627000;212.631000;212.567000;212.567000;0 +20260311 032700;212.569000;212.579000;212.550000;212.559000;0 +20260311 032800;212.557000;212.593000;212.555000;212.592000;0 +20260311 032900;212.592000;212.607000;212.583000;212.596000;0 +20260311 033000;212.595000;212.643000;212.588000;212.588000;0 +20260311 033100;212.589000;212.617000;212.582000;212.600000;0 +20260311 033200;212.599000;212.605000;212.581000;212.581000;0 +20260311 033300;212.580000;212.637000;212.580000;212.624000;0 +20260311 033400;212.625000;212.635000;212.580000;212.590000;0 +20260311 033500;212.590000;212.613000;212.561000;212.607000;0 +20260311 033600;212.608000;212.623000;212.608000;212.612000;0 +20260311 033700;212.612000;212.617000;212.579000;212.580000;0 +20260311 033800;212.578000;212.579000;212.543000;212.553000;0 +20260311 033900;212.555000;212.561000;212.511000;212.525000;0 +20260311 034000;212.526000;212.552000;212.522000;212.536000;0 +20260311 034100;212.536000;212.546000;212.521000;212.546000;0 +20260311 034200;212.545000;212.551000;212.497000;212.497000;0 +20260311 034300;212.492000;212.541000;212.490000;212.497000;0 +20260311 034400;212.505000;212.508000;212.470000;212.480000;0 +20260311 034500;212.479000;212.485000;212.443000;212.452000;0 +20260311 034600;212.451000;212.474000;212.431000;212.462000;0 +20260311 034700;212.462000;212.483000;212.455000;212.476000;0 +20260311 034800;212.477000;212.483000;212.436000;212.439000;0 +20260311 034900;212.440000;212.468000;212.436000;212.449000;0 +20260311 035000;212.450000;212.456000;212.430000;212.434000;0 +20260311 035100;212.436000;212.455000;212.423000;212.455000;0 +20260311 035200;212.452000;212.498000;212.452000;212.480000;0 +20260311 035300;212.481000;212.495000;212.450000;212.462000;0 +20260311 035400;212.462000;212.484000;212.451000;212.477000;0 +20260311 035500;212.478000;212.505000;212.474000;212.505000;0 +20260311 035600;212.506000;212.533000;212.501000;212.528000;0 +20260311 035700;212.531000;212.545000;212.484000;212.538000;0 +20260311 035800;212.538000;212.614000;212.536000;212.596000;0 +20260311 035900;212.596000;212.679000;212.592000;212.674000;0 +20260311 040000;212.677000;212.701000;212.558000;212.566000;0 +20260311 040100;212.565000;212.585000;212.476000;212.478000;0 +20260311 040200;212.476000;212.505000;212.459000;212.464000;0 +20260311 040300;212.466000;212.471000;212.401000;212.409000;0 +20260311 040400;212.409000;212.425000;212.387000;212.425000;0 +20260311 040500;212.426000;212.527000;212.425000;212.503000;0 +20260311 040600;212.501000;212.510000;212.419000;212.443000;0 +20260311 040700;212.448000;212.501000;212.436000;212.497000;0 +20260311 040800;212.500000;212.556000;212.500000;212.556000;0 +20260311 040900;212.556000;212.626000;212.541000;212.624000;0 +20260311 041000;212.627000;212.645000;212.594000;212.610000;0 +20260311 041100;212.612000;212.625000;212.584000;212.607000;0 +20260311 041200;212.614000;212.640000;212.610000;212.638000;0 +20260311 041300;212.637000;212.654000;212.628000;212.649000;0 +20260311 041400;212.649000;212.673000;212.640000;212.645000;0 +20260311 041500;212.644000;212.689000;212.636000;212.683000;0 +20260311 041600;212.683000;212.693000;212.655000;212.675000;0 +20260311 041700;212.677000;212.708000;212.667000;212.667000;0 +20260311 041800;212.667000;212.671000;212.606000;212.606000;0 +20260311 041900;212.609000;212.630000;212.582000;212.583000;0 +20260311 042000;212.588000;212.633000;212.575000;212.628000;0 +20260311 042100;212.627000;212.633000;212.613000;212.620000;0 +20260311 042200;212.622000;212.641000;212.603000;212.614000;0 +20260311 042300;212.615000;212.619000;212.589000;212.606000;0 +20260311 042400;212.601000;212.637000;212.596000;212.617000;0 +20260311 042500;212.626000;212.640000;212.586000;212.586000;0 +20260311 042600;212.587000;212.589000;212.541000;212.542000;0 +20260311 042700;212.540000;212.566000;212.530000;212.564000;0 +20260311 042800;212.566000;212.569000;212.518000;212.525000;0 +20260311 042900;212.525000;212.532000;212.509000;212.514000;0 +20260311 043000;212.515000;212.566000;212.512000;212.557000;0 +20260311 043100;212.553000;212.608000;212.545000;212.608000;0 +20260311 043200;212.610000;212.613000;212.571000;212.574000;0 +20260311 043300;212.578000;212.613000;212.568000;212.603000;0 +20260311 043400;212.600000;212.617000;212.575000;212.614000;0 +20260311 043500;212.612000;212.634000;212.612000;212.625000;0 +20260311 043600;212.628000;212.640000;212.613000;212.627000;0 +20260311 043700;212.627000;212.627000;212.575000;212.581000;0 +20260311 043800;212.582000;212.627000;212.576000;212.627000;0 +20260311 043900;212.633000;212.640000;212.603000;212.614000;0 +20260311 044000;212.615000;212.684000;212.596000;212.673000;0 +20260311 044100;212.673000;212.689000;212.649000;212.651000;0 +20260311 044200;212.656000;212.667000;212.633000;212.634000;0 +20260311 044300;212.638000;212.663000;212.616000;212.618000;0 +20260311 044400;212.618000;212.635000;212.604000;212.619000;0 +20260311 044500;212.622000;212.645000;212.600000;212.613000;0 +20260311 044600;212.612000;212.618000;212.583000;212.604000;0 +20260311 044700;212.619000;212.669000;212.614000;212.665000;0 +20260311 044800;212.664000;212.670000;212.637000;212.648000;0 +20260311 044900;212.651000;212.665000;212.636000;212.651000;0 +20260311 045000;212.650000;212.659000;212.619000;212.621000;0 +20260311 045100;212.620000;212.639000;212.608000;212.631000;0 +20260311 045200;212.630000;212.640000;212.611000;212.630000;0 +20260311 045300;212.631000;212.653000;212.630000;212.634000;0 +20260311 045400;212.634000;212.641000;212.585000;212.597000;0 +20260311 045500;212.596000;212.650000;212.585000;212.650000;0 +20260311 045600;212.649000;212.651000;212.465000;212.500000;0 +20260311 045700;212.500000;212.576000;212.492000;212.549000;0 +20260311 045800;212.552000;212.630000;212.548000;212.617000;0 +20260311 045900;212.616000;212.619000;212.597000;212.598000;0 +20260311 050000;212.602000;212.611000;212.556000;212.588000;0 +20260311 050100;212.591000;212.616000;212.576000;212.582000;0 +20260311 050200;212.586000;212.615000;212.585000;212.594000;0 +20260311 050300;212.593000;212.626000;212.593000;212.626000;0 +20260311 050400;212.626000;212.669000;212.600000;212.653000;0 +20260311 050500;212.653000;212.667000;212.637000;212.652000;0 +20260311 050600;212.655000;212.659000;212.627000;212.647000;0 +20260311 050700;212.647000;212.657000;212.624000;212.633000;0 +20260311 050800;212.631000;212.633000;212.625000;212.632000;0 +20260311 050900;212.630000;212.659000;212.620000;212.648000;0 +20260311 051000;212.646000;212.655000;212.611000;212.613000;0 +20260311 051100;212.619000;212.644000;212.610000;212.638000;0 +20260311 051200;212.637000;212.639000;212.603000;212.621000;0 +20260311 051300;212.620000;212.627000;212.610000;212.613000;0 +20260311 051400;212.613000;212.643000;212.609000;212.630000;0 +20260311 051500;212.628000;212.686000;212.624000;212.686000;0 +20260311 051600;212.685000;212.689000;212.664000;212.668000;0 +20260311 051700;212.667000;212.695000;212.663000;212.694000;0 +20260311 051800;212.692000;212.693000;212.671000;212.679000;0 +20260311 051900;212.679000;212.693000;212.679000;212.690000;0 +20260311 052000;212.685000;212.694000;212.679000;212.690000;0 +20260311 052100;212.683000;212.708000;212.666000;212.708000;0 +20260311 052200;212.717000;212.825000;212.711000;212.813000;0 +20260311 052300;212.810000;212.874000;212.801000;212.824000;0 +20260311 052400;212.822000;212.856000;212.801000;212.801000;0 +20260311 052500;212.799000;212.836000;212.797000;212.830000;0 +20260311 052600;212.831000;212.847000;212.780000;212.795000;0 +20260311 052700;212.795000;212.832000;212.786000;212.826000;0 +20260311 052800;212.824000;212.841000;212.817000;212.839000;0 +20260311 052900;212.838000;212.838000;212.794000;212.813000;0 +20260311 053000;212.814000;212.840000;212.813000;212.822000;0 +20260311 053100;212.822000;212.858000;212.814000;212.851000;0 +20260311 053200;212.853000;212.871000;212.834000;212.857000;0 +20260311 053300;212.853000;212.866000;212.853000;212.857000;0 +20260311 053400;212.859000;212.871000;212.848000;212.856000;0 +20260311 053500;212.863000;212.879000;212.841000;212.847000;0 +20260311 053600;212.847000;212.875000;212.840000;212.846000;0 +20260311 053700;212.845000;212.865000;212.836000;212.859000;0 +20260311 053800;212.860000;212.866000;212.853000;212.859000;0 +20260311 053900;212.861000;212.865000;212.838000;212.839000;0 +20260311 054000;212.840000;212.874000;212.836000;212.871000;0 +20260311 054100;212.869000;212.870000;212.838000;212.851000;0 +20260311 054200;212.852000;212.860000;212.829000;212.840000;0 +20260311 054300;212.841000;212.843000;212.818000;212.832000;0 +20260311 054400;212.834000;212.842000;212.824000;212.834000;0 +20260311 054500;212.833000;212.839000;212.792000;212.792000;0 +20260311 054600;212.793000;212.799000;212.770000;212.780000;0 +20260311 054700;212.783000;212.788000;212.722000;212.730000;0 +20260311 054800;212.729000;212.734000;212.710000;212.722000;0 +20260311 054900;212.721000;212.765000;212.721000;212.762000;0 +20260311 055000;212.762000;212.779000;212.750000;212.767000;0 +20260311 055100;212.768000;212.821000;212.760000;212.811000;0 +20260311 055200;212.811000;212.828000;212.790000;212.798000;0 +20260311 055300;212.798000;212.811000;212.783000;212.802000;0 +20260311 055400;212.804000;212.808000;212.767000;212.772000;0 +20260311 055500;212.773000;212.800000;212.770000;212.791000;0 +20260311 055600;212.792000;212.803000;212.787000;212.799000;0 +20260311 055700;212.799000;212.828000;212.781000;212.828000;0 +20260311 055800;212.828000;212.835000;212.816000;212.818000;0 +20260311 055900;212.819000;212.832000;212.817000;212.824000;0 +20260311 060000;212.820000;212.845000;212.809000;212.831000;0 +20260311 060100;212.829000;212.839000;212.815000;212.834000;0 +20260311 060200;212.834000;212.834000;212.813000;212.821000;0 +20260311 060300;212.826000;212.837000;212.819000;212.824000;0 +20260311 060400;212.822000;212.828000;212.801000;212.816000;0 +20260311 060500;212.820000;212.831000;212.814000;212.820000;0 +20260311 060600;212.823000;212.832000;212.791000;212.808000;0 +20260311 060700;212.804000;212.827000;212.791000;212.819000;0 +20260311 060800;212.822000;212.845000;212.806000;212.820000;0 +20260311 060900;212.820000;212.847000;212.805000;212.812000;0 +20260311 061000;212.813000;212.825000;212.766000;212.772000;0 +20260311 061100;212.770000;212.777000;212.741000;212.741000;0 +20260311 061200;212.739000;212.747000;212.722000;212.735000;0 +20260311 061300;212.733000;212.743000;212.720000;212.724000;0 +20260311 061400;212.722000;212.793000;212.716000;212.789000;0 +20260311 061500;212.786000;212.799000;212.781000;212.794000;0 +20260311 061600;212.795000;212.818000;212.783000;212.802000;0 +20260311 061700;212.804000;212.822000;212.789000;212.796000;0 +20260311 061800;212.796000;212.796000;212.751000;212.755000;0 +20260311 061900;212.755000;212.760000;212.722000;212.738000;0 +20260311 062000;212.743000;212.746000;212.728000;212.742000;0 +20260311 062100;212.740000;212.771000;212.727000;212.764000;0 +20260311 062200;212.761000;212.769000;212.754000;212.765000;0 +20260311 062300;212.766000;212.802000;212.763000;212.802000;0 +20260311 062400;212.802000;212.813000;212.791000;212.794000;0 +20260311 062500;212.797000;212.802000;212.783000;212.791000;0 +20260311 062600;212.790000;212.823000;212.790000;212.816000;0 +20260311 062700;212.816000;212.818000;212.756000;212.766000;0 +20260311 062800;212.768000;212.771000;212.751000;212.756000;0 +20260311 062900;212.763000;212.783000;212.751000;212.774000;0 +20260311 063000;212.771000;212.783000;212.752000;212.753000;0 +20260311 063100;212.763000;212.784000;212.760000;212.765000;0 +20260311 063200;212.763000;212.775000;212.738000;212.738000;0 +20260311 063300;212.739000;212.752000;212.731000;212.732000;0 +20260311 063400;212.735000;212.772000;212.735000;212.760000;0 +20260311 063500;212.758000;212.782000;212.750000;212.774000;0 +20260311 063600;212.775000;212.786000;212.763000;212.778000;0 +20260311 063700;212.777000;212.782000;212.771000;212.774000;0 +20260311 063800;212.776000;212.793000;212.773000;212.776000;0 +20260311 063900;212.774000;212.809000;212.768000;212.803000;0 +20260311 064000;212.802000;212.811000;212.794000;212.806000;0 +20260311 064100;212.806000;212.836000;212.806000;212.836000;0 +20260311 064200;212.834000;212.868000;212.821000;212.855000;0 +20260311 064300;212.859000;212.862000;212.796000;212.799000;0 +20260311 064400;212.799000;212.825000;212.793000;212.822000;0 +20260311 064500;212.824000;212.835000;212.795000;212.802000;0 +20260311 064600;212.799000;212.799000;212.733000;212.763000;0 +20260311 064700;212.759000;212.769000;212.722000;212.742000;0 +20260311 064800;212.747000;212.807000;212.744000;212.805000;0 +20260311 064900;212.806000;212.850000;212.804000;212.804000;0 +20260311 065000;212.803000;212.974000;212.796000;212.879000;0 +20260311 065100;212.884000;212.936000;212.863000;212.921000;0 +20260311 065200;212.919000;212.943000;212.907000;212.907000;0 +20260311 065300;212.902000;212.904000;212.881000;212.904000;0 +20260311 065400;212.900000;212.907000;212.870000;212.901000;0 +20260311 065500;212.900000;212.900000;212.866000;212.884000;0 +20260311 065600;212.889000;212.889000;212.853000;212.865000;0 +20260311 065700;212.865000;212.878000;212.832000;212.832000;0 +20260311 065800;212.833000;212.874000;212.825000;212.861000;0 +20260311 065900;212.862000;212.872000;212.814000;212.824000;0 +20260311 070000;212.823000;212.847000;212.756000;212.800000;0 +20260311 070100;212.797000;212.862000;212.794000;212.850000;0 +20260311 070200;212.846000;212.883000;212.833000;212.882000;0 +20260311 070300;212.884000;212.893000;212.836000;212.843000;0 +20260311 070400;212.844000;212.849000;212.821000;212.842000;0 +20260311 070500;212.844000;212.863000;212.833000;212.858000;0 +20260311 070600;212.856000;212.908000;212.856000;212.863000;0 +20260311 070700;212.863000;212.887000;212.856000;212.856000;0 +20260311 070800;212.855000;212.867000;212.832000;212.840000;0 +20260311 070900;212.837000;212.840000;212.806000;212.813000;0 +20260311 071000;212.810000;212.853000;212.802000;212.853000;0 +20260311 071100;212.848000;212.848000;212.805000;212.823000;0 +20260311 071200;212.823000;212.847000;212.821000;212.832000;0 +20260311 071300;212.835000;212.846000;212.781000;212.785000;0 +20260311 071400;212.788000;212.803000;212.763000;212.793000;0 +20260311 071500;212.792000;212.809000;212.677000;212.687000;0 +20260311 071600;212.688000;212.696000;212.667000;212.691000;0 +20260311 071700;212.692000;212.720000;212.682000;212.715000;0 +20260311 071800;212.711000;212.719000;212.644000;212.648000;0 +20260311 071900;212.650000;212.650000;212.585000;212.596000;0 +20260311 072000;212.596000;212.621000;212.587000;212.613000;0 +20260311 072100;212.612000;212.651000;212.596000;212.636000;0 +20260311 072200;212.633000;212.693000;212.632000;212.683000;0 +20260311 072300;212.684000;212.687000;212.649000;212.669000;0 +20260311 072400;212.671000;212.678000;212.635000;212.640000;0 +20260311 072500;212.642000;212.645000;212.610000;212.631000;0 +20260311 072600;212.629000;212.651000;212.615000;212.640000;0 +20260311 072700;212.637000;212.667000;212.619000;212.637000;0 +20260311 072800;212.638000;212.653000;212.628000;212.629000;0 +20260311 072900;212.629000;212.714000;212.622000;212.689000;0 +20260311 073000;212.699000;212.746000;212.637000;212.705000;0 +20260311 073100;212.707000;212.724000;212.691000;212.692000;0 +20260311 073200;212.687000;212.701000;212.670000;212.686000;0 +20260311 073300;212.683000;212.698000;212.659000;212.673000;0 +20260311 073400;212.670000;212.681000;212.619000;212.631000;0 +20260311 073500;212.634000;212.684000;212.614000;212.643000;0 +20260311 073600;212.644000;212.666000;212.639000;212.641000;0 +20260311 073700;212.642000;212.664000;212.607000;212.607000;0 +20260311 073800;212.607000;212.637000;212.594000;212.606000;0 +20260311 073900;212.609000;212.634000;212.598000;212.615000;0 +20260311 074000;212.613000;212.663000;212.611000;212.659000;0 +20260311 074100;212.659000;212.659000;212.592000;212.597000;0 +20260311 074200;212.609000;212.617000;212.585000;212.596000;0 +20260311 074300;212.595000;212.626000;212.595000;212.625000;0 +20260311 074400;212.629000;212.639000;212.611000;212.628000;0 +20260311 074500;212.632000;212.632000;212.566000;212.575000;0 +20260311 074600;212.579000;212.592000;212.552000;212.554000;0 +20260311 074700;212.555000;212.577000;212.515000;212.562000;0 +20260311 074800;212.561000;212.577000;212.549000;212.563000;0 +20260311 074900;212.567000;212.570000;212.518000;212.529000;0 +20260311 075000;212.531000;212.550000;212.477000;212.487000;0 +20260311 075100;212.487000;212.500000;212.451000;212.453000;0 +20260311 075200;212.454000;212.528000;212.453000;212.528000;0 +20260311 075300;212.524000;212.550000;212.487000;212.490000;0 +20260311 075400;212.493000;212.505000;212.475000;212.498000;0 +20260311 075500;212.498000;212.556000;212.494000;212.536000;0 +20260311 075600;212.535000;212.547000;212.474000;212.502000;0 +20260311 075700;212.506000;212.506000;212.447000;212.491000;0 +20260311 075800;212.491000;212.511000;212.455000;212.494000;0 +20260311 075900;212.496000;212.533000;212.480000;212.518000;0 +20260311 080000;212.520000;212.544000;212.480000;212.509000;0 +20260311 080100;212.506000;212.546000;212.487000;212.513000;0 +20260311 080200;212.513000;212.531000;212.496000;212.514000;0 +20260311 080300;212.511000;212.526000;212.500000;212.523000;0 +20260311 080400;212.522000;212.555000;212.480000;212.484000;0 +20260311 080500;212.481000;212.507000;212.475000;212.484000;0 +20260311 080600;212.484000;212.529000;212.470000;212.519000;0 +20260311 080700;212.519000;212.552000;212.497000;212.513000;0 +20260311 080800;212.512000;212.586000;212.511000;212.583000;0 +20260311 080900;212.585000;212.636000;212.583000;212.636000;0 +20260311 081000;212.634000;212.647000;212.598000;212.635000;0 +20260311 081100;212.634000;212.674000;212.628000;212.656000;0 +20260311 081200;212.655000;212.668000;212.617000;212.634000;0 +20260311 081300;212.633000;212.660000;212.629000;212.647000;0 +20260311 081400;212.646000;212.647000;212.605000;212.621000;0 +20260311 081500;212.619000;212.635000;212.597000;212.632000;0 +20260311 081600;212.632000;212.684000;212.630000;212.682000;0 +20260311 081700;212.682000;212.704000;212.666000;212.679000;0 +20260311 081800;212.680000;212.681000;212.656000;212.666000;0 +20260311 081900;212.664000;212.719000;212.656000;212.712000;0 +20260311 082000;212.712000;212.747000;212.701000;212.741000;0 +20260311 082100;212.739000;212.746000;212.709000;212.738000;0 +20260311 082200;212.738000;212.745000;212.725000;212.733000;0 +20260311 082300;212.733000;212.733000;212.683000;212.719000;0 +20260311 082400;212.718000;212.724000;212.705000;212.710000;0 +20260311 082500;212.709000;212.741000;212.696000;212.699000;0 +20260311 082600;212.700000;212.706000;212.669000;212.669000;0 +20260311 082700;212.669000;212.690000;212.659000;212.688000;0 +20260311 082800;212.687000;212.704000;212.683000;212.695000;0 +20260311 082900;212.694000;212.708000;212.688000;212.691000;0 +20260311 083000;212.694000;212.695000;212.659000;212.694000;0 +20260311 083100;212.694000;212.711000;212.667000;212.681000;0 +20260311 083200;212.681000;212.705000;212.673000;212.697000;0 +20260311 083300;212.697000;212.704000;212.631000;212.646000;0 +20260311 083400;212.647000;212.683000;212.644000;212.665000;0 +20260311 083500;212.669000;212.688000;212.654000;212.660000;0 +20260311 083600;212.660000;212.679000;212.639000;212.639000;0 +20260311 083700;212.647000;212.678000;212.644000;212.677000;0 +20260311 083800;212.677000;212.677000;212.638000;212.638000;0 +20260311 083900;212.642000;212.660000;212.631000;212.637000;0 +20260311 084000;212.639000;212.652000;212.629000;212.631000;0 +20260311 084100;212.632000;212.632000;212.595000;212.595000;0 +20260311 084200;212.595000;212.607000;212.570000;212.598000;0 +20260311 084300;212.600000;212.603000;212.570000;212.579000;0 +20260311 084400;212.576000;212.607000;212.556000;212.607000;0 +20260311 084500;212.607000;212.621000;212.592000;212.606000;0 +20260311 084600;212.604000;212.630000;212.589000;212.594000;0 +20260311 084700;212.596000;212.596000;212.556000;212.573000;0 +20260311 084800;212.573000;212.601000;212.564000;212.585000;0 +20260311 084900;212.585000;212.599000;212.571000;212.592000;0 +20260311 085000;212.589000;212.643000;212.586000;212.628000;0 +20260311 085100;212.627000;212.642000;212.613000;212.630000;0 +20260311 085200;212.631000;212.650000;212.625000;212.647000;0 +20260311 085300;212.648000;212.694000;212.643000;212.649000;0 +20260311 085400;212.647000;212.693000;212.632000;212.671000;0 +20260311 085500;212.675000;212.681000;212.650000;212.653000;0 +20260311 085600;212.656000;212.671000;212.635000;212.663000;0 +20260311 085700;212.662000;212.683000;212.654000;212.671000;0 +20260311 085800;212.678000;212.703000;212.655000;212.670000;0 +20260311 085900;212.668000;212.680000;212.637000;212.652000;0 +20260311 090000;212.650000;212.680000;212.626000;212.654000;0 +20260311 090100;212.655000;212.860000;212.634000;212.813000;0 +20260311 090200;212.811000;212.831000;212.749000;212.807000;0 +20260311 090300;212.810000;212.810000;212.691000;212.760000;0 +20260311 090400;212.760000;212.827000;212.749000;212.815000;0 +20260311 090500;212.815000;212.860000;212.777000;212.782000;0 +20260311 090600;212.783000;212.816000;212.762000;212.788000;0 +20260311 090700;212.785000;212.869000;212.783000;212.816000;0 +20260311 090800;212.814000;212.867000;212.791000;212.849000;0 +20260311 090900;212.853000;212.859000;212.792000;212.855000;0 +20260311 091000;212.853000;212.885000;212.845000;212.853000;0 +20260311 091100;212.854000;212.869000;212.824000;212.864000;0 +20260311 091200;212.869000;212.902000;212.839000;212.841000;0 +20260311 091300;212.843000;212.912000;212.837000;212.906000;0 +20260311 091400;212.905000;212.919000;212.882000;212.909000;0 +20260311 091500;212.908000;212.923000;212.854000;212.857000;0 +20260311 091600;212.859000;212.876000;212.848000;212.862000;0 +20260311 091700;212.865000;212.921000;212.862000;212.921000;0 +20260311 091800;212.921000;212.926000;212.886000;212.914000;0 +20260311 091900;212.917000;212.927000;212.896000;212.897000;0 +20260311 092000;212.899000;212.916000;212.881000;212.916000;0 +20260311 092100;212.916000;212.933000;212.906000;212.925000;0 +20260311 092200;212.924000;212.945000;212.895000;212.942000;0 +20260311 092300;212.941000;212.967000;212.933000;212.946000;0 +20260311 092400;212.949000;212.952000;212.898000;212.920000;0 +20260311 092500;212.919000;212.923000;212.875000;212.898000;0 +20260311 092600;212.897000;212.897000;212.864000;212.885000;0 +20260311 092700;212.885000;212.887000;212.864000;212.875000;0 +20260311 092800;212.875000;212.936000;212.861000;212.935000;0 +20260311 092900;212.935000;212.977000;212.928000;212.971000;0 +20260311 093000;212.974000;213.012000;212.951000;213.011000;0 +20260311 093100;213.007000;213.010000;212.937000;212.941000;0 +20260311 093200;212.941000;212.967000;212.906000;212.917000;0 +20260311 093300;212.917000;212.936000;212.904000;212.909000;0 +20260311 093400;212.908000;212.921000;212.886000;212.920000;0 +20260311 093500;212.918000;212.964000;212.914000;212.942000;0 +20260311 093600;212.946000;212.971000;212.941000;212.948000;0 +20260311 093700;212.948000;212.960000;212.929000;212.935000;0 +20260311 093800;212.934000;212.966000;212.932000;212.947000;0 +20260311 093900;212.947000;212.974000;212.932000;212.973000;0 +20260311 094000;212.969000;212.988000;212.955000;212.975000;0 +20260311 094100;212.974000;212.979000;212.917000;212.919000;0 +20260311 094200;212.919000;212.944000;212.908000;212.908000;0 +20260311 094300;212.908000;212.943000;212.908000;212.926000;0 +20260311 094400;212.925000;212.956000;212.922000;212.922000;0 +20260311 094500;212.922000;212.922000;212.884000;212.904000;0 +20260311 094600;212.905000;212.921000;212.867000;212.867000;0 +20260311 094700;212.869000;212.925000;212.866000;212.925000;0 +20260311 094800;212.922000;212.987000;212.922000;212.983000;0 +20260311 094900;212.980000;213.008000;212.969000;212.972000;0 +20260311 095000;212.974000;213.015000;212.961000;213.013000;0 +20260311 095100;213.007000;213.062000;213.007000;213.058000;0 +20260311 095200;213.060000;213.067000;213.010000;213.020000;0 +20260311 095300;213.019000;213.026000;213.000000;213.017000;0 +20260311 095400;213.013000;213.044000;213.003000;213.043000;0 +20260311 095500;213.043000;213.051000;213.007000;213.007000;0 +20260311 095600;213.007000;213.028000;213.006000;213.014000;0 +20260311 095700;213.019000;213.063000;213.012000;213.056000;0 +20260311 095800;213.055000;213.055000;213.024000;213.027000;0 +20260311 095900;213.026000;213.032000;212.994000;213.005000;0 +20260311 100000;213.005000;213.047000;212.990000;213.040000;0 +20260311 100100;213.041000;213.053000;212.985000;212.985000;0 +20260311 100200;212.982000;212.996000;212.940000;212.944000;0 +20260311 100300;212.944000;212.974000;212.938000;212.955000;0 +20260311 100400;212.959000;213.000000;212.953000;212.996000;0 +20260311 100500;212.999000;213.001000;212.937000;212.952000;0 +20260311 100600;212.952000;212.959000;212.943000;212.948000;0 +20260311 100700;212.946000;212.951000;212.928000;212.932000;0 +20260311 100800;212.930000;212.961000;212.926000;212.958000;0 +20260311 100900;212.958000;213.000000;212.958000;212.982000;0 +20260311 101000;212.978000;212.995000;212.960000;212.981000;0 +20260311 101100;212.986000;212.986000;212.951000;212.963000;0 +20260311 101200;212.963000;212.973000;212.942000;212.960000;0 +20260311 101300;212.960000;212.960000;212.926000;212.927000;0 +20260311 101400;212.928000;212.958000;212.918000;212.918000;0 +20260311 101500;212.916000;212.936000;212.873000;212.873000;0 +20260311 101600;212.874000;212.909000;212.870000;212.901000;0 +20260311 101700;212.902000;212.909000;212.875000;212.884000;0 +20260311 101800;212.885000;212.917000;212.866000;212.873000;0 +20260311 101900;212.874000;212.882000;212.858000;212.872000;0 +20260311 102000;212.871000;212.889000;212.863000;212.884000;0 +20260311 102100;212.883000;212.887000;212.851000;212.862000;0 +20260311 102200;212.861000;212.898000;212.854000;212.892000;0 +20260311 102300;212.893000;212.933000;212.884000;212.928000;0 +20260311 102400;212.926000;212.945000;212.920000;212.932000;0 +20260311 102500;212.932000;212.961000;212.932000;212.950000;0 +20260311 102600;212.949000;212.960000;212.927000;212.941000;0 +20260311 102700;212.941000;212.957000;212.920000;212.955000;0 +20260311 102800;212.954000;212.980000;212.954000;212.961000;0 +20260311 102900;212.962000;212.962000;212.935000;212.944000;0 +20260311 103000;212.941000;212.945000;212.895000;212.901000;0 +20260311 103100;212.901000;212.901000;212.855000;212.858000;0 +20260311 103200;212.858000;212.884000;212.854000;212.871000;0 +20260311 103300;212.871000;212.901000;212.858000;212.898000;0 +20260311 103400;212.896000;212.923000;212.893000;212.904000;0 +20260311 103500;212.905000;212.936000;212.900000;212.919000;0 +20260311 103600;212.920000;212.938000;212.887000;212.889000;0 +20260311 103700;212.889000;212.898000;212.866000;212.872000;0 +20260311 103800;212.869000;212.882000;212.858000;212.875000;0 +20260311 103900;212.875000;212.882000;212.839000;212.843000;0 +20260311 104000;212.847000;212.861000;212.825000;212.843000;0 +20260311 104100;212.844000;212.855000;212.832000;212.834000;0 +20260311 104200;212.834000;212.848000;212.826000;212.840000;0 +20260311 104300;212.841000;212.848000;212.819000;212.834000;0 +20260311 104400;212.834000;212.835000;212.810000;212.826000;0 +20260311 104500;212.827000;212.829000;212.808000;212.813000;0 +20260311 104600;212.813000;212.836000;212.805000;212.836000;0 +20260311 104700;212.835000;212.835000;212.783000;212.791000;0 +20260311 104800;212.794000;212.794000;212.749000;212.762000;0 +20260311 104900;212.759000;212.776000;212.742000;212.753000;0 +20260311 105000;212.753000;212.813000;212.751000;212.793000;0 +20260311 105100;212.796000;212.881000;212.793000;212.832000;0 +20260311 105200;212.833000;212.850000;212.796000;212.811000;0 +20260311 105300;212.811000;212.866000;212.810000;212.851000;0 +20260311 105400;212.848000;212.855000;212.834000;212.839000;0 +20260311 105500;212.840000;212.865000;212.823000;212.831000;0 +20260311 105600;212.830000;212.837000;212.797000;212.802000;0 +20260311 105700;212.802000;212.832000;212.798000;212.829000;0 +20260311 105800;212.827000;212.831000;212.814000;212.826000;0 +20260311 105900;212.826000;212.828000;212.787000;212.790000;0 +20260311 110000;212.793000;212.795000;212.759000;212.759000;0 +20260311 110100;212.760000;212.833000;212.758000;212.824000;0 +20260311 110200;212.823000;212.848000;212.813000;212.835000;0 +20260311 110300;212.833000;212.861000;212.831000;212.835000;0 +20260311 110400;212.834000;212.834000;212.774000;212.774000;0 +20260311 110500;212.776000;212.793000;212.769000;212.772000;0 +20260311 110600;212.775000;212.782000;212.756000;212.765000;0 +20260311 110700;212.763000;212.801000;212.757000;212.801000;0 +20260311 110800;212.805000;212.823000;212.792000;212.808000;0 +20260311 110900;212.809000;212.834000;212.809000;212.820000;0 +20260311 111000;212.821000;212.866000;212.817000;212.861000;0 +20260311 111100;212.869000;212.891000;212.854000;212.862000;0 +20260311 111200;212.863000;212.884000;212.836000;212.883000;0 +20260311 111300;212.883000;212.908000;212.869000;212.900000;0 +20260311 111400;212.900000;212.927000;212.878000;212.918000;0 +20260311 111500;212.917000;212.932000;212.881000;212.881000;0 +20260311 111600;212.886000;212.893000;212.857000;212.880000;0 +20260311 111700;212.883000;212.903000;212.868000;212.887000;0 +20260311 111800;212.888000;212.917000;212.887000;212.906000;0 +20260311 111900;212.906000;212.906000;212.843000;212.843000;0 +20260311 112000;212.843000;212.884000;212.841000;212.859000;0 +20260311 112100;212.859000;212.868000;212.833000;212.833000;0 +20260311 112200;212.834000;212.856000;212.829000;212.849000;0 +20260311 112300;212.848000;212.898000;212.848000;212.867000;0 +20260311 112400;212.869000;212.879000;212.858000;212.862000;0 +20260311 112500;212.860000;212.882000;212.856000;212.865000;0 +20260311 112600;212.865000;212.865000;212.843000;212.858000;0 +20260311 112700;212.859000;212.869000;212.848000;212.848000;0 +20260311 112800;212.847000;212.860000;212.839000;212.859000;0 +20260311 112900;212.861000;212.883000;212.843000;212.880000;0 +20260311 113000;212.877000;212.893000;212.830000;212.890000;0 +20260311 113100;212.890000;212.937000;212.888000;212.937000;0 +20260311 113200;212.938000;212.956000;212.918000;212.948000;0 +20260311 113300;212.948000;212.948000;212.913000;212.939000;0 +20260311 113400;212.939000;212.974000;212.933000;212.959000;0 +20260311 113500;212.961000;212.961000;212.915000;212.933000;0 +20260311 113600;212.935000;212.948000;212.917000;212.934000;0 +20260311 113700;212.935000;212.964000;212.930000;212.964000;0 +20260311 113800;212.959000;212.963000;212.926000;212.937000;0 +20260311 113900;212.934000;212.937000;212.925000;212.937000;0 +20260311 114000;212.949000;212.966000;212.942000;212.957000;0 +20260311 114100;212.961000;212.977000;212.955000;212.969000;0 +20260311 114200;212.969000;212.973000;212.951000;212.966000;0 +20260311 114300;212.966000;212.971000;212.946000;212.956000;0 +20260311 114400;212.953000;212.965000;212.945000;212.948000;0 +20260311 114500;212.948000;212.949000;212.932000;212.941000;0 +20260311 114600;212.941000;212.963000;212.936000;212.955000;0 +20260311 114700;212.954000;212.969000;212.954000;212.963000;0 +20260311 114800;212.962000;212.962000;212.926000;212.932000;0 +20260311 114900;212.932000;212.954000;212.917000;212.953000;0 +20260311 115000;212.953000;212.982000;212.953000;212.968000;0 +20260311 115100;212.969000;212.985000;212.969000;212.984000;0 +20260311 115200;212.992000;212.995000;212.971000;212.991000;0 +20260311 115300;212.989000;212.995000;212.977000;212.994000;0 +20260311 115400;212.995000;212.996000;212.968000;212.970000;0 +20260311 115500;212.969000;213.017000;212.969000;212.989000;0 +20260311 115600;212.989000;213.030000;212.984000;213.028000;0 +20260311 115700;213.028000;213.029000;212.987000;212.994000;0 +20260311 115800;212.994000;213.009000;212.988000;213.007000;0 +20260311 115900;213.007000;213.016000;212.994000;212.994000;0 +20260311 120000;212.995000;212.997000;212.980000;212.995000;0 +20260311 120100;212.997000;212.998000;212.985000;212.991000;0 +20260311 120200;212.990000;212.998000;212.963000;212.980000;0 +20260311 120300;212.977000;213.001000;212.977000;213.001000;0 +20260311 120400;213.000000;213.004000;212.977000;212.982000;0 +20260311 120500;212.984000;213.010000;212.977000;213.009000;0 +20260311 120600;213.010000;213.026000;212.992000;213.020000;0 +20260311 120700;213.020000;213.036000;213.017000;213.034000;0 +20260311 120800;213.036000;213.037000;213.009000;213.012000;0 +20260311 120900;213.012000;213.030000;213.011000;213.028000;0 +20260311 121000;213.024000;213.028000;213.003000;213.010000;0 +20260311 121100;213.010000;213.021000;212.998000;213.007000;0 +20260311 121200;213.006000;213.009000;212.986000;212.989000;0 +20260311 121300;212.988000;213.015000;212.984000;213.012000;0 +20260311 121400;213.016000;213.020000;212.994000;213.009000;0 +20260311 121500;213.008000;213.020000;213.001000;213.020000;0 +20260311 121600;213.023000;213.035000;213.017000;213.019000;0 +20260311 121700;213.025000;213.027000;213.006000;213.027000;0 +20260311 121800;213.025000;213.025000;212.982000;212.982000;0 +20260311 121900;212.984000;213.047000;212.974000;213.010000;0 +20260311 122000;213.007000;213.049000;213.007000;213.036000;0 +20260311 122100;213.040000;213.060000;213.021000;213.049000;0 +20260311 122200;213.055000;213.075000;213.037000;213.073000;0 +20260311 122300;213.073000;213.087000;213.070000;213.086000;0 +20260311 122400;213.086000;213.094000;213.075000;213.093000;0 +20260311 122500;213.093000;213.134000;213.090000;213.134000;0 +20260311 122600;213.130000;213.152000;213.129000;213.150000;0 +20260311 122700;213.149000;213.189000;213.149000;213.176000;0 +20260311 122800;213.176000;213.182000;213.148000;213.149000;0 +20260311 122900;213.155000;213.174000;213.138000;213.174000;0 +20260311 123000;213.176000;213.190000;213.156000;213.163000;0 +20260311 123100;213.166000;213.176000;213.138000;213.143000;0 +20260311 123200;213.143000;213.154000;213.134000;213.140000;0 +20260311 123300;213.141000;213.141000;213.115000;213.115000;0 +20260311 123400;213.114000;213.121000;213.107000;213.115000;0 +20260311 123500;213.112000;213.120000;213.096000;213.096000;0 +20260311 123600;213.103000;213.104000;213.060000;213.068000;0 +20260311 123700;213.068000;213.081000;212.995000;213.000000;0 +20260311 123800;213.000000;213.055000;212.978000;213.052000;0 +20260311 123900;213.053000;213.118000;213.053000;213.090000;0 +20260311 124000;213.090000;213.105000;213.077000;213.079000;0 +20260311 124100;213.084000;213.098000;213.078000;213.083000;0 +20260311 124200;213.082000;213.088000;213.059000;213.086000;0 +20260311 124300;213.088000;213.091000;213.055000;213.055000;0 +20260311 124400;213.058000;213.068000;213.041000;213.041000;0 +20260311 124500;213.043000;213.051000;213.030000;213.042000;0 +20260311 124600;213.044000;213.051000;213.022000;213.048000;0 +20260311 124700;213.051000;213.055000;213.023000;213.037000;0 +20260311 124800;213.033000;213.033000;213.006000;213.018000;0 +20260311 124900;213.019000;213.032000;212.997000;213.025000;0 +20260311 125000;213.027000;213.059000;213.024000;213.055000;0 +20260311 125100;213.056000;213.057000;213.019000;213.023000;0 +20260311 125200;213.022000;213.038000;213.018000;213.018000;0 +20260311 125300;213.019000;213.025000;213.000000;213.000000;0 +20260311 125400;213.003000;213.008000;212.986000;212.988000;0 +20260311 125500;212.991000;213.004000;212.972000;213.004000;0 +20260311 125600;213.000000;213.013000;212.992000;213.003000;0 +20260311 125700;213.005000;213.019000;213.003000;213.010000;0 +20260311 125800;213.007000;213.030000;213.004000;213.026000;0 +20260311 125900;213.023000;213.033000;213.009000;213.013000;0 +20260311 130000;213.011000;213.019000;213.000000;213.010000;0 +20260311 130100;213.007000;213.020000;213.001000;213.011000;0 +20260311 130200;213.010000;213.031000;213.010000;213.016000;0 +20260311 130300;213.018000;213.025000;213.005000;213.016000;0 +20260311 130400;213.016000;213.036000;213.016000;213.030000;0 +20260311 130500;213.030000;213.035000;213.022000;213.023000;0 +20260311 130600;213.026000;213.029000;213.008000;213.008000;0 +20260311 130700;213.008000;213.020000;212.995000;213.019000;0 +20260311 130800;213.019000;213.020000;212.994000;213.002000;0 +20260311 130900;213.005000;213.008000;212.989000;212.998000;0 +20260311 131000;212.999000;213.012000;212.993000;213.007000;0 +20260311 131100;213.007000;213.019000;213.000000;213.012000;0 +20260311 131200;213.016000;213.017000;212.991000;213.007000;0 +20260311 131300;213.003000;213.045000;212.999000;213.044000;0 +20260311 131400;213.045000;213.060000;213.031000;213.059000;0 +20260311 131500;213.055000;213.080000;213.051000;213.059000;0 +20260311 131600;213.061000;213.074000;213.056000;213.069000;0 +20260311 131700;213.074000;213.077000;213.056000;213.071000;0 +20260311 131800;213.067000;213.101000;213.063000;213.098000;0 +20260311 131900;213.102000;213.105000;213.094000;213.105000;0 +20260311 132000;213.105000;213.111000;213.100000;213.108000;0 +20260311 132100;213.107000;213.135000;213.102000;213.134000;0 +20260311 132200;213.134000;213.134000;213.109000;213.116000;0 +20260311 132300;213.114000;213.140000;213.111000;213.140000;0 +20260311 132400;213.136000;213.163000;213.127000;213.163000;0 +20260311 132500;213.162000;213.162000;213.133000;213.136000;0 +20260311 132600;213.133000;213.136000;213.116000;213.126000;0 +20260311 132700;213.132000;213.152000;213.129000;213.146000;0 +20260311 132800;213.145000;213.178000;213.143000;213.172000;0 +20260311 132900;213.174000;213.179000;213.154000;213.167000;0 +20260311 133000;213.168000;213.179000;213.145000;213.178000;0 +20260311 133100;213.178000;213.207000;213.175000;213.202000;0 +20260311 133200;213.204000;213.216000;213.177000;213.189000;0 +20260311 133300;213.194000;213.200000;213.180000;213.200000;0 +20260311 133400;213.199000;213.203000;213.183000;213.202000;0 +20260311 133500;213.199000;213.214000;213.185000;213.191000;0 +20260311 133600;213.193000;213.202000;213.187000;213.191000;0 +20260311 133700;213.189000;213.198000;213.185000;213.194000;0 +20260311 133800;213.186000;213.187000;213.177000;213.183000;0 +20260311 133900;213.182000;213.193000;213.178000;213.188000;0 +20260311 134000;213.189000;213.191000;213.176000;213.183000;0 +20260311 134100;213.188000;213.188000;213.156000;213.160000;0 +20260311 134200;213.159000;213.160000;213.144000;213.148000;0 +20260311 134300;213.150000;213.150000;213.137000;213.147000;0 +20260311 134400;213.149000;213.154000;213.140000;213.152000;0 +20260311 134500;213.154000;213.167000;213.154000;213.164000;0 +20260311 134600;213.165000;213.184000;213.164000;213.183000;0 +20260311 134700;213.181000;213.181000;213.168000;213.173000;0 +20260311 134800;213.173000;213.177000;213.158000;213.161000;0 +20260311 134900;213.161000;213.163000;213.143000;213.143000;0 +20260311 135000;213.144000;213.157000;213.144000;213.151000;0 +20260311 135100;213.150000;213.170000;213.150000;213.167000;0 +20260311 135200;213.168000;213.190000;213.157000;213.185000;0 +20260311 135300;213.183000;213.185000;213.168000;213.181000;0 +20260311 135400;213.182000;213.201000;213.179000;213.199000;0 +20260311 135500;213.199000;213.215000;213.190000;213.195000;0 +20260311 135600;213.197000;213.202000;213.184000;213.191000;0 +20260311 135700;213.193000;213.195000;213.172000;213.172000;0 +20260311 135800;213.172000;213.188000;213.160000;213.184000;0 +20260311 135900;213.184000;213.201000;213.181000;213.199000;0 +20260311 140000;213.201000;213.203000;213.183000;213.190000;0 +20260311 140100;213.188000;213.223000;213.188000;213.207000;0 +20260311 140200;213.206000;213.211000;213.191000;213.194000;0 +20260311 140300;213.198000;213.205000;213.182000;213.201000;0 +20260311 140400;213.197000;213.201000;213.184000;213.191000;0 +20260311 140500;213.190000;213.191000;213.176000;213.177000;0 +20260311 140600;213.174000;213.178000;213.158000;213.172000;0 +20260311 140700;213.173000;213.192000;213.171000;213.187000;0 +20260311 140800;213.186000;213.198000;213.182000;213.182000;0 +20260311 140900;213.180000;213.187000;213.166000;213.169000;0 +20260311 141000;213.171000;213.176000;213.167000;213.173000;0 +20260311 141100;213.173000;213.177000;213.168000;213.175000;0 +20260311 141200;213.177000;213.180000;213.164000;213.179000;0 +20260311 141300;213.180000;213.189000;213.179000;213.183000;0 +20260311 141400;213.183000;213.192000;213.183000;213.184000;0 +20260311 141500;213.184000;213.185000;213.161000;213.167000;0 +20260311 141600;213.166000;213.181000;213.166000;213.174000;0 +20260311 141700;213.177000;213.187000;213.171000;213.185000;0 +20260311 141800;213.183000;213.188000;213.171000;213.183000;0 +20260311 141900;213.180000;213.190000;213.174000;213.188000;0 +20260311 142000;213.190000;213.197000;213.184000;213.196000;0 +20260311 142100;213.196000;213.200000;213.186000;213.186000;0 +20260311 142200;213.185000;213.193000;213.183000;213.189000;0 +20260311 142300;213.190000;213.198000;213.189000;213.194000;0 +20260311 142400;213.194000;213.215000;213.194000;213.215000;0 +20260311 142500;213.215000;213.250000;213.214000;213.249000;0 +20260311 142600;213.248000;213.248000;213.238000;213.238000;0 +20260311 142700;213.239000;213.239000;213.210000;213.215000;0 +20260311 142800;213.216000;213.216000;213.198000;213.206000;0 +20260311 142900;213.206000;213.214000;213.198000;213.214000;0 +20260311 143000;213.212000;213.226000;213.204000;213.220000;0 +20260311 143100;213.220000;213.230000;213.212000;213.217000;0 +20260311 143200;213.220000;213.234000;213.216000;213.233000;0 +20260311 143300;213.231000;213.236000;213.222000;213.232000;0 +20260311 143400;213.232000;213.254000;213.231000;213.252000;0 +20260311 143500;213.250000;213.261000;213.248000;213.250000;0 +20260311 143600;213.252000;213.252000;213.240000;213.242000;0 +20260311 143700;213.244000;213.250000;213.236000;213.250000;0 +20260311 143800;213.250000;213.263000;213.248000;213.262000;0 +20260311 143900;213.261000;213.274000;213.251000;213.272000;0 +20260311 144000;213.271000;213.280000;213.271000;213.280000;0 +20260311 144100;213.277000;213.284000;213.276000;213.281000;0 +20260311 144200;213.280000;213.284000;213.277000;213.279000;0 +20260311 144300;213.281000;213.281000;213.270000;213.270000;0 +20260311 144400;213.270000;213.272000;213.261000;213.263000;0 +20260311 144500;213.266000;213.272000;213.255000;213.257000;0 +20260311 144600;213.260000;213.261000;213.250000;213.260000;0 +20260311 144700;213.261000;213.262000;213.255000;213.258000;0 +20260311 144800;213.257000;213.267000;213.254000;213.262000;0 +20260311 144900;213.262000;213.270000;213.259000;213.267000;0 +20260311 145000;213.268000;213.271000;213.256000;213.266000;0 +20260311 145100;213.268000;213.286000;213.267000;213.274000;0 +20260311 145200;213.276000;213.288000;213.265000;213.287000;0 +20260311 145300;213.286000;213.292000;213.283000;213.285000;0 +20260311 145400;213.286000;213.296000;213.286000;213.290000;0 +20260311 145500;213.292000;213.298000;213.271000;213.279000;0 +20260311 145600;213.273000;213.279000;213.268000;213.270000;0 +20260311 145700;213.270000;213.279000;213.260000;213.271000;0 +20260311 145800;213.269000;213.269000;213.249000;213.260000;0 +20260311 145900;213.261000;213.288000;213.259000;213.275000;0 +20260311 150000;213.275000;213.279000;213.256000;213.256000;0 +20260311 150100;213.256000;213.259000;213.245000;213.256000;0 +20260311 150200;213.256000;213.256000;213.238000;213.241000;0 +20260311 150300;213.239000;213.267000;213.239000;213.252000;0 +20260311 150400;213.251000;213.262000;213.245000;213.250000;0 +20260311 150500;213.249000;213.251000;213.234000;213.251000;0 +20260311 150600;213.250000;213.260000;213.245000;213.257000;0 +20260311 150700;213.256000;213.272000;213.255000;213.270000;0 +20260311 150800;213.268000;213.268000;213.260000;213.261000;0 +20260311 150900;213.262000;213.266000;213.250000;213.266000;0 +20260311 151000;213.264000;213.264000;213.232000;213.232000;0 +20260311 151100;213.231000;213.250000;213.231000;213.250000;0 +20260311 151200;213.249000;213.256000;213.242000;213.246000;0 +20260311 151300;213.243000;213.246000;213.229000;213.242000;0 +20260311 151400;213.243000;213.247000;213.231000;213.239000;0 +20260311 151500;213.239000;213.243000;213.223000;213.226000;0 +20260311 151600;213.229000;213.230000;213.221000;213.227000;0 +20260311 151700;213.226000;213.237000;213.225000;213.232000;0 +20260311 151800;213.237000;213.264000;213.232000;213.255000;0 +20260311 151900;213.253000;213.259000;213.248000;213.249000;0 +20260311 152000;213.250000;213.263000;213.247000;213.253000;0 +20260311 152100;213.252000;213.255000;213.249000;213.250000;0 +20260311 152200;213.252000;213.260000;213.249000;213.249000;0 +20260311 152300;213.249000;213.249000;213.221000;213.223000;0 +20260311 152400;213.221000;213.237000;213.220000;213.221000;0 +20260311 152500;213.225000;213.232000;213.209000;213.209000;0 +20260311 152600;213.210000;213.218000;213.209000;213.215000;0 +20260311 152700;213.214000;213.219000;213.202000;213.217000;0 +20260311 152800;213.217000;213.225000;213.215000;213.225000;0 +20260311 152900;213.228000;213.229000;213.217000;213.218000;0 +20260311 153000;213.221000;213.228000;213.221000;213.225000;0 +20260311 153100;213.227000;213.228000;213.223000;213.226000;0 +20260311 153200;213.223000;213.232000;213.216000;213.219000;0 +20260311 153300;213.219000;213.220000;213.215000;213.218000;0 +20260311 153400;213.221000;213.225000;213.218000;213.218000;0 +20260311 153500;213.215000;213.227000;213.213000;213.213000;0 +20260311 153600;213.214000;213.235000;213.211000;213.228000;0 +20260311 153700;213.227000;213.238000;213.221000;213.238000;0 +20260311 153800;213.236000;213.242000;213.231000;213.238000;0 +20260311 153900;213.237000;213.239000;213.232000;213.235000;0 +20260311 154000;213.238000;213.249000;213.234000;213.246000;0 +20260311 154100;213.244000;213.254000;213.234000;213.234000;0 +20260311 154200;213.230000;213.234000;213.204000;213.230000;0 +20260311 154300;213.233000;213.233000;213.220000;213.220000;0 +20260311 154400;213.219000;213.221000;213.191000;213.204000;0 +20260311 154500;213.205000;213.205000;213.189000;213.192000;0 +20260311 154600;213.193000;213.193000;213.182000;213.186000;0 +20260311 154700;213.189000;213.189000;213.164000;213.182000;0 +20260311 154800;213.185000;213.186000;213.161000;213.163000;0 +20260311 154900;213.162000;213.186000;213.162000;213.184000;0 +20260311 155000;213.187000;213.192000;213.175000;213.175000;0 +20260311 155100;213.178000;213.199000;213.178000;213.187000;0 +20260311 155200;213.186000;213.192000;213.186000;213.192000;0 +20260311 155300;213.192000;213.195000;213.192000;213.194000;0 +20260311 155400;213.203000;213.203000;213.176000;213.183000;0 +20260311 155500;213.181000;213.181000;213.165000;213.173000;0 +20260311 155600;213.172000;213.176000;213.158000;213.169000;0 +20260311 155700;213.165000;213.183000;213.159000;213.174000;0 +20260311 155800;213.174000;213.200000;213.173000;213.192000;0 +20260311 155900;213.189000;213.193000;213.156000;213.161000;0 +20260311 160000;213.154000;213.154000;213.100000;213.100000;0 +20260311 160100;213.100000;213.100000;213.096000;213.096000;0 +20260311 160300;213.096000;213.096000;213.094000;213.094000;0 +20260311 160400;213.094000;213.094000;213.094000;213.094000;0 +20260311 160500;213.072000;213.086000;213.072000;213.086000;0 +20260311 160600;213.086000;213.132000;213.076000;213.076000;0 +20260311 160700;213.086000;213.086000;213.084000;213.084000;0 +20260311 160800;213.084000;213.086000;213.084000;213.085000;0 +20260311 160900;213.085000;213.086000;213.083000;213.085000;0 +20260311 161000;213.091000;213.092000;213.071000;213.090000;0 +20260311 161100;213.090000;213.090000;213.088000;213.088000;0 +20260311 161200;213.092000;213.098000;213.084000;213.096000;0 +20260311 161300;213.096000;213.100000;213.095000;213.095000;0 +20260311 161400;213.095000;213.098000;213.095000;213.098000;0 +20260311 161500;213.099000;213.100000;213.098000;213.099000;0 +20260311 161600;213.099000;213.099000;213.094000;213.098000;0 +20260311 161700;213.099000;213.109000;213.096000;213.108000;0 +20260311 161800;213.108000;213.109000;213.100000;213.100000;0 +20260311 161900;213.102000;213.106000;213.102000;213.105000;0 +20260311 162000;213.105000;213.105000;213.097000;213.097000;0 +20260311 162100;213.091000;213.091000;213.087000;213.089000;0 +20260311 162200;213.090000;213.093000;213.089000;213.092000;0 +20260311 162300;213.089000;213.090000;213.086000;213.089000;0 +20260311 162400;213.090000;213.090000;213.089000;213.089000;0 +20260311 162500;213.091000;213.103000;213.091000;213.103000;0 +20260311 162600;213.103000;213.104000;213.090000;213.091000;0 +20260311 162700;213.105000;213.108000;213.104000;213.108000;0 +20260311 162800;213.108000;213.108000;213.085000;213.106000;0 +20260311 162900;213.106000;213.106000;213.100000;213.100000;0 +20260311 163000;213.100000;213.108000;213.080000;213.080000;0 +20260311 163100;213.080000;213.081000;213.078000;213.080000;0 +20260311 163200;213.083000;213.091000;213.083000;213.090000;0 +20260311 163300;213.085000;213.086000;213.084000;213.084000;0 +20260311 163400;213.084000;213.085000;213.084000;213.084000;0 +20260311 163500;213.069000;213.078000;213.064000;213.067000;0 +20260311 163600;213.067000;213.081000;213.067000;213.069000;0 +20260311 163700;213.070000;213.072000;213.069000;213.070000;0 +20260311 163800;213.068000;213.084000;213.067000;213.084000;0 +20260311 163900;213.073000;213.077000;213.067000;213.067000;0 +20260311 164000;213.069000;213.086000;213.046000;213.046000;0 +20260311 164100;213.062000;213.062000;213.026000;213.044000;0 +20260311 164200;213.044000;213.058000;213.044000;213.058000;0 +20260311 164300;213.059000;213.073000;213.042000;213.052000;0 +20260311 164400;213.058000;213.085000;213.051000;213.052000;0 +20260311 164500;213.051000;213.051000;213.044000;213.044000;0 +20260311 164600;213.044000;213.047000;213.042000;213.043000;0 +20260311 164700;213.043000;213.045000;213.043000;213.043000;0 +20260311 164800;213.043000;213.087000;213.043000;213.076000;0 +20260311 164900;213.086000;213.091000;213.060000;213.066000;0 +20260311 165000;213.082000;213.087000;213.063000;213.074000;0 +20260311 165100;213.085000;213.094000;213.070000;213.077000;0 +20260311 165200;213.080000;213.095000;213.071000;213.094000;0 +20260311 165300;213.094000;213.096000;213.072000;213.091000;0 +20260311 165400;213.091000;213.092000;213.076000;213.086000;0 +20260311 165500;213.086000;213.087000;213.073000;213.083000;0 +20260311 165600;213.078000;213.087000;213.056000;213.070000;0 +20260311 165700;213.070000;213.071000;212.888000;212.949000;0 +20260311 165800;212.955000;212.977000;212.952000;212.960000;0 +20260311 170000;213.162000;213.191000;213.082000;213.099000;0 +20260311 170100;213.099000;213.105000;213.087000;213.100000;0 +20260311 170200;213.100000;213.100000;213.041000;213.054000;0 +20260311 170300;213.055000;213.059000;213.041000;213.048000;0 +20260311 170400;213.048000;213.052000;213.038000;213.038000;0 +20260311 170500;213.038000;213.038000;213.006000;213.010000;0 +20260311 170600;213.010000;213.057000;213.010000;213.051000;0 +20260311 170700;213.051000;213.056000;213.036000;213.037000;0 +20260311 170800;213.037000;213.043000;213.010000;213.010000;0 +20260311 170900;213.010000;213.037000;213.003000;213.025000;0 +20260311 171000;213.025000;213.044000;213.006000;213.010000;0 +20260311 171100;213.011000;213.011000;212.995000;212.999000;0 +20260311 171200;212.999000;213.044000;212.995000;213.036000;0 +20260311 171300;213.023000;213.032000;213.007000;213.022000;0 +20260311 171400;213.043000;213.053000;213.019000;213.048000;0 +20260311 171500;213.048000;213.048000;212.990000;213.000000;0 +20260311 171600;213.000000;213.018000;212.990000;213.017000;0 +20260311 171700;213.016000;213.035000;213.005000;213.012000;0 +20260311 171800;213.012000;213.035000;213.004000;213.004000;0 +20260311 171900;213.004000;213.005000;212.961000;212.969000;0 +20260311 172000;212.977000;213.010000;212.968000;213.002000;0 +20260311 172100;213.003000;213.009000;212.976000;212.992000;0 +20260311 172200;212.991000;213.044000;212.991000;213.029000;0 +20260311 172300;213.029000;213.054000;213.023000;213.033000;0 +20260311 172400;213.049000;213.049000;212.980000;212.987000;0 +20260311 172500;212.980000;213.014000;212.980000;213.008000;0 +20260311 172600;213.016000;213.019000;212.979000;213.019000;0 +20260311 172700;213.011000;213.022000;212.970000;212.994000;0 +20260311 172800;212.994000;212.996000;212.951000;212.952000;0 +20260311 172900;212.954000;212.975000;212.950000;212.962000;0 +20260311 173000;212.958000;213.004000;212.958000;212.990000;0 +20260311 173100;212.989000;212.998000;212.977000;212.984000;0 +20260311 173200;212.984000;212.998000;212.981000;212.987000;0 +20260311 173300;212.989000;212.994000;212.984000;212.990000;0 +20260311 173400;212.989000;212.993000;212.953000;212.964000;0 +20260311 173500;212.965000;212.984000;212.959000;212.972000;0 +20260311 173600;212.973000;212.984000;212.962000;212.964000;0 +20260311 173700;212.964000;212.968000;212.946000;212.952000;0 +20260311 173800;212.951000;212.954000;212.930000;212.936000;0 +20260311 173900;212.936000;212.946000;212.928000;212.932000;0 +20260311 174000;212.932000;212.935000;212.916000;212.916000;0 +20260311 174100;212.919000;212.929000;212.907000;212.915000;0 +20260311 174200;212.916000;212.923000;212.906000;212.910000;0 +20260311 174300;212.911000;212.922000;212.905000;212.914000;0 +20260311 174400;212.914000;212.927000;212.909000;212.914000;0 +20260311 174500;212.914000;212.916000;212.875000;212.883000;0 +20260311 174600;212.885000;212.900000;212.872000;212.894000;0 +20260311 174700;212.893000;212.901000;212.880000;212.897000;0 +20260311 174800;212.898000;212.902000;212.888000;212.894000;0 +20260311 174900;212.894000;212.908000;212.883000;212.896000;0 +20260311 175000;212.892000;212.895000;212.867000;212.867000;0 +20260311 175100;212.865000;212.869000;212.857000;212.860000;0 +20260311 175200;212.861000;212.873000;212.857000;212.868000;0 +20260311 175300;212.868000;212.876000;212.866000;212.869000;0 +20260311 175400;212.869000;212.887000;212.865000;212.871000;0 +20260311 175500;212.872000;212.889000;212.867000;212.870000;0 +20260311 175600;212.870000;212.873000;212.865000;212.868000;0 +20260311 175700;212.868000;212.873000;212.858000;212.866000;0 +20260311 175800;212.866000;212.878000;212.850000;212.854000;0 +20260311 175900;212.853000;212.869000;212.848000;212.861000;0 +20260311 180000;212.863000;212.891000;212.846000;212.857000;0 +20260311 180100;212.858000;212.876000;212.842000;212.855000;0 +20260311 180200;212.856000;212.862000;212.838000;212.850000;0 +20260311 180300;212.850000;212.873000;212.849000;212.855000;0 +20260311 180400;212.856000;212.870000;212.851000;212.870000;0 +20260311 180500;212.870000;212.889000;212.865000;212.874000;0 +20260311 180600;212.874000;212.884000;212.872000;212.876000;0 +20260311 180700;212.875000;212.906000;212.875000;212.904000;0 +20260311 180800;212.900000;212.906000;212.878000;212.880000;0 +20260311 180900;212.879000;212.887000;212.855000;212.863000;0 +20260311 181000;212.862000;212.878000;212.859000;212.870000;0 +20260311 181100;212.872000;212.937000;212.867000;212.936000;0 +20260311 181200;212.937000;212.965000;212.929000;212.964000;0 +20260311 181300;212.970000;212.974000;212.951000;212.951000;0 +20260311 181400;212.952000;212.965000;212.944000;212.956000;0 +20260311 181500;212.957000;212.964000;212.949000;212.954000;0 +20260311 181600;212.964000;212.976000;212.959000;212.968000;0 +20260311 181700;212.969000;212.980000;212.968000;212.978000;0 +20260311 181800;212.972000;212.980000;212.947000;212.962000;0 +20260311 181900;212.961000;212.998000;212.959000;212.990000;0 +20260311 182000;212.990000;212.990000;212.970000;212.971000;0 +20260311 182100;212.967000;213.002000;212.961000;213.002000;0 +20260311 182200;212.998000;212.998000;212.967000;212.975000;0 +20260311 182300;212.974000;212.981000;212.960000;212.960000;0 +20260311 182400;212.959000;212.971000;212.953000;212.959000;0 +20260311 182500;212.959000;212.964000;212.946000;212.947000;0 +20260311 182600;212.949000;212.953000;212.940000;212.949000;0 +20260311 182700;212.949000;212.951000;212.939000;212.942000;0 +20260311 182800;212.940000;212.943000;212.929000;212.937000;0 +20260311 182900;212.934000;212.944000;212.928000;212.929000;0 +20260311 183000;212.932000;212.935000;212.906000;212.913000;0 +20260311 183100;212.915000;212.921000;212.886000;212.886000;0 +20260311 183200;212.888000;212.896000;212.874000;212.896000;0 +20260311 183300;212.892000;212.896000;212.872000;212.884000;0 +20260311 183400;212.883000;212.884000;212.865000;212.880000;0 +20260311 183500;212.882000;212.888000;212.873000;212.875000;0 +20260311 183600;212.873000;212.888000;212.843000;212.852000;0 +20260311 183700;212.849000;212.878000;212.816000;212.821000;0 +20260311 183800;212.818000;212.851000;212.808000;212.851000;0 +20260311 183900;212.851000;212.883000;212.836000;212.848000;0 +20260311 184000;212.851000;212.866000;212.842000;212.847000;0 +20260311 184100;212.843000;212.852000;212.829000;212.848000;0 +20260311 184200;212.851000;212.862000;212.836000;212.848000;0 +20260311 184300;212.846000;212.860000;212.834000;212.857000;0 +20260311 184400;212.857000;212.862000;212.835000;212.849000;0 +20260311 184500;212.850000;212.852000;212.827000;212.831000;0 +20260311 184600;212.833000;212.850000;212.833000;212.844000;0 +20260311 184700;212.846000;212.853000;212.836000;212.842000;0 +20260311 184800;212.843000;212.845000;212.834000;212.841000;0 +20260311 184900;212.841000;212.859000;212.836000;212.859000;0 +20260311 185000;212.863000;212.872000;212.853000;212.865000;0 +20260311 185100;212.865000;212.879000;212.848000;212.860000;0 +20260311 185200;212.858000;212.880000;212.852000;212.871000;0 +20260311 185300;212.872000;212.884000;212.865000;212.883000;0 +20260311 185400;212.884000;212.897000;212.875000;212.884000;0 +20260311 185500;212.886000;212.893000;212.882000;212.893000;0 +20260311 185600;212.893000;212.894000;212.881000;212.890000;0 +20260311 185700;212.891000;212.891000;212.849000;212.866000;0 +20260311 185800;212.867000;212.883000;212.855000;212.869000;0 +20260311 185900;212.870000;212.888000;212.869000;212.887000;0 +20260311 190000;212.887000;212.959000;212.865000;212.949000;0 +20260311 190100;212.948000;212.956000;212.916000;212.942000;0 +20260311 190200;212.939000;212.953000;212.912000;212.941000;0 +20260311 190300;212.942000;212.970000;212.941000;212.961000;0 +20260311 190400;212.961000;212.988000;212.957000;212.974000;0 +20260311 190500;212.974000;212.989000;212.938000;212.945000;0 +20260311 190600;212.944000;212.948000;212.907000;212.917000;0 +20260311 190700;212.919000;212.929000;212.880000;212.893000;0 +20260311 190800;212.894000;212.926000;212.872000;212.918000;0 +20260311 190900;212.916000;212.926000;212.908000;212.911000;0 +20260311 191000;212.913000;212.937000;212.894000;212.901000;0 +20260311 191100;212.903000;212.920000;212.897000;212.913000;0 +20260311 191200;212.914000;212.938000;212.908000;212.914000;0 +20260311 191300;212.910000;212.925000;212.905000;212.908000;0 +20260311 191400;212.907000;212.914000;212.853000;212.874000;0 +20260311 191500;212.876000;212.912000;212.869000;212.909000;0 +20260311 191600;212.910000;212.922000;212.896000;212.915000;0 +20260311 191700;212.916000;212.922000;212.888000;212.893000;0 +20260311 191800;212.892000;212.903000;212.891000;212.895000;0 +20260311 191900;212.895000;212.900000;212.874000;212.894000;0 +20260311 192000;212.893000;212.910000;212.891000;212.902000;0 +20260311 192100;212.903000;212.908000;212.873000;212.892000;0 +20260311 192200;212.891000;212.912000;212.891000;212.909000;0 +20260311 192300;212.905000;212.905000;212.885000;212.901000;0 +20260311 192400;212.901000;212.946000;212.896000;212.945000;0 +20260311 192500;212.947000;212.949000;212.920000;212.931000;0 +20260311 192600;212.931000;212.934000;212.907000;212.919000;0 +20260311 192700;212.919000;212.935000;212.915000;212.933000;0 +20260311 192800;212.936000;212.954000;212.932000;212.932000;0 +20260311 192900;212.929000;212.937000;212.920000;212.931000;0 +20260311 193000;212.931000;212.959000;212.923000;212.947000;0 +20260311 193100;212.947000;212.960000;212.943000;212.959000;0 +20260311 193200;212.959000;212.962000;212.947000;212.948000;0 +20260311 193300;212.947000;212.954000;212.941000;212.950000;0 +20260311 193400;212.949000;212.972000;212.949000;212.967000;0 +20260311 193500;212.967000;212.994000;212.966000;212.989000;0 +20260311 193600;212.989000;212.991000;212.967000;212.974000;0 +20260311 193700;212.975000;212.989000;212.968000;212.988000;0 +20260311 193800;212.988000;213.002000;212.988000;212.994000;0 +20260311 193900;212.994000;212.994000;212.977000;212.993000;0 +20260311 194000;212.995000;213.003000;212.980000;212.997000;0 +20260311 194100;212.997000;213.001000;212.987000;212.997000;0 +20260311 194200;212.997000;213.005000;212.985000;212.992000;0 +20260311 194300;212.990000;213.002000;212.981000;212.997000;0 +20260311 194400;212.998000;213.013000;212.997000;213.013000;0 +20260311 194500;213.013000;213.023000;213.004000;213.019000;0 +20260311 194600;213.019000;213.024000;212.979000;212.980000;0 +20260311 194700;212.983000;213.008000;212.983000;213.008000;0 +20260311 194800;213.008000;213.009000;212.977000;212.977000;0 +20260311 194900;212.977000;212.984000;212.967000;212.982000;0 +20260311 195000;212.982000;212.987000;212.955000;212.963000;0 +20260311 195100;212.963000;212.975000;212.947000;212.949000;0 +20260311 195200;212.949000;212.951000;212.918000;212.923000;0 +20260311 195300;212.923000;212.926000;212.885000;212.889000;0 +20260311 195400;212.889000;212.921000;212.847000;212.920000;0 +20260311 195500;212.916000;212.929000;212.842000;212.867000;0 +20260311 195600;212.867000;212.892000;212.850000;212.854000;0 +20260311 195700;212.856000;212.860000;212.800000;212.802000;0 +20260311 195800;212.805000;212.810000;212.766000;212.769000;0 +20260311 195900;212.769000;212.792000;212.736000;212.750000;0 +20260311 200000;212.748000;212.774000;212.727000;212.756000;0 +20260311 200100;212.765000;212.782000;212.741000;212.750000;0 +20260311 200200;212.750000;212.752000;212.695000;212.697000;0 +20260311 200300;212.697000;212.699000;212.646000;212.649000;0 +20260311 200400;212.651000;212.696000;212.648000;212.696000;0 +20260311 200500;212.697000;212.718000;212.684000;212.712000;0 +20260311 200600;212.709000;212.724000;212.693000;212.724000;0 +20260311 200700;212.724000;212.724000;212.666000;212.672000;0 +20260311 200800;212.672000;212.703000;212.669000;212.696000;0 +20260311 200900;212.701000;212.705000;212.670000;212.682000;0 +20260311 201000;212.682000;212.704000;212.661000;212.704000;0 +20260311 201100;212.705000;212.705000;212.675000;212.678000;0 +20260311 201200;212.677000;212.687000;212.672000;212.680000;0 +20260311 201300;212.681000;212.699000;212.681000;212.696000;0 +20260311 201400;212.695000;212.723000;212.687000;212.710000;0 +20260311 201500;212.707000;212.737000;212.696000;212.735000;0 +20260311 201600;212.735000;212.763000;212.734000;212.756000;0 +20260311 201700;212.756000;212.757000;212.730000;212.735000;0 +20260311 201800;212.734000;212.752000;212.708000;212.724000;0 +20260311 201900;212.724000;212.734000;212.703000;212.708000;0 +20260311 202000;212.710000;212.718000;212.692000;212.702000;0 +20260311 202100;212.702000;212.703000;212.673000;212.687000;0 +20260311 202200;212.691000;212.722000;212.691000;212.694000;0 +20260311 202300;212.695000;212.727000;212.693000;212.725000;0 +20260311 202400;212.726000;212.735000;212.717000;212.732000;0 +20260311 202500;212.732000;212.739000;212.705000;212.707000;0 +20260311 202600;212.711000;212.718000;212.693000;212.697000;0 +20260311 202700;212.698000;212.728000;212.698000;212.728000;0 +20260311 202800;212.729000;212.743000;212.728000;212.735000;0 +20260311 202900;212.736000;212.736000;212.709000;212.716000;0 +20260311 203000;212.716000;212.730000;212.714000;212.715000;0 +20260311 203100;212.716000;212.730000;212.700000;212.710000;0 +20260311 203200;212.711000;212.729000;212.711000;212.727000;0 +20260311 203300;212.725000;212.765000;212.725000;212.756000;0 +20260311 203400;212.755000;212.768000;212.755000;212.764000;0 +20260311 203500;212.764000;212.767000;212.740000;212.752000;0 +20260311 203600;212.754000;212.762000;212.746000;212.751000;0 +20260311 203700;212.754000;212.762000;212.734000;212.742000;0 +20260311 203800;212.745000;212.762000;212.735000;212.758000;0 +20260311 203900;212.758000;212.788000;212.758000;212.784000;0 +20260311 204000;212.785000;212.806000;212.778000;212.801000;0 +20260311 204100;212.798000;212.798000;212.759000;212.763000;0 +20260311 204200;212.763000;212.769000;212.744000;212.763000;0 +20260311 204300;212.763000;212.765000;212.723000;212.723000;0 +20260311 204400;212.726000;212.727000;212.700000;212.704000;0 +20260311 204500;212.699000;212.720000;212.678000;212.695000;0 +20260311 204600;212.695000;212.706000;212.686000;212.703000;0 +20260311 204700;212.704000;212.737000;212.696000;212.737000;0 +20260311 204800;212.737000;212.737000;212.706000;212.706000;0 +20260311 204900;212.703000;212.711000;212.692000;212.700000;0 +20260311 205000;212.700000;212.709000;212.687000;212.691000;0 +20260311 205100;212.692000;212.700000;212.680000;212.694000;0 +20260311 205200;212.693000;212.693000;212.666000;212.679000;0 +20260311 205300;212.680000;212.681000;212.664000;212.666000;0 +20260311 205400;212.664000;212.675000;212.649000;212.653000;0 +20260311 205500;212.650000;212.667000;212.650000;212.655000;0 +20260311 205600;212.654000;212.661000;212.648000;212.656000;0 +20260311 205700;212.653000;212.661000;212.645000;212.650000;0 +20260311 205800;212.650000;212.675000;212.650000;212.674000;0 +20260311 205900;212.680000;212.689000;212.668000;212.680000;0 +20260311 210000;212.684000;212.715000;212.681000;212.715000;0 +20260311 210100;212.718000;212.735000;212.718000;212.732000;0 +20260311 210200;212.732000;212.741000;212.725000;212.737000;0 +20260311 210300;212.736000;212.737000;212.726000;212.735000;0 +20260311 210400;212.737000;212.744000;212.728000;212.729000;0 +20260311 210500;212.729000;212.731000;212.713000;212.729000;0 +20260311 210600;212.730000;212.739000;212.727000;212.734000;0 +20260311 210700;212.735000;212.735000;212.713000;212.719000;0 +20260311 210800;212.721000;212.744000;212.716000;212.744000;0 +20260311 210900;212.742000;212.748000;212.741000;212.746000;0 +20260311 211000;212.747000;212.763000;212.747000;212.758000;0 +20260311 211100;212.757000;212.774000;212.741000;212.747000;0 +20260311 211200;212.748000;212.767000;212.747000;212.766000;0 +20260311 211300;212.767000;212.772000;212.716000;212.722000;0 +20260311 211400;212.725000;212.725000;212.706000;212.706000;0 +20260311 211500;212.706000;212.729000;212.702000;212.729000;0 +20260311 211600;212.726000;212.755000;212.719000;212.750000;0 +20260311 211700;212.747000;212.753000;212.736000;212.744000;0 +20260311 211800;212.746000;212.761000;212.744000;212.751000;0 +20260311 211900;212.749000;212.757000;212.739000;212.744000;0 +20260311 212000;212.743000;212.754000;212.711000;212.722000;0 +20260311 212100;212.722000;212.724000;212.716000;212.724000;0 +20260311 212200;212.725000;212.732000;212.713000;212.713000;0 +20260311 212300;212.712000;212.720000;212.711000;212.720000;0 +20260311 212400;212.721000;212.733000;212.717000;212.726000;0 +20260311 212500;212.722000;212.735000;212.714000;212.733000;0 +20260311 212600;212.732000;212.734000;212.720000;212.731000;0 +20260311 212700;212.727000;212.732000;212.711000;212.712000;0 +20260311 212800;212.713000;212.713000;212.695000;212.701000;0 +20260311 212900;212.702000;212.716000;212.697000;212.697000;0 +20260311 213000;212.698000;212.698000;212.688000;212.695000;0 +20260311 213100;212.696000;212.721000;212.695000;212.718000;0 +20260311 213200;212.717000;212.717000;212.707000;212.708000;0 +20260311 213300;212.708000;212.708000;212.691000;212.695000;0 +20260311 213400;212.693000;212.695000;212.658000;212.660000;0 +20260311 213500;212.659000;212.676000;212.637000;212.650000;0 +20260311 213600;212.646000;212.664000;212.639000;212.657000;0 +20260311 213700;212.659000;212.676000;212.646000;212.646000;0 +20260311 213800;212.646000;212.675000;212.633000;212.665000;0 +20260311 213900;212.666000;212.666000;212.619000;212.626000;0 +20260311 214000;212.632000;212.658000;212.606000;212.654000;0 +20260311 214100;212.654000;212.673000;212.648000;212.658000;0 +20260311 214200;212.657000;212.678000;212.651000;212.666000;0 +20260311 214300;212.666000;212.681000;212.663000;212.672000;0 +20260311 214400;212.672000;212.676000;212.666000;212.669000;0 +20260311 214500;212.674000;212.675000;212.644000;212.644000;0 +20260311 214600;212.644000;212.669000;212.636000;212.646000;0 +20260311 214700;212.647000;212.651000;212.624000;212.639000;0 +20260311 214800;212.639000;212.655000;212.631000;212.642000;0 +20260311 214900;212.642000;212.650000;212.633000;212.642000;0 +20260311 215000;212.641000;212.655000;212.634000;212.642000;0 +20260311 215100;212.641000;212.650000;212.638000;212.646000;0 +20260311 215200;212.647000;212.658000;212.646000;212.656000;0 +20260311 215300;212.657000;212.685000;212.657000;212.670000;0 +20260311 215400;212.669000;212.675000;212.651000;212.651000;0 +20260311 215500;212.653000;212.677000;212.652000;212.668000;0 +20260311 215600;212.670000;212.673000;212.658000;212.663000;0 +20260311 215700;212.663000;212.682000;212.661000;212.671000;0 +20260311 215800;212.674000;212.682000;212.667000;212.671000;0 +20260311 215900;212.671000;212.671000;212.658000;212.663000;0 +20260311 220000;212.664000;212.664000;212.637000;212.638000;0 +20260311 220100;212.637000;212.665000;212.637000;212.644000;0 +20260311 220200;212.645000;212.668000;212.639000;212.644000;0 +20260311 220300;212.644000;212.667000;212.644000;212.654000;0 +20260311 220400;212.658000;212.662000;212.634000;212.634000;0 +20260311 220500;212.636000;212.640000;212.616000;212.630000;0 +20260311 220600;212.632000;212.656000;212.630000;212.648000;0 +20260311 220700;212.647000;212.671000;212.646000;212.662000;0 +20260311 220800;212.663000;212.670000;212.651000;212.652000;0 +20260311 220900;212.653000;212.660000;212.627000;212.629000;0 +20260311 221000;212.631000;212.639000;212.627000;212.629000;0 +20260311 221100;212.630000;212.636000;212.610000;212.616000;0 +20260311 221200;212.618000;212.620000;212.579000;212.579000;0 +20260311 221300;212.580000;212.606000;212.580000;212.603000;0 +20260311 221400;212.601000;212.606000;212.583000;212.593000;0 +20260311 221500;212.598000;212.610000;212.584000;212.606000;0 +20260311 221600;212.605000;212.612000;212.594000;212.596000;0 +20260311 221700;212.595000;212.598000;212.577000;212.584000;0 +20260311 221800;212.587000;212.595000;212.581000;212.589000;0 +20260311 221900;212.588000;212.593000;212.574000;212.583000;0 +20260311 222000;212.590000;212.598000;212.578000;212.598000;0 +20260311 222100;212.600000;212.615000;212.598000;212.608000;0 +20260311 222200;212.609000;212.615000;212.601000;212.615000;0 +20260311 222300;212.617000;212.626000;212.605000;212.612000;0 +20260311 222400;212.610000;212.611000;212.602000;212.602000;0 +20260311 222500;212.602000;212.617000;212.602000;212.613000;0 +20260311 222600;212.610000;212.630000;212.607000;212.621000;0 +20260311 222700;212.621000;212.626000;212.616000;212.623000;0 +20260311 222800;212.618000;212.625000;212.600000;212.603000;0 +20260311 222900;212.605000;212.610000;212.582000;212.584000;0 +20260311 223000;212.583000;212.592000;212.572000;212.572000;0 +20260311 223100;212.573000;212.605000;212.568000;212.595000;0 +20260311 223200;212.601000;212.623000;212.601000;212.605000;0 +20260311 223300;212.604000;212.610000;212.591000;212.595000;0 +20260311 223400;212.596000;212.599000;212.584000;212.584000;0 +20260311 223500;212.584000;212.602000;212.584000;212.596000;0 +20260311 223600;212.597000;212.642000;212.591000;212.642000;0 +20260311 223700;212.638000;212.652000;212.627000;212.631000;0 +20260311 223800;212.631000;212.631000;212.605000;212.609000;0 +20260311 223900;212.609000;212.613000;212.598000;212.603000;0 +20260311 224000;212.602000;212.615000;212.594000;212.598000;0 +20260311 224100;212.607000;212.620000;212.604000;212.617000;0 +20260311 224200;212.617000;212.625000;212.613000;212.617000;0 +20260311 224300;212.616000;212.618000;212.607000;212.609000;0 +20260311 224400;212.610000;212.611000;212.586000;212.590000;0 +20260311 224500;212.589000;212.593000;212.578000;212.590000;0 +20260311 224600;212.590000;212.609000;212.589000;212.589000;0 +20260311 224700;212.587000;212.590000;212.566000;212.570000;0 +20260311 224800;212.569000;212.579000;212.562000;212.577000;0 +20260311 224900;212.579000;212.605000;212.569000;212.602000;0 +20260311 225000;212.602000;212.616000;212.602000;212.613000;0 +20260311 225100;212.613000;212.631000;212.611000;212.615000;0 +20260311 225200;212.617000;212.621000;212.614000;212.618000;0 +20260311 225300;212.618000;212.619000;212.597000;212.598000;0 +20260311 225400;212.598000;212.618000;212.598000;212.618000;0 +20260311 225500;212.618000;212.641000;212.615000;212.631000;0 +20260311 225600;212.633000;212.652000;212.633000;212.650000;0 +20260311 225700;212.652000;212.652000;212.638000;212.641000;0 +20260311 225800;212.640000;212.646000;212.628000;212.628000;0 +20260311 225900;212.628000;212.642000;212.627000;212.638000;0 +20260311 230000;212.636000;212.643000;212.620000;212.620000;0 +20260311 230100;212.620000;212.635000;212.617000;212.629000;0 +20260311 230200;212.630000;212.642000;212.628000;212.631000;0 +20260311 230300;212.629000;212.634000;212.621000;212.624000;0 +20260311 230400;212.625000;212.644000;212.623000;212.640000;0 +20260311 230500;212.641000;212.648000;212.637000;212.639000;0 +20260311 230600;212.637000;212.650000;212.637000;212.650000;0 +20260311 230700;212.650000;212.656000;212.647000;212.648000;0 +20260311 230800;212.646000;212.652000;212.637000;212.645000;0 +20260311 230900;212.642000;212.645000;212.632000;212.637000;0 +20260311 231000;212.635000;212.646000;212.628000;212.633000;0 +20260311 231100;212.631000;212.631000;212.619000;212.622000;0 +20260311 231200;212.625000;212.640000;212.618000;212.637000;0 +20260311 231300;212.635000;212.649000;212.629000;212.649000;0 +20260311 231400;212.649000;212.658000;212.646000;212.655000;0 +20260311 231500;212.657000;212.660000;212.640000;212.646000;0 +20260311 231600;212.643000;212.651000;212.641000;212.649000;0 +20260311 231700;212.645000;212.646000;212.635000;212.638000;0 +20260311 231800;212.640000;212.640000;212.627000;212.639000;0 +20260311 231900;212.637000;212.667000;212.637000;212.663000;0 +20260311 232000;212.663000;212.668000;212.647000;212.650000;0 +20260311 232100;212.647000;212.649000;212.632000;212.634000;0 +20260311 232200;212.633000;212.644000;212.630000;212.632000;0 +20260311 232300;212.632000;212.635000;212.626000;212.626000;0 +20260311 232400;212.628000;212.629000;212.624000;212.626000;0 +20260311 232500;212.627000;212.631000;212.619000;212.625000;0 +20260311 232600;212.625000;212.630000;212.614000;212.630000;0 +20260311 232700;212.629000;212.635000;212.620000;212.634000;0 +20260311 232800;212.635000;212.648000;212.634000;212.648000;0 +20260311 232900;212.644000;212.648000;212.637000;212.644000;0 +20260311 233000;212.648000;212.663000;212.639000;212.658000;0 +20260311 233100;212.657000;212.658000;212.644000;212.651000;0 +20260311 233200;212.651000;212.662000;212.637000;212.643000;0 +20260311 233300;212.641000;212.646000;212.629000;212.645000;0 +20260311 233400;212.645000;212.649000;212.631000;212.641000;0 +20260311 233500;212.641000;212.643000;212.626000;212.633000;0 +20260311 233600;212.635000;212.639000;212.629000;212.632000;0 +20260311 233700;212.635000;212.649000;212.634000;212.649000;0 +20260311 233800;212.648000;212.653000;212.647000;212.653000;0 +20260311 233900;212.652000;212.654000;212.629000;212.629000;0 +20260311 234000;212.631000;212.649000;212.627000;212.638000;0 +20260311 234100;212.636000;212.649000;212.618000;212.649000;0 +20260311 234200;212.650000;212.679000;212.650000;212.678000;0 +20260311 234300;212.678000;212.689000;212.678000;212.689000;0 +20260311 234400;212.690000;212.690000;212.678000;212.687000;0 +20260311 234500;212.685000;212.693000;212.672000;212.680000;0 +20260311 234600;212.681000;212.681000;212.657000;212.667000;0 +20260311 234700;212.666000;212.677000;212.662000;212.667000;0 +20260311 234800;212.667000;212.673000;212.661000;212.666000;0 +20260311 234900;212.665000;212.666000;212.645000;212.648000;0 +20260311 235000;212.646000;212.658000;212.638000;212.654000;0 +20260311 235100;212.657000;212.660000;212.643000;212.643000;0 +20260311 235200;212.640000;212.661000;212.640000;212.656000;0 +20260311 235300;212.666000;212.694000;212.659000;212.689000;0 +20260311 235400;212.686000;212.695000;212.681000;212.686000;0 +20260311 235500;212.686000;212.686000;212.670000;212.674000;0 +20260311 235600;212.674000;212.675000;212.640000;212.643000;0 +20260311 235700;212.645000;212.646000;212.615000;212.619000;0 +20260311 235800;212.620000;212.629000;212.619000;212.627000;0 +20260311 235900;212.629000;212.634000;212.621000;212.626000;0 +20260312 000000;212.625000;212.637000;212.624000;212.630000;0 +20260312 000100;212.630000;212.633000;212.605000;212.616000;0 +20260312 000200;212.612000;212.639000;212.606000;212.638000;0 +20260312 000300;212.638000;212.641000;212.555000;212.592000;0 +20260312 000400;212.600000;212.610000;212.556000;212.587000;0 +20260312 000500;212.588000;212.638000;212.586000;212.611000;0 +20260312 000600;212.609000;212.638000;212.599000;212.625000;0 +20260312 000700;212.625000;212.633000;212.589000;212.607000;0 +20260312 000800;212.608000;212.641000;212.608000;212.640000;0 +20260312 000900;212.640000;212.647000;212.623000;212.645000;0 +20260312 001000;212.645000;212.645000;212.631000;212.634000;0 +20260312 001100;212.630000;212.634000;212.614000;212.620000;0 +20260312 001200;212.624000;212.625000;212.592000;212.594000;0 +20260312 001300;212.597000;212.602000;212.572000;212.581000;0 +20260312 001400;212.580000;212.631000;212.580000;212.631000;0 +20260312 001500;212.631000;212.649000;212.620000;212.647000;0 +20260312 001600;212.644000;212.658000;212.633000;212.656000;0 +20260312 001700;212.655000;212.677000;212.650000;212.671000;0 +20260312 001800;212.673000;212.694000;212.673000;212.674000;0 +20260312 001900;212.678000;212.680000;212.639000;212.648000;0 +20260312 002000;212.649000;212.662000;212.647000;212.649000;0 +20260312 002100;212.653000;212.665000;212.638000;212.660000;0 +20260312 002200;212.659000;212.673000;212.659000;212.664000;0 +20260312 002300;212.664000;212.683000;212.658000;212.678000;0 +20260312 002400;212.677000;212.679000;212.649000;212.650000;0 +20260312 002500;212.646000;212.674000;212.637000;212.672000;0 +20260312 002600;212.675000;212.677000;212.654000;212.661000;0 +20260312 002700;212.662000;212.694000;212.661000;212.682000;0 +20260312 002800;212.681000;212.686000;212.658000;212.666000;0 +20260312 002900;212.666000;212.669000;212.636000;212.652000;0 +20260312 003000;212.651000;212.662000;212.645000;212.653000;0 +20260312 003100;212.653000;212.672000;212.644000;212.672000;0 +20260312 003200;212.672000;212.701000;212.664000;212.694000;0 +20260312 003300;212.694000;212.695000;212.685000;212.685000;0 +20260312 003400;212.686000;212.691000;212.669000;212.675000;0 +20260312 003500;212.672000;212.677000;212.660000;212.667000;0 +20260312 003600;212.667000;212.667000;212.654000;212.657000;0 +20260312 003700;212.654000;212.707000;212.651000;212.701000;0 +20260312 003800;212.704000;212.708000;212.692000;212.699000;0 +20260312 003900;212.703000;212.709000;212.673000;212.684000;0 +20260312 004000;212.681000;212.691000;212.675000;212.687000;0 +20260312 004100;212.686000;212.699000;212.678000;212.691000;0 +20260312 004200;212.690000;212.703000;212.678000;212.678000;0 +20260312 004300;212.681000;212.682000;212.662000;212.673000;0 +20260312 004400;212.674000;212.680000;212.661000;212.665000;0 +20260312 004500;212.664000;212.679000;212.659000;212.675000;0 +20260312 004600;212.671000;212.690000;212.669000;212.683000;0 +20260312 004700;212.681000;212.696000;212.676000;212.689000;0 +20260312 004800;212.688000;212.694000;212.658000;212.662000;0 +20260312 004900;212.661000;212.670000;212.629000;212.630000;0 +20260312 005000;212.628000;212.639000;212.623000;212.637000;0 +20260312 005100;212.636000;212.640000;212.622000;212.635000;0 +20260312 005200;212.634000;212.650000;212.630000;212.646000;0 +20260312 005300;212.645000;212.654000;212.636000;212.649000;0 +20260312 005400;212.648000;212.653000;212.640000;212.647000;0 +20260312 005500;212.643000;212.655000;212.633000;212.650000;0 +20260312 005600;212.653000;212.673000;212.649000;212.670000;0 +20260312 005700;212.673000;212.700000;212.664000;212.693000;0 +20260312 005800;212.689000;212.701000;212.687000;212.700000;0 +20260312 005900;212.699000;212.710000;212.696000;212.703000;0 +20260312 010000;212.701000;212.717000;212.684000;212.700000;0 +20260312 010100;212.700000;212.731000;212.694000;212.725000;0 +20260312 010200;212.726000;212.729000;212.706000;212.721000;0 +20260312 010300;212.721000;212.724000;212.716000;212.722000;0 +20260312 010400;212.720000;212.727000;212.708000;212.727000;0 +20260312 010500;212.728000;212.734000;212.711000;212.711000;0 +20260312 010600;212.707000;212.707000;212.675000;212.675000;0 +20260312 010700;212.674000;212.692000;212.667000;212.668000;0 +20260312 010800;212.671000;212.692000;212.667000;212.674000;0 +20260312 010900;212.674000;212.683000;212.669000;212.673000;0 +20260312 011000;212.673000;212.710000;212.668000;212.709000;0 +20260312 011100;212.709000;212.717000;212.687000;212.694000;0 +20260312 011200;212.693000;212.741000;212.693000;212.739000;0 +20260312 011300;212.736000;212.740000;212.692000;212.695000;0 +20260312 011400;212.696000;212.697000;212.645000;212.652000;0 +20260312 011500;212.655000;212.666000;212.621000;212.626000;0 +20260312 011600;212.626000;212.635000;212.617000;212.634000;0 +20260312 011700;212.635000;212.643000;212.618000;212.621000;0 +20260312 011800;212.619000;212.622000;212.601000;212.605000;0 +20260312 011900;212.600000;212.614000;212.584000;212.584000;0 +20260312 012000;212.583000;212.595000;212.569000;212.586000;0 +20260312 012100;212.590000;212.605000;212.589000;212.591000;0 +20260312 012200;212.592000;212.610000;212.575000;212.610000;0 +20260312 012300;212.613000;212.617000;212.590000;212.610000;0 +20260312 012400;212.612000;212.616000;212.596000;212.615000;0 +20260312 012500;212.615000;212.616000;212.567000;212.590000;0 +20260312 012600;212.596000;212.614000;212.578000;212.591000;0 +20260312 012700;212.591000;212.620000;212.581000;212.608000;0 +20260312 012800;212.608000;212.634000;212.603000;212.607000;0 +20260312 012900;212.608000;212.628000;212.602000;212.622000;0 +20260312 013000;212.626000;212.644000;212.624000;212.634000;0 +20260312 013100;212.634000;212.645000;212.628000;212.634000;0 +20260312 013200;212.634000;212.649000;212.630000;212.646000;0 +20260312 013300;212.646000;212.661000;212.645000;212.652000;0 +20260312 013400;212.647000;212.659000;212.643000;212.645000;0 +20260312 013500;212.648000;212.652000;212.621000;212.622000;0 +20260312 013600;212.622000;212.642000;212.619000;212.621000;0 +20260312 013700;212.619000;212.651000;212.619000;212.645000;0 +20260312 013800;212.645000;212.646000;212.591000;212.592000;0 +20260312 013900;212.592000;212.592000;212.573000;212.583000;0 +20260312 014000;212.581000;212.608000;212.577000;212.601000;0 +20260312 014100;212.600000;212.603000;212.570000;212.602000;0 +20260312 014200;212.602000;212.603000;212.585000;212.585000;0 +20260312 014300;212.585000;212.600000;212.585000;212.593000;0 +20260312 014400;212.592000;212.611000;212.586000;212.611000;0 +20260312 014500;212.612000;212.620000;212.602000;212.617000;0 +20260312 014600;212.619000;212.627000;212.610000;212.619000;0 +20260312 014700;212.623000;212.623000;212.606000;212.620000;0 +20260312 014800;212.617000;212.630000;212.605000;212.616000;0 +20260312 014900;212.616000;212.620000;212.593000;212.601000;0 +20260312 015000;212.600000;212.616000;212.594000;212.594000;0 +20260312 015100;212.594000;212.611000;212.586000;212.591000;0 +20260312 015200;212.593000;212.607000;212.586000;212.597000;0 +20260312 015300;212.594000;212.603000;212.581000;212.599000;0 +20260312 015400;212.600000;212.605000;212.589000;212.597000;0 +20260312 015500;212.593000;212.615000;212.590000;212.614000;0 +20260312 015600;212.614000;212.619000;212.614000;212.618000;0 +20260312 015700;212.618000;212.625000;212.606000;212.606000;0 +20260312 015800;212.607000;212.623000;212.602000;212.605000;0 +20260312 015900;212.608000;212.624000;212.601000;212.623000;0 +20260312 020000;212.629000;212.695000;212.615000;212.688000;0 +20260312 020100;212.688000;212.696000;212.680000;212.684000;0 +20260312 020200;212.683000;212.755000;212.683000;212.747000;0 +20260312 020300;212.748000;212.765000;212.743000;212.762000;0 +20260312 020400;212.764000;212.764000;212.717000;212.720000;0 +20260312 020500;212.722000;212.722000;212.667000;212.676000;0 +20260312 020600;212.676000;212.711000;212.666000;212.693000;0 +20260312 020700;212.692000;212.699000;212.674000;212.699000;0 +20260312 020800;212.698000;212.698000;212.649000;212.652000;0 +20260312 020900;212.649000;212.655000;212.612000;212.613000;0 +20260312 021000;212.612000;212.633000;212.600000;212.610000;0 +20260312 021100;212.613000;212.657000;212.613000;212.657000;0 +20260312 021200;212.657000;212.657000;212.620000;212.622000;0 +20260312 021300;212.626000;212.635000;212.603000;212.610000;0 +20260312 021400;212.616000;212.620000;212.591000;212.618000;0 +20260312 021500;212.617000;212.631000;212.614000;212.623000;0 +20260312 021600;212.626000;212.652000;212.619000;212.646000;0 +20260312 021700;212.645000;212.652000;212.617000;212.617000;0 +20260312 021800;212.617000;212.618000;212.582000;212.586000;0 +20260312 021900;212.588000;212.591000;212.561000;212.580000;0 +20260312 022000;212.581000;212.624000;212.575000;212.615000;0 +20260312 022100;212.612000;212.637000;212.602000;212.622000;0 +20260312 022200;212.622000;212.641000;212.594000;212.600000;0 +20260312 022300;212.604000;212.641000;212.603000;212.621000;0 +20260312 022400;212.622000;212.637000;212.611000;212.631000;0 +20260312 022500;212.629000;212.656000;212.629000;212.656000;0 +20260312 022600;212.652000;212.676000;212.652000;212.671000;0 +20260312 022700;212.671000;212.676000;212.663000;212.671000;0 +20260312 022800;212.675000;212.715000;212.674000;212.702000;0 +20260312 022900;212.702000;212.712000;212.678000;212.682000;0 +20260312 023000;212.683000;212.684000;212.668000;212.679000;0 +20260312 023100;212.680000;212.692000;212.656000;212.673000;0 +20260312 023200;212.672000;212.695000;212.661000;212.686000;0 +20260312 023300;212.686000;212.698000;212.661000;212.695000;0 +20260312 023400;212.693000;212.712000;212.670000;212.701000;0 +20260312 023500;212.701000;212.707000;212.681000;212.683000;0 +20260312 023600;212.680000;212.711000;212.680000;212.691000;0 +20260312 023700;212.690000;212.699000;212.665000;212.681000;0 +20260312 023800;212.680000;212.695000;212.673000;212.692000;0 +20260312 023900;212.692000;212.720000;212.690000;212.695000;0 +20260312 024000;212.693000;212.707000;212.664000;212.676000;0 +20260312 024100;212.675000;212.703000;212.675000;212.691000;0 +20260312 024200;212.690000;212.701000;212.680000;212.695000;0 +20260312 024300;212.694000;212.704000;212.682000;212.701000;0 +20260312 024400;212.705000;212.719000;212.681000;212.687000;0 +20260312 024500;212.685000;212.702000;212.676000;212.700000;0 +20260312 024600;212.696000;212.709000;212.667000;212.673000;0 +20260312 024700;212.670000;212.670000;212.631000;212.633000;0 +20260312 024800;212.631000;212.632000;212.588000;212.591000;0 +20260312 024900;212.591000;212.598000;212.570000;212.592000;0 +20260312 025000;212.592000;212.604000;212.585000;212.595000;0 +20260312 025100;212.597000;212.605000;212.581000;212.595000;0 +20260312 025200;212.594000;212.601000;212.580000;212.590000;0 +20260312 025300;212.589000;212.589000;212.562000;212.572000;0 +20260312 025400;212.569000;212.591000;212.563000;212.578000;0 +20260312 025500;212.578000;212.582000;212.560000;212.570000;0 +20260312 025600;212.570000;212.581000;212.552000;212.579000;0 +20260312 025700;212.575000;212.579000;212.546000;212.564000;0 +20260312 025800;212.564000;212.592000;212.553000;212.585000;0 +20260312 025900;212.581000;212.664000;212.578000;212.664000;0 +20260312 030000;212.663000;212.676000;212.630000;212.669000;0 +20260312 030100;212.667000;212.679000;212.630000;212.633000;0 +20260312 030200;212.634000;212.659000;212.618000;212.626000;0 +20260312 030300;212.633000;212.643000;212.610000;212.610000;0 +20260312 030400;212.606000;212.637000;212.594000;212.622000;0 +20260312 030500;212.623000;212.626000;212.595000;212.624000;0 +20260312 030600;212.625000;212.625000;212.599000;212.607000;0 +20260312 030700;212.607000;212.619000;212.565000;212.574000;0 +20260312 030800;212.572000;212.595000;212.571000;212.589000;0 +20260312 030900;212.586000;212.594000;212.568000;212.571000;0 +20260312 031000;212.571000;212.601000;212.570000;212.590000;0 +20260312 031100;212.588000;212.591000;212.556000;212.558000;0 +20260312 031200;212.561000;212.565000;212.534000;212.541000;0 +20260312 031300;212.538000;212.541000;212.492000;212.494000;0 +20260312 031400;212.496000;212.502000;212.488000;212.502000;0 +20260312 031500;212.503000;212.514000;212.484000;212.513000;0 +20260312 031600;212.515000;212.523000;212.497000;212.501000;0 +20260312 031700;212.503000;212.519000;212.487000;212.502000;0 +20260312 031800;212.503000;212.534000;212.498000;212.528000;0 +20260312 031900;212.529000;212.543000;212.519000;212.527000;0 +20260312 032000;212.527000;212.538000;212.509000;212.511000;0 +20260312 032100;212.512000;212.516000;212.502000;212.511000;0 +20260312 032200;212.508000;212.529000;212.504000;212.524000;0 +20260312 032300;212.524000;212.547000;212.518000;212.535000;0 +20260312 032400;212.535000;212.560000;212.529000;212.538000;0 +20260312 032500;212.540000;212.579000;212.540000;212.575000;0 +20260312 032600;212.574000;212.577000;212.561000;212.572000;0 +20260312 032700;212.572000;212.601000;212.570000;212.589000;0 +20260312 032800;212.585000;212.602000;212.555000;212.555000;0 +20260312 032900;212.551000;212.586000;212.540000;212.579000;0 +20260312 033000;212.579000;212.602000;212.570000;212.600000;0 +20260312 033100;212.595000;212.595000;212.576000;212.581000;0 +20260312 033200;212.583000;212.596000;212.573000;212.575000;0 +20260312 033300;212.578000;212.578000;212.547000;212.575000;0 +20260312 033400;212.575000;212.584000;212.567000;212.577000;0 +20260312 033500;212.575000;212.591000;212.572000;212.589000;0 +20260312 033600;212.593000;212.601000;212.587000;212.589000;0 +20260312 033700;212.591000;212.619000;212.589000;212.617000;0 +20260312 033800;212.617000;212.639000;212.610000;212.622000;0 +20260312 033900;212.622000;212.648000;212.622000;212.637000;0 +20260312 034000;212.637000;212.637000;212.580000;212.584000;0 +20260312 034100;212.586000;212.592000;212.536000;212.539000;0 +20260312 034200;212.539000;212.552000;212.525000;212.540000;0 +20260312 034300;212.553000;212.605000;212.551000;212.605000;0 +20260312 034400;212.604000;212.636000;212.604000;212.636000;0 +20260312 034500;212.646000;212.664000;212.644000;212.645000;0 +20260312 034600;212.644000;212.655000;212.637000;212.640000;0 +20260312 034700;212.635000;212.635000;212.589000;212.589000;0 +20260312 034800;212.589000;212.633000;212.574000;212.633000;0 +20260312 034900;212.633000;212.657000;212.630000;212.656000;0 +20260312 035000;212.657000;212.660000;212.632000;212.633000;0 +20260312 035100;212.631000;212.635000;212.588000;212.592000;0 +20260312 035200;212.590000;212.595000;212.538000;212.586000;0 +20260312 035300;212.588000;212.590000;212.542000;212.542000;0 +20260312 035400;212.543000;212.556000;212.527000;212.527000;0 +20260312 035500;212.528000;212.543000;212.503000;212.521000;0 +20260312 035600;212.518000;212.523000;212.491000;212.509000;0 +20260312 035700;212.512000;212.579000;212.512000;212.555000;0 +20260312 035800;212.554000;212.565000;212.527000;212.527000;0 +20260312 035900;212.532000;212.568000;212.529000;212.563000;0 +20260312 040000;212.562000;212.585000;212.548000;212.562000;0 +20260312 040100;212.560000;212.574000;212.523000;212.523000;0 +20260312 040200;212.526000;212.546000;212.524000;212.535000;0 +20260312 040300;212.535000;212.555000;212.513000;212.539000;0 +20260312 040400;212.539000;212.571000;212.539000;212.558000;0 +20260312 040500;212.559000;212.596000;212.556000;212.585000;0 +20260312 040600;212.588000;212.617000;212.575000;212.582000;0 +20260312 040700;212.582000;212.591000;212.563000;212.591000;0 +20260312 040800;212.590000;212.610000;212.578000;212.608000;0 +20260312 040900;212.609000;212.609000;212.582000;212.594000;0 +20260312 041000;212.591000;212.593000;212.578000;212.581000;0 +20260312 041100;212.582000;212.601000;212.577000;212.599000;0 +20260312 041200;212.599000;212.606000;212.576000;212.576000;0 +20260312 041300;212.574000;212.585000;212.543000;212.543000;0 +20260312 041400;212.539000;212.545000;212.522000;212.542000;0 +20260312 041500;212.539000;212.550000;212.534000;212.541000;0 +20260312 041600;212.535000;212.573000;212.529000;212.559000;0 +20260312 041700;212.563000;212.588000;212.550000;212.582000;0 +20260312 041800;212.582000;212.583000;212.539000;212.544000;0 +20260312 041900;212.545000;212.573000;212.539000;212.568000;0 +20260312 042000;212.569000;212.600000;212.561000;212.599000;0 +20260312 042100;212.599000;212.601000;212.579000;212.584000;0 +20260312 042200;212.588000;212.591000;212.524000;212.527000;0 +20260312 042300;212.527000;212.562000;212.519000;212.547000;0 +20260312 042400;212.548000;212.574000;212.544000;212.568000;0 +20260312 042500;212.569000;212.602000;212.562000;212.598000;0 +20260312 042600;212.598000;212.643000;212.590000;212.637000;0 +20260312 042700;212.634000;212.655000;212.618000;212.633000;0 +20260312 042800;212.637000;212.637000;212.613000;212.617000;0 +20260312 042900;212.616000;212.650000;212.609000;212.636000;0 +20260312 043000;212.640000;212.644000;212.603000;212.629000;0 +20260312 043100;212.633000;212.651000;212.612000;212.613000;0 +20260312 043200;212.619000;212.622000;212.585000;212.605000;0 +20260312 043300;212.602000;212.610000;212.595000;212.607000;0 +20260312 043400;212.605000;212.631000;212.596000;212.630000;0 +20260312 043500;212.630000;212.650000;212.612000;212.634000;0 +20260312 043600;212.631000;212.647000;212.623000;212.642000;0 +20260312 043700;212.642000;212.648000;212.619000;212.619000;0 +20260312 043800;212.621000;212.645000;212.606000;212.634000;0 +20260312 043900;212.636000;212.646000;212.626000;212.646000;0 +20260312 044000;212.647000;212.658000;212.619000;212.626000;0 +20260312 044100;212.626000;212.679000;212.622000;212.647000;0 +20260312 044200;212.648000;212.658000;212.617000;212.619000;0 +20260312 044300;212.622000;212.657000;212.612000;212.654000;0 +20260312 044400;212.656000;212.670000;212.647000;212.659000;0 +20260312 044500;212.656000;212.658000;212.637000;212.651000;0 +20260312 044600;212.649000;212.651000;212.619000;212.636000;0 +20260312 044700;212.636000;212.650000;212.582000;212.587000;0 +20260312 044800;212.585000;212.600000;212.580000;212.586000;0 +20260312 044900;212.587000;212.587000;212.556000;212.560000;0 +20260312 045000;212.559000;212.589000;212.553000;212.585000;0 +20260312 045100;212.583000;212.601000;212.581000;212.593000;0 +20260312 045200;212.594000;212.596000;212.576000;212.579000;0 +20260312 045300;212.589000;212.600000;212.579000;212.600000;0 +20260312 045400;212.600000;212.626000;212.591000;212.616000;0 +20260312 045500;212.617000;212.621000;212.592000;212.609000;0 +20260312 045600;212.610000;212.618000;212.586000;212.594000;0 +20260312 045700;212.598000;212.608000;212.583000;212.606000;0 +20260312 045800;212.605000;212.611000;212.588000;212.603000;0 +20260312 045900;212.601000;212.620000;212.585000;212.620000;0 +20260312 050000;212.619000;212.629000;212.588000;212.592000;0 +20260312 050100;212.593000;212.617000;212.580000;212.611000;0 +20260312 050200;212.612000;212.618000;212.591000;212.613000;0 +20260312 050300;212.611000;212.615000;212.591000;212.599000;0 +20260312 050400;212.597000;212.605000;212.572000;212.574000;0 +20260312 050500;212.574000;212.599000;212.570000;212.586000;0 +20260312 050600;212.588000;212.592000;212.575000;212.586000;0 +20260312 050700;212.585000;212.606000;212.577000;212.599000;0 +20260312 050800;212.606000;212.606000;212.565000;212.566000;0 +20260312 050900;212.566000;212.569000;212.550000;212.550000;0 +20260312 051000;212.552000;212.602000;212.552000;212.589000;0 +20260312 051100;212.590000;212.600000;212.582000;212.582000;0 +20260312 051200;212.581000;212.581000;212.558000;212.558000;0 +20260312 051300;212.567000;212.577000;212.554000;212.563000;0 +20260312 051400;212.563000;212.566000;212.548000;212.553000;0 +20260312 051500;212.556000;212.558000;212.527000;212.527000;0 +20260312 051600;212.531000;212.544000;212.516000;212.518000;0 +20260312 051700;212.515000;212.548000;212.503000;212.544000;0 +20260312 051800;212.543000;212.545000;212.530000;212.537000;0 +20260312 051900;212.539000;212.571000;212.537000;212.565000;0 +20260312 052000;212.566000;212.570000;212.541000;212.568000;0 +20260312 052100;212.565000;212.582000;212.565000;212.580000;0 +20260312 052200;212.579000;212.584000;212.559000;212.561000;0 +20260312 052300;212.558000;212.573000;212.552000;212.559000;0 +20260312 052400;212.560000;212.565000;212.552000;212.558000;0 +20260312 052500;212.560000;212.564000;212.550000;212.551000;0 +20260312 052600;212.554000;212.554000;212.537000;212.549000;0 +20260312 052700;212.547000;212.565000;212.540000;212.559000;0 +20260312 052800;212.562000;212.571000;212.555000;212.565000;0 +20260312 052900;212.566000;212.569000;212.538000;212.541000;0 +20260312 053000;212.542000;212.611000;212.540000;212.597000;0 +20260312 053100;212.597000;212.602000;212.580000;212.584000;0 +20260312 053200;212.588000;212.608000;212.587000;212.595000;0 +20260312 053300;212.593000;212.596000;212.571000;212.582000;0 +20260312 053400;212.584000;212.594000;212.563000;212.564000;0 +20260312 053500;212.566000;212.566000;212.533000;212.543000;0 +20260312 053600;212.540000;212.546000;212.532000;212.546000;0 +20260312 053700;212.549000;212.553000;212.523000;212.543000;0 +20260312 053800;212.542000;212.549000;212.523000;212.524000;0 +20260312 053900;212.523000;212.534000;212.514000;212.529000;0 +20260312 054000;212.526000;212.533000;212.522000;212.532000;0 +20260312 054100;212.528000;212.531000;212.492000;212.492000;0 +20260312 054200;212.499000;212.509000;212.490000;212.502000;0 +20260312 054300;212.498000;212.525000;212.498000;212.514000;0 +20260312 054400;212.519000;212.522000;212.479000;212.487000;0 +20260312 054500;212.489000;212.502000;212.478000;212.501000;0 +20260312 054600;212.502000;212.508000;212.485000;212.492000;0 +20260312 054700;212.493000;212.498000;212.487000;212.491000;0 +20260312 054800;212.494000;212.497000;212.456000;212.467000;0 +20260312 054900;212.468000;212.495000;212.465000;212.477000;0 +20260312 055000;212.481000;212.507000;212.475000;212.496000;0 +20260312 055100;212.496000;212.540000;212.492000;212.533000;0 +20260312 055200;212.533000;212.549000;212.519000;212.548000;0 +20260312 055300;212.551000;212.551000;212.519000;212.540000;0 +20260312 055400;212.539000;212.556000;212.533000;212.556000;0 +20260312 055500;212.554000;212.570000;212.543000;212.567000;0 +20260312 055600;212.565000;212.578000;212.557000;212.576000;0 +20260312 055700;212.580000;212.585000;212.562000;212.572000;0 +20260312 055800;212.570000;212.579000;212.568000;212.572000;0 +20260312 055900;212.574000;212.579000;212.555000;212.556000;0 +20260312 060000;212.556000;212.564000;212.536000;212.537000;0 +20260312 060100;212.538000;212.557000;212.537000;212.555000;0 +20260312 060200;212.557000;212.565000;212.539000;212.550000;0 +20260312 060300;212.551000;212.553000;212.535000;212.542000;0 +20260312 060400;212.541000;212.552000;212.533000;212.540000;0 +20260312 060500;212.539000;212.552000;212.536000;212.549000;0 +20260312 060600;212.551000;212.568000;212.546000;212.548000;0 +20260312 060700;212.551000;212.580000;212.530000;212.573000;0 +20260312 060800;212.573000;212.579000;212.549000;212.551000;0 +20260312 060900;212.553000;212.566000;212.538000;212.544000;0 +20260312 061000;212.543000;212.561000;212.539000;212.539000;0 +20260312 061100;212.539000;212.560000;212.533000;212.556000;0 +20260312 061200;212.550000;212.582000;212.550000;212.577000;0 +20260312 061300;212.571000;212.581000;212.565000;212.565000;0 +20260312 061400;212.572000;212.587000;212.564000;212.580000;0 +20260312 061500;212.581000;212.587000;212.549000;212.556000;0 +20260312 061600;212.554000;212.559000;212.542000;212.549000;0 +20260312 061700;212.555000;212.584000;212.554000;212.582000;0 +20260312 061800;212.582000;212.594000;212.570000;212.575000;0 +20260312 061900;212.575000;212.575000;212.560000;212.562000;0 +20260312 062000;212.564000;212.579000;212.557000;212.561000;0 +20260312 062100;212.561000;212.566000;212.541000;212.548000;0 +20260312 062200;212.548000;212.572000;212.538000;212.565000;0 +20260312 062300;212.567000;212.567000;212.545000;212.551000;0 +20260312 062400;212.550000;212.595000;212.546000;212.577000;0 +20260312 062500;212.577000;212.586000;212.565000;212.569000;0 +20260312 062600;212.567000;212.578000;212.552000;212.552000;0 +20260312 062700;212.550000;212.559000;212.536000;212.554000;0 +20260312 062800;212.553000;212.563000;212.546000;212.560000;0 +20260312 062900;212.557000;212.573000;212.550000;212.562000;0 +20260312 063000;212.572000;212.613000;212.563000;212.581000;0 +20260312 063100;212.581000;212.585000;212.541000;212.558000;0 +20260312 063200;212.558000;212.563000;212.529000;212.550000;0 +20260312 063300;212.549000;212.563000;212.528000;212.560000;0 +20260312 063400;212.561000;212.586000;212.561000;212.583000;0 +20260312 063500;212.581000;212.581000;212.556000;212.559000;0 +20260312 063600;212.559000;212.598000;212.552000;212.596000;0 +20260312 063700;212.597000;212.628000;212.592000;212.594000;0 +20260312 063800;212.595000;212.609000;212.591000;212.594000;0 +20260312 063900;212.596000;212.609000;212.591000;212.609000;0 +20260312 064000;212.605000;212.618000;212.595000;212.606000;0 +20260312 064100;212.604000;212.615000;212.590000;212.615000;0 +20260312 064200;212.616000;212.619000;212.590000;212.608000;0 +20260312 064300;212.607000;212.654000;212.607000;212.653000;0 +20260312 064400;212.652000;212.653000;212.626000;212.643000;0 +20260312 064500;212.643000;212.654000;212.638000;212.641000;0 +20260312 064600;212.640000;212.678000;212.640000;212.678000;0 +20260312 064700;212.678000;212.679000;212.632000;212.634000;0 +20260312 064800;212.633000;212.656000;212.627000;212.653000;0 +20260312 064900;212.656000;212.667000;212.640000;212.640000;0 +20260312 065000;212.640000;212.666000;212.638000;212.641000;0 +20260312 065100;212.640000;212.655000;212.631000;212.643000;0 +20260312 065200;212.645000;212.647000;212.604000;212.611000;0 +20260312 065300;212.609000;212.613000;212.580000;212.582000;0 +20260312 065400;212.583000;212.606000;212.571000;212.576000;0 +20260312 065500;212.577000;212.610000;212.572000;212.609000;0 +20260312 065600;212.608000;212.610000;212.580000;212.584000;0 +20260312 065700;212.582000;212.612000;212.577000;212.587000;0 +20260312 065800;212.586000;212.601000;212.579000;212.595000;0 +20260312 065900;212.594000;212.608000;212.588000;212.603000;0 +20260312 070000;212.606000;212.617000;212.592000;212.603000;0 +20260312 070100;212.602000;212.616000;212.591000;212.616000;0 +20260312 070200;212.614000;212.644000;212.608000;212.633000;0 +20260312 070300;212.630000;212.634000;212.605000;212.615000;0 +20260312 070400;212.616000;212.626000;212.601000;212.626000;0 +20260312 070500;212.625000;212.647000;212.619000;212.638000;0 +20260312 070600;212.637000;212.637000;212.588000;212.590000;0 +20260312 070700;212.589000;212.591000;212.558000;212.570000;0 +20260312 070800;212.570000;212.593000;212.546000;212.559000;0 +20260312 070900;212.555000;212.595000;212.543000;212.582000;0 +20260312 071000;212.582000;212.594000;212.565000;212.578000;0 +20260312 071100;212.579000;212.605000;212.575000;212.599000;0 +20260312 071200;212.599000;212.624000;212.591000;212.591000;0 +20260312 071300;212.591000;212.600000;212.569000;212.571000;0 +20260312 071400;212.572000;212.596000;212.562000;212.583000;0 +20260312 071500;212.587000;212.588000;212.550000;212.566000;0 +20260312 071600;212.565000;212.588000;212.542000;212.542000;0 +20260312 071700;212.542000;212.550000;212.519000;212.520000;0 +20260312 071800;212.519000;212.519000;212.492000;212.492000;0 +20260312 071900;212.493000;212.514000;212.492000;212.499000;0 +20260312 072000;212.499000;212.523000;212.489000;212.496000;0 +20260312 072100;212.498000;212.501000;212.461000;212.465000;0 +20260312 072200;212.462000;212.479000;212.457000;212.475000;0 +20260312 072300;212.478000;212.506000;212.475000;212.490000;0 +20260312 072400;212.488000;212.489000;212.459000;212.469000;0 +20260312 072500;212.472000;212.505000;212.472000;212.490000;0 +20260312 072600;212.491000;212.498000;212.475000;212.482000;0 +20260312 072700;212.483000;212.484000;212.463000;212.483000;0 +20260312 072800;212.482000;212.511000;212.478000;212.504000;0 +20260312 072900;212.506000;212.527000;212.490000;212.524000;0 +20260312 073000;212.517000;212.518000;212.470000;212.493000;0 +20260312 073100;212.492000;212.493000;212.475000;212.491000;0 +20260312 073200;212.488000;212.492000;212.464000;212.468000;0 +20260312 073300;212.470000;212.488000;212.460000;212.476000;0 +20260312 073400;212.476000;212.496000;212.462000;212.479000;0 +20260312 073500;212.477000;212.481000;212.454000;212.460000;0 +20260312 073600;212.457000;212.469000;212.445000;212.448000;0 +20260312 073700;212.452000;212.457000;212.434000;212.457000;0 +20260312 073800;212.456000;212.488000;212.453000;212.487000;0 +20260312 073900;212.486000;212.494000;212.469000;212.472000;0 +20260312 074000;212.473000;212.489000;212.468000;212.478000;0 +20260312 074100;212.477000;212.491000;212.469000;212.487000;0 +20260312 074200;212.487000;212.499000;212.484000;212.493000;0 +20260312 074300;212.492000;212.517000;212.491000;212.517000;0 +20260312 074400;212.516000;212.519000;212.500000;212.502000;0 +20260312 074500;212.500000;212.502000;212.465000;212.485000;0 +20260312 074600;212.487000;212.502000;212.478000;212.480000;0 +20260312 074700;212.482000;212.508000;212.482000;212.503000;0 +20260312 074800;212.499000;212.499000;212.478000;212.494000;0 +20260312 074900;212.492000;212.494000;212.478000;212.481000;0 +20260312 075000;212.481000;212.509000;212.478000;212.498000;0 +20260312 075100;212.494000;212.520000;212.491000;212.494000;0 +20260312 075200;212.492000;212.544000;212.487000;212.528000;0 +20260312 075300;212.527000;212.531000;212.510000;212.511000;0 +20260312 075400;212.511000;212.540000;212.505000;212.534000;0 +20260312 075500;212.535000;212.564000;212.535000;212.546000;0 +20260312 075600;212.547000;212.569000;212.539000;212.542000;0 +20260312 075700;212.539000;212.556000;212.528000;212.554000;0 +20260312 075800;212.552000;212.557000;212.543000;212.550000;0 +20260312 075900;212.553000;212.564000;212.542000;212.562000;0 +20260312 080000;212.564000;212.590000;212.549000;212.572000;0 +20260312 080100;212.574000;212.588000;212.565000;212.577000;0 +20260312 080200;212.578000;212.598000;212.572000;212.591000;0 +20260312 080300;212.588000;212.598000;212.571000;212.583000;0 +20260312 080400;212.583000;212.618000;212.581000;212.618000;0 +20260312 080500;212.617000;212.662000;212.617000;212.661000;0 +20260312 080600;212.661000;212.679000;212.652000;212.677000;0 +20260312 080700;212.674000;212.701000;212.669000;212.687000;0 +20260312 080800;212.691000;212.702000;212.666000;212.668000;0 +20260312 080900;212.666000;212.682000;212.651000;212.677000;0 +20260312 081000;212.674000;212.680000;212.669000;212.670000;0 +20260312 081100;212.668000;212.672000;212.651000;212.658000;0 +20260312 081200;212.659000;212.693000;212.659000;212.687000;0 +20260312 081300;212.690000;212.718000;212.673000;212.706000;0 +20260312 081400;212.706000;212.718000;212.675000;212.688000;0 +20260312 081500;212.687000;212.701000;212.649000;212.682000;0 +20260312 081600;212.678000;212.709000;212.661000;212.698000;0 +20260312 081700;212.699000;212.728000;212.687000;212.697000;0 +20260312 081800;212.694000;212.710000;212.646000;212.658000;0 +20260312 081900;212.659000;212.687000;212.638000;212.640000;0 +20260312 082000;212.640000;212.674000;212.602000;212.641000;0 +20260312 082100;212.637000;212.644000;212.557000;212.559000;0 +20260312 082200;212.557000;212.592000;212.545000;212.574000;0 +20260312 082300;212.573000;212.657000;212.567000;212.651000;0 +20260312 082400;212.651000;212.694000;212.641000;212.665000;0 +20260312 082500;212.665000;212.680000;212.618000;212.669000;0 +20260312 082600;212.669000;212.689000;212.661000;212.689000;0 +20260312 082700;212.691000;212.714000;212.674000;212.706000;0 +20260312 082800;212.709000;212.709000;212.657000;212.669000;0 +20260312 082900;212.669000;212.691000;212.653000;212.687000;0 +20260312 083000;212.688000;212.712000;212.675000;212.696000;0 +20260312 083100;212.692000;212.704000;212.641000;212.643000;0 +20260312 083200;212.642000;212.660000;212.616000;212.621000;0 +20260312 083300;212.621000;212.660000;212.620000;212.652000;0 +20260312 083400;212.648000;212.685000;212.646000;212.681000;0 +20260312 083500;212.678000;212.690000;212.664000;212.678000;0 +20260312 083600;212.681000;212.687000;212.660000;212.679000;0 +20260312 083700;212.678000;212.694000;212.665000;212.681000;0 +20260312 083800;212.683000;212.709000;212.676000;212.702000;0 +20260312 083900;212.698000;212.710000;212.686000;212.708000;0 +20260312 084000;212.707000;212.724000;212.694000;212.714000;0 +20260312 084100;212.711000;212.740000;212.708000;212.709000;0 +20260312 084200;212.710000;212.710000;212.679000;212.688000;0 +20260312 084300;212.686000;212.694000;212.664000;212.678000;0 +20260312 084400;212.677000;212.682000;212.651000;212.655000;0 +20260312 084500;212.652000;212.655000;212.626000;212.635000;0 +20260312 084600;212.633000;212.645000;212.599000;212.618000;0 +20260312 084700;212.618000;212.674000;212.613000;212.665000;0 +20260312 084800;212.665000;212.687000;212.655000;212.661000;0 +20260312 084900;212.657000;212.698000;212.649000;212.698000;0 +20260312 085000;212.699000;212.729000;212.693000;212.697000;0 +20260312 085100;212.697000;212.716000;212.686000;212.689000;0 +20260312 085200;212.688000;212.705000;212.655000;212.656000;0 +20260312 085300;212.657000;212.676000;212.634000;212.634000;0 +20260312 085400;212.640000;212.640000;212.611000;212.624000;0 +20260312 085500;212.625000;212.628000;212.560000;212.573000;0 +20260312 085600;212.572000;212.574000;212.520000;212.555000;0 +20260312 085700;212.555000;212.594000;212.548000;212.571000;0 +20260312 085800;212.571000;212.586000;212.551000;212.556000;0 +20260312 085900;212.558000;212.575000;212.536000;212.555000;0 +20260312 090000;212.554000;212.598000;212.545000;212.575000;0 +20260312 090100;212.576000;212.615000;212.564000;212.602000;0 +20260312 090200;212.604000;212.607000;212.578000;212.600000;0 +20260312 090300;212.598000;212.606000;212.566000;212.587000;0 +20260312 090400;212.587000;212.618000;212.581000;212.585000;0 +20260312 090500;212.583000;212.587000;212.528000;212.551000;0 +20260312 090600;212.552000;212.564000;212.534000;212.550000;0 +20260312 090700;212.550000;212.552000;212.518000;212.531000;0 +20260312 090800;212.533000;212.586000;212.529000;212.542000;0 +20260312 090900;212.543000;212.546000;212.517000;212.526000;0 +20260312 091000;212.527000;212.581000;212.526000;212.568000;0 +20260312 091100;212.568000;212.589000;212.551000;212.584000;0 +20260312 091200;212.585000;212.593000;212.555000;212.586000;0 +20260312 091300;212.588000;212.629000;212.583000;212.610000;0 +20260312 091400;212.613000;212.629000;212.601000;212.629000;0 +20260312 091500;212.631000;212.685000;212.627000;212.676000;0 +20260312 091600;212.674000;212.695000;212.637000;212.657000;0 +20260312 091700;212.657000;212.674000;212.640000;212.657000;0 +20260312 091800;212.656000;212.659000;212.594000;212.595000;0 +20260312 091900;212.592000;212.598000;212.552000;212.587000;0 +20260312 092000;212.587000;212.614000;212.579000;212.583000;0 +20260312 092100;212.583000;212.586000;212.555000;212.569000;0 +20260312 092200;212.572000;212.616000;212.572000;212.610000;0 +20260312 092300;212.611000;212.613000;212.595000;212.607000;0 +20260312 092400;212.606000;212.609000;212.588000;212.594000;0 +20260312 092500;212.595000;212.624000;212.593000;212.599000;0 +20260312 092600;212.599000;212.613000;212.587000;212.613000;0 +20260312 092700;212.613000;212.622000;212.603000;212.611000;0 +20260312 092800;212.606000;212.618000;212.578000;212.585000;0 +20260312 092900;212.585000;212.598000;212.574000;212.576000;0 +20260312 093000;212.579000;212.605000;212.575000;212.580000;0 +20260312 093100;212.577000;212.617000;212.576000;212.604000;0 +20260312 093200;212.604000;212.622000;212.595000;212.599000;0 +20260312 093300;212.600000;212.600000;212.557000;212.557000;0 +20260312 093400;212.557000;212.568000;212.529000;212.548000;0 +20260312 093500;212.548000;212.594000;212.543000;212.594000;0 +20260312 093600;212.593000;212.612000;212.582000;212.590000;0 +20260312 093700;212.589000;212.604000;212.572000;212.573000;0 +20260312 093800;212.572000;212.572000;212.534000;212.547000;0 +20260312 093900;212.545000;212.563000;212.533000;212.546000;0 +20260312 094000;212.545000;212.573000;212.532000;212.533000;0 +20260312 094100;212.534000;212.549000;212.519000;212.527000;0 +20260312 094200;212.527000;212.547000;212.516000;212.546000;0 +20260312 094300;212.546000;212.586000;212.540000;212.559000;0 +20260312 094400;212.562000;212.576000;212.553000;212.576000;0 +20260312 094500;212.576000;212.591000;212.571000;212.579000;0 +20260312 094600;212.584000;212.649000;212.567000;212.609000;0 +20260312 094700;212.612000;212.622000;212.546000;212.563000;0 +20260312 094800;212.562000;212.567000;212.530000;212.542000;0 +20260312 094900;212.539000;212.544000;212.503000;212.525000;0 +20260312 095000;212.524000;212.538000;212.507000;212.521000;0 +20260312 095100;212.524000;212.557000;212.518000;212.533000;0 +20260312 095200;212.539000;212.566000;212.529000;212.529000;0 +20260312 095300;212.530000;212.584000;212.528000;212.584000;0 +20260312 095400;212.585000;212.610000;212.569000;212.609000;0 +20260312 095500;212.610000;212.681000;212.610000;212.648000;0 +20260312 095600;212.649000;212.662000;212.626000;212.635000;0 +20260312 095700;212.637000;212.642000;212.615000;212.618000;0 +20260312 095800;212.619000;212.623000;212.587000;212.589000;0 +20260312 095900;212.589000;212.631000;212.589000;212.608000;0 +20260312 100000;212.612000;212.640000;212.567000;212.575000;0 +20260312 100100;212.573000;212.591000;212.557000;212.557000;0 +20260312 100200;212.557000;212.594000;212.544000;212.570000;0 +20260312 100300;212.570000;212.575000;212.545000;212.571000;0 +20260312 100400;212.570000;212.571000;212.537000;212.555000;0 +20260312 100500;212.555000;212.555000;212.518000;212.532000;0 +20260312 100600;212.532000;212.551000;212.517000;212.530000;0 +20260312 100700;212.527000;212.539000;212.516000;212.522000;0 +20260312 100800;212.526000;212.548000;212.498000;212.502000;0 +20260312 100900;212.500000;212.510000;212.486000;212.500000;0 +20260312 101000;212.501000;212.534000;212.484000;212.516000;0 +20260312 101100;212.515000;212.520000;212.486000;212.486000;0 +20260312 101200;212.487000;212.495000;212.462000;212.465000;0 +20260312 101300;212.464000;212.477000;212.434000;212.443000;0 +20260312 101400;212.446000;212.475000;212.439000;212.461000;0 +20260312 101500;212.461000;212.488000;212.454000;212.467000;0 +20260312 101600;212.465000;212.488000;212.461000;212.482000;0 +20260312 101700;212.483000;212.529000;212.483000;212.529000;0 +20260312 101800;212.527000;212.530000;212.484000;212.505000;0 +20260312 101900;212.503000;212.507000;212.488000;212.500000;0 +20260312 102000;212.500000;212.518000;212.486000;212.516000;0 +20260312 102100;212.516000;212.517000;212.480000;212.494000;0 +20260312 102200;212.498000;212.519000;212.486000;212.508000;0 +20260312 102300;212.509000;212.553000;212.508000;212.523000;0 +20260312 102400;212.523000;212.534000;212.499000;212.532000;0 +20260312 102500;212.533000;212.533000;212.507000;212.519000;0 +20260312 102600;212.517000;212.548000;212.512000;212.529000;0 +20260312 102700;212.528000;212.537000;212.506000;212.531000;0 +20260312 102800;212.528000;212.532000;212.509000;212.517000;0 +20260312 102900;212.516000;212.523000;212.491000;212.511000;0 +20260312 103000;212.514000;212.519000;212.499000;212.514000;0 +20260312 103100;212.515000;212.538000;212.510000;212.526000;0 +20260312 103200;212.523000;212.524000;212.493000;212.508000;0 +20260312 103300;212.508000;212.535000;212.488000;212.527000;0 +20260312 103400;212.527000;212.558000;212.523000;212.550000;0 +20260312 103500;212.547000;212.561000;212.531000;212.550000;0 +20260312 103600;212.550000;212.557000;212.537000;212.548000;0 +20260312 103700;212.545000;212.569000;212.534000;212.546000;0 +20260312 103800;212.546000;212.547000;212.513000;212.522000;0 +20260312 103900;212.522000;212.567000;212.522000;212.557000;0 +20260312 104000;212.556000;212.562000;212.518000;212.536000;0 +20260312 104100;212.536000;212.607000;212.531000;212.590000;0 +20260312 104200;212.583000;212.616000;212.569000;212.585000;0 +20260312 104300;212.582000;212.604000;212.564000;212.580000;0 +20260312 104400;212.584000;212.624000;212.565000;212.567000;0 +20260312 104500;212.567000;212.587000;212.540000;212.578000;0 +20260312 104600;212.582000;212.585000;212.535000;212.546000;0 +20260312 104700;212.549000;212.555000;212.505000;212.508000;0 +20260312 104800;212.508000;212.531000;212.501000;212.512000;0 +20260312 104900;212.513000;212.524000;212.483000;212.484000;0 +20260312 105000;212.489000;212.521000;212.476000;212.507000;0 +20260312 105100;212.510000;212.518000;212.451000;212.463000;0 +20260312 105200;212.464000;212.482000;212.435000;212.443000;0 +20260312 105300;212.445000;212.447000;212.405000;212.434000;0 +20260312 105400;212.434000;212.489000;212.413000;212.480000;0 +20260312 105500;212.482000;212.491000;212.429000;212.447000;0 +20260312 105600;212.452000;212.477000;212.430000;212.460000;0 +20260312 105700;212.460000;212.479000;212.444000;212.447000;0 +20260312 105800;212.447000;212.513000;212.445000;212.503000;0 +20260312 105900;212.506000;212.521000;212.490000;212.509000;0 +20260312 110000;212.509000;212.520000;212.492000;212.516000;0 +20260312 110100;212.515000;212.547000;212.506000;212.539000;0 +20260312 110200;212.536000;212.541000;212.510000;212.520000;0 +20260312 110300;212.521000;212.565000;212.521000;212.557000;0 +20260312 110400;212.556000;212.571000;212.549000;212.562000;0 +20260312 110500;212.562000;212.569000;212.542000;212.547000;0 +20260312 110600;212.548000;212.552000;212.517000;212.523000;0 +20260312 110700;212.523000;212.530000;212.513000;212.525000;0 +20260312 110800;212.528000;212.530000;212.472000;212.473000;0 +20260312 110900;212.475000;212.479000;212.449000;212.462000;0 +20260312 111000;212.463000;212.501000;212.460000;212.494000;0 +20260312 111100;212.493000;212.501000;212.439000;212.439000;0 +20260312 111200;212.437000;212.462000;212.437000;212.461000;0 +20260312 111300;212.457000;212.500000;212.457000;212.499000;0 +20260312 111400;212.495000;212.557000;212.473000;212.539000;0 +20260312 111500;212.543000;212.552000;212.526000;212.552000;0 +20260312 111600;212.552000;212.565000;212.531000;212.561000;0 +20260312 111700;212.562000;212.571000;212.519000;212.526000;0 +20260312 111800;212.526000;212.543000;212.510000;212.538000;0 +20260312 111900;212.539000;212.576000;212.524000;212.575000;0 +20260312 112000;212.573000;212.621000;212.557000;212.621000;0 +20260312 112100;212.621000;212.655000;212.591000;212.651000;0 +20260312 112200;212.651000;212.695000;212.647000;212.673000;0 +20260312 112300;212.672000;212.672000;212.622000;212.628000;0 +20260312 112400;212.628000;212.629000;212.567000;212.574000;0 +20260312 112500;212.577000;212.594000;212.541000;212.541000;0 +20260312 112600;212.538000;212.556000;212.527000;212.554000;0 +20260312 112700;212.555000;212.574000;212.549000;212.569000;0 +20260312 112800;212.569000;212.586000;212.557000;212.571000;0 +20260312 112900;212.571000;212.602000;212.571000;212.594000;0 +20260312 113000;212.591000;212.628000;212.587000;212.622000;0 +20260312 113100;212.622000;212.623000;212.595000;212.605000;0 +20260312 113200;212.606000;212.646000;212.601000;212.635000;0 +20260312 113300;212.639000;212.643000;212.614000;212.625000;0 +20260312 113400;212.624000;212.627000;212.584000;212.589000;0 +20260312 113500;212.591000;212.620000;212.581000;212.620000;0 +20260312 113600;212.620000;212.620000;212.559000;212.572000;0 +20260312 113700;212.574000;212.585000;212.555000;212.559000;0 +20260312 113800;212.561000;212.563000;212.529000;212.539000;0 +20260312 113900;212.542000;212.579000;212.533000;212.570000;0 +20260312 114000;212.569000;212.578000;212.548000;212.556000;0 +20260312 114100;212.557000;212.569000;212.549000;212.558000;0 +20260312 114200;212.556000;212.557000;212.538000;212.547000;0 +20260312 114300;212.547000;212.553000;212.524000;212.526000;0 +20260312 114400;212.525000;212.525000;212.501000;212.518000;0 +20260312 114500;212.516000;212.521000;212.487000;212.491000;0 +20260312 114600;212.489000;212.499000;212.454000;212.463000;0 +20260312 114700;212.461000;212.471000;212.444000;212.465000;0 +20260312 114800;212.464000;212.480000;212.456000;212.475000;0 +20260312 114900;212.476000;212.486000;212.443000;212.448000;0 +20260312 115000;212.449000;212.498000;212.445000;212.483000;0 +20260312 115100;212.485000;212.489000;212.454000;212.459000;0 +20260312 115200;212.461000;212.487000;212.458000;212.486000;0 +20260312 115300;212.487000;212.487000;212.452000;212.456000;0 +20260312 115400;212.456000;212.477000;212.455000;212.469000;0 +20260312 115500;212.470000;212.513000;212.467000;212.509000;0 +20260312 115600;212.504000;212.526000;212.491000;212.521000;0 +20260312 115700;212.522000;212.522000;212.480000;212.505000;0 +20260312 115800;212.505000;212.522000;212.497000;212.503000;0 +20260312 115900;212.499000;212.512000;212.486000;212.507000;0 +20260312 120000;212.507000;212.519000;212.504000;212.508000;0 +20260312 120100;212.514000;212.536000;212.514000;212.533000;0 +20260312 120200;212.532000;212.552000;212.523000;212.527000;0 +20260312 120300;212.529000;212.538000;212.517000;212.534000;0 +20260312 120400;212.536000;212.577000;212.536000;212.575000;0 +20260312 120500;212.574000;212.575000;212.550000;212.568000;0 +20260312 120600;212.568000;212.595000;212.563000;212.590000;0 +20260312 120700;212.590000;212.621000;212.586000;212.620000;0 +20260312 120800;212.621000;212.625000;212.599000;212.616000;0 +20260312 120900;212.615000;212.627000;212.593000;212.619000;0 +20260312 121000;212.619000;212.658000;212.617000;212.642000;0 +20260312 121100;212.641000;212.668000;212.636000;212.664000;0 +20260312 121200;212.663000;212.684000;212.655000;212.677000;0 +20260312 121300;212.677000;212.681000;212.654000;212.674000;0 +20260312 121400;212.671000;212.671000;212.633000;212.640000;0 +20260312 121500;212.639000;212.639000;212.608000;212.611000;0 +20260312 121600;212.612000;212.625000;212.595000;212.620000;0 +20260312 121700;212.618000;212.630000;212.609000;212.620000;0 +20260312 121800;212.618000;212.636000;212.617000;212.628000;0 +20260312 121900;212.630000;212.636000;212.615000;212.629000;0 +20260312 122000;212.627000;212.655000;212.625000;212.651000;0 +20260312 122100;212.654000;212.660000;212.641000;212.655000;0 +20260312 122200;212.657000;212.702000;212.652000;212.701000;0 +20260312 122300;212.701000;212.714000;212.681000;212.701000;0 +20260312 122400;212.701000;212.710000;212.683000;212.705000;0 +20260312 122500;212.705000;212.717000;212.685000;212.704000;0 +20260312 122600;212.704000;212.714000;212.684000;212.699000;0 +20260312 122700;212.703000;212.710000;212.694000;212.699000;0 +20260312 122800;212.698000;212.703000;212.673000;212.674000;0 +20260312 122900;212.674000;212.692000;212.670000;212.690000;0 +20260312 123000;212.690000;212.705000;212.681000;212.704000;0 +20260312 123100;212.705000;212.739000;212.700000;212.726000;0 +20260312 123200;212.728000;212.749000;212.719000;212.739000;0 +20260312 123300;212.738000;212.750000;212.724000;212.724000;0 +20260312 123400;212.725000;212.743000;212.705000;212.738000;0 +20260312 123500;212.736000;212.776000;212.734000;212.776000;0 +20260312 123600;212.773000;212.782000;212.730000;212.734000;0 +20260312 123700;212.734000;212.743000;212.722000;212.736000;0 +20260312 123800;212.737000;212.744000;212.723000;212.742000;0 +20260312 123900;212.743000;212.747000;212.731000;212.744000;0 +20260312 124000;212.745000;212.777000;212.741000;212.761000;0 +20260312 124100;212.762000;212.765000;212.714000;212.717000;0 +20260312 124200;212.719000;212.723000;212.707000;212.709000;0 +20260312 124300;212.710000;212.717000;212.696000;212.698000;0 +20260312 124400;212.699000;212.755000;212.695000;212.742000;0 +20260312 124500;212.744000;212.749000;212.715000;212.724000;0 +20260312 124600;212.722000;212.752000;212.717000;212.718000;0 +20260312 124700;212.717000;212.734000;212.716000;212.722000;0 +20260312 124800;212.724000;212.761000;212.719000;212.738000;0 +20260312 124900;212.738000;212.741000;212.726000;212.738000;0 +20260312 125000;212.736000;212.773000;212.730000;212.771000;0 +20260312 125100;212.773000;212.776000;212.759000;212.772000;0 +20260312 125200;212.772000;212.773000;212.742000;212.751000;0 +20260312 125300;212.753000;212.759000;212.732000;212.741000;0 +20260312 125400;212.742000;212.753000;212.738000;212.748000;0 +20260312 125500;212.749000;212.752000;212.708000;212.737000;0 +20260312 125600;212.736000;212.767000;212.727000;212.760000;0 +20260312 125700;212.760000;212.776000;212.750000;212.761000;0 +20260312 125800;212.758000;212.771000;212.744000;212.764000;0 +20260312 125900;212.763000;212.779000;212.759000;212.778000;0 +20260312 130000;212.781000;212.805000;212.763000;212.769000;0 +20260312 130100;212.769000;212.773000;212.737000;212.759000;0 +20260312 130200;212.758000;212.769000;212.747000;212.759000;0 +20260312 130300;212.756000;212.772000;212.749000;212.770000;0 +20260312 130400;212.767000;212.789000;212.753000;212.781000;0 +20260312 130500;212.783000;212.789000;212.771000;212.771000;0 +20260312 130600;212.771000;212.785000;212.759000;212.774000;0 +20260312 130700;212.774000;212.835000;212.771000;212.833000;0 +20260312 130800;212.832000;212.848000;212.809000;212.810000;0 +20260312 130900;212.812000;212.831000;212.806000;212.821000;0 +20260312 131000;212.819000;212.834000;212.813000;212.826000;0 +20260312 131100;212.827000;212.836000;212.815000;212.825000;0 +20260312 131200;212.827000;212.832000;212.823000;212.828000;0 +20260312 131300;212.827000;212.842000;212.821000;212.839000;0 +20260312 131400;212.840000;212.855000;212.828000;212.841000;0 +20260312 131500;212.844000;212.855000;212.836000;212.853000;0 +20260312 131600;212.855000;212.865000;212.845000;212.851000;0 +20260312 131700;212.849000;212.857000;212.821000;212.830000;0 +20260312 131800;212.832000;212.833000;212.792000;212.797000;0 +20260312 131900;212.796000;212.798000;212.772000;212.779000;0 +20260312 132000;212.780000;212.780000;212.738000;212.739000;0 +20260312 132100;212.737000;212.752000;212.735000;212.738000;0 +20260312 132200;212.740000;212.750000;212.735000;212.737000;0 +20260312 132300;212.736000;212.749000;212.735000;212.746000;0 +20260312 132400;212.746000;212.769000;212.746000;212.757000;0 +20260312 132500;212.758000;212.758000;212.730000;212.732000;0 +20260312 132600;212.732000;212.736000;212.711000;212.726000;0 +20260312 132700;212.728000;212.735000;212.721000;212.726000;0 +20260312 132800;212.727000;212.731000;212.710000;212.713000;0 +20260312 132900;212.712000;212.724000;212.706000;212.723000;0 +20260312 133000;212.722000;212.729000;212.709000;212.728000;0 +20260312 133100;212.729000;212.744000;212.729000;212.744000;0 +20260312 133200;212.745000;212.756000;212.737000;212.754000;0 +20260312 133300;212.754000;212.771000;212.741000;212.743000;0 +20260312 133400;212.745000;212.769000;212.729000;212.732000;0 +20260312 133500;212.733000;212.747000;212.730000;212.744000;0 +20260312 133600;212.743000;212.746000;212.731000;212.746000;0 +20260312 133700;212.745000;212.764000;212.738000;212.743000;0 +20260312 133800;212.742000;212.744000;212.728000;212.738000;0 +20260312 133900;212.738000;212.743000;212.730000;212.737000;0 +20260312 134000;212.736000;212.743000;212.718000;212.723000;0 +20260312 134100;212.718000;212.725000;212.704000;212.719000;0 +20260312 134200;212.720000;212.740000;212.720000;212.737000;0 +20260312 134300;212.735000;212.735000;212.713000;212.722000;0 +20260312 134400;212.723000;212.733000;212.716000;212.724000;0 +20260312 134500;212.726000;212.728000;212.716000;212.723000;0 +20260312 134600;212.728000;212.741000;212.721000;212.732000;0 +20260312 134700;212.731000;212.732000;212.702000;212.706000;0 +20260312 134800;212.706000;212.710000;212.687000;212.693000;0 +20260312 134900;212.694000;212.694000;212.667000;212.672000;0 +20260312 135000;212.675000;212.699000;212.671000;212.696000;0 +20260312 135100;212.697000;212.706000;212.689000;212.697000;0 +20260312 135200;212.696000;212.706000;212.679000;212.684000;0 +20260312 135300;212.683000;212.709000;212.678000;212.708000;0 +20260312 135400;212.707000;212.707000;212.693000;212.702000;0 +20260312 135500;212.704000;212.714000;212.700000;212.712000;0 +20260312 135600;212.713000;212.714000;212.689000;212.694000;0 +20260312 135700;212.694000;212.701000;212.681000;212.685000;0 +20260312 135800;212.686000;212.698000;212.684000;212.688000;0 +20260312 135900;212.690000;212.690000;212.660000;212.680000;0 +20260312 140000;212.679000;212.683000;212.650000;212.678000;0 +20260312 140100;212.677000;212.701000;212.670000;212.691000;0 +20260312 140200;212.693000;212.696000;212.670000;212.671000;0 +20260312 140300;212.672000;212.675000;212.665000;212.670000;0 +20260312 140400;212.672000;212.685000;212.668000;212.679000;0 +20260312 140500;212.674000;212.702000;212.665000;212.698000;0 +20260312 140600;212.696000;212.721000;212.696000;212.718000;0 +20260312 140700;212.718000;212.728000;212.689000;212.696000;0 +20260312 140800;212.693000;212.718000;212.690000;212.715000;0 +20260312 140900;212.713000;212.731000;212.713000;212.725000;0 +20260312 141000;212.721000;212.724000;212.705000;212.713000;0 +20260312 141100;212.713000;212.719000;212.692000;212.700000;0 +20260312 141200;212.700000;212.709000;212.687000;212.702000;0 +20260312 141300;212.704000;212.717000;212.704000;212.715000;0 +20260312 141400;212.713000;212.730000;212.713000;212.730000;0 +20260312 141500;212.729000;212.763000;212.729000;212.739000;0 +20260312 141600;212.735000;212.737000;212.724000;212.729000;0 +20260312 141700;212.732000;212.732000;212.695000;212.699000;0 +20260312 141800;212.701000;212.727000;212.701000;212.718000;0 +20260312 141900;212.718000;212.718000;212.703000;212.703000;0 +20260312 142000;212.703000;212.713000;212.699000;212.701000;0 +20260312 142100;212.701000;212.725000;212.699000;212.725000;0 +20260312 142200;212.726000;212.732000;212.713000;212.717000;0 +20260312 142300;212.717000;212.720000;212.695000;212.697000;0 +20260312 142400;212.696000;212.699000;212.690000;212.694000;0 +20260312 142500;212.693000;212.700000;212.682000;212.688000;0 +20260312 142600;212.688000;212.703000;212.687000;212.700000;0 +20260312 142700;212.697000;212.699000;212.687000;212.688000;0 +20260312 142800;212.689000;212.725000;212.687000;212.723000;0 +20260312 142900;212.723000;212.734000;212.718000;212.730000;0 +20260312 143000;212.732000;212.746000;212.732000;212.744000;0 +20260312 143100;212.743000;212.745000;212.724000;212.729000;0 +20260312 143200;212.730000;212.747000;212.720000;212.746000;0 +20260312 143300;212.747000;212.762000;212.736000;212.751000;0 +20260312 143400;212.752000;212.752000;212.738000;212.739000;0 +20260312 143500;212.738000;212.752000;212.735000;212.740000;0 +20260312 143600;212.739000;212.742000;212.716000;212.723000;0 +20260312 143700;212.724000;212.724000;212.708000;212.710000;0 +20260312 143800;212.712000;212.712000;212.698000;212.707000;0 +20260312 143900;212.708000;212.712000;212.682000;212.682000;0 +20260312 144000;212.680000;212.689000;212.656000;212.656000;0 +20260312 144100;212.656000;212.665000;212.653000;212.659000;0 +20260312 144200;212.659000;212.662000;212.646000;212.647000;0 +20260312 144300;212.646000;212.660000;212.642000;212.657000;0 +20260312 144400;212.660000;212.666000;212.650000;212.662000;0 +20260312 144500;212.662000;212.666000;212.656000;212.656000;0 +20260312 144600;212.657000;212.658000;212.641000;212.653000;0 +20260312 144700;212.654000;212.661000;212.641000;212.644000;0 +20260312 144800;212.647000;212.659000;212.647000;212.659000;0 +20260312 144900;212.659000;212.674000;212.647000;212.647000;0 +20260312 145000;212.647000;212.665000;212.630000;212.663000;0 +20260312 145100;212.660000;212.684000;212.654000;212.683000;0 +20260312 145200;212.683000;212.689000;212.672000;212.682000;0 +20260312 145300;212.685000;212.693000;212.682000;212.691000;0 +20260312 145400;212.692000;212.696000;212.671000;212.696000;0 +20260312 145500;212.692000;212.722000;212.692000;212.714000;0 +20260312 145600;212.712000;212.731000;212.710000;212.731000;0 +20260312 145700;212.731000;212.737000;212.720000;212.733000;0 +20260312 145800;212.735000;212.737000;212.719000;212.730000;0 +20260312 145900;212.729000;212.732000;212.714000;212.720000;0 +20260312 150000;212.727000;212.727000;212.687000;212.695000;0 +20260312 150100;212.695000;212.709000;212.695000;212.698000;0 +20260312 150200;212.698000;212.712000;212.691000;212.705000;0 +20260312 150300;212.706000;212.738000;212.705000;212.737000;0 +20260312 150400;212.739000;212.743000;212.731000;212.731000;0 +20260312 150500;212.729000;212.744000;212.719000;212.743000;0 +20260312 150600;212.740000;212.746000;212.726000;212.739000;0 +20260312 150700;212.738000;212.742000;212.725000;212.728000;0 +20260312 150800;212.728000;212.743000;212.726000;212.743000;0 +20260312 150900;212.743000;212.750000;212.742000;212.749000;0 +20260312 151000;212.749000;212.751000;212.741000;212.745000;0 +20260312 151100;212.745000;212.745000;212.728000;212.731000;0 +20260312 151200;212.731000;212.737000;212.716000;212.716000;0 +20260312 151300;212.717000;212.757000;212.708000;212.733000;0 +20260312 151400;212.731000;212.735000;212.712000;212.732000;0 +20260312 151500;212.732000;212.736000;212.725000;212.731000;0 +20260312 151600;212.730000;212.731000;212.705000;212.710000;0 +20260312 151700;212.710000;212.730000;212.702000;212.702000;0 +20260312 151800;212.702000;212.714000;212.702000;212.707000;0 +20260312 151900;212.706000;212.715000;212.704000;212.708000;0 +20260312 152000;212.707000;212.709000;212.683000;212.683000;0 +20260312 152100;212.684000;212.684000;212.657000;212.663000;0 +20260312 152200;212.660000;212.667000;212.651000;212.652000;0 +20260312 152300;212.654000;212.677000;212.651000;212.675000;0 +20260312 152400;212.674000;212.692000;212.673000;212.692000;0 +20260312 152500;212.691000;212.695000;212.690000;212.695000;0 +20260312 152600;212.693000;212.702000;212.681000;212.701000;0 +20260312 152700;212.698000;212.707000;212.693000;212.700000;0 +20260312 152800;212.708000;212.714000;212.674000;212.678000;0 +20260312 152900;212.680000;212.683000;212.644000;212.648000;0 +20260312 153000;212.650000;212.658000;212.643000;212.645000;0 +20260312 153100;212.644000;212.653000;212.643000;212.646000;0 +20260312 153200;212.647000;212.649000;212.624000;212.630000;0 +20260312 153300;212.630000;212.645000;212.626000;212.634000;0 +20260312 153400;212.631000;212.645000;212.622000;212.622000;0 +20260312 153500;212.620000;212.628000;212.615000;212.624000;0 +20260312 153600;212.627000;212.631000;212.615000;212.625000;0 +20260312 153700;212.628000;212.648000;212.621000;212.648000;0 +20260312 153800;212.647000;212.652000;212.637000;212.652000;0 +20260312 153900;212.651000;212.661000;212.646000;212.660000;0 +20260312 154000;212.657000;212.657000;212.630000;212.635000;0 +20260312 154100;212.636000;212.662000;212.630000;212.656000;0 +20260312 154200;212.662000;212.669000;212.656000;212.661000;0 +20260312 154300;212.659000;212.659000;212.644000;212.653000;0 +20260312 154400;212.656000;212.668000;212.652000;212.664000;0 +20260312 154500;212.665000;212.669000;212.661000;212.667000;0 +20260312 154600;212.668000;212.670000;212.662000;212.668000;0 +20260312 154700;212.670000;212.689000;212.668000;212.689000;0 +20260312 154800;212.687000;212.702000;212.673000;212.701000;0 +20260312 154900;212.700000;212.702000;212.674000;212.693000;0 +20260312 155000;212.697000;212.707000;212.695000;212.705000;0 +20260312 155100;212.701000;212.713000;212.675000;212.678000;0 +20260312 155200;212.682000;212.682000;212.665000;212.679000;0 +20260312 155300;212.680000;212.685000;212.670000;212.679000;0 +20260312 155400;212.677000;212.682000;212.676000;212.678000;0 +20260312 155500;212.676000;212.694000;212.661000;212.681000;0 +20260312 155600;212.681000;212.685000;212.655000;212.659000;0 +20260312 155700;212.662000;212.665000;212.633000;212.665000;0 +20260312 155800;212.664000;212.671000;212.610000;212.613000;0 +20260312 155900;212.613000;212.613000;212.539000;212.539000;0 +20260312 160000;212.545000;212.558000;212.478000;212.479000;0 +20260312 160100;212.460000;212.484000;212.441000;212.475000;0 +20260312 160200;212.478000;212.486000;212.446000;212.486000;0 +20260312 160400;212.485000;212.485000;212.485000;212.485000;0 +20260312 160500;212.473000;212.475000;212.473000;212.474000;0 +20260312 160600;212.475000;212.475000;212.474000;212.474000;0 +20260312 160700;212.474000;212.523000;212.474000;212.520000;0 +20260312 160800;212.520000;212.520000;212.491000;212.517000;0 +20260312 160900;212.515000;212.535000;212.515000;212.524000;0 +20260312 161000;212.523000;212.526000;212.521000;212.521000;0 +20260312 161100;212.520000;212.520000;212.519000;212.519000;0 +20260312 161200;212.523000;212.525000;212.522000;212.524000;0 +20260312 161400;212.527000;212.528000;212.527000;212.528000;0 +20260312 161500;212.528000;212.538000;212.320000;212.440000;0 +20260312 161600;212.441000;212.491000;212.441000;212.482000;0 +20260312 161700;212.479000;212.479000;212.479000;212.479000;0 +20260312 161800;212.487000;212.491000;212.476000;212.484000;0 +20260312 161900;212.485000;212.485000;212.485000;212.485000;0 +20260312 162000;212.484000;212.485000;212.484000;212.485000;0 +20260312 162100;212.479000;212.503000;212.479000;212.499000;0 +20260312 162200;212.502000;212.522000;212.469000;212.522000;0 +20260312 162300;212.519000;212.523000;212.519000;212.523000;0 +20260312 162400;212.524000;212.524000;212.522000;212.522000;0 +20260312 162500;212.522000;212.565000;212.522000;212.565000;0 +20260312 162600;212.567000;212.576000;212.506000;212.542000;0 +20260312 162700;212.562000;212.562000;212.542000;212.548000;0 +20260312 162800;212.547000;212.548000;212.547000;212.547000;0 +20260312 162900;212.548000;212.548000;212.548000;212.548000;0 +20260312 163000;212.555000;212.569000;212.544000;212.557000;0 +20260312 163100;212.557000;212.560000;212.543000;212.552000;0 +20260312 163200;212.553000;212.587000;212.539000;212.586000;0 +20260312 163300;212.586000;212.588000;212.557000;212.563000;0 +20260312 163400;212.563000;212.583000;212.560000;212.580000;0 +20260312 163500;212.580000;212.580000;212.537000;212.561000;0 +20260312 163600;212.548000;212.564000;212.547000;212.556000;0 +20260312 163700;212.556000;212.568000;212.531000;212.564000;0 +20260312 163800;212.563000;212.611000;212.547000;212.548000;0 +20260312 163900;212.548000;212.633000;212.548000;212.617000;0 +20260312 164000;212.626000;212.657000;212.626000;212.650000;0 +20260312 164100;212.645000;212.702000;212.645000;212.688000;0 +20260312 164200;212.690000;212.697000;212.667000;212.684000;0 +20260312 164300;212.687000;212.687000;212.663000;212.681000;0 +20260312 164400;212.680000;212.681000;212.661000;212.662000;0 +20260312 164500;212.670000;212.676000;212.662000;212.667000;0 +20260312 164600;212.667000;212.673000;212.652000;212.663000;0 +20260312 164700;212.665000;212.673000;212.664000;212.665000;0 +20260312 164800;212.668000;212.670000;212.665000;212.669000;0 +20260312 164900;212.670000;212.670000;212.556000;212.590000;0 +20260312 165000;212.598000;212.602000;212.577000;212.599000;0 +20260312 165100;212.601000;212.625000;212.597000;212.604000;0 +20260312 165200;212.603000;212.616000;212.597000;212.603000;0 +20260312 165300;212.603000;212.616000;212.601000;212.602000;0 +20260312 165400;212.611000;212.653000;212.554000;212.587000;0 +20260312 165500;212.587000;212.636000;212.577000;212.587000;0 +20260312 165600;212.584000;212.603000;212.562000;212.566000;0 +20260312 165700;212.584000;212.587000;212.567000;212.574000;0 +20260312 165800;212.575000;212.630000;212.567000;212.630000;0 +20260312 165900;212.698000;212.708000;212.698000;212.708000;0 +20260312 170000;212.703000;212.721000;212.618000;212.627000;0 +20260312 170100;212.644000;212.679000;212.611000;212.671000;0 +20260312 170200;212.671000;212.705000;212.655000;212.692000;0 +20260312 170300;212.687000;212.709000;212.685000;212.709000;0 +20260312 170400;212.707000;212.716000;212.700000;212.715000;0 +20260312 170500;212.717000;212.717000;212.646000;212.659000;0 +20260312 170600;212.656000;212.667000;212.643000;212.643000;0 +20260312 170700;212.650000;212.654000;212.641000;212.646000;0 +20260312 170800;212.645000;212.658000;212.644000;212.655000;0 +20260312 170900;212.661000;212.664000;212.645000;212.664000;0 +20260312 171000;212.664000;212.667000;212.637000;212.661000;0 +20260312 171100;212.661000;212.671000;212.638000;212.639000;0 +20260312 171200;212.637000;212.643000;212.612000;212.621000;0 +20260312 171300;212.619000;212.619000;212.601000;212.603000;0 +20260312 171400;212.600000;212.623000;212.595000;212.615000;0 +20260312 171500;212.615000;212.629000;212.608000;212.626000;0 +20260312 171600;212.626000;212.630000;212.613000;212.620000;0 +20260312 171700;212.621000;212.621000;212.597000;212.598000;0 +20260312 171800;212.596000;212.597000;212.558000;212.559000;0 +20260312 171900;212.560000;212.568000;212.550000;212.556000;0 +20260312 172000;212.555000;212.556000;212.547000;212.549000;0 +20260312 172100;212.549000;212.553000;212.549000;212.551000;0 +20260312 172200;212.551000;212.559000;212.549000;212.549000;0 +20260312 172300;212.549000;212.562000;212.549000;212.556000;0 +20260312 172400;212.557000;212.559000;212.552000;212.556000;0 +20260312 172500;212.557000;212.564000;212.536000;212.540000;0 +20260312 172600;212.540000;212.609000;212.540000;212.605000;0 +20260312 172700;212.606000;212.607000;212.596000;212.598000;0 +20260312 172800;212.596000;212.612000;212.593000;212.609000;0 +20260312 172900;212.608000;212.618000;212.606000;212.612000;0 +20260312 173000;212.609000;212.614000;212.605000;212.605000;0 +20260312 173100;212.602000;212.604000;212.588000;212.593000;0 +20260312 173200;212.591000;212.616000;212.579000;212.616000;0 +20260312 173300;212.624000;212.636000;212.599000;212.632000;0 +20260312 173400;212.630000;212.639000;212.612000;212.612000;0 +20260312 173500;212.612000;212.621000;212.610000;212.616000;0 +20260312 173600;212.616000;212.627000;212.597000;212.610000;0 +20260312 173700;212.610000;212.614000;212.594000;212.608000;0 +20260312 173800;212.608000;212.629000;212.600000;212.629000;0 +20260312 173900;212.628000;212.635000;212.608000;212.610000;0 +20260312 174000;212.609000;212.616000;212.595000;212.597000;0 +20260312 174100;212.597000;212.607000;212.590000;212.602000;0 +20260312 174200;212.606000;212.624000;212.602000;212.616000;0 +20260312 174300;212.613000;212.621000;212.605000;212.605000;0 +20260312 174400;212.604000;212.605000;212.603000;212.603000;0 +20260312 174500;212.606000;212.633000;212.605000;212.632000;0 +20260312 174600;212.632000;212.650000;212.632000;212.650000;0 +20260312 174700;212.649000;212.673000;212.649000;212.662000;0 +20260312 174800;212.655000;212.669000;212.651000;212.669000;0 +20260312 174900;212.669000;212.669000;212.639000;212.650000;0 +20260312 175000;212.651000;212.653000;212.641000;212.641000;0 +20260312 175100;212.641000;212.641000;212.623000;212.634000;0 +20260312 175200;212.634000;212.642000;212.629000;212.639000;0 +20260312 175300;212.639000;212.642000;212.636000;212.637000;0 +20260312 175400;212.638000;212.645000;212.625000;212.630000;0 +20260312 175500;212.631000;212.644000;212.629000;212.641000;0 +20260312 175600;212.641000;212.649000;212.632000;212.633000;0 +20260312 175700;212.633000;212.648000;212.632000;212.646000;0 +20260312 175800;212.644000;212.648000;212.628000;212.629000;0 +20260312 175900;212.630000;212.632000;212.608000;212.608000;0 +20260312 180000;212.610000;212.649000;212.607000;212.645000;0 +20260312 180100;212.644000;212.647000;212.626000;212.630000;0 +20260312 180200;212.631000;212.634000;212.616000;212.625000;0 +20260312 180300;212.626000;212.642000;212.614000;212.639000;0 +20260312 180400;212.639000;212.651000;212.631000;212.634000;0 +20260312 180500;212.632000;212.640000;212.621000;212.638000;0 +20260312 180600;212.638000;212.657000;212.633000;212.654000;0 +20260312 180700;212.654000;212.662000;212.643000;212.643000;0 +20260312 180800;212.645000;212.650000;212.635000;212.644000;0 +20260312 180900;212.645000;212.647000;212.638000;212.647000;0 +20260312 181000;212.649000;212.657000;212.640000;212.652000;0 +20260312 181100;212.656000;212.656000;212.628000;212.630000;0 +20260312 181200;212.628000;212.647000;212.628000;212.642000;0 +20260312 181300;212.642000;212.649000;212.641000;212.649000;0 +20260312 181400;212.648000;212.675000;212.648000;212.664000;0 +20260312 181500;212.664000;212.682000;212.664000;212.672000;0 +20260312 181600;212.670000;212.672000;212.653000;212.653000;0 +20260312 181700;212.656000;212.662000;212.647000;212.647000;0 +20260312 181800;212.647000;212.657000;212.647000;212.657000;0 +20260312 181900;212.656000;212.662000;212.652000;212.659000;0 +20260312 182000;212.660000;212.668000;212.657000;212.668000;0 +20260312 182100;212.662000;212.670000;212.655000;212.664000;0 +20260312 182200;212.668000;212.668000;212.668000;212.668000;0 +20260312 182300;212.665000;212.674000;212.661000;212.665000;0 +20260312 182400;212.665000;212.679000;212.665000;212.679000;0 +20260312 182500;212.678000;212.687000;212.672000;212.686000;0 +20260312 182600;212.686000;212.686000;212.668000;212.683000;0 +20260312 182700;212.677000;212.684000;212.674000;212.684000;0 +20260312 182800;212.681000;212.681000;212.670000;212.670000;0 +20260312 182900;212.674000;212.675000;212.656000;212.656000;0 +20260312 183000;212.655000;212.659000;212.641000;212.645000;0 +20260312 183100;212.644000;212.652000;212.637000;212.648000;0 +20260312 183200;212.650000;212.660000;212.642000;212.660000;0 +20260312 183300;212.657000;212.684000;212.656000;212.682000;0 +20260312 183400;212.679000;212.681000;212.667000;212.673000;0 +20260312 183500;212.672000;212.683000;212.660000;212.668000;0 +20260312 183600;212.672000;212.696000;212.665000;212.692000;0 +20260312 183700;212.694000;212.696000;212.680000;212.683000;0 +20260312 183800;212.683000;212.683000;212.669000;212.672000;0 +20260312 183900;212.671000;212.684000;212.669000;212.680000;0 +20260312 184000;212.684000;212.690000;212.681000;212.689000;0 +20260312 184100;212.686000;212.694000;212.684000;212.686000;0 +20260312 184200;212.685000;212.685000;212.680000;212.681000;0 +20260312 184300;212.684000;212.684000;212.678000;212.683000;0 +20260312 184400;212.691000;212.704000;212.686000;212.686000;0 +20260312 184500;212.690000;212.690000;212.674000;212.675000;0 +20260312 184600;212.677000;212.684000;212.662000;212.663000;0 +20260312 184700;212.675000;212.680000;212.630000;212.631000;0 +20260312 184800;212.630000;212.651000;212.630000;212.643000;0 +20260312 184900;212.641000;212.648000;212.621000;212.644000;0 +20260312 185000;212.644000;212.677000;212.644000;212.673000;0 +20260312 185100;212.664000;212.666000;212.629000;212.631000;0 +20260312 185200;212.633000;212.642000;212.600000;212.609000;0 +20260312 185300;212.615000;212.629000;212.615000;212.625000;0 +20260312 185400;212.629000;212.632000;212.614000;212.616000;0 +20260312 185500;212.616000;212.622000;212.593000;212.593000;0 +20260312 185600;212.600000;212.600000;212.565000;212.567000;0 +20260312 185700;212.565000;212.576000;212.547000;212.569000;0 +20260312 185800;212.571000;212.586000;212.566000;212.582000;0 +20260312 185900;212.580000;212.606000;212.576000;212.606000;0 +20260312 190000;212.605000;212.605000;212.512000;212.529000;0 +20260312 190100;212.529000;212.529000;212.480000;212.488000;0 +20260312 190200;212.489000;212.495000;212.423000;212.439000;0 +20260312 190300;212.439000;212.499000;212.432000;212.458000;0 +20260312 190400;212.460000;212.492000;212.449000;212.457000;0 +20260312 190500;212.457000;212.534000;212.453000;212.505000;0 +20260312 190600;212.505000;212.505000;212.467000;212.476000;0 +20260312 190700;212.476000;212.483000;212.445000;212.464000;0 +20260312 190800;212.464000;212.474000;212.457000;212.460000;0 +20260312 190900;212.459000;212.498000;212.459000;212.498000;0 +20260312 191000;212.498000;212.535000;212.492000;212.535000;0 +20260312 191100;212.535000;212.536000;212.506000;212.517000;0 +20260312 191200;212.520000;212.551000;212.514000;212.544000;0 +20260312 191300;212.543000;212.549000;212.496000;212.496000;0 +20260312 191400;212.498000;212.540000;212.495000;212.527000;0 +20260312 191500;212.530000;212.547000;212.519000;212.526000;0 +20260312 191600;212.526000;212.533000;212.497000;212.533000;0 +20260312 191700;212.532000;212.554000;212.514000;212.516000;0 +20260312 191800;212.523000;212.531000;212.521000;212.525000;0 +20260312 191900;212.527000;212.532000;212.505000;212.520000;0 +20260312 192000;212.517000;212.524000;212.490000;212.494000;0 +20260312 192100;212.495000;212.510000;212.492000;212.507000;0 +20260312 192200;212.506000;212.524000;212.505000;212.512000;0 +20260312 192300;212.509000;212.513000;212.471000;212.471000;0 +20260312 192400;212.471000;212.498000;212.460000;212.490000;0 +20260312 192500;212.492000;212.505000;212.483000;212.501000;0 +20260312 192600;212.501000;212.521000;212.498000;212.520000;0 +20260312 192700;212.522000;212.545000;212.502000;212.517000;0 +20260312 192800;212.518000;212.519000;212.492000;212.499000;0 +20260312 192900;212.498000;212.505000;212.485000;212.494000;0 +20260312 193000;212.496000;212.523000;212.494000;212.522000;0 +20260312 193100;212.522000;212.555000;212.516000;212.551000;0 +20260312 193200;212.550000;212.552000;212.507000;212.518000;0 +20260312 193300;212.523000;212.534000;212.520000;212.525000;0 +20260312 193400;212.527000;212.538000;212.515000;212.533000;0 +20260312 193500;212.533000;212.563000;212.530000;212.548000;0 +20260312 193600;212.549000;212.561000;212.539000;212.548000;0 +20260312 193700;212.548000;212.578000;212.546000;212.578000;0 +20260312 193800;212.579000;212.619000;212.573000;212.618000;0 +20260312 193900;212.620000;212.649000;212.619000;212.629000;0 +20260312 194000;212.637000;212.638000;212.624000;212.627000;0 +20260312 194100;212.626000;212.648000;212.616000;212.630000;0 +20260312 194200;212.628000;212.641000;212.628000;212.640000;0 +20260312 194300;212.637000;212.642000;212.613000;212.626000;0 +20260312 194400;212.628000;212.640000;212.613000;212.616000;0 +20260312 194500;212.623000;212.632000;212.605000;212.610000;0 +20260312 194600;212.611000;212.618000;212.603000;212.607000;0 +20260312 194700;212.622000;212.622000;212.576000;212.583000;0 +20260312 194800;212.579000;212.601000;212.560000;212.586000;0 +20260312 194900;212.587000;212.610000;212.587000;212.592000;0 +20260312 195000;212.594000;212.607000;212.582000;212.599000;0 +20260312 195100;212.601000;212.620000;212.593000;212.595000;0 +20260312 195200;212.592000;212.634000;212.585000;212.634000;0 +20260312 195300;212.634000;212.700000;212.616000;212.696000;0 +20260312 195400;212.694000;212.697000;212.621000;212.656000;0 +20260312 195500;212.653000;212.668000;212.571000;212.610000;0 +20260312 195600;212.606000;212.645000;212.603000;212.632000;0 +20260312 195700;212.632000;212.662000;212.616000;212.620000;0 +20260312 195800;212.618000;212.620000;212.604000;212.608000;0 +20260312 195900;212.609000;212.609000;212.572000;212.599000;0 +20260312 200000;212.599000;212.655000;212.588000;212.647000;0 +20260312 200100;212.645000;212.671000;212.641000;212.650000;0 +20260312 200200;212.650000;212.667000;212.627000;212.648000;0 +20260312 200300;212.647000;212.650000;212.614000;212.615000;0 +20260312 200400;212.613000;212.619000;212.594000;212.616000;0 +20260312 200500;212.615000;212.639000;212.611000;212.627000;0 +20260312 200600;212.628000;212.637000;212.613000;212.618000;0 +20260312 200700;212.612000;212.636000;212.597000;212.631000;0 +20260312 200800;212.633000;212.648000;212.626000;212.644000;0 +20260312 200900;212.643000;212.685000;212.643000;212.677000;0 +20260312 201000;212.680000;212.681000;212.657000;212.661000;0 +20260312 201100;212.659000;212.663000;212.624000;212.650000;0 +20260312 201200;212.650000;212.673000;212.628000;212.673000;0 +20260312 201300;212.667000;212.687000;212.649000;212.672000;0 +20260312 201400;212.670000;212.698000;212.668000;212.689000;0 +20260312 201500;212.691000;212.703000;212.673000;212.677000;0 +20260312 201600;212.672000;212.681000;212.624000;212.645000;0 +20260312 201700;212.646000;212.664000;212.636000;212.659000;0 +20260312 201800;212.653000;212.689000;212.653000;212.680000;0 +20260312 201900;212.678000;212.688000;212.659000;212.687000;0 +20260312 202000;212.687000;212.718000;212.687000;212.694000;0 +20260312 202100;212.695000;212.703000;212.691000;212.699000;0 +20260312 202200;212.700000;212.708000;212.679000;212.684000;0 +20260312 202300;212.686000;212.691000;212.674000;212.675000;0 +20260312 202400;212.673000;212.699000;212.673000;212.681000;0 +20260312 202500;212.678000;212.693000;212.654000;212.665000;0 +20260312 202600;212.665000;212.679000;212.658000;212.658000;0 +20260312 202700;212.659000;212.672000;212.641000;212.646000;0 +20260312 202800;212.648000;212.648000;212.621000;212.630000;0 +20260312 202900;212.630000;212.646000;212.623000;212.635000;0 +20260312 203000;212.634000;212.654000;212.625000;212.650000;0 +20260312 203100;212.652000;212.675000;212.647000;212.671000;0 +20260312 203200;212.673000;212.680000;212.663000;212.663000;0 +20260312 203300;212.665000;212.677000;212.655000;212.662000;0 +20260312 203400;212.662000;212.663000;212.644000;212.659000;0 +20260312 203500;212.660000;212.684000;212.648000;212.682000;0 +20260312 203600;212.681000;212.683000;212.662000;212.671000;0 +20260312 203700;212.671000;212.680000;212.662000;212.664000;0 +20260312 203800;212.663000;212.680000;212.642000;212.642000;0 +20260312 203900;212.642000;212.659000;212.640000;212.642000;0 +20260312 204000;212.641000;212.676000;212.641000;212.674000;0 +20260312 204100;212.675000;212.680000;212.664000;212.679000;0 +20260312 204200;212.679000;212.682000;212.661000;212.672000;0 +20260312 204300;212.673000;212.680000;212.654000;212.670000;0 +20260312 204400;212.674000;212.683000;212.670000;212.674000;0 +20260312 204500;212.674000;212.683000;212.658000;212.667000;0 +20260312 204600;212.666000;212.710000;212.656000;212.704000;0 +20260312 204700;212.705000;212.716000;212.684000;212.685000;0 +20260312 204800;212.685000;212.693000;212.667000;212.668000;0 +20260312 204900;212.669000;212.685000;212.655000;212.674000;0 +20260312 205000;212.673000;212.696000;212.673000;212.683000;0 +20260312 205100;212.687000;212.703000;212.687000;212.696000;0 +20260312 205200;212.696000;212.705000;212.689000;212.690000;0 +20260312 205300;212.691000;212.704000;212.688000;212.703000;0 +20260312 205400;212.703000;212.716000;212.703000;212.713000;0 +20260312 205500;212.712000;212.712000;212.699000;212.704000;0 +20260312 205600;212.704000;212.710000;212.684000;212.687000;0 +20260312 205700;212.687000;212.704000;212.678000;212.697000;0 +20260312 205800;212.698000;212.717000;212.689000;212.698000;0 +20260312 205900;212.698000;212.720000;212.693000;212.718000;0 +20260312 210000;212.721000;212.744000;212.711000;212.717000;0 +20260312 210100;212.715000;212.724000;212.708000;212.718000;0 +20260312 210200;212.717000;212.727000;212.696000;212.705000;0 +20260312 210300;212.709000;212.715000;212.701000;212.712000;0 +20260312 210400;212.714000;212.718000;212.697000;212.702000;0 +20260312 210500;212.701000;212.724000;212.701000;212.723000;0 +20260312 210600;212.724000;212.745000;212.711000;212.742000;0 +20260312 210700;212.745000;212.747000;212.722000;212.728000;0 +20260312 210800;212.727000;212.739000;212.726000;212.734000;0 +20260312 210900;212.733000;212.734000;212.715000;212.734000;0 +20260312 211000;212.733000;212.734000;212.702000;212.703000;0 +20260312 211100;212.705000;212.723000;212.704000;212.719000;0 +20260312 211200;212.720000;212.729000;212.704000;212.708000;0 +20260312 211300;212.710000;212.712000;212.680000;212.680000;0 +20260312 211400;212.679000;212.697000;212.668000;212.668000;0 +20260312 211500;212.667000;212.693000;212.664000;212.693000;0 +20260312 211600;212.696000;212.696000;212.672000;212.673000;0 +20260312 211700;212.675000;212.708000;212.674000;212.704000;0 +20260312 211800;212.700000;212.712000;212.694000;212.702000;0 +20260312 211900;212.694000;212.710000;212.691000;212.710000;0 +20260312 212000;212.711000;212.721000;212.703000;212.720000;0 +20260312 212100;212.722000;212.729000;212.712000;212.712000;0 +20260312 212200;212.703000;212.728000;212.693000;212.724000;0 +20260312 212300;212.722000;212.737000;212.711000;212.734000;0 +20260312 212400;212.732000;212.748000;212.731000;212.745000;0 +20260312 212500;212.745000;212.766000;212.730000;212.759000;0 +20260312 212600;212.758000;212.783000;212.755000;212.782000;0 +20260312 212700;212.785000;212.802000;212.771000;212.800000;0 +20260312 212800;212.799000;212.806000;212.790000;212.797000;0 +20260312 212900;212.796000;212.809000;212.791000;212.803000;0 +20260312 213000;212.805000;212.805000;212.770000;212.776000;0 +20260312 213100;212.775000;212.790000;212.771000;212.774000;0 +20260312 213200;212.772000;212.794000;212.772000;212.784000;0 +20260312 213300;212.782000;212.788000;212.780000;212.787000;0 +20260312 213400;212.784000;212.798000;212.782000;212.796000;0 +20260312 213500;212.794000;212.811000;212.794000;212.802000;0 +20260312 213600;212.803000;212.806000;212.786000;212.787000;0 +20260312 213700;212.786000;212.791000;212.771000;212.775000;0 +20260312 213800;212.773000;212.776000;212.754000;212.756000;0 +20260312 213900;212.757000;212.772000;212.753000;212.765000;0 +20260312 214000;212.765000;212.770000;212.761000;212.762000;0 +20260312 214100;212.761000;212.778000;212.759000;212.761000;0 +20260312 214200;212.759000;212.761000;212.736000;212.746000;0 +20260312 214300;212.746000;212.746000;212.726000;212.729000;0 +20260312 214400;212.731000;212.733000;212.726000;212.727000;0 +20260312 214500;212.728000;212.744000;212.728000;212.742000;0 +20260312 214600;212.740000;212.744000;212.726000;212.729000;0 +20260312 214700;212.731000;212.748000;212.731000;212.734000;0 +20260312 214800;212.739000;212.742000;212.730000;212.735000;0 +20260312 214900;212.736000;212.736000;212.702000;212.702000;0 +20260312 215000;212.699000;212.717000;212.692000;212.717000;0 +20260312 215100;212.713000;212.713000;212.678000;212.686000;0 +20260312 215200;212.684000;212.693000;212.676000;212.693000;0 +20260312 215300;212.691000;212.711000;212.664000;212.684000;0 +20260312 215400;212.685000;212.704000;212.683000;212.694000;0 +20260312 215500;212.696000;212.696000;212.625000;212.658000;0 +20260312 215600;212.658000;212.694000;212.658000;212.685000;0 +20260312 215700;212.685000;212.720000;212.685000;212.698000;0 +20260312 215800;212.699000;212.713000;212.696000;212.700000;0 +20260312 215900;212.698000;212.698000;212.670000;212.670000;0 +20260312 220000;212.670000;212.679000;212.641000;212.658000;0 +20260312 220100;212.659000;212.660000;212.630000;212.659000;0 +20260312 220200;212.661000;212.684000;212.661000;212.681000;0 +20260312 220300;212.684000;212.688000;212.671000;212.671000;0 +20260312 220400;212.672000;212.689000;212.661000;212.661000;0 +20260312 220500;212.661000;212.665000;212.639000;212.640000;0 +20260312 220600;212.645000;212.658000;212.639000;212.642000;0 +20260312 220700;212.639000;212.640000;212.611000;212.629000;0 +20260312 220800;212.627000;212.630000;212.607000;212.609000;0 +20260312 220900;212.614000;212.642000;212.608000;212.639000;0 +20260312 221000;212.637000;212.645000;212.619000;212.621000;0 +20260312 221100;212.623000;212.635000;212.620000;212.633000;0 +20260312 221200;212.634000;212.668000;212.634000;212.659000;0 +20260312 221300;212.657000;212.670000;212.645000;212.655000;0 +20260312 221400;212.659000;212.660000;212.636000;212.637000;0 +20260312 221500;212.638000;212.638000;212.589000;212.622000;0 +20260312 221600;212.620000;212.621000;212.605000;212.614000;0 +20260312 221700;212.613000;212.620000;212.605000;212.617000;0 +20260312 221800;212.617000;212.626000;212.604000;212.622000;0 +20260312 221900;212.623000;212.644000;212.598000;212.641000;0 +20260312 222000;212.641000;212.679000;212.638000;212.673000;0 +20260312 222100;212.678000;212.680000;212.658000;212.666000;0 +20260312 222200;212.668000;212.684000;212.668000;212.668000;0 +20260312 222300;212.669000;212.694000;212.660000;212.689000;0 +20260312 222400;212.693000;212.696000;212.677000;212.685000;0 +20260312 222500;212.689000;212.703000;212.688000;212.696000;0 +20260312 222600;212.696000;212.713000;212.688000;212.703000;0 +20260312 222700;212.705000;212.705000;212.677000;212.680000;0 +20260312 222800;212.676000;212.696000;212.676000;212.689000;0 +20260312 222900;212.688000;212.696000;212.672000;212.694000;0 +20260312 223000;212.697000;212.698000;212.643000;212.648000;0 +20260312 223100;212.645000;212.662000;212.629000;212.647000;0 +20260312 223200;212.647000;212.656000;212.642000;212.645000;0 +20260312 223300;212.643000;212.651000;212.641000;212.643000;0 +20260312 223400;212.643000;212.651000;212.624000;212.636000;0 +20260312 223500;212.637000;212.643000;212.626000;212.637000;0 +20260312 223600;212.645000;212.652000;212.631000;212.639000;0 +20260312 223700;212.638000;212.649000;212.636000;212.638000;0 +20260312 223800;212.638000;212.653000;212.637000;212.652000;0 +20260312 223900;212.654000;212.656000;212.645000;212.653000;0 +20260312 224000;212.652000;212.660000;212.647000;212.660000;0 +20260312 224100;212.657000;212.663000;212.649000;212.663000;0 +20260312 224200;212.667000;212.667000;212.644000;212.658000;0 +20260312 224300;212.655000;212.661000;212.646000;212.658000;0 +20260312 224400;212.658000;212.669000;212.658000;212.662000;0 +20260312 224500;212.663000;212.674000;212.662000;212.668000;0 +20260312 224600;212.667000;212.690000;212.666000;212.679000;0 +20260312 224700;212.682000;212.688000;212.673000;212.687000;0 +20260312 224800;212.688000;212.704000;212.680000;212.704000;0 +20260312 224900;212.705000;212.705000;212.655000;212.658000;0 +20260312 225000;212.660000;212.675000;212.648000;212.675000;0 +20260312 225100;212.675000;212.681000;212.670000;212.681000;0 +20260312 225200;212.681000;212.684000;212.677000;212.679000;0 +20260312 225300;212.679000;212.680000;212.672000;212.676000;0 +20260312 225400;212.676000;212.684000;212.673000;212.680000;0 +20260312 225500;212.682000;212.699000;212.674000;212.692000;0 +20260312 225600;212.693000;212.693000;212.676000;212.687000;0 +20260312 225700;212.688000;212.696000;212.685000;212.687000;0 +20260312 225800;212.689000;212.689000;212.664000;212.686000;0 +20260312 225900;212.686000;212.686000;212.671000;212.674000;0 +20260312 230000;212.675000;212.683000;212.652000;212.658000;0 +20260312 230100;212.660000;212.662000;212.651000;212.655000;0 +20260312 230200;212.655000;212.655000;212.640000;212.652000;0 +20260312 230300;212.655000;212.664000;212.652000;212.657000;0 +20260312 230400;212.657000;212.665000;212.654000;212.665000;0 +20260312 230500;212.667000;212.672000;212.658000;212.659000;0 +20260312 230600;212.661000;212.696000;212.658000;212.691000;0 +20260312 230700;212.690000;212.699000;212.686000;212.695000;0 +20260312 230800;212.695000;212.697000;212.688000;212.691000;0 +20260312 230900;212.686000;212.694000;212.683000;212.683000;0 +20260312 231000;212.683000;212.697000;212.672000;212.696000;0 +20260312 231100;212.696000;212.696000;212.680000;212.690000;0 +20260312 231200;212.691000;212.692000;212.678000;212.680000;0 +20260312 231300;212.682000;212.687000;212.679000;212.680000;0 +20260312 231400;212.678000;212.681000;212.671000;212.681000;0 +20260312 231500;212.685000;212.698000;212.674000;212.678000;0 +20260312 231600;212.678000;212.681000;212.669000;212.677000;0 +20260312 231700;212.677000;212.677000;212.658000;212.660000;0 +20260312 231800;212.660000;212.660000;212.640000;212.649000;0 +20260312 231900;212.647000;212.648000;212.629000;212.646000;0 +20260312 232000;212.644000;212.645000;212.623000;212.624000;0 +20260312 232100;212.627000;212.634000;212.607000;212.611000;0 +20260312 232200;212.612000;212.613000;212.600000;212.603000;0 +20260312 232300;212.603000;212.605000;212.598000;212.599000;0 +20260312 232400;212.599000;212.610000;212.598000;212.602000;0 +20260312 232500;212.605000;212.618000;212.602000;212.613000;0 +20260312 232600;212.615000;212.618000;212.607000;212.612000;0 +20260312 232700;212.611000;212.701000;212.610000;212.673000;0 +20260312 232800;212.675000;212.678000;212.634000;212.635000;0 +20260312 232900;212.634000;212.658000;212.630000;212.646000;0 +20260312 233000;212.649000;212.672000;212.649000;212.654000;0 +20260312 233100;212.658000;212.684000;212.649000;212.670000;0 +20260312 233200;212.669000;212.670000;212.649000;212.651000;0 +20260312 233300;212.653000;212.664000;212.637000;212.637000;0 +20260312 233400;212.637000;212.661000;212.636000;212.650000;0 +20260312 233500;212.654000;212.713000;212.641000;212.713000;0 +20260312 233600;212.712000;212.872000;212.710000;212.810000;0 +20260312 233700;212.807000;212.813000;212.730000;212.730000;0 +20260312 233800;212.731000;212.767000;212.709000;212.767000;0 +20260312 233900;212.768000;212.783000;212.729000;212.742000;0 +20260312 234000;212.741000;212.761000;212.721000;212.723000;0 +20260312 234100;212.722000;212.723000;212.669000;212.681000;0 +20260312 234200;212.680000;212.684000;212.649000;212.667000;0 +20260312 234300;212.667000;212.671000;212.648000;212.657000;0 +20260312 234400;212.658000;212.676000;212.638000;212.664000;0 +20260312 234500;212.662000;212.663000;212.584000;212.599000;0 +20260312 234600;212.601000;212.601000;212.565000;212.566000;0 +20260312 234700;212.567000;212.625000;212.564000;212.620000;0 +20260312 234800;212.621000;212.628000;212.601000;212.603000;0 +20260312 234900;212.601000;212.609000;212.585000;212.590000;0 +20260312 235000;212.590000;212.638000;212.590000;212.637000;0 +20260312 235100;212.636000;212.645000;212.621000;212.626000;0 +20260312 235200;212.623000;212.623000;212.589000;212.597000;0 +20260312 235300;212.599000;212.637000;212.599000;212.625000;0 +20260312 235400;212.623000;212.650000;212.619000;212.643000;0 +20260312 235500;212.645000;212.654000;212.625000;212.642000;0 +20260312 235600;212.640000;212.658000;212.631000;212.658000;0 +20260312 235700;212.660000;212.674000;212.620000;212.620000;0 +20260312 235800;212.618000;212.619000;212.592000;212.600000;0 +20260312 235900;212.601000;212.637000;212.601000;212.636000;0 +20260313 000000;212.636000;212.641000;212.587000;212.587000;0 +20260313 000100;212.587000;212.603000;212.575000;212.578000;0 +20260313 000200;212.577000;212.583000;212.557000;212.568000;0 +20260313 000300;212.570000;212.577000;212.554000;212.556000;0 +20260313 000400;212.565000;212.565000;212.545000;212.553000;0 +20260313 000500;212.548000;212.548000;212.518000;212.527000;0 +20260313 000600;212.525000;212.526000;212.503000;212.514000;0 +20260313 000700;212.515000;212.516000;212.491000;212.498000;0 +20260313 000800;212.496000;212.503000;212.470000;212.477000;0 +20260313 000900;212.476000;212.488000;212.471000;212.471000;0 +20260313 001000;212.473000;212.474000;212.433000;212.441000;0 +20260313 001100;212.441000;212.441000;212.410000;212.415000;0 +20260313 001200;212.418000;212.431000;212.401000;212.430000;0 +20260313 001300;212.431000;212.473000;212.431000;212.460000;0 +20260313 001400;212.465000;212.476000;212.455000;212.459000;0 +20260313 001500;212.462000;212.468000;212.447000;212.465000;0 +20260313 001600;212.463000;212.464000;212.439000;212.449000;0 +20260313 001700;212.448000;212.490000;212.445000;212.479000;0 +20260313 001800;212.479000;212.480000;212.468000;212.474000;0 +20260313 001900;212.475000;212.486000;212.475000;212.477000;0 +20260313 002000;212.476000;212.485000;212.462000;212.469000;0 +20260313 002100;212.466000;212.474000;212.459000;212.473000;0 +20260313 002200;212.473000;212.488000;212.464000;212.474000;0 +20260313 002300;212.472000;212.476000;212.461000;212.471000;0 +20260313 002400;212.473000;212.489000;212.469000;212.485000;0 +20260313 002500;212.486000;212.509000;212.486000;212.508000;0 +20260313 002600;212.506000;212.510000;212.498000;212.508000;0 +20260313 002700;212.507000;212.507000;212.476000;212.480000;0 +20260313 002800;212.482000;212.482000;212.464000;212.469000;0 +20260313 002900;212.469000;212.470000;212.444000;212.453000;0 +20260313 003000;212.454000;212.466000;212.439000;212.465000;0 +20260313 003100;212.465000;212.484000;212.463000;212.481000;0 +20260313 003200;212.480000;212.486000;212.469000;212.484000;0 +20260313 003300;212.483000;212.488000;212.473000;212.476000;0 +20260313 003400;212.481000;212.514000;212.474000;212.509000;0 +20260313 003500;212.512000;212.518000;212.499000;212.518000;0 +20260313 003600;212.517000;212.519000;212.490000;212.491000;0 +20260313 003700;212.493000;212.509000;212.493000;212.501000;0 +20260313 003800;212.500000;212.510000;212.494000;212.496000;0 +20260313 003900;212.494000;212.512000;212.491000;212.510000;0 +20260313 004000;212.505000;212.510000;212.501000;212.510000;0 +20260313 004100;212.510000;212.538000;212.510000;212.530000;0 +20260313 004200;212.530000;212.547000;212.530000;212.534000;0 +20260313 004300;212.534000;212.548000;212.517000;212.525000;0 +20260313 004400;212.522000;212.546000;212.519000;212.531000;0 +20260313 004500;212.531000;212.545000;212.531000;212.540000;0 +20260313 004600;212.538000;212.546000;212.534000;212.544000;0 +20260313 004700;212.545000;212.549000;212.516000;212.518000;0 +20260313 004800;212.516000;212.536000;212.516000;212.531000;0 +20260313 004900;212.530000;212.530000;212.478000;212.481000;0 +20260313 005000;212.483000;212.485000;212.471000;212.481000;0 +20260313 005100;212.482000;212.484000;212.473000;212.484000;0 +20260313 005200;212.483000;212.484000;212.468000;212.476000;0 +20260313 005300;212.473000;212.476000;212.449000;212.454000;0 +20260313 005400;212.456000;212.486000;212.453000;212.482000;0 +20260313 005500;212.485000;212.509000;212.484000;212.502000;0 +20260313 005600;212.503000;212.536000;212.496000;212.525000;0 +20260313 005700;212.528000;212.542000;212.518000;212.541000;0 +20260313 005800;212.535000;212.561000;212.531000;212.559000;0 +20260313 005900;212.561000;212.562000;212.549000;212.552000;0 +20260313 010000;212.555000;212.559000;212.503000;212.508000;0 +20260313 010100;212.504000;212.533000;212.502000;212.532000;0 +20260313 010200;212.532000;212.533000;212.492000;212.498000;0 +20260313 010300;212.507000;212.510000;212.489000;212.489000;0 +20260313 010400;212.488000;212.501000;212.475000;212.499000;0 +20260313 010500;212.501000;212.506000;212.481000;212.491000;0 +20260313 010600;212.492000;212.500000;212.472000;212.472000;0 +20260313 010700;212.474000;212.475000;212.377000;212.391000;0 +20260313 010800;212.393000;212.418000;212.393000;212.407000;0 +20260313 010900;212.406000;212.422000;212.406000;212.422000;0 +20260313 011000;212.423000;212.446000;212.419000;212.445000;0 +20260313 011100;212.445000;212.462000;212.439000;212.461000;0 +20260313 011200;212.461000;212.465000;212.446000;212.452000;0 +20260313 011300;212.449000;212.458000;212.430000;212.436000;0 +20260313 011400;212.436000;212.474000;212.435000;212.467000;0 +20260313 011500;212.469000;212.470000;212.449000;212.464000;0 +20260313 011600;212.461000;212.470000;212.450000;212.451000;0 +20260313 011700;212.451000;212.456000;212.436000;212.451000;0 +20260313 011800;212.450000;212.464000;212.432000;212.462000;0 +20260313 011900;212.462000;212.464000;212.407000;212.410000;0 +20260313 012000;212.410000;212.464000;212.403000;212.464000;0 +20260313 012100;212.465000;212.469000;212.423000;212.426000;0 +20260313 012200;212.426000;212.447000;212.421000;212.434000;0 +20260313 012300;212.431000;212.439000;212.407000;212.413000;0 +20260313 012400;212.410000;212.432000;212.409000;212.425000;0 +20260313 012500;212.425000;212.427000;212.380000;212.387000;0 +20260313 012600;212.391000;212.398000;212.367000;212.397000;0 +20260313 012700;212.398000;212.404000;212.363000;212.363000;0 +20260313 012800;212.377000;212.377000;212.342000;212.350000;0 +20260313 012900;212.352000;212.376000;212.352000;212.374000;0 +20260313 013000;212.375000;212.392000;212.357000;212.371000;0 +20260313 013100;212.372000;212.374000;212.341000;212.341000;0 +20260313 013200;212.342000;212.366000;212.338000;212.364000;0 +20260313 013300;212.365000;212.369000;212.345000;212.360000;0 +20260313 013400;212.360000;212.373000;212.356000;212.368000;0 +20260313 013500;212.365000;212.367000;212.307000;212.307000;0 +20260313 013600;212.308000;212.317000;212.250000;212.258000;0 +20260313 013700;212.260000;212.281000;212.251000;212.273000;0 +20260313 013800;212.276000;212.294000;212.263000;212.294000;0 +20260313 013900;212.293000;212.336000;212.292000;212.325000;0 +20260313 014000;212.324000;212.345000;212.324000;212.344000;0 +20260313 014100;212.341000;212.356000;212.267000;212.270000;0 +20260313 014200;212.268000;212.279000;212.239000;212.267000;0 +20260313 014300;212.268000;212.269000;212.236000;212.244000;0 +20260313 014400;212.243000;212.245000;212.231000;212.240000;0 +20260313 014500;212.240000;212.255000;212.231000;212.243000;0 +20260313 014600;212.245000;212.268000;212.239000;212.266000;0 +20260313 014700;212.265000;212.297000;212.257000;212.274000;0 +20260313 014800;212.271000;212.297000;212.231000;212.242000;0 +20260313 014900;212.245000;212.249000;212.210000;212.235000;0 +20260313 015000;212.238000;212.255000;212.232000;212.250000;0 +20260313 015100;212.250000;212.277000;212.250000;212.261000;0 +20260313 015200;212.258000;212.269000;212.240000;212.242000;0 +20260313 015300;212.242000;212.254000;212.234000;212.234000;0 +20260313 015400;212.234000;212.251000;212.225000;212.225000;0 +20260313 015500;212.226000;212.260000;212.225000;212.253000;0 +20260313 015600;212.254000;212.272000;212.253000;212.265000;0 +20260313 015700;212.265000;212.280000;212.251000;212.276000;0 +20260313 015800;212.278000;212.278000;212.252000;212.259000;0 +20260313 015900;212.259000;212.298000;212.254000;212.279000;0 +20260313 020000;212.280000;212.283000;212.170000;212.174000;0 +20260313 020100;212.176000;212.179000;212.086000;212.127000;0 +20260313 020200;212.125000;212.136000;212.038000;212.042000;0 +20260313 020300;212.044000;212.061000;212.012000;212.032000;0 +20260313 020400;212.027000;212.037000;211.984000;211.992000;0 +20260313 020500;211.994000;212.012000;211.983000;211.990000;0 +20260313 020600;211.990000;211.996000;211.936000;211.936000;0 +20260313 020700;211.942000;211.986000;211.932000;211.940000;0 +20260313 020800;211.939000;212.017000;211.939000;212.017000;0 +20260313 020900;212.018000;212.034000;212.000000;212.000000;0 +20260313 021000;212.007000;212.055000;212.002000;212.047000;0 +20260313 021100;212.049000;212.068000;212.029000;212.061000;0 +20260313 021200;212.060000;212.073000;211.997000;212.003000;0 +20260313 021300;212.003000;212.006000;211.969000;211.981000;0 +20260313 021400;211.983000;212.001000;211.965000;211.970000;0 +20260313 021500;211.967000;211.992000;211.967000;211.977000;0 +20260313 021600;211.978000;212.008000;211.964000;212.000000;0 +20260313 021700;212.003000;212.019000;211.989000;211.991000;0 +20260313 021800;211.993000;212.012000;211.983000;211.998000;0 +20260313 021900;212.000000;212.027000;211.972000;212.015000;0 +20260313 022000;212.017000;212.039000;212.003000;212.023000;0 +20260313 022100;212.024000;212.034000;211.971000;211.971000;0 +20260313 022200;211.972000;211.976000;211.941000;211.973000;0 +20260313 022300;211.971000;211.971000;211.935000;211.942000;0 +20260313 022400;211.939000;211.944000;211.916000;211.935000;0 +20260313 022500;211.933000;211.940000;211.863000;211.880000;0 +20260313 022600;211.884000;211.898000;211.859000;211.893000;0 +20260313 022700;211.894000;211.969000;211.891000;211.969000;0 +20260313 022800;211.969000;212.011000;211.968000;212.003000;0 +20260313 022900;212.003000;212.031000;211.997000;212.021000;0 +20260313 023000;212.020000;212.030000;211.980000;211.983000;0 +20260313 023100;211.983000;211.986000;211.942000;211.947000;0 +20260313 023200;211.947000;211.990000;211.946000;211.983000;0 +20260313 023300;211.987000;211.987000;211.924000;211.925000;0 +20260313 023400;211.914000;211.935000;211.890000;211.935000;0 +20260313 023500;211.939000;211.946000;211.900000;211.910000;0 +20260313 023600;211.907000;211.916000;211.870000;211.877000;0 +20260313 023700;211.877000;211.890000;211.852000;211.853000;0 +20260313 023800;211.852000;211.874000;211.836000;211.836000;0 +20260313 023900;211.836000;211.862000;211.827000;211.834000;0 +20260313 024000;211.836000;211.859000;211.835000;211.838000;0 +20260313 024100;211.839000;211.848000;211.824000;211.847000;0 +20260313 024200;211.847000;211.877000;211.817000;211.853000;0 +20260313 024300;211.853000;211.859000;211.818000;211.822000;0 +20260313 024400;211.822000;211.823000;211.761000;211.772000;0 +20260313 024500;211.773000;211.815000;211.768000;211.813000;0 +20260313 024600;211.814000;211.839000;211.808000;211.814000;0 +20260313 024700;211.813000;211.829000;211.772000;211.782000;0 +20260313 024800;211.784000;211.806000;211.757000;211.766000;0 +20260313 024900;211.766000;211.770000;211.730000;211.753000;0 +20260313 025000;211.762000;211.763000;211.715000;211.715000;0 +20260313 025100;211.714000;211.714000;211.676000;211.680000;0 +20260313 025200;211.681000;211.745000;211.679000;211.724000;0 +20260313 025300;211.728000;211.735000;211.710000;211.724000;0 +20260313 025400;211.722000;211.738000;211.711000;211.726000;0 +20260313 025500;211.728000;211.729000;211.646000;211.660000;0 +20260313 025600;211.661000;211.699000;211.658000;211.692000;0 +20260313 025700;211.694000;211.729000;211.676000;211.727000;0 +20260313 025800;211.724000;211.749000;211.717000;211.733000;0 +20260313 025900;211.734000;211.741000;211.719000;211.723000;0 +20260313 030000;211.719000;211.719000;211.610000;211.611000;0 +20260313 030100;211.610000;211.644000;211.573000;211.642000;0 +20260313 030200;211.642000;211.657000;211.582000;211.586000;0 +20260313 030300;211.585000;211.595000;211.532000;211.573000;0 +20260313 030400;211.572000;211.583000;211.546000;211.572000;0 +20260313 030500;211.562000;211.582000;211.545000;211.572000;0 +20260313 030600;211.575000;211.583000;211.545000;211.550000;0 +20260313 030700;211.549000;211.578000;211.539000;211.545000;0 +20260313 030800;211.543000;211.551000;211.516000;211.520000;0 +20260313 030900;211.518000;211.519000;211.458000;211.459000;0 +20260313 031000;211.459000;211.515000;211.442000;211.503000;0 +20260313 031100;211.504000;211.535000;211.466000;211.533000;0 +20260313 031200;211.534000;211.551000;211.514000;211.524000;0 +20260313 031300;211.522000;211.541000;211.500000;211.502000;0 +20260313 031400;211.501000;211.558000;211.470000;211.508000;0 +20260313 031500;211.509000;211.511000;211.485000;211.494000;0 +20260313 031600;211.492000;211.529000;211.482000;211.522000;0 +20260313 031700;211.523000;211.553000;211.513000;211.539000;0 +20260313 031800;211.541000;211.561000;211.490000;211.512000;0 +20260313 031900;211.511000;211.518000;211.455000;211.460000;0 +20260313 032000;211.456000;211.488000;211.435000;211.447000;0 +20260313 032100;211.448000;211.462000;211.404000;211.437000;0 +20260313 032200;211.437000;211.500000;211.436000;211.487000;0 +20260313 032300;211.491000;211.499000;211.467000;211.484000;0 +20260313 032400;211.484000;211.496000;211.435000;211.450000;0 +20260313 032500;211.445000;211.457000;211.429000;211.456000;0 +20260313 032600;211.456000;211.504000;211.456000;211.495000;0 +20260313 032700;211.494000;211.527000;211.490000;211.498000;0 +20260313 032800;211.498000;211.498000;211.468000;211.476000;0 +20260313 032900;211.475000;211.495000;211.447000;211.451000;0 +20260313 033000;211.454000;211.495000;211.443000;211.475000;0 +20260313 033100;211.475000;211.495000;211.454000;211.495000;0 +20260313 033200;211.492000;211.522000;211.463000;211.476000;0 +20260313 033300;211.473000;211.473000;211.424000;211.433000;0 +20260313 033400;211.433000;211.488000;211.431000;211.488000;0 +20260313 033500;211.488000;211.529000;211.474000;211.517000;0 +20260313 033600;211.516000;211.567000;211.516000;211.563000;0 +20260313 033700;211.564000;211.572000;211.517000;211.528000;0 +20260313 033800;211.523000;211.578000;211.523000;211.572000;0 +20260313 033900;211.572000;211.591000;211.555000;211.559000;0 +20260313 034000;211.559000;211.597000;211.547000;211.586000;0 +20260313 034100;211.583000;211.585000;211.544000;211.554000;0 +20260313 034200;211.554000;211.558000;211.517000;211.523000;0 +20260313 034300;211.522000;211.531000;211.494000;211.504000;0 +20260313 034400;211.508000;211.512000;211.473000;211.485000;0 +20260313 034500;211.482000;211.490000;211.411000;211.437000;0 +20260313 034600;211.439000;211.446000;211.425000;211.427000;0 +20260313 034700;211.430000;211.450000;211.420000;211.431000;0 +20260313 034800;211.430000;211.451000;211.410000;211.434000;0 +20260313 034900;211.434000;211.449000;211.391000;211.423000;0 +20260313 035000;211.422000;211.440000;211.407000;211.407000;0 +20260313 035100;211.408000;211.409000;211.382000;211.406000;0 +20260313 035200;211.412000;211.432000;211.406000;211.410000;0 +20260313 035300;211.410000;211.445000;211.406000;211.417000;0 +20260313 035400;211.418000;211.418000;211.343000;211.361000;0 +20260313 035500;211.361000;211.380000;211.350000;211.379000;0 +20260313 035600;211.380000;211.409000;211.354000;211.404000;0 +20260313 035700;211.406000;211.407000;211.319000;211.346000;0 +20260313 035800;211.346000;211.375000;211.340000;211.353000;0 +20260313 035900;211.353000;211.353000;211.280000;211.282000;0 +20260313 040000;211.285000;211.316000;211.252000;211.270000;0 +20260313 040100;211.268000;211.356000;211.260000;211.356000;0 +20260313 040200;211.357000;211.383000;211.289000;211.348000;0 +20260313 040300;211.349000;211.425000;211.349000;211.398000;0 +20260313 040400;211.401000;211.407000;211.347000;211.365000;0 +20260313 040500;211.363000;211.396000;211.338000;211.395000;0 +20260313 040600;211.394000;211.399000;211.347000;211.353000;0 +20260313 040700;211.364000;211.373000;211.342000;211.365000;0 +20260313 040800;211.367000;211.404000;211.360000;211.399000;0 +20260313 040900;211.399000;211.418000;211.370000;211.416000;0 +20260313 041000;211.416000;211.417000;211.359000;211.363000;0 +20260313 041100;211.359000;211.405000;211.353000;211.370000;0 +20260313 041200;211.371000;211.405000;211.370000;211.405000;0 +20260313 041300;211.410000;211.470000;211.408000;211.464000;0 +20260313 041400;211.466000;211.542000;211.464000;211.538000;0 +20260313 041500;211.536000;211.550000;211.515000;211.527000;0 +20260313 041600;211.524000;211.524000;211.482000;211.483000;0 +20260313 041700;211.483000;211.484000;211.456000;211.467000;0 +20260313 041800;211.467000;211.497000;211.467000;211.483000;0 +20260313 041900;211.490000;211.494000;211.454000;211.489000;0 +20260313 042000;211.489000;211.512000;211.469000;211.500000;0 +20260313 042100;211.501000;211.525000;211.485000;211.521000;0 +20260313 042200;211.518000;211.518000;211.477000;211.484000;0 +20260313 042300;211.484000;211.488000;211.457000;211.462000;0 +20260313 042400;211.462000;211.463000;211.429000;211.432000;0 +20260313 042500;211.431000;211.492000;211.431000;211.486000;0 +20260313 042600;211.483000;211.518000;211.475000;211.512000;0 +20260313 042700;211.512000;211.523000;211.502000;211.517000;0 +20260313 042800;211.519000;211.553000;211.514000;211.540000;0 +20260313 042900;211.543000;211.601000;211.541000;211.589000;0 +20260313 043000;211.585000;211.599000;211.576000;211.589000;0 +20260313 043100;211.588000;211.606000;211.580000;211.596000;0 +20260313 043200;211.599000;211.607000;211.573000;211.584000;0 +20260313 043300;211.584000;211.602000;211.573000;211.573000;0 +20260313 043400;211.576000;211.607000;211.570000;211.583000;0 +20260313 043500;211.583000;211.609000;211.564000;211.595000;0 +20260313 043600;211.595000;211.595000;211.548000;211.556000;0 +20260313 043700;211.555000;211.561000;211.527000;211.541000;0 +20260313 043800;211.541000;211.541000;211.522000;211.527000;0 +20260313 043900;211.529000;211.530000;211.485000;211.489000;0 +20260313 044000;211.490000;211.490000;211.432000;211.440000;0 +20260313 044100;211.440000;211.480000;211.436000;211.458000;0 +20260313 044200;211.455000;211.480000;211.438000;211.475000;0 +20260313 044300;211.476000;211.511000;211.460000;211.510000;0 +20260313 044400;211.507000;211.510000;211.385000;211.385000;0 +20260313 044500;211.399000;211.444000;211.386000;211.442000;0 +20260313 044600;211.444000;211.495000;211.442000;211.471000;0 +20260313 044700;211.472000;211.480000;211.445000;211.456000;0 +20260313 044800;211.458000;211.501000;211.452000;211.496000;0 +20260313 044900;211.498000;211.529000;211.495000;211.500000;0 +20260313 045000;211.501000;211.523000;211.473000;211.474000;0 +20260313 045100;211.473000;211.516000;211.472000;211.516000;0 +20260313 045200;211.516000;211.537000;211.498000;211.524000;0 +20260313 045300;211.522000;211.532000;211.499000;211.524000;0 +20260313 045400;211.529000;211.572000;211.524000;211.571000;0 +20260313 045500;211.570000;211.570000;211.515000;211.542000;0 +20260313 045600;211.541000;211.562000;211.541000;211.552000;0 +20260313 045700;211.552000;211.569000;211.538000;211.556000;0 +20260313 045800;211.553000;211.553000;211.522000;211.524000;0 +20260313 045900;211.524000;211.528000;211.500000;211.500000;0 +20260313 050000;211.499000;211.522000;211.490000;211.511000;0 +20260313 050100;211.511000;211.534000;211.495000;211.495000;0 +20260313 050200;211.497000;211.518000;211.486000;211.512000;0 +20260313 050300;211.513000;211.531000;211.503000;211.504000;0 +20260313 050400;211.505000;211.538000;211.505000;211.526000;0 +20260313 050500;211.524000;211.562000;211.519000;211.559000;0 +20260313 050600;211.558000;211.589000;211.551000;211.579000;0 +20260313 050700;211.577000;211.599000;211.574000;211.582000;0 +20260313 050800;211.578000;211.602000;211.574000;211.599000;0 +20260313 050900;211.599000;211.603000;211.582000;211.596000;0 +20260313 051000;211.596000;211.608000;211.587000;211.596000;0 +20260313 051100;211.596000;211.603000;211.563000;211.575000;0 +20260313 051200;211.579000;211.585000;211.530000;211.532000;0 +20260313 051300;211.535000;211.576000;211.535000;211.576000;0 +20260313 051400;211.573000;211.583000;211.562000;211.567000;0 +20260313 051500;211.566000;211.614000;211.564000;211.584000;0 +20260313 051600;211.584000;211.585000;211.526000;211.526000;0 +20260313 051700;211.527000;211.533000;211.498000;211.504000;0 +20260313 051800;211.503000;211.505000;211.476000;211.476000;0 +20260313 051900;211.472000;211.473000;211.447000;211.462000;0 +20260313 052000;211.464000;211.477000;211.433000;211.433000;0 +20260313 052100;211.436000;211.450000;211.422000;211.449000;0 +20260313 052200;211.449000;211.454000;211.438000;211.439000;0 +20260313 052300;211.441000;211.453000;211.438000;211.451000;0 +20260313 052400;211.449000;211.482000;211.448000;211.465000;0 +20260313 052500;211.465000;211.474000;211.427000;211.428000;0 +20260313 052600;211.427000;211.437000;211.409000;211.414000;0 +20260313 052700;211.415000;211.415000;211.392000;211.414000;0 +20260313 052800;211.411000;211.414000;211.396000;211.411000;0 +20260313 052900;211.415000;211.439000;211.414000;211.435000;0 +20260313 053000;211.431000;211.447000;211.414000;211.441000;0 +20260313 053100;211.441000;211.448000;211.416000;211.420000;0 +20260313 053200;211.413000;211.424000;211.399000;211.414000;0 +20260313 053300;211.413000;211.440000;211.412000;211.414000;0 +20260313 053400;211.412000;211.439000;211.412000;211.426000;0 +20260313 053500;211.426000;211.449000;211.392000;211.436000;0 +20260313 053600;211.438000;211.452000;211.427000;211.429000;0 +20260313 053700;211.429000;211.429000;211.382000;211.405000;0 +20260313 053800;211.406000;211.420000;211.400000;211.416000;0 +20260313 053900;211.416000;211.441000;211.414000;211.434000;0 +20260313 054000;211.434000;211.436000;211.409000;211.419000;0 +20260313 054100;211.420000;211.421000;211.409000;211.418000;0 +20260313 054200;211.418000;211.431000;211.396000;211.415000;0 +20260313 054300;211.414000;211.447000;211.414000;211.428000;0 +20260313 054400;211.430000;211.431000;211.398000;211.403000;0 +20260313 054500;211.404000;211.404000;211.373000;211.376000;0 +20260313 054600;211.376000;211.376000;211.307000;211.313000;0 +20260313 054700;211.315000;211.430000;211.315000;211.419000;0 +20260313 054800;211.419000;211.468000;211.409000;211.441000;0 +20260313 054900;211.441000;211.468000;211.430000;211.450000;0 +20260313 055000;211.451000;211.515000;211.451000;211.503000;0 +20260313 055100;211.501000;211.503000;211.446000;211.453000;0 +20260313 055200;211.453000;211.462000;211.422000;211.423000;0 +20260313 055300;211.425000;211.440000;211.381000;211.393000;0 +20260313 055400;211.393000;211.401000;211.374000;211.383000;0 +20260313 055500;211.387000;211.387000;211.367000;211.374000;0 +20260313 055600;211.375000;211.425000;211.373000;211.413000;0 +20260313 055700;211.414000;211.414000;211.370000;211.372000;0 +20260313 055800;211.373000;211.383000;211.368000;211.382000;0 +20260313 055900;211.381000;211.384000;211.361000;211.361000;0 +20260313 060000;211.363000;211.366000;211.307000;211.322000;0 +20260313 060100;211.320000;211.360000;211.316000;211.349000;0 +20260313 060200;211.348000;211.393000;211.348000;211.365000;0 +20260313 060300;211.362000;211.365000;211.320000;211.347000;0 +20260313 060400;211.346000;211.376000;211.344000;211.371000;0 +20260313 060500;211.371000;211.371000;211.336000;211.354000;0 +20260313 060600;211.355000;211.357000;211.292000;211.292000;0 +20260313 060700;211.294000;211.313000;211.289000;211.292000;0 +20260313 060800;211.290000;211.290000;211.218000;211.240000;0 +20260313 060900;211.237000;211.256000;211.224000;211.232000;0 +20260313 061000;211.230000;211.230000;211.193000;211.198000;0 +20260313 061100;211.193000;211.231000;211.188000;211.210000;0 +20260313 061200;211.212000;211.244000;211.210000;211.216000;0 +20260313 061300;211.218000;211.230000;211.201000;211.227000;0 +20260313 061400;211.229000;211.248000;211.214000;211.217000;0 +20260313 061500;211.215000;211.230000;211.176000;211.176000;0 +20260313 061600;211.174000;211.206000;211.160000;211.202000;0 +20260313 061700;211.205000;211.232000;211.200000;211.227000;0 +20260313 061800;211.228000;211.282000;211.215000;211.279000;0 +20260313 061900;211.279000;211.300000;211.276000;211.298000;0 +20260313 062000;211.300000;211.301000;211.247000;211.277000;0 +20260313 062100;211.276000;211.308000;211.268000;211.304000;0 +20260313 062200;211.302000;211.311000;211.280000;211.307000;0 +20260313 062300;211.309000;211.327000;211.278000;211.324000;0 +20260313 062400;211.324000;211.338000;211.317000;211.330000;0 +20260313 062500;211.328000;211.373000;211.328000;211.366000;0 +20260313 062600;211.367000;211.402000;211.364000;211.392000;0 +20260313 062700;211.389000;211.392000;211.367000;211.387000;0 +20260313 062800;211.389000;211.397000;211.359000;211.361000;0 +20260313 062900;211.365000;211.375000;211.335000;211.360000;0 +20260313 063000;211.362000;211.386000;211.360000;211.379000;0 +20260313 063100;211.378000;211.391000;211.371000;211.388000;0 +20260313 063200;211.382000;211.413000;211.371000;211.411000;0 +20260313 063300;211.412000;211.444000;211.412000;211.444000;0 +20260313 063400;211.450000;211.459000;211.380000;211.380000;0 +20260313 063500;211.380000;211.384000;211.352000;211.354000;0 +20260313 063600;211.354000;211.355000;211.301000;211.333000;0 +20260313 063700;211.329000;211.329000;211.301000;211.321000;0 +20260313 063800;211.320000;211.320000;211.268000;211.270000;0 +20260313 063900;211.273000;211.287000;211.271000;211.274000;0 +20260313 064000;211.274000;211.288000;211.260000;211.276000;0 +20260313 064100;211.277000;211.278000;211.246000;211.259000;0 +20260313 064200;211.258000;211.258000;211.239000;211.242000;0 +20260313 064300;211.242000;211.249000;211.231000;211.246000;0 +20260313 064400;211.246000;211.274000;211.244000;211.274000;0 +20260313 064500;211.272000;211.329000;211.261000;211.309000;0 +20260313 064600;211.312000;211.327000;211.278000;211.279000;0 +20260313 064700;211.278000;211.282000;211.258000;211.280000;0 +20260313 064800;211.280000;211.297000;211.265000;211.281000;0 +20260313 064900;211.277000;211.297000;211.247000;211.257000;0 +20260313 065000;211.253000;211.256000;211.209000;211.218000;0 +20260313 065100;211.218000;211.253000;211.218000;211.226000;0 +20260313 065200;211.227000;211.236000;211.208000;211.216000;0 +20260313 065300;211.214000;211.230000;211.194000;211.213000;0 +20260313 065400;211.214000;211.223000;211.192000;211.212000;0 +20260313 065500;211.212000;211.213000;211.193000;211.203000;0 +20260313 065600;211.204000;211.221000;211.200000;211.211000;0 +20260313 065700;211.212000;211.216000;211.158000;211.158000;0 +20260313 065800;211.158000;211.178000;211.149000;211.154000;0 +20260313 065900;211.153000;211.169000;211.129000;211.129000;0 +20260313 070000;211.126000;211.186000;211.093000;211.172000;0 +20260313 070100;211.171000;211.229000;211.171000;211.219000;0 +20260313 070200;211.217000;211.239000;211.209000;211.233000;0 +20260313 070300;211.228000;211.252000;211.213000;211.216000;0 +20260313 070400;211.214000;211.247000;211.214000;211.243000;0 +20260313 070500;211.244000;211.244000;211.206000;211.235000;0 +20260313 070600;211.232000;211.238000;211.215000;211.225000;0 +20260313 070700;211.225000;211.249000;211.225000;211.241000;0 +20260313 070800;211.239000;211.240000;211.191000;211.192000;0 +20260313 070900;211.193000;211.208000;211.188000;211.192000;0 +20260313 071000;211.191000;211.200000;211.165000;211.172000;0 +20260313 071100;211.173000;211.210000;211.166000;211.209000;0 +20260313 071200;211.208000;211.210000;211.173000;211.194000;0 +20260313 071300;211.195000;211.195000;211.172000;211.186000;0 +20260313 071400;211.185000;211.248000;211.180000;211.248000;0 +20260313 071500;211.247000;211.257000;211.233000;211.238000;0 +20260313 071600;211.238000;211.241000;211.219000;211.225000;0 +20260313 071700;211.224000;211.248000;211.220000;211.248000;0 +20260313 071800;211.255000;211.266000;211.243000;211.257000;0 +20260313 071900;211.258000;211.276000;211.254000;211.265000;0 +20260313 072000;211.263000;211.268000;211.219000;211.246000;0 +20260313 072100;211.248000;211.278000;211.240000;211.276000;0 +20260313 072200;211.278000;211.299000;211.275000;211.285000;0 +20260313 072300;211.288000;211.311000;211.285000;211.306000;0 +20260313 072400;211.306000;211.316000;211.286000;211.311000;0 +20260313 072500;211.311000;211.353000;211.311000;211.326000;0 +20260313 072600;211.327000;211.372000;211.327000;211.368000;0 +20260313 072700;211.368000;211.424000;211.365000;211.419000;0 +20260313 072800;211.419000;211.484000;211.419000;211.469000;0 +20260313 072900;211.475000;211.476000;211.397000;211.405000;0 +20260313 073000;211.404000;211.445000;211.382000;211.422000;0 +20260313 073100;211.420000;211.454000;211.378000;211.405000;0 +20260313 073200;211.412000;211.427000;211.397000;211.402000;0 +20260313 073300;211.403000;211.437000;211.387000;211.434000;0 +20260313 073400;211.431000;211.451000;211.420000;211.443000;0 +20260313 073500;211.442000;211.445000;211.411000;211.420000;0 +20260313 073600;211.419000;211.459000;211.404000;211.459000;0 +20260313 073700;211.460000;211.460000;211.406000;211.416000;0 +20260313 073800;211.413000;211.449000;211.399000;211.449000;0 +20260313 073900;211.447000;211.460000;211.436000;211.456000;0 +20260313 074000;211.457000;211.464000;211.412000;211.435000;0 +20260313 074100;211.435000;211.448000;211.421000;211.429000;0 +20260313 074200;211.429000;211.444000;211.422000;211.438000;0 +20260313 074300;211.435000;211.448000;211.426000;211.430000;0 +20260313 074400;211.430000;211.445000;211.410000;211.439000;0 +20260313 074500;211.439000;211.501000;211.437000;211.488000;0 +20260313 074600;211.485000;211.514000;211.455000;211.482000;0 +20260313 074700;211.483000;211.488000;211.426000;211.459000;0 +20260313 074800;211.456000;211.474000;211.416000;211.473000;0 +20260313 074900;211.473000;211.488000;211.451000;211.481000;0 +20260313 075000;211.482000;211.486000;211.441000;211.461000;0 +20260313 075100;211.460000;211.462000;211.415000;211.429000;0 +20260313 075200;211.428000;211.458000;211.426000;211.434000;0 +20260313 075300;211.435000;211.447000;211.420000;211.438000;0 +20260313 075400;211.439000;211.453000;211.432000;211.434000;0 +20260313 075500;211.435000;211.448000;211.426000;211.426000;0 +20260313 075600;211.428000;211.453000;211.418000;211.427000;0 +20260313 075700;211.427000;211.436000;211.411000;211.412000;0 +20260313 075800;211.413000;211.427000;211.402000;211.425000;0 +20260313 075900;211.426000;211.454000;211.417000;211.450000;0 +20260313 080000;211.450000;211.479000;211.449000;211.468000;0 +20260313 080100;211.470000;211.476000;211.439000;211.459000;0 +20260313 080200;211.458000;211.527000;211.446000;211.515000;0 +20260313 080300;211.510000;211.515000;211.437000;211.445000;0 +20260313 080400;211.448000;211.468000;211.415000;211.434000;0 +20260313 080500;211.431000;211.433000;211.405000;211.430000;0 +20260313 080600;211.432000;211.432000;211.413000;211.419000;0 +20260313 080700;211.417000;211.426000;211.390000;211.399000;0 +20260313 080800;211.400000;211.405000;211.364000;211.364000;0 +20260313 080900;211.367000;211.395000;211.367000;211.378000;0 +20260313 081000;211.383000;211.383000;211.336000;211.341000;0 +20260313 081100;211.339000;211.366000;211.336000;211.344000;0 +20260313 081200;211.345000;211.368000;211.336000;211.348000;0 +20260313 081300;211.348000;211.372000;211.342000;211.369000;0 +20260313 081400;211.371000;211.398000;211.363000;211.393000;0 +20260313 081500;211.394000;211.408000;211.386000;211.387000;0 +20260313 081600;211.389000;211.414000;211.372000;211.411000;0 +20260313 081700;211.411000;211.412000;211.352000;211.361000;0 +20260313 081800;211.360000;211.373000;211.338000;211.345000;0 +20260313 081900;211.341000;211.414000;211.336000;211.404000;0 +20260313 082000;211.403000;211.434000;211.403000;211.430000;0 +20260313 082100;211.430000;211.430000;211.382000;211.391000;0 +20260313 082200;211.392000;211.414000;211.375000;211.377000;0 +20260313 082300;211.375000;211.382000;211.366000;211.374000;0 +20260313 082400;211.373000;211.384000;211.348000;211.378000;0 +20260313 082500;211.378000;211.378000;211.324000;211.355000;0 +20260313 082600;211.354000;211.373000;211.345000;211.346000;0 +20260313 082700;211.345000;211.383000;211.345000;211.361000;0 +20260313 082800;211.359000;211.367000;211.332000;211.356000;0 +20260313 082900;211.355000;211.370000;211.349000;211.370000;0 +20260313 083000;211.370000;211.401000;211.358000;211.366000;0 +20260313 083100;211.370000;211.376000;211.349000;211.371000;0 +20260313 083200;211.371000;211.388000;211.352000;211.356000;0 +20260313 083300;211.355000;211.367000;211.339000;211.343000;0 +20260313 083400;211.343000;211.366000;211.342000;211.357000;0 +20260313 083500;211.357000;211.357000;211.296000;211.322000;0 +20260313 083600;211.323000;211.324000;211.294000;211.305000;0 +20260313 083700;211.308000;211.368000;211.299000;211.349000;0 +20260313 083800;211.347000;211.368000;211.340000;211.367000;0 +20260313 083900;211.368000;211.385000;211.348000;211.350000;0 +20260313 084000;211.347000;211.348000;211.332000;211.336000;0 +20260313 084100;211.336000;211.383000;211.334000;211.378000;0 +20260313 084200;211.379000;211.406000;211.365000;211.370000;0 +20260313 084300;211.369000;211.378000;211.345000;211.353000;0 +20260313 084400;211.355000;211.362000;211.338000;211.348000;0 +20260313 084500;211.349000;211.366000;211.342000;211.362000;0 +20260313 084600;211.359000;211.363000;211.336000;211.345000;0 +20260313 084700;211.347000;211.352000;211.335000;211.344000;0 +20260313 084800;211.343000;211.353000;211.332000;211.341000;0 +20260313 084900;211.342000;211.370000;211.332000;211.348000;0 +20260313 085000;211.346000;211.351000;211.310000;211.313000;0 +20260313 085100;211.312000;211.315000;211.281000;211.281000;0 +20260313 085200;211.282000;211.298000;211.255000;211.281000;0 +20260313 085300;211.281000;211.294000;211.247000;211.287000;0 +20260313 085400;211.287000;211.343000;211.275000;211.342000;0 +20260313 085500;211.341000;211.347000;211.296000;211.308000;0 +20260313 085600;211.308000;211.314000;211.273000;211.310000;0 +20260313 085700;211.309000;211.349000;211.299000;211.306000;0 +20260313 085800;211.303000;211.303000;211.274000;211.280000;0 +20260313 085900;211.284000;211.293000;211.270000;211.270000;0 +20260313 090000;211.276000;211.305000;211.238000;211.248000;0 +20260313 090100;211.247000;211.247000;211.196000;211.212000;0 +20260313 090200;211.213000;211.217000;211.187000;211.192000;0 +20260313 090300;211.193000;211.215000;211.171000;211.204000;0 +20260313 090400;211.203000;211.270000;211.202000;211.247000;0 +20260313 090500;211.249000;211.259000;211.223000;211.226000;0 +20260313 090600;211.235000;211.262000;211.224000;211.243000;0 +20260313 090700;211.243000;211.271000;211.223000;211.240000;0 +20260313 090800;211.240000;211.242000;211.199000;211.219000;0 +20260313 090900;211.221000;211.251000;211.208000;211.237000;0 +20260313 091000;211.238000;211.274000;211.222000;211.224000;0 +20260313 091100;211.223000;211.239000;211.207000;211.235000;0 +20260313 091200;211.235000;211.257000;211.226000;211.236000;0 +20260313 091300;211.232000;211.246000;211.206000;211.210000;0 +20260313 091400;211.213000;211.217000;211.178000;211.178000;0 +20260313 091500;211.178000;211.206000;211.164000;211.191000;0 +20260313 091600;211.191000;211.204000;211.162000;211.169000;0 +20260313 091700;211.171000;211.195000;211.146000;211.148000;0 +20260313 091800;211.147000;211.169000;211.143000;211.143000;0 +20260313 091900;211.143000;211.150000;211.128000;211.140000;0 +20260313 092000;211.138000;211.171000;211.128000;211.136000;0 +20260313 092100;211.139000;211.207000;211.133000;211.204000;0 +20260313 092200;211.202000;211.209000;211.181000;211.190000;0 +20260313 092300;211.190000;211.212000;211.183000;211.205000;0 +20260313 092400;211.206000;211.206000;211.180000;211.199000;0 +20260313 092500;211.200000;211.245000;211.199000;211.230000;0 +20260313 092600;211.230000;211.262000;211.221000;211.254000;0 +20260313 092700;211.255000;211.276000;211.248000;211.253000;0 +20260313 092800;211.249000;211.252000;211.225000;211.249000;0 +20260313 092900;211.249000;211.253000;211.222000;211.246000;0 +20260313 093000;211.247000;211.270000;211.231000;211.270000;0 +20260313 093100;211.265000;211.343000;211.265000;211.329000;0 +20260313 093200;211.329000;211.359000;211.324000;211.342000;0 +20260313 093300;211.342000;211.376000;211.340000;211.369000;0 +20260313 093400;211.366000;211.368000;211.336000;211.351000;0 +20260313 093500;211.349000;211.365000;211.311000;211.313000;0 +20260313 093600;211.312000;211.361000;211.310000;211.353000;0 +20260313 093700;211.349000;211.411000;211.349000;211.404000;0 +20260313 093800;211.404000;211.414000;211.390000;211.414000;0 +20260313 093900;211.414000;211.438000;211.403000;211.420000;0 +20260313 094000;211.420000;211.426000;211.381000;211.401000;0 +20260313 094100;211.404000;211.418000;211.389000;211.395000;0 +20260313 094200;211.392000;211.393000;211.353000;211.364000;0 +20260313 094300;211.361000;211.378000;211.347000;211.355000;0 +20260313 094400;211.353000;211.371000;211.349000;211.361000;0 +20260313 094500;211.359000;211.371000;211.331000;211.340000;0 +20260313 094600;211.338000;211.362000;211.329000;211.345000;0 +20260313 094700;211.343000;211.371000;211.329000;211.343000;0 +20260313 094800;211.343000;211.362000;211.305000;211.305000;0 +20260313 094900;211.305000;211.318000;211.292000;211.299000;0 +20260313 095000;211.299000;211.323000;211.296000;211.317000;0 +20260313 095100;211.315000;211.330000;211.310000;211.312000;0 +20260313 095200;211.314000;211.322000;211.297000;211.315000;0 +20260313 095300;211.318000;211.340000;211.307000;211.319000;0 +20260313 095400;211.320000;211.329000;211.304000;211.304000;0 +20260313 095500;211.301000;211.315000;211.254000;211.254000;0 +20260313 095600;211.253000;211.267000;211.237000;211.237000;0 +20260313 095700;211.239000;211.258000;211.234000;211.237000;0 +20260313 095800;211.237000;211.254000;211.229000;211.241000;0 +20260313 095900;211.242000;211.261000;211.229000;211.241000;0 +20260313 100000;211.240000;211.270000;211.234000;211.235000;0 +20260313 100100;211.235000;211.261000;211.235000;211.239000;0 +20260313 100200;211.239000;211.251000;211.223000;211.236000;0 +20260313 100300;211.236000;211.288000;211.230000;211.259000;0 +20260313 100400;211.261000;211.280000;211.259000;211.270000;0 +20260313 100500;211.269000;211.305000;211.260000;211.286000;0 +20260313 100600;211.285000;211.309000;211.283000;211.289000;0 +20260313 100700;211.291000;211.308000;211.279000;211.305000;0 +20260313 100800;211.305000;211.334000;211.300000;211.331000;0 +20260313 100900;211.330000;211.337000;211.313000;211.313000;0 +20260313 101000;211.313000;211.329000;211.304000;211.304000;0 +20260313 101100;211.303000;211.314000;211.283000;211.314000;0 +20260313 101200;211.314000;211.326000;211.302000;211.315000;0 +20260313 101300;211.313000;211.354000;211.308000;211.354000;0 +20260313 101400;211.352000;211.357000;211.321000;211.354000;0 +20260313 101500;211.357000;211.357000;211.283000;211.283000;0 +20260313 101600;211.282000;211.285000;211.237000;211.238000;0 +20260313 101700;211.237000;211.261000;211.234000;211.257000;0 +20260313 101800;211.256000;211.271000;211.255000;211.267000;0 +20260313 101900;211.268000;211.274000;211.250000;211.258000;0 +20260313 102000;211.257000;211.259000;211.224000;211.236000;0 +20260313 102100;211.237000;211.254000;211.236000;211.253000;0 +20260313 102200;211.254000;211.278000;211.250000;211.253000;0 +20260313 102300;211.253000;211.260000;211.218000;211.219000;0 +20260313 102400;211.219000;211.219000;211.176000;211.188000;0 +20260313 102500;211.189000;211.192000;211.168000;211.171000;0 +20260313 102600;211.170000;211.179000;211.155000;211.171000;0 +20260313 102700;211.171000;211.180000;211.157000;211.167000;0 +20260313 102800;211.170000;211.202000;211.165000;211.198000;0 +20260313 102900;211.202000;211.202000;211.175000;211.190000;0 +20260313 103000;211.189000;211.207000;211.175000;211.190000;0 +20260313 103100;211.191000;211.205000;211.163000;211.164000;0 +20260313 103200;211.162000;211.191000;211.161000;211.189000;0 +20260313 103300;211.190000;211.198000;211.172000;211.188000;0 +20260313 103400;211.185000;211.223000;211.181000;211.214000;0 +20260313 103500;211.216000;211.236000;211.200000;211.200000;0 +20260313 103600;211.200000;211.207000;211.153000;211.181000;0 +20260313 103700;211.180000;211.207000;211.160000;211.203000;0 +20260313 103800;211.202000;211.224000;211.180000;211.222000;0 +20260313 103900;211.223000;211.241000;211.185000;211.203000;0 +20260313 104000;211.203000;211.224000;211.193000;211.196000;0 +20260313 104100;211.198000;211.203000;211.174000;211.196000;0 +20260313 104200;211.194000;211.202000;211.166000;211.171000;0 +20260313 104300;211.173000;211.186000;211.144000;211.173000;0 +20260313 104400;211.173000;211.186000;211.157000;211.178000;0 +20260313 104500;211.181000;211.201000;211.166000;211.196000;0 +20260313 104600;211.189000;211.199000;211.149000;211.185000;0 +20260313 104700;211.187000;211.276000;211.163000;211.263000;0 +20260313 104800;211.262000;211.269000;211.212000;211.246000;0 +20260313 104900;211.251000;211.275000;211.225000;211.235000;0 +20260313 105000;211.235000;211.247000;211.205000;211.219000;0 +20260313 105100;211.220000;211.220000;211.182000;211.184000;0 +20260313 105200;211.185000;211.189000;211.155000;211.160000;0 +20260313 105300;211.164000;211.187000;211.151000;211.154000;0 +20260313 105400;211.157000;211.197000;211.154000;211.189000;0 +20260313 105500;211.189000;211.202000;211.139000;211.139000;0 +20260313 105600;211.139000;211.212000;211.139000;211.196000;0 +20260313 105700;211.197000;211.287000;211.194000;211.241000;0 +20260313 105800;211.241000;211.245000;211.217000;211.241000;0 +20260313 105900;211.241000;211.251000;211.201000;211.204000;0 +20260313 110000;211.201000;211.249000;211.190000;211.242000;0 +20260313 110100;211.244000;211.252000;211.215000;211.221000;0 +20260313 110200;211.221000;211.264000;211.221000;211.257000;0 +20260313 110300;211.259000;211.303000;211.259000;211.301000;0 +20260313 110400;211.300000;211.301000;211.245000;211.247000;0 +20260313 110500;211.249000;211.270000;211.237000;211.256000;0 +20260313 110600;211.258000;211.264000;211.223000;211.242000;0 +20260313 110700;211.244000;211.295000;211.244000;211.293000;0 +20260313 110800;211.293000;211.298000;211.250000;211.250000;0 +20260313 110900;211.253000;211.266000;211.226000;211.261000;0 +20260313 111000;211.261000;211.280000;211.239000;211.241000;0 +20260313 111100;211.240000;211.276000;211.238000;211.275000;0 +20260313 111200;211.275000;211.294000;211.253000;211.253000;0 +20260313 111300;211.250000;211.273000;211.224000;211.239000;0 +20260313 111400;211.239000;211.275000;211.233000;211.268000;0 +20260313 111500;211.269000;211.287000;211.257000;211.261000;0 +20260313 111600;211.264000;211.266000;211.242000;211.242000;0 +20260313 111700;211.243000;211.250000;211.232000;211.236000;0 +20260313 111800;211.235000;211.260000;211.224000;211.252000;0 +20260313 111900;211.250000;211.260000;211.241000;211.242000;0 +20260313 112000;211.243000;211.260000;211.240000;211.252000;0 +20260313 112100;211.248000;211.262000;211.227000;211.240000;0 +20260313 112200;211.240000;211.259000;211.232000;211.235000;0 +20260313 112300;211.238000;211.244000;211.222000;211.238000;0 +20260313 112400;211.241000;211.245000;211.219000;211.239000;0 +20260313 112500;211.239000;211.245000;211.223000;211.230000;0 +20260313 112600;211.225000;211.227000;211.212000;211.212000;0 +20260313 112700;211.213000;211.241000;211.213000;211.236000;0 +20260313 112800;211.237000;211.247000;211.226000;211.247000;0 +20260313 112900;211.243000;211.266000;211.238000;211.260000;0 +20260313 113000;211.260000;211.276000;211.240000;211.265000;0 +20260313 113100;211.262000;211.265000;211.212000;211.220000;0 +20260313 113200;211.220000;211.220000;211.183000;211.194000;0 +20260313 113300;211.194000;211.227000;211.185000;211.225000;0 +20260313 113400;211.222000;211.227000;211.197000;211.200000;0 +20260313 113500;211.202000;211.235000;211.202000;211.225000;0 +20260313 113600;211.221000;211.273000;211.221000;211.257000;0 +20260313 113700;211.261000;211.289000;211.250000;211.282000;0 +20260313 113800;211.283000;211.283000;211.243000;211.251000;0 +20260313 113900;211.248000;211.248000;211.204000;211.207000;0 +20260313 114000;211.205000;211.214000;211.192000;211.199000;0 +20260313 114100;211.199000;211.217000;211.182000;211.212000;0 +20260313 114200;211.213000;211.243000;211.209000;211.238000;0 +20260313 114300;211.241000;211.241000;211.203000;211.212000;0 +20260313 114400;211.211000;211.211000;211.175000;211.184000;0 +20260313 114500;211.188000;211.226000;211.188000;211.208000;0 +20260313 114600;211.208000;211.216000;211.200000;211.207000;0 +20260313 114700;211.207000;211.216000;211.193000;211.216000;0 +20260313 114800;211.215000;211.234000;211.211000;211.229000;0 +20260313 114900;211.229000;211.244000;211.223000;211.231000;0 +20260313 115000;211.234000;211.295000;211.224000;211.294000;0 +20260313 115100;211.288000;211.296000;211.267000;211.296000;0 +20260313 115200;211.298000;211.327000;211.295000;211.301000;0 +20260313 115300;211.299000;211.331000;211.295000;211.305000;0 +20260313 115400;211.306000;211.361000;211.305000;211.351000;0 +20260313 115500;211.351000;211.366000;211.342000;211.350000;0 +20260313 115600;211.350000;211.362000;211.336000;211.342000;0 +20260313 115700;211.342000;211.347000;211.315000;211.320000;0 +20260313 115800;211.321000;211.359000;211.318000;211.334000;0 +20260313 115900;211.334000;211.385000;211.332000;211.385000;0 +20260313 120000;211.384000;211.404000;211.374000;211.378000;0 +20260313 120100;211.376000;211.393000;211.366000;211.376000;0 +20260313 120200;211.376000;211.376000;211.353000;211.365000;0 +20260313 120300;211.369000;211.386000;211.368000;211.374000;0 +20260313 120400;211.379000;211.385000;211.342000;211.342000;0 +20260313 120500;211.342000;211.367000;211.336000;211.357000;0 +20260313 120600;211.357000;211.384000;211.349000;211.377000;0 +20260313 120700;211.377000;211.382000;211.349000;211.366000;0 +20260313 120800;211.367000;211.402000;211.361000;211.394000;0 +20260313 120900;211.395000;211.403000;211.361000;211.365000;0 +20260313 121000;211.365000;211.381000;211.362000;211.377000;0 +20260313 121100;211.378000;211.389000;211.366000;211.376000;0 +20260313 121200;211.374000;211.418000;211.374000;211.405000;0 +20260313 121300;211.401000;211.406000;211.391000;211.401000;0 +20260313 121400;211.400000;211.416000;211.392000;211.415000;0 +20260313 121500;211.415000;211.465000;211.415000;211.465000;0 +20260313 121600;211.464000;211.499000;211.463000;211.492000;0 +20260313 121700;211.494000;211.500000;211.482000;211.498000;0 +20260313 121800;211.498000;211.498000;211.449000;211.451000;0 +20260313 121900;211.451000;211.494000;211.449000;211.491000;0 +20260313 122000;211.491000;211.499000;211.472000;211.472000;0 +20260313 122100;211.473000;211.474000;211.443000;211.461000;0 +20260313 122200;211.463000;211.473000;211.451000;211.467000;0 +20260313 122300;211.464000;211.476000;211.461000;211.472000;0 +20260313 122400;211.475000;211.507000;211.475000;211.500000;0 +20260313 122500;211.507000;211.512000;211.475000;211.489000;0 +20260313 122600;211.488000;211.488000;211.458000;211.462000;0 +20260313 122700;211.463000;211.468000;211.443000;211.446000;0 +20260313 122800;211.445000;211.472000;211.445000;211.472000;0 +20260313 122900;211.472000;211.479000;211.440000;211.444000;0 +20260313 123000;211.444000;211.447000;211.408000;211.412000;0 +20260313 123100;211.412000;211.439000;211.394000;211.430000;0 +20260313 123200;211.430000;211.446000;211.417000;211.442000;0 +20260313 123300;211.446000;211.450000;211.429000;211.444000;0 +20260313 123400;211.442000;211.453000;211.434000;211.435000;0 +20260313 123500;211.436000;211.458000;211.412000;211.422000;0 +20260313 123600;211.421000;211.476000;211.420000;211.454000;0 +20260313 123700;211.452000;211.452000;211.422000;211.427000;0 +20260313 123800;211.426000;211.437000;211.414000;211.426000;0 +20260313 123900;211.426000;211.435000;211.417000;211.425000;0 +20260313 124000;211.424000;211.460000;211.416000;211.458000;0 +20260313 124100;211.458000;211.462000;211.421000;211.421000;0 +20260313 124200;211.423000;211.426000;211.404000;211.412000;0 +20260313 124300;211.414000;211.423000;211.410000;211.413000;0 +20260313 124400;211.411000;211.429000;211.400000;211.426000;0 +20260313 124500;211.423000;211.427000;211.399000;211.402000;0 +20260313 124600;211.406000;211.406000;211.361000;211.364000;0 +20260313 124700;211.363000;211.366000;211.346000;211.358000;0 +20260313 124800;211.359000;211.372000;211.359000;211.369000;0 +20260313 124900;211.368000;211.373000;211.352000;211.355000;0 +20260313 125000;211.353000;211.358000;211.339000;211.344000;0 +20260313 125100;211.344000;211.374000;211.344000;211.370000;0 +20260313 125200;211.370000;211.377000;211.351000;211.352000;0 +20260313 125300;211.353000;211.366000;211.346000;211.349000;0 +20260313 125400;211.347000;211.364000;211.344000;211.362000;0 +20260313 125500;211.364000;211.389000;211.360000;211.379000;0 +20260313 125600;211.378000;211.391000;211.362000;211.362000;0 +20260313 125700;211.366000;211.369000;211.346000;211.349000;0 +20260313 125800;211.349000;211.359000;211.340000;211.355000;0 +20260313 125900;211.354000;211.372000;211.349000;211.366000;0 +20260313 130000;211.365000;211.401000;211.361000;211.393000;0 +20260313 130100;211.395000;211.411000;211.395000;211.400000;0 +20260313 130200;211.399000;211.403000;211.381000;211.395000;0 +20260313 130300;211.395000;211.403000;211.392000;211.396000;0 +20260313 130400;211.397000;211.447000;211.391000;211.444000;0 +20260313 130500;211.445000;211.458000;211.442000;211.455000;0 +20260313 130600;211.456000;211.476000;211.453000;211.453000;0 +20260313 130700;211.451000;211.464000;211.444000;211.444000;0 +20260313 130800;211.444000;211.444000;211.413000;211.413000;0 +20260313 130900;211.415000;211.424000;211.388000;211.393000;0 +20260313 131000;211.391000;211.404000;211.368000;211.381000;0 +20260313 131100;211.386000;211.404000;211.377000;211.386000;0 +20260313 131200;211.390000;211.390000;211.359000;211.378000;0 +20260313 131300;211.379000;211.386000;211.336000;211.341000;0 +20260313 131400;211.341000;211.357000;211.338000;211.339000;0 +20260313 131500;211.338000;211.343000;211.314000;211.314000;0 +20260313 131600;211.313000;211.338000;211.313000;211.323000;0 +20260313 131700;211.321000;211.346000;211.317000;211.343000;0 +20260313 131800;211.347000;211.350000;211.318000;211.318000;0 +20260313 131900;211.319000;211.330000;211.312000;211.325000;0 +20260313 132000;211.326000;211.346000;211.316000;211.345000;0 +20260313 132100;211.346000;211.356000;211.331000;211.336000;0 +20260313 132200;211.336000;211.353000;211.327000;211.328000;0 +20260313 132300;211.329000;211.348000;211.327000;211.348000;0 +20260313 132400;211.348000;211.353000;211.343000;211.350000;0 +20260313 132500;211.350000;211.363000;211.329000;211.338000;0 +20260313 132600;211.339000;211.353000;211.327000;211.341000;0 +20260313 132700;211.341000;211.357000;211.338000;211.347000;0 +20260313 132800;211.349000;211.372000;211.349000;211.364000;0 +20260313 132900;211.365000;211.383000;211.364000;211.376000;0 +20260313 133000;211.377000;211.396000;211.372000;211.392000;0 +20260313 133100;211.394000;211.398000;211.384000;211.395000;0 +20260313 133200;211.394000;211.406000;211.376000;211.397000;0 +20260313 133300;211.396000;211.400000;211.386000;211.393000;0 +20260313 133400;211.392000;211.421000;211.392000;211.416000;0 +20260313 133500;211.416000;211.434000;211.414000;211.434000;0 +20260313 133600;211.431000;211.454000;211.424000;211.438000;0 +20260313 133700;211.439000;211.439000;211.412000;211.430000;0 +20260313 133800;211.426000;211.428000;211.416000;211.424000;0 +20260313 133900;211.425000;211.439000;211.416000;211.429000;0 +20260313 134000;211.430000;211.438000;211.422000;211.430000;0 +20260313 134100;211.430000;211.449000;211.420000;211.442000;0 +20260313 134200;211.439000;211.448000;211.439000;211.444000;0 +20260313 134300;211.443000;211.449000;211.438000;211.443000;0 +20260313 134400;211.438000;211.448000;211.433000;211.437000;0 +20260313 134500;211.435000;211.448000;211.429000;211.448000;0 +20260313 134600;211.447000;211.457000;211.435000;211.457000;0 +20260313 134700;211.456000;211.457000;211.433000;211.446000;0 +20260313 134800;211.444000;211.456000;211.438000;211.450000;0 +20260313 134900;211.447000;211.455000;211.444000;211.454000;0 +20260313 135000;211.452000;211.455000;211.432000;211.444000;0 +20260313 135100;211.447000;211.449000;211.443000;211.446000;0 +20260313 135200;211.443000;211.443000;211.414000;211.414000;0 +20260313 135300;211.414000;211.422000;211.399000;211.400000;0 +20260313 135400;211.399000;211.425000;211.396000;211.421000;0 +20260313 135500;211.421000;211.425000;211.397000;211.405000;0 +20260313 135600;211.400000;211.408000;211.395000;211.402000;0 +20260313 135700;211.402000;211.417000;211.385000;211.385000;0 +20260313 135800;211.384000;211.412000;211.384000;211.400000;0 +20260313 135900;211.397000;211.405000;211.390000;211.403000;0 +20260313 140000;211.404000;211.404000;211.372000;211.375000;0 +20260313 140100;211.377000;211.380000;211.361000;211.363000;0 +20260313 140200;211.364000;211.371000;211.353000;211.363000;0 +20260313 140300;211.360000;211.367000;211.348000;211.362000;0 +20260313 140400;211.360000;211.360000;211.331000;211.335000;0 +20260313 140500;211.335000;211.338000;211.322000;211.324000;0 +20260313 140600;211.322000;211.328000;211.317000;211.318000;0 +20260313 140700;211.319000;211.330000;211.311000;211.313000;0 +20260313 140800;211.315000;211.351000;211.313000;211.343000;0 +20260313 140900;211.343000;211.362000;211.332000;211.358000;0 +20260313 141000;211.358000;211.359000;211.333000;211.333000;0 +20260313 141100;211.330000;211.331000;211.307000;211.315000;0 +20260313 141200;211.318000;211.325000;211.299000;211.299000;0 +20260313 141300;211.297000;211.315000;211.294000;211.308000;0 +20260313 141400;211.307000;211.321000;211.301000;211.307000;0 +20260313 141500;211.307000;211.319000;211.304000;211.313000;0 +20260313 141600;211.309000;211.323000;211.275000;211.294000;0 +20260313 141700;211.294000;211.325000;211.266000;211.311000;0 +20260313 141800;211.310000;211.313000;211.287000;211.301000;0 +20260313 141900;211.300000;211.304000;211.289000;211.299000;0 +20260313 142000;211.299000;211.310000;211.285000;211.290000;0 +20260313 142100;211.291000;211.297000;211.277000;211.285000;0 +20260313 142200;211.285000;211.292000;211.271000;211.274000;0 +20260313 142300;211.274000;211.290000;211.271000;211.282000;0 +20260313 142400;211.282000;211.299000;211.282000;211.295000;0 +20260313 142500;211.292000;211.302000;211.275000;211.279000;0 +20260313 142600;211.282000;211.289000;211.267000;211.269000;0 +20260313 142700;211.271000;211.272000;211.253000;211.271000;0 +20260313 142800;211.267000;211.279000;211.260000;211.273000;0 +20260313 142900;211.273000;211.273000;211.253000;211.264000;0 +20260313 143000;211.268000;211.295000;211.259000;211.293000;0 +20260313 143100;211.294000;211.297000;211.271000;211.273000;0 +20260313 143200;211.270000;211.273000;211.252000;211.253000;0 +20260313 143300;211.254000;211.261000;211.246000;211.254000;0 +20260313 143400;211.254000;211.261000;211.243000;211.254000;0 +20260313 143500;211.251000;211.256000;211.244000;211.250000;0 +20260313 143600;211.253000;211.268000;211.251000;211.255000;0 +20260313 143700;211.255000;211.255000;211.223000;211.224000;0 +20260313 143800;211.223000;211.238000;211.223000;211.233000;0 +20260313 143900;211.230000;211.235000;211.222000;211.229000;0 +20260313 144000;211.226000;211.234000;211.219000;211.232000;0 +20260313 144100;211.229000;211.236000;211.222000;211.232000;0 +20260313 144200;211.229000;211.233000;211.220000;211.222000;0 +20260313 144300;211.224000;211.236000;211.215000;211.220000;0 +20260313 144400;211.219000;211.226000;211.210000;211.214000;0 +20260313 144500;211.215000;211.229000;211.201000;211.207000;0 +20260313 144600;211.209000;211.217000;211.193000;211.193000;0 +20260313 144700;211.192000;211.211000;211.192000;211.206000;0 +20260313 144800;211.208000;211.217000;211.193000;211.198000;0 +20260313 144900;211.197000;211.199000;211.181000;211.186000;0 +20260313 145000;211.184000;211.197000;211.172000;211.180000;0 +20260313 145100;211.181000;211.190000;211.175000;211.182000;0 +20260313 145200;211.183000;211.187000;211.177000;211.184000;0 +20260313 145300;211.188000;211.207000;211.188000;211.202000;0 +20260313 145400;211.202000;211.215000;211.200000;211.209000;0 +20260313 145500;211.209000;211.212000;211.202000;211.206000;0 +20260313 145600;211.202000;211.227000;211.201000;211.222000;0 +20260313 145700;211.224000;211.230000;211.201000;211.209000;0 +20260313 145800;211.207000;211.214000;211.188000;211.201000;0 +20260313 145900;211.199000;211.205000;211.189000;211.200000;0 +20260313 150000;211.198000;211.201000;211.178000;211.183000;0 +20260313 150100;211.183000;211.202000;211.179000;211.191000;0 +20260313 150200;211.189000;211.194000;211.157000;211.166000;0 +20260313 150300;211.166000;211.169000;211.146000;211.148000;0 +20260313 150400;211.149000;211.156000;211.139000;211.153000;0 +20260313 150500;211.152000;211.156000;211.140000;211.140000;0 +20260313 150600;211.138000;211.139000;211.114000;211.125000;0 +20260313 150700;211.127000;211.130000;211.110000;211.110000;0 +20260313 150800;211.110000;211.118000;211.106000;211.107000;0 +20260313 150900;211.112000;211.118000;211.076000;211.077000;0 +20260313 151000;211.073000;211.092000;211.063000;211.089000;0 +20260313 151100;211.090000;211.100000;211.079000;211.087000;0 +20260313 151200;211.088000;211.113000;211.088000;211.107000;0 +20260313 151300;211.103000;211.110000;211.088000;211.107000;0 +20260313 151400;211.109000;211.119000;211.105000;211.110000;0 +20260313 151500;211.110000;211.127000;211.110000;211.126000;0 +20260313 151600;211.122000;211.133000;211.119000;211.132000;0 +20260313 151700;211.132000;211.134000;211.123000;211.133000;0 +20260313 151800;211.133000;211.153000;211.133000;211.147000;0 +20260313 151900;211.147000;211.156000;211.147000;211.147000;0 +20260313 152000;211.147000;211.152000;211.144000;211.145000;0 +20260313 152100;211.145000;211.157000;211.141000;211.149000;0 +20260313 152200;211.149000;211.150000;211.125000;211.131000;0 +20260313 152300;211.131000;211.146000;211.131000;211.146000;0 +20260313 152400;211.148000;211.148000;211.114000;211.132000;0 +20260313 152500;211.136000;211.143000;211.130000;211.132000;0 +20260313 152600;211.133000;211.149000;211.130000;211.149000;0 +20260313 152700;211.144000;211.147000;211.134000;211.134000;0 +20260313 152800;211.135000;211.144000;211.132000;211.141000;0 +20260313 152900;211.143000;211.150000;211.142000;211.146000;0 +20260313 153000;211.145000;211.167000;211.143000;211.161000;0 +20260313 153100;211.163000;211.185000;211.160000;211.183000;0 +20260313 153200;211.179000;211.188000;211.158000;211.159000;0 +20260313 153300;211.159000;211.170000;211.159000;211.170000;0 +20260313 153400;211.166000;211.180000;211.160000;211.177000;0 +20260313 153500;211.175000;211.188000;211.166000;211.171000;0 +20260313 153600;211.170000;211.209000;211.167000;211.205000;0 +20260313 153700;211.204000;211.209000;211.193000;211.194000;0 +20260313 153800;211.193000;211.204000;211.179000;211.202000;0 +20260313 153900;211.201000;211.203000;211.196000;211.198000;0 +20260313 154000;211.197000;211.205000;211.190000;211.198000;0 +20260313 154100;211.197000;211.209000;211.177000;211.179000;0 +20260313 154200;211.191000;211.202000;211.181000;211.185000;0 +20260313 154300;211.181000;211.197000;211.181000;211.190000;0 +20260313 154400;211.180000;211.187000;211.145000;211.162000;0 +20260313 154500;211.157000;211.182000;211.157000;211.164000;0 +20260313 154600;211.172000;211.204000;211.161000;211.195000;0 +20260313 154700;211.202000;211.219000;211.199000;211.210000;0 +20260313 154800;211.210000;211.221000;211.203000;211.217000;0 +20260313 154900;211.228000;211.228000;211.193000;211.220000;0 +20260313 155000;211.221000;211.239000;211.216000;211.216000;0 +20260313 155100;211.219000;211.234000;211.202000;211.227000;0 +20260313 155200;211.234000;211.234000;211.150000;211.171000;0 +20260313 155300;211.177000;211.178000;211.163000;211.176000;0 +20260313 155400;211.173000;211.193000;211.167000;211.185000;0 +20260313 155500;211.180000;211.192000;211.178000;211.185000;0 +20260313 155600;211.188000;211.201000;211.179000;211.197000;0 +20260313 155700;211.208000;211.222000;211.168000;211.204000;0 +20260313 155800;211.210000;211.218000;211.137000;211.164000;0 +20260313 155900;211.149000;211.164000;211.137000;211.149000;0 +20260315 161400;210.996000;211.005000;210.996000;211.005000;0 +20260315 161500;211.062000;211.080000;211.002000;211.051000;0 +20260315 161600;211.052000;211.059000;211.048000;211.059000;0 +20260315 161700;211.049000;211.059000;211.049000;211.056000;0 +20260315 161800;211.059000;211.141000;211.059000;211.123000;0 +20260315 161900;211.105000;211.130000;211.103000;211.129000;0 +20260315 162000;211.130000;211.265000;211.130000;211.265000;0 +20260315 162100;211.253000;211.261000;211.245000;211.261000;0 +20260315 162200;211.264000;211.264000;211.253000;211.264000;0 +20260315 162300;211.265000;211.265000;211.265000;211.265000;0 +20260315 162400;211.265000;211.268000;211.264000;211.267000;0 +20260315 162500;211.261000;211.271000;211.261000;211.271000;0 +20260315 162600;211.249000;211.258000;211.230000;211.236000;0 +20260315 162700;211.232000;211.232000;211.232000;211.232000;0 +20260315 162800;211.243000;211.249000;211.113000;211.125000;0 +20260315 162900;211.152000;211.161000;211.152000;211.160000;0 +20260315 163000;211.160000;211.160000;211.091000;211.101000;0 +20260315 163100;211.101000;211.102000;211.083000;211.083000;0 +20260315 163200;211.092000;211.180000;211.089000;211.180000;0 +20260315 163300;211.179000;211.179000;211.168000;211.179000;0 +20260315 163400;211.192000;211.195000;211.167000;211.195000;0 +20260315 163500;211.185000;211.206000;211.181000;211.198000;0 +20260315 163600;211.188000;211.201000;211.184000;211.186000;0 +20260315 163700;211.191000;211.191000;211.174000;211.174000;0 +20260315 163800;211.181000;211.181000;211.070000;211.081000;0 +20260315 163900;211.097000;211.157000;211.073000;211.124000;0 +20260315 164000;211.065000;211.163000;211.052000;211.146000;0 +20260315 164100;211.145000;211.145000;211.145000;211.145000;0 +20260315 164200;211.122000;211.143000;211.084000;211.130000;0 +20260315 164300;211.129000;211.147000;211.115000;211.130000;0 +20260315 164400;211.154000;211.154000;211.123000;211.128000;0 +20260315 164500;211.153000;211.153000;211.077000;211.115000;0 +20260315 164600;211.098000;211.109000;211.071000;211.074000;0 +20260315 164700;211.089000;211.090000;211.058000;211.073000;0 +20260315 164800;211.080000;211.080000;210.998000;211.024000;0 +20260315 164900;211.046000;211.051000;210.978000;210.988000;0 +20260315 165000;210.980000;210.980000;210.957000;210.957000;0 +20260315 165100;210.944000;210.944000;210.943000;210.943000;0 +20260315 165200;210.944000;211.084000;210.941000;211.084000;0 +20260315 165300;211.114000;211.214000;211.092000;211.166000;0 +20260315 165400;211.175000;211.175000;211.061000;211.084000;0 +20260315 165500;211.084000;211.124000;211.084000;211.124000;0 +20260315 165600;211.124000;211.134000;211.124000;211.134000;0 +20260315 165700;211.136000;211.211000;211.136000;211.189000;0 +20260315 165800;211.199000;211.285000;211.199000;211.284000;0 +20260315 165900;211.306000;211.306000;211.306000;211.306000;0 +20260315 170000;211.213000;211.285000;211.157000;211.165000;0 +20260315 170100;211.159000;211.191000;211.102000;211.130000;0 +20260315 170200;211.129000;211.168000;211.112000;211.157000;0 +20260315 170300;211.150000;211.221000;211.141000;211.204000;0 +20260315 170400;211.227000;211.243000;211.193000;211.230000;0 +20260315 170500;211.224000;211.251000;211.212000;211.227000;0 +20260315 170600;211.228000;211.272000;211.220000;211.266000;0 +20260315 170700;211.267000;211.354000;211.266000;211.336000;0 +20260315 170800;211.336000;211.347000;211.319000;211.336000;0 +20260315 170900;211.336000;211.337000;211.282000;211.296000;0 +20260315 171000;211.296000;211.321000;211.286000;211.321000;0 +20260315 171100;211.323000;211.331000;211.275000;211.329000;0 +20260315 171200;211.330000;211.333000;211.293000;211.302000;0 +20260315 171300;211.302000;211.307000;211.268000;211.305000;0 +20260315 171400;211.305000;211.322000;211.294000;211.299000;0 +20260315 171500;211.296000;211.347000;211.270000;211.341000;0 +20260315 171600;211.342000;211.348000;211.269000;211.273000;0 +20260315 171700;211.285000;211.302000;211.276000;211.288000;0 +20260315 171800;211.288000;211.292000;211.262000;211.263000;0 +20260315 171900;211.263000;211.271000;211.232000;211.264000;0 +20260315 172000;211.267000;211.267000;211.244000;211.248000;0 +20260315 172100;211.249000;211.261000;211.245000;211.252000;0 +20260315 172200;211.253000;211.261000;211.247000;211.259000;0 +20260315 172300;211.254000;211.267000;211.244000;211.244000;0 +20260315 172400;211.243000;211.255000;211.225000;211.231000;0 +20260315 172500;211.224000;211.251000;211.223000;211.244000;0 +20260315 172600;211.247000;211.258000;211.245000;211.252000;0 +20260315 172700;211.246000;211.246000;211.210000;211.226000;0 +20260315 172800;211.242000;211.242000;211.215000;211.217000;0 +20260315 172900;211.211000;211.230000;211.186000;211.213000;0 +20260315 173000;211.213000;211.263000;211.207000;211.224000;0 +20260315 173100;211.225000;211.235000;211.206000;211.215000;0 +20260315 173200;211.221000;211.236000;211.184000;211.211000;0 +20260315 173300;211.210000;211.218000;211.201000;211.215000;0 +20260315 173400;211.202000;211.239000;211.195000;211.208000;0 +20260315 173500;211.202000;211.214000;211.190000;211.195000;0 +20260315 173600;211.202000;211.202000;211.170000;211.185000;0 +20260315 173700;211.189000;211.196000;211.175000;211.181000;0 +20260315 173800;211.176000;211.191000;211.163000;211.184000;0 +20260315 173900;211.183000;211.215000;211.178000;211.194000;0 +20260315 174000;211.191000;211.219000;211.187000;211.195000;0 +20260315 174100;211.195000;211.199000;211.163000;211.195000;0 +20260315 174200;211.190000;211.201000;211.183000;211.196000;0 +20260315 174300;211.195000;211.217000;211.183000;211.209000;0 +20260315 174400;211.210000;211.227000;211.198000;211.205000;0 +20260315 174500;211.204000;211.222000;211.189000;211.206000;0 +20260315 174600;211.206000;211.222000;211.191000;211.221000;0 +20260315 174700;211.222000;211.250000;211.205000;211.239000;0 +20260315 174800;211.240000;211.268000;211.236000;211.254000;0 +20260315 174900;211.256000;211.267000;211.209000;211.217000;0 +20260315 175000;211.226000;211.245000;211.218000;211.234000;0 +20260315 175100;211.242000;211.256000;211.227000;211.244000;0 +20260315 175200;211.240000;211.277000;211.230000;211.266000;0 +20260315 175300;211.256000;211.257000;211.202000;211.217000;0 +20260315 175400;211.217000;211.252000;211.197000;211.205000;0 +20260315 175500;211.206000;211.228000;211.171000;211.202000;0 +20260315 175600;211.203000;211.203000;211.158000;211.184000;0 +20260315 175700;211.184000;211.213000;211.176000;211.193000;0 +20260315 175800;211.193000;211.202000;211.178000;211.181000;0 +20260315 175900;211.183000;211.194000;211.164000;211.178000;0 +20260315 180000;211.183000;211.208000;211.178000;211.197000;0 +20260315 180100;211.197000;211.202000;211.139000;211.154000;0 +20260315 180200;211.154000;211.166000;211.121000;211.124000;0 +20260315 180300;211.128000;211.151000;211.110000;211.149000;0 +20260315 180400;211.150000;211.173000;211.138000;211.171000;0 +20260315 180500;211.171000;211.201000;211.169000;211.194000;0 +20260315 180600;211.195000;211.210000;211.180000;211.184000;0 +20260315 180700;211.186000;211.213000;211.181000;211.208000;0 +20260315 180800;211.206000;211.232000;211.205000;211.224000;0 +20260315 180900;211.229000;211.245000;211.213000;211.236000;0 +20260315 181000;211.235000;211.242000;211.215000;211.225000;0 +20260315 181100;211.222000;211.227000;211.207000;211.222000;0 +20260315 181200;211.224000;211.267000;211.208000;211.246000;0 +20260315 181300;211.243000;211.265000;211.242000;211.265000;0 +20260315 181400;211.264000;211.275000;211.261000;211.262000;0 +20260315 181500;211.265000;211.271000;211.262000;211.262000;0 +20260315 181600;211.262000;211.272000;211.250000;211.263000;0 +20260315 181700;211.261000;211.282000;211.245000;211.273000;0 +20260315 181800;211.269000;211.285000;211.265000;211.282000;0 +20260315 181900;211.283000;211.293000;211.271000;211.293000;0 +20260315 182000;211.292000;211.293000;211.276000;211.277000;0 +20260315 182100;211.277000;211.280000;211.270000;211.274000;0 +20260315 182200;211.278000;211.286000;211.267000;211.276000;0 +20260315 182300;211.274000;211.295000;211.266000;211.283000;0 +20260315 182400;211.286000;211.292000;211.278000;211.278000;0 +20260315 182500;211.279000;211.287000;211.266000;211.272000;0 +20260315 182600;211.273000;211.283000;211.264000;211.275000;0 +20260315 182700;211.273000;211.277000;211.252000;211.258000;0 +20260315 182800;211.258000;211.263000;211.255000;211.261000;0 +20260315 182900;211.268000;211.300000;211.268000;211.300000;0 +20260315 183000;211.301000;211.301000;211.262000;211.262000;0 +20260315 183100;211.265000;211.274000;211.237000;211.238000;0 +20260315 183200;211.235000;211.245000;211.234000;211.235000;0 +20260315 183300;211.236000;211.250000;211.232000;211.232000;0 +20260315 183400;211.236000;211.243000;211.224000;211.225000;0 +20260315 183500;211.227000;211.255000;211.225000;211.255000;0 +20260315 183600;211.251000;211.279000;211.239000;211.273000;0 +20260315 183700;211.275000;211.280000;211.261000;211.271000;0 +20260315 183800;211.269000;211.282000;211.259000;211.260000;0 +20260315 183900;211.263000;211.280000;211.263000;211.274000;0 +20260315 184000;211.275000;211.317000;211.274000;211.299000;0 +20260315 184100;211.299000;211.314000;211.296000;211.307000;0 +20260315 184200;211.303000;211.315000;211.303000;211.306000;0 +20260315 184300;211.308000;211.314000;211.285000;211.288000;0 +20260315 184400;211.285000;211.317000;211.284000;211.314000;0 +20260315 184500;211.317000;211.338000;211.312000;211.324000;0 +20260315 184600;211.324000;211.327000;211.318000;211.318000;0 +20260315 184700;211.319000;211.319000;211.293000;211.297000;0 +20260315 184800;211.296000;211.301000;211.277000;211.277000;0 +20260315 184900;211.275000;211.286000;211.259000;211.274000;0 +20260315 185000;211.276000;211.290000;211.267000;211.286000;0 +20260315 185100;211.285000;211.286000;211.270000;211.283000;0 +20260315 185200;211.283000;211.288000;211.274000;211.283000;0 +20260315 185300;211.283000;211.324000;211.283000;211.293000;0 +20260315 185400;211.295000;211.302000;211.282000;211.296000;0 +20260315 185500;211.296000;211.322000;211.284000;211.309000;0 +20260315 185600;211.312000;211.315000;211.297000;211.313000;0 +20260315 185700;211.313000;211.364000;211.312000;211.361000;0 +20260315 185800;211.361000;211.393000;211.350000;211.388000;0 +20260315 185900;211.385000;211.386000;211.356000;211.360000;0 +20260315 190000;211.358000;211.358000;211.266000;211.274000;0 +20260315 190100;211.275000;211.319000;211.252000;211.298000;0 +20260315 190200;211.294000;211.328000;211.260000;211.328000;0 +20260315 190300;211.322000;211.332000;211.300000;211.331000;0 +20260315 190400;211.335000;211.360000;211.322000;211.357000;0 +20260315 190500;211.357000;211.384000;211.345000;211.380000;0 +20260315 190600;211.379000;211.402000;211.357000;211.360000;0 +20260315 190700;211.361000;211.391000;211.361000;211.382000;0 +20260315 190800;211.380000;211.391000;211.369000;211.375000;0 +20260315 190900;211.376000;211.389000;211.375000;211.387000;0 +20260315 191000;211.385000;211.397000;211.368000;211.382000;0 +20260315 191100;211.382000;211.390000;211.370000;211.382000;0 +20260315 191200;211.382000;211.407000;211.382000;211.396000;0 +20260315 191300;211.396000;211.407000;211.390000;211.401000;0 +20260315 191400;211.398000;211.407000;211.379000;211.381000;0 +20260315 191500;211.379000;211.398000;211.376000;211.392000;0 +20260315 191600;211.398000;211.414000;211.386000;211.413000;0 +20260315 191700;211.413000;211.413000;211.380000;211.386000;0 +20260315 191800;211.388000;211.390000;211.365000;211.365000;0 +20260315 191900;211.362000;211.394000;211.362000;211.392000;0 +20260315 192000;211.386000;211.386000;211.351000;211.351000;0 +20260315 192100;211.353000;211.359000;211.343000;211.349000;0 +20260315 192200;211.347000;211.372000;211.343000;211.345000;0 +20260315 192300;211.350000;211.364000;211.331000;211.332000;0 +20260315 192400;211.332000;211.343000;211.310000;211.320000;0 +20260315 192500;211.320000;211.330000;211.265000;211.265000;0 +20260315 192600;211.264000;211.296000;211.257000;211.269000;0 +20260315 192700;211.268000;211.272000;211.227000;211.241000;0 +20260315 192800;211.239000;211.246000;211.209000;211.209000;0 +20260315 192900;211.212000;211.227000;211.211000;211.217000;0 +20260315 193000;211.218000;211.228000;211.198000;211.199000;0 +20260315 193100;211.200000;211.237000;211.200000;211.226000;0 +20260315 193200;211.226000;211.233000;211.216000;211.230000;0 +20260315 193300;211.234000;211.240000;211.217000;211.229000;0 +20260315 193400;211.230000;211.231000;211.210000;211.227000;0 +20260315 193500;211.234000;211.241000;211.218000;211.218000;0 +20260315 193600;211.225000;211.236000;211.217000;211.228000;0 +20260315 193700;211.227000;211.231000;211.217000;211.217000;0 +20260315 193800;211.218000;211.236000;211.200000;211.203000;0 +20260315 193900;211.199000;211.199000;211.170000;211.185000;0 +20260315 194000;211.183000;211.190000;211.177000;211.185000;0 +20260315 194100;211.182000;211.187000;211.170000;211.172000;0 +20260315 194200;211.171000;211.212000;211.170000;211.209000;0 +20260315 194300;211.209000;211.232000;211.204000;211.209000;0 +20260315 194400;211.210000;211.221000;211.207000;211.210000;0 +20260315 194500;211.210000;211.258000;211.210000;211.257000;0 +20260315 194600;211.255000;211.271000;211.238000;211.259000;0 +20260315 194700;211.257000;211.266000;211.253000;211.253000;0 +20260315 194800;211.258000;211.288000;211.257000;211.272000;0 +20260315 194900;211.270000;211.285000;211.262000;211.278000;0 +20260315 195000;211.278000;211.292000;211.266000;211.292000;0 +20260315 195100;211.291000;211.292000;211.268000;211.273000;0 +20260315 195200;211.265000;211.275000;211.240000;211.257000;0 +20260315 195300;211.256000;211.327000;211.256000;211.316000;0 +20260315 195400;211.315000;211.375000;211.303000;211.351000;0 +20260315 195500;211.352000;211.353000;211.282000;211.288000;0 +20260315 195600;211.292000;211.295000;211.266000;211.287000;0 +20260315 195700;211.288000;211.311000;211.264000;211.273000;0 +20260315 195800;211.275000;211.285000;211.253000;211.272000;0 +20260315 195900;211.274000;211.303000;211.268000;211.278000;0 +20260315 200000;211.279000;211.301000;211.274000;211.281000;0 +20260315 200100;211.282000;211.325000;211.274000;211.312000;0 +20260315 200200;211.312000;211.312000;211.284000;211.299000;0 +20260315 200300;211.300000;211.336000;211.299000;211.327000;0 +20260315 200400;211.326000;211.351000;211.323000;211.343000;0 +20260315 200500;211.343000;211.354000;211.331000;211.353000;0 +20260315 200600;211.349000;211.362000;211.336000;211.343000;0 +20260315 200700;211.343000;211.344000;211.328000;211.339000;0 +20260315 200800;211.337000;211.343000;211.317000;211.322000;0 +20260315 200900;211.320000;211.329000;211.315000;211.322000;0 +20260315 201000;211.322000;211.343000;211.320000;211.331000;0 +20260315 201100;211.333000;211.359000;211.332000;211.348000;0 +20260315 201200;211.349000;211.355000;211.340000;211.340000;0 +20260315 201300;211.341000;211.342000;211.301000;211.301000;0 +20260315 201400;211.301000;211.322000;211.298000;211.314000;0 +20260315 201500;211.319000;211.331000;211.290000;211.300000;0 +20260315 201600;211.301000;211.309000;211.285000;211.285000;0 +20260315 201700;211.287000;211.292000;211.274000;211.275000;0 +20260315 201800;211.272000;211.307000;211.272000;211.302000;0 +20260315 201900;211.300000;211.305000;211.290000;211.297000;0 +20260315 202000;211.298000;211.318000;211.290000;211.300000;0 +20260315 202100;211.299000;211.299000;211.273000;211.288000;0 +20260315 202200;211.292000;211.316000;211.290000;211.307000;0 +20260315 202300;211.307000;211.318000;211.295000;211.298000;0 +20260315 202400;211.296000;211.308000;211.286000;211.296000;0 +20260315 202500;211.293000;211.298000;211.264000;211.266000;0 +20260315 202600;211.266000;211.267000;211.245000;211.245000;0 +20260315 202700;211.247000;211.259000;211.243000;211.253000;0 +20260315 202800;211.251000;211.258000;211.240000;211.257000;0 +20260315 202900;211.252000;211.252000;211.229000;211.238000;0 +20260315 203000;211.237000;211.271000;211.237000;211.248000;0 +20260315 203100;211.253000;211.285000;211.253000;211.272000;0 +20260315 203200;211.276000;211.277000;211.247000;211.252000;0 +20260315 203300;211.253000;211.272000;211.251000;211.253000;0 +20260315 203400;211.252000;211.300000;211.251000;211.295000;0 +20260315 203500;211.298000;211.338000;211.295000;211.324000;0 +20260315 203600;211.321000;211.325000;211.303000;211.305000;0 +20260315 203700;211.300000;211.308000;211.292000;211.305000;0 +20260315 203800;211.303000;211.323000;211.299000;211.312000;0 +20260315 203900;211.313000;211.313000;211.299000;211.299000;0 +20260315 204000;211.298000;211.313000;211.291000;211.310000;0 +20260315 204100;211.312000;211.326000;211.300000;211.309000;0 +20260315 204200;211.311000;211.329000;211.311000;211.319000;0 +20260315 204300;211.319000;211.324000;211.303000;211.316000;0 +20260315 204400;211.318000;211.329000;211.314000;211.316000;0 +20260315 204500;211.315000;211.326000;211.299000;211.324000;0 +20260315 204600;211.321000;211.335000;211.314000;211.335000;0 +20260315 204700;211.336000;211.352000;211.320000;211.347000;0 +20260315 204800;211.347000;211.364000;211.343000;211.358000;0 +20260315 204900;211.358000;211.375000;211.358000;211.373000;0 +20260315 205000;211.381000;211.393000;211.379000;211.393000;0 +20260315 205100;211.391000;211.392000;211.366000;211.377000;0 +20260315 205200;211.377000;211.378000;211.358000;211.373000;0 +20260315 205300;211.374000;211.388000;211.362000;211.369000;0 +20260315 205400;211.367000;211.377000;211.350000;211.353000;0 +20260315 205500;211.350000;211.375000;211.349000;211.373000;0 +20260315 205600;211.373000;211.382000;211.358000;211.362000;0 +20260315 205700;211.361000;211.380000;211.354000;211.376000;0 +20260315 205800;211.376000;211.382000;211.368000;211.368000;0 +20260315 205900;211.372000;211.382000;211.368000;211.375000;0 +20260315 210000;211.375000;211.378000;211.348000;211.351000;0 +20260315 210100;211.353000;211.389000;211.351000;211.369000;0 +20260315 210200;211.375000;211.383000;211.360000;211.381000;0 +20260315 210300;211.385000;211.397000;211.373000;211.390000;0 +20260315 210400;211.392000;211.393000;211.378000;211.390000;0 +20260315 210500;211.390000;211.393000;211.367000;211.387000;0 +20260315 210600;211.388000;211.409000;211.377000;211.408000;0 +20260315 210700;211.408000;211.409000;211.390000;211.396000;0 +20260315 210800;211.395000;211.410000;211.393000;211.408000;0 +20260315 210900;211.406000;211.425000;211.405000;211.419000;0 +20260315 211000;211.423000;211.428000;211.405000;211.409000;0 +20260315 211100;211.409000;211.414000;211.406000;211.413000;0 +20260315 211200;211.417000;211.421000;211.389000;211.393000;0 +20260315 211300;211.397000;211.401000;211.389000;211.398000;0 +20260315 211400;211.396000;211.407000;211.388000;211.406000;0 +20260315 211500;211.407000;211.415000;211.388000;211.391000;0 +20260315 211600;211.391000;211.409000;211.383000;211.404000;0 +20260315 211700;211.407000;211.447000;211.407000;211.436000;0 +20260315 211800;211.436000;211.473000;211.432000;211.461000;0 +20260315 211900;211.461000;211.480000;211.461000;211.474000;0 +20260315 212000;211.472000;211.494000;211.472000;211.486000;0 +20260315 212100;211.487000;211.487000;211.460000;211.464000;0 +20260315 212200;211.463000;211.475000;211.460000;211.469000;0 +20260315 212300;211.471000;211.474000;211.465000;211.471000;0 +20260315 212400;211.470000;211.480000;211.464000;211.471000;0 +20260315 212500;211.471000;211.486000;211.459000;211.486000;0 +20260315 212600;211.486000;211.494000;211.476000;211.491000;0 +20260315 212700;211.494000;211.499000;211.485000;211.488000;0 +20260315 212800;211.490000;211.496000;211.483000;211.486000;0 +20260315 212900;211.484000;211.498000;211.482000;211.492000;0 +20260315 213000;211.492000;211.493000;211.472000;211.473000;0 +20260315 213100;211.475000;211.492000;211.474000;211.484000;0 +20260315 213200;211.482000;211.492000;211.467000;211.473000;0 +20260315 213300;211.473000;211.473000;211.445000;211.462000;0 +20260315 213400;211.464000;211.468000;211.456000;211.459000;0 +20260315 213500;211.461000;211.461000;211.449000;211.449000;0 +20260315 213600;211.451000;211.460000;211.448000;211.456000;0 +20260315 213700;211.456000;211.467000;211.452000;211.462000;0 +20260315 213800;211.464000;211.464000;211.455000;211.458000;0 +20260315 213900;211.456000;211.465000;211.442000;211.458000;0 +20260315 214000;211.457000;211.476000;211.453000;211.473000;0 +20260315 214100;211.475000;211.489000;211.473000;211.476000;0 +20260315 214200;211.476000;211.529000;211.474000;211.524000;0 +20260315 214300;211.526000;211.529000;211.496000;211.496000;0 +20260315 214400;211.495000;211.506000;211.492000;211.496000;0 +20260315 214500;211.496000;211.497000;211.481000;211.488000;0 +20260315 214600;211.487000;211.528000;211.487000;211.528000;0 +20260315 214700;211.525000;211.562000;211.524000;211.542000;0 +20260315 214800;211.544000;211.544000;211.515000;211.538000;0 +20260315 214900;211.540000;211.541000;211.526000;211.539000;0 +20260315 215000;211.539000;211.549000;211.524000;211.532000;0 +20260315 215100;211.532000;211.549000;211.529000;211.538000;0 +20260315 215200;211.537000;211.553000;211.532000;211.539000;0 +20260315 215300;211.536000;211.536000;211.511000;211.512000;0 +20260315 215400;211.511000;211.523000;211.508000;211.513000;0 +20260315 215500;211.516000;211.543000;211.516000;211.536000;0 +20260315 215600;211.536000;211.549000;211.531000;211.537000;0 +20260315 215700;211.538000;211.545000;211.526000;211.529000;0 +20260315 215800;211.526000;211.534000;211.514000;211.518000;0 +20260315 215900;211.519000;211.520000;211.505000;211.505000;0 +20260315 220000;211.509000;211.526000;211.508000;211.520000;0 +20260315 220100;211.519000;211.525000;211.511000;211.511000;0 +20260315 220200;211.509000;211.551000;211.507000;211.551000;0 +20260315 220300;211.548000;211.557000;211.536000;211.537000;0 +20260315 220400;211.539000;211.540000;211.515000;211.529000;0 +20260315 220500;211.534000;211.540000;211.507000;211.514000;0 +20260315 220600;211.514000;211.519000;211.501000;211.517000;0 +20260315 220700;211.515000;211.542000;211.515000;211.536000;0 +20260315 220800;211.534000;211.540000;211.519000;211.521000;0 +20260315 220900;211.524000;211.527000;211.507000;211.516000;0 +20260315 221000;211.515000;211.516000;211.497000;211.498000;0 +20260315 221100;211.500000;211.513000;211.488000;211.489000;0 +20260315 221200;211.490000;211.510000;211.485000;211.491000;0 +20260315 221300;211.491000;211.503000;211.487000;211.494000;0 +20260315 221400;211.499000;211.499000;211.480000;211.487000;0 +20260315 221500;211.488000;211.490000;211.470000;211.470000;0 +20260315 221600;211.470000;211.488000;211.469000;211.484000;0 +20260315 221700;211.485000;211.501000;211.484000;211.485000;0 +20260315 221800;211.485000;211.509000;211.485000;211.498000;0 +20260315 221900;211.500000;211.504000;211.490000;211.503000;0 +20260315 222000;211.502000;211.508000;211.490000;211.500000;0 +20260315 222100;211.503000;211.510000;211.497000;211.499000;0 +20260315 222200;211.499000;211.507000;211.492000;211.505000;0 +20260315 222300;211.504000;211.514000;211.500000;211.505000;0 +20260315 222400;211.506000;211.514000;211.505000;211.509000;0 +20260315 222500;211.511000;211.511000;211.491000;211.492000;0 +20260315 222600;211.490000;211.493000;211.477000;211.481000;0 +20260315 222700;211.483000;211.485000;211.477000;211.479000;0 +20260315 222800;211.482000;211.496000;211.480000;211.490000;0 +20260315 222900;211.492000;211.505000;211.490000;211.505000;0 +20260315 223000;211.504000;211.506000;211.491000;211.505000;0 +20260315 223100;211.503000;211.520000;211.500000;211.513000;0 +20260315 223200;211.514000;211.545000;211.514000;211.533000;0 +20260315 223300;211.534000;211.545000;211.534000;211.545000;0 +20260315 223400;211.544000;211.545000;211.520000;211.520000;0 +20260315 223500;211.524000;211.534000;211.518000;211.526000;0 +20260315 223600;211.528000;211.528000;211.519000;211.522000;0 +20260315 223700;211.522000;211.534000;211.521000;211.532000;0 +20260315 223800;211.533000;211.539000;211.532000;211.538000;0 +20260315 223900;211.537000;211.550000;211.535000;211.535000;0 +20260315 224000;211.539000;211.550000;211.535000;211.538000;0 +20260315 224100;211.539000;211.551000;211.538000;211.543000;0 +20260315 224200;211.546000;211.551000;211.538000;211.539000;0 +20260315 224300;211.544000;211.548000;211.534000;211.534000;0 +20260315 224400;211.536000;211.539000;211.525000;211.530000;0 +20260315 224500;211.532000;211.539000;211.526000;211.528000;0 +20260315 224600;211.531000;211.538000;211.525000;211.527000;0 +20260315 224700;211.528000;211.534000;211.521000;211.527000;0 +20260315 224800;211.525000;211.535000;211.521000;211.532000;0 +20260315 224900;211.532000;211.555000;211.529000;211.552000;0 +20260315 225000;211.553000;211.566000;211.547000;211.565000;0 +20260315 225100;211.568000;211.575000;211.564000;211.564000;0 +20260315 225200;211.565000;211.573000;211.549000;211.550000;0 +20260315 225300;211.551000;211.558000;211.533000;211.533000;0 +20260315 225400;211.529000;211.530000;211.510000;211.511000;0 +20260315 225500;211.512000;211.514000;211.490000;211.490000;0 +20260315 225600;211.490000;211.510000;211.483000;211.509000;0 +20260315 225700;211.510000;211.511000;211.501000;211.508000;0 +20260315 225800;211.506000;211.515000;211.506000;211.508000;0 +20260315 225900;211.510000;211.517000;211.510000;211.514000;0 +20260315 230000;211.513000;211.513000;211.501000;211.505000;0 +20260315 230100;211.503000;211.518000;211.501000;211.517000;0 +20260315 230200;211.517000;211.523000;211.507000;211.507000;0 +20260315 230300;211.507000;211.512000;211.496000;211.496000;0 +20260315 230400;211.503000;211.504000;211.497000;211.498000;0 +20260315 230500;211.498000;211.513000;211.498000;211.512000;0 +20260315 230600;211.507000;211.507000;211.469000;211.483000;0 +20260315 230700;211.484000;211.514000;211.483000;211.509000;0 +20260315 230800;211.509000;211.533000;211.509000;211.519000;0 +20260315 230900;211.526000;211.531000;211.488000;211.490000;0 +20260315 231000;211.486000;211.500000;211.478000;211.498000;0 +20260315 231100;211.497000;211.497000;211.483000;211.485000;0 +20260315 231200;211.487000;211.487000;211.485000;211.485000;0 +20260315 231300;211.486000;211.509000;211.481000;211.497000;0 +20260315 231400;211.498000;211.514000;211.498000;211.508000;0 +20260315 231500;211.506000;211.532000;211.505000;211.532000;0 +20260315 231600;211.533000;211.581000;211.533000;211.571000;0 +20260315 231700;211.571000;211.575000;211.550000;211.565000;0 +20260315 231800;211.564000;211.565000;211.543000;211.549000;0 +20260315 231900;211.549000;211.579000;211.546000;211.547000;0 +20260315 232000;211.547000;211.557000;211.543000;211.547000;0 +20260315 232100;211.549000;211.558000;211.538000;211.548000;0 +20260315 232200;211.548000;211.556000;211.538000;211.538000;0 +20260315 232300;211.547000;211.548000;211.541000;211.542000;0 +20260315 232400;211.539000;211.543000;211.522000;211.533000;0 +20260315 232500;211.533000;211.545000;211.531000;211.538000;0 +20260315 232600;211.539000;211.562000;211.535000;211.555000;0 +20260315 232700;211.555000;211.558000;211.528000;211.546000;0 +20260315 232800;211.545000;211.545000;211.533000;211.533000;0 +20260315 232900;211.535000;211.564000;211.526000;211.549000;0 +20260315 233000;211.549000;211.561000;211.542000;211.557000;0 +20260315 233100;211.555000;211.561000;211.553000;211.560000;0 +20260315 233200;211.560000;211.566000;211.556000;211.556000;0 +20260315 233300;211.557000;211.564000;211.553000;211.558000;0 +20260315 233400;211.559000;211.565000;211.554000;211.556000;0 +20260315 233500;211.556000;211.556000;211.541000;211.546000;0 +20260315 233600;211.546000;211.549000;211.534000;211.534000;0 +20260315 233700;211.534000;211.541000;211.508000;211.508000;0 +20260315 233800;211.508000;211.512000;211.499000;211.505000;0 +20260315 233900;211.505000;211.506000;211.494000;211.494000;0 +20260315 234000;211.495000;211.506000;211.495000;211.505000;0 +20260315 234100;211.506000;211.506000;211.488000;211.504000;0 +20260315 234200;211.502000;211.508000;211.492000;211.499000;0 +20260315 234300;211.499000;211.519000;211.496000;211.509000;0 +20260315 234400;211.507000;211.523000;211.502000;211.503000;0 +20260315 234500;211.503000;211.520000;211.503000;211.513000;0 +20260315 234600;211.514000;211.514000;211.476000;211.479000;0 +20260315 234700;211.478000;211.494000;211.475000;211.493000;0 +20260315 234800;211.493000;211.500000;211.483000;211.498000;0 +20260315 234900;211.498000;211.500000;211.489000;211.489000;0 +20260315 235000;211.489000;211.492000;211.466000;211.469000;0 +20260315 235100;211.469000;211.473000;211.463000;211.472000;0 +20260315 235200;211.472000;211.480000;211.464000;211.470000;0 +20260315 235300;211.471000;211.483000;211.469000;211.471000;0 +20260315 235400;211.469000;211.491000;211.469000;211.482000;0 +20260315 235500;211.480000;211.488000;211.453000;211.453000;0 +20260315 235600;211.456000;211.466000;211.452000;211.455000;0 +20260315 235700;211.464000;211.467000;211.451000;211.454000;0 +20260315 235800;211.456000;211.458000;211.439000;211.439000;0 +20260315 235900;211.439000;211.440000;211.426000;211.432000;0 +20260316 000000;211.432000;211.447000;211.420000;211.442000;0 +20260316 000100;211.436000;211.445000;211.427000;211.441000;0 +20260316 000200;211.442000;211.453000;211.437000;211.437000;0 +20260316 000300;211.436000;211.469000;211.436000;211.458000;0 +20260316 000400;211.457000;211.470000;211.457000;211.466000;0 +20260316 000500;211.470000;211.476000;211.453000;211.457000;0 +20260316 000600;211.457000;211.470000;211.435000;211.441000;0 +20260316 000700;211.439000;211.456000;211.439000;211.447000;0 +20260316 000800;211.448000;211.462000;211.445000;211.456000;0 +20260316 000900;211.456000;211.465000;211.442000;211.450000;0 +20260316 001000;211.449000;211.461000;211.425000;211.427000;0 +20260316 001100;211.431000;211.431000;211.407000;211.410000;0 +20260316 001200;211.411000;211.415000;211.381000;211.385000;0 +20260316 001300;211.386000;211.387000;211.352000;211.376000;0 +20260316 001400;211.376000;211.381000;211.365000;211.366000;0 +20260316 001500;211.365000;211.370000;211.320000;211.320000;0 +20260316 001600;211.320000;211.336000;211.315000;211.322000;0 +20260316 001700;211.319000;211.335000;211.312000;211.330000;0 +20260316 001800;211.330000;211.335000;211.310000;211.310000;0 +20260316 001900;211.310000;211.317000;211.298000;211.300000;0 +20260316 002000;211.299000;211.303000;211.273000;211.274000;0 +20260316 002100;211.273000;211.283000;211.267000;211.279000;0 +20260316 002200;211.280000;211.284000;211.275000;211.276000;0 +20260316 002300;211.277000;211.283000;211.267000;211.279000;0 +20260316 002400;211.274000;211.280000;211.260000;211.279000;0 +20260316 002500;211.276000;211.276000;211.262000;211.269000;0 +20260316 002600;211.270000;211.280000;211.262000;211.265000;0 +20260316 002700;211.265000;211.265000;211.253000;211.257000;0 +20260316 002800;211.258000;211.266000;211.244000;211.244000;0 +20260316 002900;211.243000;211.245000;211.236000;211.238000;0 +20260316 003000;211.239000;211.245000;211.208000;211.228000;0 +20260316 003100;211.231000;211.236000;211.207000;211.209000;0 +20260316 003200;211.209000;211.213000;211.185000;211.194000;0 +20260316 003300;211.191000;211.191000;211.172000;211.173000;0 +20260316 003400;211.173000;211.178000;211.152000;211.178000;0 +20260316 003500;211.177000;211.190000;211.149000;211.187000;0 +20260316 003600;211.187000;211.192000;211.173000;211.177000;0 +20260316 003700;211.177000;211.197000;211.177000;211.177000;0 +20260316 003800;211.178000;211.190000;211.163000;211.165000;0 +20260316 003900;211.164000;211.173000;211.158000;211.170000;0 +20260316 004000;211.171000;211.183000;211.169000;211.183000;0 +20260316 004100;211.191000;211.191000;211.181000;211.184000;0 +20260316 004200;211.186000;211.198000;211.181000;211.184000;0 +20260316 004300;211.183000;211.194000;211.179000;211.194000;0 +20260316 004400;211.193000;211.204000;211.185000;211.195000;0 +20260316 004500;211.193000;211.200000;211.186000;211.186000;0 +20260316 004600;211.185000;211.201000;211.182000;211.201000;0 +20260316 004700;211.200000;211.216000;211.182000;211.187000;0 +20260316 004800;211.184000;211.198000;211.182000;211.193000;0 +20260316 004900;211.198000;211.198000;211.168000;211.170000;0 +20260316 005000;211.170000;211.171000;211.144000;211.144000;0 +20260316 005100;211.146000;211.165000;211.131000;211.162000;0 +20260316 005200;211.162000;211.162000;211.146000;211.147000;0 +20260316 005300;211.140000;211.149000;211.129000;211.135000;0 +20260316 005400;211.136000;211.158000;211.136000;211.154000;0 +20260316 005500;211.153000;211.170000;211.140000;211.163000;0 +20260316 005600;211.163000;211.184000;211.160000;211.182000;0 +20260316 005700;211.180000;211.193000;211.158000;211.159000;0 +20260316 005800;211.158000;211.184000;211.158000;211.167000;0 +20260316 005900;211.161000;211.166000;211.132000;211.132000;0 +20260316 010000;211.133000;211.149000;211.112000;211.143000;0 +20260316 010100;211.142000;211.145000;211.119000;211.128000;0 +20260316 010200;211.128000;211.165000;211.121000;211.155000;0 +20260316 010300;211.154000;211.161000;211.123000;211.131000;0 +20260316 010400;211.131000;211.141000;211.121000;211.141000;0 +20260316 010500;211.141000;211.158000;211.132000;211.158000;0 +20260316 010600;211.158000;211.159000;211.146000;211.156000;0 +20260316 010700;211.155000;211.155000;211.120000;211.129000;0 +20260316 010800;211.129000;211.145000;211.124000;211.144000;0 +20260316 010900;211.146000;211.149000;211.132000;211.145000;0 +20260316 011000;211.145000;211.166000;211.145000;211.166000;0 +20260316 011100;211.166000;211.187000;211.166000;211.185000;0 +20260316 011200;211.183000;211.198000;211.181000;211.187000;0 +20260316 011300;211.187000;211.189000;211.146000;211.146000;0 +20260316 011400;211.147000;211.148000;211.139000;211.145000;0 +20260316 011500;211.150000;211.173000;211.143000;211.166000;0 +20260316 011600;211.167000;211.174000;211.129000;211.130000;0 +20260316 011700;211.131000;211.149000;211.130000;211.130000;0 +20260316 011800;211.132000;211.137000;211.125000;211.133000;0 +20260316 011900;211.133000;211.146000;211.122000;211.128000;0 +20260316 012000;211.126000;211.132000;211.121000;211.124000;0 +20260316 012100;211.126000;211.140000;211.108000;211.118000;0 +20260316 012200;211.118000;211.126000;211.082000;211.082000;0 +20260316 012300;211.083000;211.085000;211.033000;211.037000;0 +20260316 012400;211.037000;211.062000;211.033000;211.051000;0 +20260316 012500;211.048000;211.048000;210.995000;211.008000;0 +20260316 012600;211.009000;211.009000;210.988000;210.992000;0 +20260316 012700;210.991000;210.991000;210.958000;210.969000;0 +20260316 012800;210.964000;210.978000;210.940000;210.957000;0 +20260316 012900;210.957000;210.966000;210.942000;210.964000;0 +20260316 013000;210.962000;210.993000;210.961000;210.993000;0 +20260316 013100;210.992000;211.021000;210.988000;211.006000;0 +20260316 013200;211.007000;211.051000;210.998000;211.048000;0 +20260316 013300;211.046000;211.052000;211.019000;211.020000;0 +20260316 013400;211.015000;211.022000;211.005000;211.009000;0 +20260316 013500;211.017000;211.027000;211.006000;211.008000;0 +20260316 013600;211.005000;211.016000;210.987000;211.006000;0 +20260316 013700;211.006000;211.019000;211.003000;211.014000;0 +20260316 013800;211.013000;211.056000;211.011000;211.056000;0 +20260316 013900;211.054000;211.064000;211.047000;211.061000;0 +20260316 014000;211.060000;211.060000;211.031000;211.059000;0 +20260316 014100;211.058000;211.081000;211.054000;211.075000;0 +20260316 014200;211.076000;211.082000;211.058000;211.060000;0 +20260316 014300;211.060000;211.096000;211.060000;211.088000;0 +20260316 014400;211.089000;211.094000;211.077000;211.092000;0 +20260316 014500;211.091000;211.093000;211.070000;211.073000;0 +20260316 014600;211.073000;211.081000;211.061000;211.065000;0 +20260316 014700;211.066000;211.071000;211.047000;211.047000;0 +20260316 014800;211.043000;211.044000;211.030000;211.030000;0 +20260316 014900;211.030000;211.030000;211.008000;211.023000;0 +20260316 015000;211.023000;211.034000;211.016000;211.022000;0 +20260316 015100;211.021000;211.051000;211.021000;211.041000;0 +20260316 015200;211.045000;211.062000;211.030000;211.062000;0 +20260316 015300;211.064000;211.066000;211.040000;211.040000;0 +20260316 015400;211.038000;211.042000;211.018000;211.021000;0 +20260316 015500;211.021000;211.041000;211.019000;211.039000;0 +20260316 015600;211.038000;211.055000;211.030000;211.054000;0 +20260316 015700;211.051000;211.066000;211.048000;211.059000;0 +20260316 015800;211.059000;211.066000;211.059000;211.065000;0 +20260316 015900;211.065000;211.069000;211.055000;211.057000;0 +20260316 020000;211.063000;211.072000;211.030000;211.044000;0 +20260316 020100;211.045000;211.050000;211.001000;211.014000;0 +20260316 020200;211.012000;211.035000;210.993000;211.019000;0 +20260316 020300;211.019000;211.044000;211.011000;211.020000;0 +20260316 020400;211.022000;211.034000;211.020000;211.025000;0 +20260316 020500;211.023000;211.024000;210.988000;210.998000;0 +20260316 020600;210.995000;211.056000;210.991000;211.046000;0 +20260316 020700;211.049000;211.050000;211.020000;211.035000;0 +20260316 020800;211.035000;211.039000;211.000000;211.010000;0 +20260316 020900;211.011000;211.019000;210.992000;210.992000;0 +20260316 021000;210.985000;210.991000;210.948000;210.954000;0 +20260316 021100;210.953000;210.968000;210.942000;210.968000;0 +20260316 021200;210.968000;210.997000;210.968000;210.975000;0 +20260316 021300;210.975000;210.976000;210.912000;210.916000;0 +20260316 021400;210.915000;210.923000;210.900000;210.903000;0 +20260316 021500;210.901000;210.935000;210.895000;210.906000;0 +20260316 021600;210.906000;210.940000;210.906000;210.940000;0 +20260316 021700;210.936000;210.971000;210.929000;210.964000;0 +20260316 021800;210.965000;210.999000;210.963000;210.970000;0 +20260316 021900;210.968000;210.971000;210.956000;210.959000;0 +20260316 022000;210.958000;210.974000;210.949000;210.961000;0 +20260316 022100;210.961000;210.985000;210.961000;210.980000;0 +20260316 022200;210.979000;210.982000;210.963000;210.964000;0 +20260316 022300;210.968000;210.995000;210.968000;210.989000;0 +20260316 022400;210.990000;211.030000;210.982000;211.026000;0 +20260316 022500;211.028000;211.033000;211.001000;211.023000;0 +20260316 022600;211.023000;211.037000;211.014000;211.037000;0 +20260316 022700;211.034000;211.038000;210.997000;210.997000;0 +20260316 022800;210.999000;211.014000;210.974000;210.982000;0 +20260316 022900;210.983000;211.004000;210.977000;211.001000;0 +20260316 023000;211.002000;211.008000;210.978000;210.989000;0 +20260316 023100;210.990000;210.990000;210.955000;210.961000;0 +20260316 023200;210.963000;210.989000;210.958000;210.960000;0 +20260316 023300;210.961000;210.988000;210.959000;210.972000;0 +20260316 023400;210.971000;210.978000;210.883000;210.884000;0 +20260316 023500;210.885000;210.892000;210.823000;210.828000;0 +20260316 023600;210.826000;210.849000;210.800000;210.847000;0 +20260316 023700;210.847000;210.859000;210.828000;210.830000;0 +20260316 023800;210.831000;210.853000;210.826000;210.838000;0 +20260316 023900;210.838000;210.856000;210.831000;210.852000;0 +20260316 024000;210.853000;210.880000;210.843000;210.878000;0 +20260316 024100;210.878000;210.951000;210.875000;210.937000;0 +20260316 024200;210.940000;210.960000;210.939000;210.954000;0 +20260316 024300;210.960000;210.990000;210.960000;210.990000;0 +20260316 024400;210.992000;210.997000;210.973000;210.990000;0 +20260316 024500;210.993000;210.994000;210.958000;210.971000;0 +20260316 024600;210.972000;210.996000;210.962000;210.963000;0 +20260316 024700;210.961000;210.961000;210.911000;210.936000;0 +20260316 024800;210.936000;210.954000;210.931000;210.947000;0 +20260316 024900;210.952000;210.966000;210.937000;210.950000;0 +20260316 025000;210.947000;210.951000;210.919000;210.923000;0 +20260316 025100;210.925000;210.925000;210.893000;210.909000;0 +20260316 025200;210.908000;210.929000;210.900000;210.903000;0 +20260316 025300;210.903000;210.913000;210.890000;210.891000;0 +20260316 025400;210.892000;210.927000;210.888000;210.905000;0 +20260316 025500;210.904000;210.905000;210.881000;210.897000;0 +20260316 025600;210.899000;210.915000;210.891000;210.909000;0 +20260316 025700;210.910000;210.959000;210.895000;210.954000;0 +20260316 025800;210.954000;210.983000;210.943000;210.981000;0 +20260316 025900;210.972000;210.992000;210.949000;210.950000;0 +20260316 030000;210.949000;210.953000;210.908000;210.947000;0 +20260316 030100;210.948000;211.004000;210.944000;210.990000;0 +20260316 030200;210.992000;211.009000;210.962000;210.964000;0 +20260316 030300;210.963000;210.995000;210.945000;210.984000;0 +20260316 030400;210.983000;211.005000;210.953000;210.991000;0 +20260316 030500;210.990000;210.993000;210.946000;210.975000;0 +20260316 030600;210.980000;211.015000;210.968000;210.997000;0 +20260316 030700;211.000000;211.018000;210.984000;211.001000;0 +20260316 030800;211.000000;211.003000;210.974000;210.980000;0 +20260316 030900;210.981000;210.990000;210.972000;210.987000;0 +20260316 031000;210.989000;211.012000;210.973000;210.982000;0 +20260316 031100;210.981000;211.014000;210.977000;210.988000;0 +20260316 031200;210.979000;211.004000;210.966000;210.991000;0 +20260316 031300;210.989000;211.003000;210.945000;210.945000;0 +20260316 031400;210.942000;210.944000;210.901000;210.929000;0 +20260316 031500;210.930000;210.944000;210.901000;210.936000;0 +20260316 031600;210.938000;210.981000;210.937000;210.970000;0 +20260316 031700;210.970000;210.983000;210.940000;210.951000;0 +20260316 031800;210.952000;210.978000;210.951000;210.962000;0 +20260316 031900;210.962000;210.993000;210.961000;210.968000;0 +20260316 032000;210.968000;210.982000;210.958000;210.973000;0 +20260316 032100;210.970000;210.983000;210.963000;210.982000;0 +20260316 032200;210.981000;210.989000;210.959000;210.983000;0 +20260316 032300;210.986000;211.027000;210.982000;211.014000;0 +20260316 032400;211.018000;211.025000;210.999000;211.011000;0 +20260316 032500;211.013000;211.013000;210.981000;210.989000;0 +20260316 032600;210.987000;211.017000;210.978000;211.016000;0 +20260316 032700;211.018000;211.056000;211.015000;211.037000;0 +20260316 032800;211.037000;211.037000;211.010000;211.027000;0 +20260316 032900;211.027000;211.050000;211.017000;211.049000;0 +20260316 033000;211.047000;211.059000;211.028000;211.028000;0 +20260316 033100;211.027000;211.059000;211.004000;211.059000;0 +20260316 033200;211.059000;211.062000;211.035000;211.047000;0 +20260316 033300;211.046000;211.050000;211.009000;211.009000;0 +20260316 033400;211.012000;211.038000;211.000000;211.032000;0 +20260316 033500;211.035000;211.055000;211.033000;211.046000;0 +20260316 033600;211.043000;211.053000;211.011000;211.037000;0 +20260316 033700;211.035000;211.038000;211.007000;211.015000;0 +20260316 033800;211.015000;211.021000;211.001000;211.015000;0 +20260316 033900;211.014000;211.014000;210.976000;210.983000;0 +20260316 034000;210.981000;211.012000;210.981000;211.007000;0 +20260316 034100;211.009000;211.044000;211.007000;211.039000;0 +20260316 034200;211.039000;211.075000;211.039000;211.062000;0 +20260316 034300;211.060000;211.066000;211.014000;211.031000;0 +20260316 034400;211.034000;211.041000;211.014000;211.019000;0 +20260316 034500;211.019000;211.052000;211.015000;211.039000;0 +20260316 034600;211.039000;211.076000;211.030000;211.070000;0 +20260316 034700;211.070000;211.084000;211.060000;211.079000;0 +20260316 034800;211.085000;211.114000;211.074000;211.078000;0 +20260316 034900;211.078000;211.078000;211.047000;211.053000;0 +20260316 035000;211.055000;211.070000;211.048000;211.061000;0 +20260316 035100;211.061000;211.076000;211.059000;211.070000;0 +20260316 035200;211.074000;211.128000;211.074000;211.120000;0 +20260316 035300;211.120000;211.129000;211.097000;211.102000;0 +20260316 035400;211.103000;211.126000;211.098000;211.110000;0 +20260316 035500;211.109000;211.127000;211.099000;211.121000;0 +20260316 035600;211.123000;211.128000;211.104000;211.111000;0 +20260316 035700;211.113000;211.123000;211.071000;211.118000;0 +20260316 035800;211.120000;211.158000;211.115000;211.149000;0 +20260316 035900;211.151000;211.175000;211.141000;211.166000;0 +20260316 040000;211.166000;211.174000;211.133000;211.144000;0 +20260316 040100;211.143000;211.203000;211.141000;211.202000;0 +20260316 040200;211.204000;211.216000;211.185000;211.187000;0 +20260316 040300;211.187000;211.200000;211.172000;211.172000;0 +20260316 040400;211.170000;211.177000;211.155000;211.160000;0 +20260316 040500;211.152000;211.154000;211.125000;211.134000;0 +20260316 040600;211.136000;211.168000;211.136000;211.154000;0 +20260316 040700;211.152000;211.156000;211.125000;211.127000;0 +20260316 040800;211.125000;211.148000;211.114000;211.138000;0 +20260316 040900;211.138000;211.143000;211.125000;211.143000;0 +20260316 041000;211.142000;211.150000;211.123000;211.142000;0 +20260316 041100;211.144000;211.147000;211.127000;211.132000;0 +20260316 041200;211.132000;211.133000;211.103000;211.106000;0 +20260316 041300;211.104000;211.144000;211.104000;211.131000;0 +20260316 041400;211.128000;211.146000;211.127000;211.136000;0 +20260316 041500;211.136000;211.149000;211.120000;211.133000;0 +20260316 041600;211.135000;211.151000;211.124000;211.151000;0 +20260316 041700;211.153000;211.157000;211.130000;211.140000;0 +20260316 041800;211.140000;211.147000;211.123000;211.139000;0 +20260316 041900;211.142000;211.151000;211.116000;211.119000;0 +20260316 042000;211.117000;211.126000;211.093000;211.100000;0 +20260316 042100;211.102000;211.113000;211.089000;211.091000;0 +20260316 042200;211.092000;211.104000;211.085000;211.085000;0 +20260316 042300;211.087000;211.113000;211.083000;211.103000;0 +20260316 042400;211.101000;211.108000;211.082000;211.099000;0 +20260316 042500;211.096000;211.102000;211.062000;211.075000;0 +20260316 042600;211.075000;211.091000;211.061000;211.087000;0 +20260316 042700;211.089000;211.127000;211.086000;211.125000;0 +20260316 042800;211.123000;211.136000;211.117000;211.127000;0 +20260316 042900;211.128000;211.136000;211.117000;211.130000;0 +20260316 043000;211.134000;211.134000;211.074000;211.074000;0 +20260316 043100;211.073000;211.088000;211.061000;211.075000;0 +20260316 043200;211.076000;211.082000;211.057000;211.060000;0 +20260316 043300;211.062000;211.074000;211.040000;211.041000;0 +20260316 043400;211.041000;211.063000;211.040000;211.051000;0 +20260316 043500;211.055000;211.066000;211.014000;211.022000;0 +20260316 043600;211.022000;211.043000;211.013000;211.023000;0 +20260316 043700;211.024000;211.042000;211.015000;211.035000;0 +20260316 043800;211.036000;211.057000;211.033000;211.040000;0 +20260316 043900;211.035000;211.065000;211.034000;211.065000;0 +20260316 044000;211.066000;211.092000;211.051000;211.092000;0 +20260316 044100;211.096000;211.110000;211.069000;211.073000;0 +20260316 044200;211.067000;211.070000;211.056000;211.060000;0 +20260316 044300;211.060000;211.079000;211.060000;211.074000;0 +20260316 044400;211.075000;211.081000;211.065000;211.069000;0 +20260316 044500;211.074000;211.080000;211.043000;211.047000;0 +20260316 044600;211.046000;211.077000;211.033000;211.076000;0 +20260316 044700;211.073000;211.097000;211.072000;211.077000;0 +20260316 044800;211.077000;211.106000;211.069000;211.106000;0 +20260316 044900;211.109000;211.122000;211.099000;211.111000;0 +20260316 045000;211.114000;211.114000;211.085000;211.088000;0 +20260316 045100;211.087000;211.106000;211.071000;211.100000;0 +20260316 045200;211.103000;211.108000;211.059000;211.064000;0 +20260316 045300;211.064000;211.085000;211.064000;211.081000;0 +20260316 045400;211.081000;211.085000;211.044000;211.049000;0 +20260316 045500;211.049000;211.070000;211.047000;211.059000;0 +20260316 045600;211.060000;211.064000;211.035000;211.055000;0 +20260316 045700;211.056000;211.075000;211.048000;211.055000;0 +20260316 045800;211.055000;211.072000;211.037000;211.040000;0 +20260316 045900;211.041000;211.056000;211.031000;211.056000;0 +20260316 050000;211.054000;211.081000;211.037000;211.068000;0 +20260316 050100;211.066000;211.125000;211.062000;211.122000;0 +20260316 050200;211.122000;211.133000;211.108000;211.117000;0 +20260316 050300;211.116000;211.146000;211.113000;211.140000;0 +20260316 050400;211.140000;211.151000;211.108000;211.113000;0 +20260316 050500;211.112000;211.115000;211.091000;211.095000;0 +20260316 050600;211.097000;211.116000;211.089000;211.108000;0 +20260316 050700;211.108000;211.110000;211.083000;211.101000;0 +20260316 050800;211.098000;211.119000;211.068000;211.080000;0 +20260316 050900;211.078000;211.093000;211.078000;211.091000;0 +20260316 051000;211.092000;211.114000;211.076000;211.107000;0 +20260316 051100;211.109000;211.127000;211.105000;211.115000;0 +20260316 051200;211.113000;211.117000;211.104000;211.104000;0 +20260316 051300;211.106000;211.143000;211.106000;211.143000;0 +20260316 051400;211.144000;211.156000;211.135000;211.137000;0 +20260316 051500;211.137000;211.140000;211.102000;211.102000;0 +20260316 051600;211.103000;211.142000;211.095000;211.137000;0 +20260316 051700;211.138000;211.169000;211.127000;211.166000;0 +20260316 051800;211.165000;211.186000;211.150000;211.180000;0 +20260316 051900;211.179000;211.212000;211.179000;211.204000;0 +20260316 052000;211.204000;211.228000;211.188000;211.223000;0 +20260316 052100;211.220000;211.245000;211.219000;211.227000;0 +20260316 052200;211.228000;211.233000;211.213000;211.219000;0 +20260316 052300;211.219000;211.229000;211.208000;211.222000;0 +20260316 052400;211.221000;211.253000;211.218000;211.246000;0 +20260316 052500;211.246000;211.261000;211.238000;211.247000;0 +20260316 052600;211.247000;211.257000;211.235000;211.242000;0 +20260316 052700;211.238000;211.292000;211.236000;211.292000;0 +20260316 052800;211.290000;211.299000;211.270000;211.290000;0 +20260316 052900;211.290000;211.310000;211.287000;211.310000;0 +20260316 053000;211.311000;211.346000;211.292000;211.333000;0 +20260316 053100;211.332000;211.332000;211.275000;211.301000;0 +20260316 053200;211.301000;211.322000;211.279000;211.321000;0 +20260316 053300;211.324000;211.327000;211.299000;211.310000;0 +20260316 053400;211.307000;211.326000;211.302000;211.308000;0 +20260316 053500;211.309000;211.336000;211.307000;211.336000;0 +20260316 053600;211.338000;211.339000;211.313000;211.320000;0 +20260316 053700;211.318000;211.321000;211.289000;211.289000;0 +20260316 053800;211.289000;211.307000;211.287000;211.288000;0 +20260316 053900;211.291000;211.294000;211.277000;211.277000;0 +20260316 054000;211.279000;211.286000;211.269000;211.274000;0 +20260316 054100;211.273000;211.275000;211.250000;211.252000;0 +20260316 054200;211.252000;211.272000;211.234000;211.237000;0 +20260316 054300;211.235000;211.271000;211.231000;211.261000;0 +20260316 054400;211.263000;211.265000;211.231000;211.254000;0 +20260316 054500;211.249000;211.261000;211.233000;211.253000;0 +20260316 054600;211.254000;211.255000;211.234000;211.241000;0 +20260316 054700;211.240000;211.243000;211.228000;211.232000;0 +20260316 054800;211.224000;211.246000;211.216000;211.237000;0 +20260316 054900;211.243000;211.275000;211.241000;211.268000;0 +20260316 055000;211.260000;211.262000;211.242000;211.252000;0 +20260316 055100;211.251000;211.255000;211.223000;211.242000;0 +20260316 055200;211.239000;211.246000;211.230000;211.246000;0 +20260316 055300;211.241000;211.259000;211.240000;211.255000;0 +20260316 055400;211.254000;211.285000;211.254000;211.278000;0 +20260316 055500;211.277000;211.315000;211.276000;211.305000;0 +20260316 055600;211.303000;211.333000;211.302000;211.315000;0 +20260316 055700;211.311000;211.332000;211.305000;211.325000;0 +20260316 055800;211.323000;211.342000;211.323000;211.334000;0 +20260316 055900;211.331000;211.334000;211.316000;211.322000;0 +20260316 060000;211.324000;211.324000;211.295000;211.314000;0 +20260316 060100;211.309000;211.320000;211.293000;211.303000;0 +20260316 060200;211.302000;211.323000;211.302000;211.318000;0 +20260316 060300;211.316000;211.318000;211.281000;211.287000;0 +20260316 060400;211.288000;211.305000;211.284000;211.298000;0 +20260316 060500;211.299000;211.323000;211.289000;211.323000;0 +20260316 060600;211.322000;211.324000;211.306000;211.310000;0 +20260316 060700;211.313000;211.320000;211.281000;211.292000;0 +20260316 060800;211.294000;211.310000;211.294000;211.301000;0 +20260316 060900;211.305000;211.324000;211.296000;211.297000;0 +20260316 061000;211.296000;211.317000;211.295000;211.303000;0 +20260316 061100;211.302000;211.307000;211.294000;211.300000;0 +20260316 061200;211.300000;211.304000;211.277000;211.277000;0 +20260316 061300;211.277000;211.283000;211.262000;211.273000;0 +20260316 061400;211.271000;211.289000;211.270000;211.287000;0 +20260316 061500;211.288000;211.306000;211.287000;211.301000;0 +20260316 061600;211.301000;211.322000;211.284000;211.316000;0 +20260316 061700;211.316000;211.335000;211.305000;211.305000;0 +20260316 061800;211.307000;211.309000;211.281000;211.298000;0 +20260316 061900;211.298000;211.310000;211.289000;211.301000;0 +20260316 062000;211.301000;211.301000;211.266000;211.274000;0 +20260316 062100;211.271000;211.299000;211.271000;211.292000;0 +20260316 062200;211.293000;211.311000;211.279000;211.309000;0 +20260316 062300;211.309000;211.317000;211.283000;211.299000;0 +20260316 062400;211.298000;211.316000;211.288000;211.316000;0 +20260316 062500;211.319000;211.319000;211.290000;211.299000;0 +20260316 062600;211.297000;211.302000;211.273000;211.274000;0 +20260316 062700;211.275000;211.291000;211.258000;211.289000;0 +20260316 062800;211.287000;211.292000;211.257000;211.263000;0 +20260316 062900;211.262000;211.288000;211.262000;211.287000;0 +20260316 063000;211.288000;211.290000;211.273000;211.273000;0 +20260316 063100;211.280000;211.308000;211.280000;211.308000;0 +20260316 063200;211.306000;211.309000;211.289000;211.296000;0 +20260316 063300;211.294000;211.298000;211.255000;211.271000;0 +20260316 063400;211.269000;211.323000;211.267000;211.312000;0 +20260316 063500;211.311000;211.311000;211.299000;211.304000;0 +20260316 063600;211.303000;211.328000;211.303000;211.314000;0 +20260316 063700;211.316000;211.324000;211.286000;211.286000;0 +20260316 063800;211.287000;211.300000;211.283000;211.293000;0 +20260316 063900;211.292000;211.301000;211.239000;211.253000;0 +20260316 064000;211.255000;211.273000;211.239000;211.241000;0 +20260316 064100;211.241000;211.263000;211.230000;211.260000;0 +20260316 064200;211.262000;211.282000;211.226000;211.278000;0 +20260316 064300;211.280000;211.311000;211.275000;211.302000;0 +20260316 064400;211.303000;211.321000;211.294000;211.321000;0 +20260316 064500;211.321000;211.349000;211.311000;211.331000;0 +20260316 064600;211.331000;211.343000;211.322000;211.332000;0 +20260316 064700;211.332000;211.351000;211.311000;211.350000;0 +20260316 064800;211.357000;211.361000;211.309000;211.314000;0 +20260316 064900;211.313000;211.313000;211.272000;211.272000;0 +20260316 065000;211.272000;211.306000;211.258000;211.306000;0 +20260316 065100;211.303000;211.303000;211.266000;211.268000;0 +20260316 065200;211.269000;211.271000;211.252000;211.259000;0 +20260316 065300;211.262000;211.277000;211.259000;211.265000;0 +20260316 065400;211.264000;211.269000;211.243000;211.254000;0 +20260316 065500;211.253000;211.281000;211.245000;211.278000;0 +20260316 065600;211.276000;211.290000;211.271000;211.281000;0 +20260316 065700;211.279000;211.296000;211.276000;211.293000;0 +20260316 065800;211.295000;211.311000;211.286000;211.298000;0 +20260316 065900;211.303000;211.309000;211.291000;211.309000;0 +20260316 070000;211.311000;211.329000;211.284000;211.302000;0 +20260316 070100;211.305000;211.311000;211.281000;211.293000;0 +20260316 070200;211.292000;211.322000;211.287000;211.322000;0 +20260316 070300;211.324000;211.340000;211.317000;211.329000;0 +20260316 070400;211.329000;211.329000;211.292000;211.295000;0 +20260316 070500;211.296000;211.310000;211.286000;211.292000;0 +20260316 070600;211.294000;211.306000;211.290000;211.298000;0 +20260316 070700;211.302000;211.327000;211.294000;211.325000;0 +20260316 070800;211.324000;211.346000;211.320000;211.332000;0 +20260316 070900;211.332000;211.361000;211.332000;211.348000;0 +20260316 071000;211.347000;211.349000;211.266000;211.273000;0 +20260316 071100;211.273000;211.285000;211.243000;211.279000;0 +20260316 071200;211.281000;211.321000;211.274000;211.316000;0 +20260316 071300;211.316000;211.337000;211.316000;211.337000;0 +20260316 071400;211.337000;211.340000;211.323000;211.323000;0 +20260316 071500;211.320000;211.324000;211.278000;211.287000;0 +20260316 071600;211.287000;211.297000;211.277000;211.281000;0 +20260316 071700;211.280000;211.301000;211.275000;211.301000;0 +20260316 071800;211.303000;211.307000;211.289000;211.295000;0 +20260316 071900;211.296000;211.331000;211.296000;211.331000;0 +20260316 072000;211.329000;211.329000;211.293000;211.310000;0 +20260316 072100;211.306000;211.321000;211.299000;211.318000;0 +20260316 072200;211.319000;211.325000;211.303000;211.310000;0 +20260316 072300;211.308000;211.317000;211.280000;211.283000;0 +20260316 072400;211.282000;211.289000;211.272000;211.277000;0 +20260316 072500;211.275000;211.290000;211.269000;211.279000;0 +20260316 072600;211.277000;211.292000;211.269000;211.282000;0 +20260316 072700;211.282000;211.283000;211.266000;211.277000;0 +20260316 072800;211.277000;211.288000;211.273000;211.286000;0 +20260316 072900;211.284000;211.290000;211.266000;211.276000;0 +20260316 073000;211.278000;211.315000;211.276000;211.297000;0 +20260316 073100;211.295000;211.298000;211.253000;211.255000;0 +20260316 073200;211.256000;211.262000;211.225000;211.225000;0 +20260316 073300;211.227000;211.257000;211.227000;211.232000;0 +20260316 073400;211.230000;211.248000;211.217000;211.240000;0 +20260316 073500;211.241000;211.266000;211.240000;211.255000;0 +20260316 073600;211.253000;211.287000;211.252000;211.268000;0 +20260316 073700;211.268000;211.272000;211.240000;211.254000;0 +20260316 073800;211.252000;211.256000;211.228000;211.242000;0 +20260316 073900;211.242000;211.286000;211.241000;211.281000;0 +20260316 074000;211.279000;211.282000;211.259000;211.277000;0 +20260316 074100;211.275000;211.282000;211.259000;211.272000;0 +20260316 074200;211.272000;211.296000;211.267000;211.296000;0 +20260316 074300;211.295000;211.299000;211.279000;211.283000;0 +20260316 074400;211.283000;211.288000;211.256000;211.265000;0 +20260316 074500;211.266000;211.285000;211.254000;211.278000;0 +20260316 074600;211.274000;211.282000;211.238000;211.241000;0 +20260316 074700;211.245000;211.277000;211.242000;211.245000;0 +20260316 074800;211.245000;211.245000;211.213000;211.220000;0 +20260316 074900;211.225000;211.259000;211.224000;211.233000;0 +20260316 075000;211.232000;211.235000;211.199000;211.201000;0 +20260316 075100;211.204000;211.230000;211.197000;211.205000;0 +20260316 075200;211.204000;211.252000;211.200000;211.235000;0 +20260316 075300;211.232000;211.251000;211.205000;211.205000;0 +20260316 075400;211.204000;211.245000;211.204000;211.240000;0 +20260316 075500;211.241000;211.273000;211.233000;211.269000;0 +20260316 075600;211.271000;211.277000;211.236000;211.275000;0 +20260316 075700;211.273000;211.283000;211.262000;211.271000;0 +20260316 075800;211.270000;211.270000;211.251000;211.269000;0 +20260316 075900;211.268000;211.288000;211.264000;211.286000;0 +20260316 080000;211.285000;211.300000;211.277000;211.288000;0 +20260316 080100;211.285000;211.303000;211.273000;211.290000;0 +20260316 080200;211.290000;211.318000;211.286000;211.309000;0 +20260316 080300;211.305000;211.307000;211.279000;211.291000;0 +20260316 080400;211.289000;211.305000;211.286000;211.300000;0 +20260316 080500;211.300000;211.318000;211.291000;211.310000;0 +20260316 080600;211.313000;211.318000;211.285000;211.286000;0 +20260316 080700;211.290000;211.354000;211.290000;211.344000;0 +20260316 080800;211.341000;211.385000;211.329000;211.383000;0 +20260316 080900;211.381000;211.406000;211.371000;211.389000;0 +20260316 081000;211.390000;211.401000;211.380000;211.396000;0 +20260316 081100;211.394000;211.394000;211.351000;211.370000;0 +20260316 081200;211.367000;211.388000;211.364000;211.388000;0 +20260316 081300;211.386000;211.400000;211.386000;211.390000;0 +20260316 081400;211.389000;211.421000;211.387000;211.407000;0 +20260316 081500;211.405000;211.409000;211.358000;211.360000;0 +20260316 081600;211.361000;211.380000;211.358000;211.379000;0 +20260316 081700;211.378000;211.407000;211.368000;211.396000;0 +20260316 081800;211.394000;211.401000;211.380000;211.392000;0 +20260316 081900;211.394000;211.398000;211.382000;211.382000;0 +20260316 082000;211.384000;211.405000;211.370000;211.387000;0 +20260316 082100;211.386000;211.391000;211.371000;211.389000;0 +20260316 082200;211.390000;211.443000;211.388000;211.443000;0 +20260316 082300;211.442000;211.455000;211.434000;211.444000;0 +20260316 082400;211.443000;211.445000;211.426000;211.432000;0 +20260316 082500;211.430000;211.455000;211.427000;211.446000;0 +20260316 082600;211.442000;211.451000;211.431000;211.439000;0 +20260316 082700;211.440000;211.440000;211.420000;211.436000;0 +20260316 082800;211.438000;211.444000;211.418000;211.429000;0 +20260316 082900;211.428000;211.457000;211.424000;211.454000;0 +20260316 083000;211.456000;211.470000;211.440000;211.467000;0 +20260316 083100;211.468000;211.498000;211.440000;211.475000;0 +20260316 083200;211.474000;211.480000;211.441000;211.443000;0 +20260316 083300;211.446000;211.471000;211.446000;211.453000;0 +20260316 083400;211.453000;211.462000;211.428000;211.443000;0 +20260316 083500;211.443000;211.465000;211.435000;211.451000;0 +20260316 083600;211.450000;211.483000;211.438000;211.467000;0 +20260316 083700;211.465000;211.484000;211.464000;211.478000;0 +20260316 083800;211.475000;211.500000;211.475000;211.490000;0 +20260316 083900;211.495000;211.520000;211.489000;211.518000;0 +20260316 084000;211.521000;211.568000;211.515000;211.567000;0 +20260316 084100;211.567000;211.567000;211.548000;211.548000;0 +20260316 084200;211.549000;211.560000;211.533000;211.536000;0 +20260316 084300;211.535000;211.536000;211.506000;211.529000;0 +20260316 084400;211.531000;211.535000;211.501000;211.505000;0 +20260316 084500;211.503000;211.532000;211.499000;211.527000;0 +20260316 084600;211.522000;211.531000;211.509000;211.528000;0 +20260316 084700;211.524000;211.561000;211.524000;211.557000;0 +20260316 084800;211.552000;211.552000;211.499000;211.507000;0 +20260316 084900;211.507000;211.549000;211.507000;211.542000;0 +20260316 085000;211.542000;211.565000;211.518000;211.554000;0 +20260316 085100;211.552000;211.561000;211.529000;211.529000;0 +20260316 085200;211.530000;211.531000;211.490000;211.497000;0 +20260316 085300;211.499000;211.509000;211.465000;211.467000;0 +20260316 085400;211.471000;211.504000;211.467000;211.491000;0 +20260316 085500;211.486000;211.554000;211.481000;211.513000;0 +20260316 085600;211.514000;211.541000;211.499000;211.503000;0 +20260316 085700;211.505000;211.515000;211.494000;211.512000;0 +20260316 085800;211.509000;211.523000;211.471000;211.476000;0 +20260316 085900;211.477000;211.506000;211.465000;211.506000;0 +20260316 090000;211.504000;211.504000;211.462000;211.462000;0 +20260316 090100;211.465000;211.487000;211.459000;211.485000;0 +20260316 090200;211.487000;211.552000;211.472000;211.542000;0 +20260316 090300;211.541000;211.541000;211.495000;211.502000;0 +20260316 090400;211.506000;211.515000;211.480000;211.487000;0 +20260316 090500;211.488000;211.504000;211.465000;211.465000;0 +20260316 090600;211.469000;211.488000;211.447000;211.488000;0 +20260316 090700;211.488000;211.488000;211.443000;211.450000;0 +20260316 090800;211.450000;211.476000;211.440000;211.443000;0 +20260316 090900;211.445000;211.461000;211.428000;211.430000;0 +20260316 091000;211.429000;211.466000;211.418000;211.465000;0 +20260316 091100;211.464000;211.464000;211.441000;211.451000;0 +20260316 091200;211.451000;211.460000;211.415000;211.418000;0 +20260316 091300;211.418000;211.436000;211.411000;211.436000;0 +20260316 091400;211.435000;211.441000;211.412000;211.422000;0 +20260316 091500;211.422000;211.427000;211.384000;211.403000;0 +20260316 091600;211.405000;211.448000;211.396000;211.440000;0 +20260316 091700;211.440000;211.468000;211.426000;211.464000;0 +20260316 091800;211.463000;211.474000;211.440000;211.451000;0 +20260316 091900;211.454000;211.456000;211.415000;211.418000;0 +20260316 092000;211.426000;211.457000;211.426000;211.444000;0 +20260316 092100;211.443000;211.475000;211.443000;211.471000;0 +20260316 092200;211.473000;211.488000;211.454000;211.479000;0 +20260316 092300;211.477000;211.491000;211.462000;211.466000;0 +20260316 092400;211.465000;211.528000;211.465000;211.527000;0 +20260316 092500;211.526000;211.557000;211.514000;211.546000;0 +20260316 092600;211.544000;211.551000;211.511000;211.517000;0 +20260316 092700;211.518000;211.541000;211.509000;211.541000;0 +20260316 092800;211.539000;211.540000;211.515000;211.521000;0 +20260316 092900;211.521000;211.534000;211.496000;211.499000;0 +20260316 093000;211.498000;211.524000;211.491000;211.516000;0 +20260316 093100;211.514000;211.521000;211.494000;211.497000;0 +20260316 093200;211.501000;211.546000;211.495000;211.540000;0 +20260316 093300;211.540000;211.551000;211.532000;211.535000;0 +20260316 093400;211.535000;211.552000;211.497000;211.508000;0 +20260316 093500;211.504000;211.540000;211.501000;211.540000;0 +20260316 093600;211.543000;211.547000;211.502000;211.513000;0 +20260316 093700;211.512000;211.531000;211.500000;211.526000;0 +20260316 093800;211.527000;211.549000;211.520000;211.527000;0 +20260316 093900;211.527000;211.544000;211.521000;211.521000;0 +20260316 094000;211.520000;211.550000;211.515000;211.532000;0 +20260316 094100;211.529000;211.547000;211.522000;211.543000;0 +20260316 094200;211.538000;211.541000;211.514000;211.534000;0 +20260316 094300;211.538000;211.570000;211.534000;211.534000;0 +20260316 094400;211.537000;211.553000;211.533000;211.552000;0 +20260316 094500;211.552000;211.570000;211.536000;211.557000;0 +20260316 094600;211.560000;211.584000;211.555000;211.572000;0 +20260316 094700;211.570000;211.595000;211.557000;211.593000;0 +20260316 094800;211.591000;211.599000;211.574000;211.588000;0 +20260316 094900;211.588000;211.596000;211.561000;211.588000;0 +20260316 095000;211.584000;211.587000;211.560000;211.584000;0 +20260316 095100;211.584000;211.652000;211.583000;211.651000;0 +20260316 095200;211.651000;211.663000;211.630000;211.633000;0 +20260316 095300;211.635000;211.652000;211.635000;211.650000;0 +20260316 095400;211.649000;211.651000;211.624000;211.628000;0 +20260316 095500;211.630000;211.631000;211.610000;211.611000;0 +20260316 095600;211.610000;211.638000;211.610000;211.628000;0 +20260316 095700;211.628000;211.636000;211.593000;211.595000;0 +20260316 095800;211.601000;211.602000;211.570000;211.577000;0 +20260316 095900;211.578000;211.615000;211.578000;211.610000;0 +20260316 100000;211.614000;211.681000;211.614000;211.676000;0 +20260316 100100;211.676000;211.676000;211.642000;211.655000;0 +20260316 100200;211.652000;211.652000;211.625000;211.639000;0 +20260316 100300;211.638000;211.664000;211.625000;211.661000;0 +20260316 100400;211.661000;211.701000;211.652000;211.692000;0 +20260316 100500;211.691000;211.703000;211.666000;211.700000;0 +20260316 100600;211.700000;211.704000;211.672000;211.699000;0 +20260316 100700;211.700000;211.719000;211.687000;211.702000;0 +20260316 100800;211.699000;211.717000;211.682000;211.714000;0 +20260316 100900;211.714000;211.744000;211.710000;211.733000;0 +20260316 101000;211.732000;211.759000;211.732000;211.733000;0 +20260316 101100;211.734000;211.735000;211.707000;211.726000;0 +20260316 101200;211.729000;211.729000;211.697000;211.708000;0 +20260316 101300;211.707000;211.724000;211.701000;211.720000;0 +20260316 101400;211.719000;211.742000;211.710000;211.717000;0 +20260316 101500;211.717000;211.721000;211.677000;211.690000;0 +20260316 101600;211.691000;211.740000;211.686000;211.738000;0 +20260316 101700;211.737000;211.769000;211.733000;211.769000;0 +20260316 101800;211.766000;211.773000;211.750000;211.765000;0 +20260316 101900;211.768000;211.775000;211.748000;211.775000;0 +20260316 102000;211.776000;211.803000;211.769000;211.801000;0 +20260316 102100;211.801000;211.817000;211.787000;211.808000;0 +20260316 102200;211.807000;211.823000;211.806000;211.814000;0 +20260316 102300;211.812000;211.833000;211.806000;211.821000;0 +20260316 102400;211.820000;211.831000;211.815000;211.822000;0 +20260316 102500;211.823000;211.825000;211.779000;211.787000;0 +20260316 102600;211.788000;211.797000;211.779000;211.788000;0 +20260316 102700;211.792000;211.792000;211.772000;211.785000;0 +20260316 102800;211.785000;211.785000;211.766000;211.771000;0 +20260316 102900;211.771000;211.792000;211.757000;211.784000;0 +20260316 103000;211.782000;211.803000;211.782000;211.791000;0 +20260316 103100;211.791000;211.806000;211.781000;211.805000;0 +20260316 103200;211.806000;211.821000;211.805000;211.807000;0 +20260316 103300;211.813000;211.827000;211.809000;211.820000;0 +20260316 103400;211.821000;211.829000;211.803000;211.818000;0 +20260316 103500;211.820000;211.841000;211.801000;211.835000;0 +20260316 103600;211.835000;211.856000;211.819000;211.852000;0 +20260316 103700;211.852000;211.860000;211.844000;211.850000;0 +20260316 103800;211.850000;211.876000;211.844000;211.873000;0 +20260316 103900;211.882000;211.883000;211.865000;211.874000;0 +20260316 104000;211.873000;211.892000;211.868000;211.875000;0 +20260316 104100;211.878000;211.898000;211.857000;211.868000;0 +20260316 104200;211.869000;211.894000;211.869000;211.893000;0 +20260316 104300;211.895000;211.908000;211.874000;211.884000;0 +20260316 104400;211.886000;211.888000;211.845000;211.851000;0 +20260316 104500;211.855000;211.896000;211.848000;211.891000;0 +20260316 104600;211.891000;211.916000;211.888000;211.916000;0 +20260316 104700;211.912000;211.920000;211.902000;211.920000;0 +20260316 104800;211.917000;211.928000;211.904000;211.906000;0 +20260316 104900;211.904000;211.912000;211.887000;211.899000;0 +20260316 105000;211.896000;211.902000;211.853000;211.867000;0 +20260316 105100;211.862000;211.864000;211.786000;211.789000;0 +20260316 105200;211.790000;211.819000;211.774000;211.777000;0 +20260316 105300;211.777000;211.791000;211.752000;211.777000;0 +20260316 105400;211.775000;211.834000;211.775000;211.811000;0 +20260316 105500;211.827000;211.834000;211.781000;211.794000;0 +20260316 105600;211.801000;211.839000;211.799000;211.837000;0 +20260316 105700;211.837000;211.891000;211.819000;211.843000;0 +20260316 105800;211.844000;211.891000;211.843000;211.888000;0 +20260316 105900;211.890000;211.901000;211.868000;211.887000;0 +20260316 110000;211.889000;211.898000;211.864000;211.866000;0 +20260316 110100;211.867000;211.900000;211.862000;211.884000;0 +20260316 110200;211.882000;211.910000;211.871000;211.892000;0 +20260316 110300;211.893000;211.939000;211.892000;211.930000;0 +20260316 110400;211.930000;211.931000;211.902000;211.907000;0 +20260316 110500;211.908000;211.936000;211.908000;211.912000;0 +20260316 110600;211.914000;211.929000;211.894000;211.901000;0 +20260316 110700;211.899000;211.925000;211.893000;211.918000;0 +20260316 110800;211.917000;211.925000;211.893000;211.906000;0 +20260316 110900;211.904000;211.908000;211.879000;211.889000;0 +20260316 111000;211.891000;211.922000;211.891000;211.905000;0 +20260316 111100;211.909000;211.909000;211.879000;211.881000;0 +20260316 111200;211.883000;211.889000;211.873000;211.876000;0 +20260316 111300;211.878000;211.892000;211.861000;211.862000;0 +20260316 111400;211.861000;211.875000;211.858000;211.875000;0 +20260316 111500;211.876000;211.884000;211.851000;211.880000;0 +20260316 111600;211.878000;211.879000;211.839000;211.839000;0 +20260316 111700;211.840000;211.882000;211.839000;211.880000;0 +20260316 111800;211.878000;211.896000;211.866000;211.889000;0 +20260316 111900;211.888000;211.892000;211.861000;211.867000;0 +20260316 112000;211.869000;211.896000;211.847000;211.854000;0 +20260316 112100;211.858000;211.861000;211.802000;211.813000;0 +20260316 112200;211.813000;211.827000;211.789000;211.796000;0 +20260316 112300;211.795000;211.821000;211.790000;211.799000;0 +20260316 112400;211.801000;211.811000;211.785000;211.789000;0 +20260316 112500;211.794000;211.831000;211.783000;211.794000;0 +20260316 112600;211.792000;211.816000;211.751000;211.766000;0 +20260316 112700;211.767000;211.792000;211.731000;211.731000;0 +20260316 112800;211.732000;211.745000;211.719000;211.721000;0 +20260316 112900;211.721000;211.750000;211.720000;211.734000;0 +20260316 113000;211.734000;211.741000;211.719000;211.723000;0 +20260316 113100;211.719000;211.746000;211.713000;211.741000;0 +20260316 113200;211.742000;211.769000;211.724000;211.729000;0 +20260316 113300;211.729000;211.736000;211.715000;211.726000;0 +20260316 113400;211.729000;211.752000;211.729000;211.751000;0 +20260316 113500;211.751000;211.764000;211.736000;211.736000;0 +20260316 113600;211.733000;211.783000;211.727000;211.766000;0 +20260316 113700;211.765000;211.779000;211.758000;211.774000;0 +20260316 113800;211.773000;211.783000;211.759000;211.780000;0 +20260316 113900;211.783000;211.818000;211.770000;211.814000;0 +20260316 114000;211.818000;211.822000;211.801000;211.809000;0 +20260316 114100;211.808000;211.820000;211.798000;211.813000;0 +20260316 114200;211.812000;211.825000;211.806000;211.814000;0 +20260316 114300;211.813000;211.822000;211.804000;211.810000;0 +20260316 114400;211.809000;211.817000;211.777000;211.780000;0 +20260316 114500;211.781000;211.794000;211.773000;211.786000;0 +20260316 114600;211.783000;211.793000;211.770000;211.791000;0 +20260316 114700;211.790000;211.801000;211.785000;211.785000;0 +20260316 114800;211.788000;211.807000;211.782000;211.782000;0 +20260316 114900;211.782000;211.808000;211.782000;211.807000;0 +20260316 115000;211.806000;211.829000;211.800000;211.822000;0 +20260316 115100;211.825000;211.838000;211.812000;211.838000;0 +20260316 115200;211.835000;211.839000;211.823000;211.831000;0 +20260316 115300;211.835000;211.850000;211.826000;211.850000;0 +20260316 115400;211.849000;211.861000;211.832000;211.845000;0 +20260316 115500;211.844000;211.874000;211.844000;211.857000;0 +20260316 115600;211.857000;211.866000;211.838000;211.846000;0 +20260316 115700;211.846000;211.874000;211.841000;211.870000;0 +20260316 115800;211.870000;211.878000;211.859000;211.867000;0 +20260316 115900;211.866000;211.871000;211.849000;211.870000;0 +20260316 120000;211.868000;211.927000;211.862000;211.914000;0 +20260316 120100;211.916000;211.923000;211.893000;211.915000;0 +20260316 120200;211.914000;211.947000;211.907000;211.933000;0 +20260316 120300;211.935000;211.950000;211.915000;211.920000;0 +20260316 120400;211.923000;211.934000;211.896000;211.926000;0 +20260316 120500;211.929000;211.998000;211.929000;211.961000;0 +20260316 120600;211.965000;211.972000;211.958000;211.971000;0 +20260316 120700;211.971000;211.975000;211.933000;211.940000;0 +20260316 120800;211.940000;211.953000;211.926000;211.947000;0 +20260316 120900;211.946000;211.962000;211.938000;211.940000;0 +20260316 121000;211.941000;211.966000;211.929000;211.947000;0 +20260316 121100;211.950000;211.953000;211.935000;211.942000;0 +20260316 121200;211.943000;211.957000;211.922000;211.941000;0 +20260316 121300;211.941000;211.943000;211.912000;211.920000;0 +20260316 121400;211.918000;211.930000;211.885000;211.899000;0 +20260316 121500;211.899000;211.906000;211.890000;211.898000;0 +20260316 121600;211.896000;211.925000;211.896000;211.918000;0 +20260316 121700;211.917000;211.925000;211.904000;211.919000;0 +20260316 121800;211.921000;211.921000;211.897000;211.899000;0 +20260316 121900;211.903000;211.911000;211.896000;211.899000;0 +20260316 122000;211.902000;211.902000;211.877000;211.890000;0 +20260316 122100;211.888000;211.902000;211.888000;211.894000;0 +20260316 122200;211.894000;211.902000;211.887000;211.894000;0 +20260316 122300;211.896000;211.907000;211.892000;211.896000;0 +20260316 122400;211.898000;211.906000;211.892000;211.898000;0 +20260316 122500;211.899000;211.912000;211.894000;211.907000;0 +20260316 122600;211.906000;211.918000;211.889000;211.905000;0 +20260316 122700;211.904000;211.905000;211.881000;211.891000;0 +20260316 122800;211.892000;211.905000;211.876000;211.882000;0 +20260316 122900;211.880000;211.903000;211.877000;211.895000;0 +20260316 123000;211.892000;211.939000;211.892000;211.917000;0 +20260316 123100;211.915000;211.918000;211.901000;211.914000;0 +20260316 123200;211.912000;211.912000;211.884000;211.890000;0 +20260316 123300;211.892000;211.892000;211.869000;211.876000;0 +20260316 123400;211.879000;211.897000;211.879000;211.893000;0 +20260316 123500;211.896000;211.905000;211.874000;211.880000;0 +20260316 123600;211.880000;211.896000;211.880000;211.890000;0 +20260316 123700;211.890000;211.892000;211.871000;211.883000;0 +20260316 123800;211.881000;211.899000;211.881000;211.881000;0 +20260316 123900;211.881000;211.892000;211.878000;211.884000;0 +20260316 124000;211.885000;211.896000;211.877000;211.894000;0 +20260316 124100;211.890000;211.921000;211.878000;211.917000;0 +20260316 124200;211.917000;211.924000;211.894000;211.896000;0 +20260316 124300;211.893000;211.916000;211.892000;211.895000;0 +20260316 124400;211.898000;211.909000;211.891000;211.903000;0 +20260316 124500;211.903000;211.923000;211.895000;211.907000;0 +20260316 124600;211.906000;211.913000;211.886000;211.891000;0 +20260316 124700;211.891000;211.918000;211.887000;211.911000;0 +20260316 124800;211.910000;211.913000;211.873000;211.883000;0 +20260316 124900;211.885000;211.897000;211.875000;211.876000;0 +20260316 125000;211.873000;211.881000;211.860000;211.860000;0 +20260316 125100;211.862000;211.911000;211.862000;211.889000;0 +20260316 125200;211.888000;211.888000;211.863000;211.872000;0 +20260316 125300;211.869000;211.886000;211.861000;211.882000;0 +20260316 125400;211.888000;211.893000;211.872000;211.875000;0 +20260316 125500;211.876000;211.889000;211.870000;211.877000;0 +20260316 125600;211.877000;211.887000;211.870000;211.870000;0 +20260316 125700;211.870000;211.871000;211.859000;211.866000;0 +20260316 125800;211.865000;211.866000;211.851000;211.861000;0 +20260316 125900;211.860000;211.860000;211.846000;211.856000;0 +20260316 130000;211.857000;211.883000;211.848000;211.883000;0 +20260316 130100;211.885000;211.898000;211.882000;211.893000;0 +20260316 130200;211.889000;211.893000;211.877000;211.891000;0 +20260316 130300;211.886000;211.908000;211.880000;211.907000;0 +20260316 130400;211.907000;211.924000;211.900000;211.924000;0 +20260316 130500;211.924000;211.924000;211.905000;211.918000;0 +20260316 130600;211.924000;211.969000;211.923000;211.956000;0 +20260316 130700;211.952000;211.973000;211.936000;211.964000;0 +20260316 130800;211.966000;211.971000;211.938000;211.965000;0 +20260316 130900;211.965000;211.965000;211.931000;211.935000;0 +20260316 131000;211.937000;211.951000;211.934000;211.937000;0 +20260316 131100;211.936000;211.938000;211.922000;211.934000;0 +20260316 131200;211.931000;211.941000;211.925000;211.930000;0 +20260316 131300;211.934000;211.950000;211.934000;211.940000;0 +20260316 131400;211.945000;211.955000;211.933000;211.952000;0 +20260316 131500;211.954000;211.974000;211.936000;211.948000;0 +20260316 131600;211.948000;211.963000;211.930000;211.955000;0 +20260316 131700;211.956000;211.961000;211.932000;211.939000;0 +20260316 131800;211.934000;211.945000;211.929000;211.931000;0 +20260316 131900;211.931000;211.949000;211.930000;211.935000;0 +20260316 132000;211.934000;211.940000;211.926000;211.933000;0 +20260316 132100;211.930000;211.942000;211.922000;211.925000;0 +20260316 132200;211.925000;211.940000;211.923000;211.938000;0 +20260316 132300;211.937000;211.951000;211.923000;211.928000;0 +20260316 132400;211.929000;211.958000;211.924000;211.930000;0 +20260316 132500;211.930000;211.941000;211.923000;211.932000;0 +20260316 132600;211.931000;211.945000;211.908000;211.935000;0 +20260316 132700;211.935000;211.955000;211.925000;211.937000;0 +20260316 132800;211.934000;211.976000;211.933000;211.973000;0 +20260316 132900;211.972000;211.978000;211.941000;211.944000;0 +20260316 133000;211.944000;211.973000;211.944000;211.947000;0 +20260316 133100;211.950000;211.960000;211.939000;211.950000;0 +20260316 133200;211.950000;211.955000;211.932000;211.944000;0 +20260316 133300;211.944000;211.945000;211.912000;211.913000;0 +20260316 133400;211.914000;211.927000;211.901000;211.915000;0 +20260316 133500;211.919000;211.943000;211.914000;211.935000;0 +20260316 133600;211.934000;211.944000;211.927000;211.929000;0 +20260316 133700;211.929000;211.933000;211.922000;211.927000;0 +20260316 133800;211.930000;211.938000;211.915000;211.928000;0 +20260316 133900;211.933000;211.943000;211.922000;211.932000;0 +20260316 134000;211.932000;211.947000;211.922000;211.923000;0 +20260316 134100;211.922000;211.925000;211.905000;211.917000;0 +20260316 134200;211.920000;211.925000;211.913000;211.915000;0 +20260316 134300;211.916000;211.931000;211.908000;211.930000;0 +20260316 134400;211.932000;211.945000;211.922000;211.941000;0 +20260316 134500;211.945000;211.945000;211.927000;211.940000;0 +20260316 134600;211.937000;211.943000;211.923000;211.925000;0 +20260316 134700;211.925000;211.944000;211.901000;211.942000;0 +20260316 134800;211.943000;211.946000;211.914000;211.921000;0 +20260316 134900;211.924000;211.938000;211.916000;211.917000;0 +20260316 135000;211.919000;211.925000;211.904000;211.907000;0 +20260316 135100;211.906000;211.919000;211.901000;211.909000;0 +20260316 135200;211.908000;211.921000;211.908000;211.914000;0 +20260316 135300;211.916000;211.922000;211.910000;211.912000;0 +20260316 135400;211.912000;211.933000;211.912000;211.930000;0 +20260316 135500;211.930000;211.930000;211.914000;211.920000;0 +20260316 135600;211.921000;211.934000;211.914000;211.922000;0 +20260316 135700;211.924000;211.934000;211.917000;211.925000;0 +20260316 135800;211.928000;211.935000;211.912000;211.926000;0 +20260316 135900;211.928000;211.936000;211.921000;211.928000;0 +20260316 140000;211.928000;211.957000;211.926000;211.950000;0 +20260316 140100;211.955000;211.968000;211.946000;211.960000;0 +20260316 140200;211.960000;211.970000;211.956000;211.965000;0 +20260316 140300;211.965000;211.975000;211.961000;211.972000;0 +20260316 140400;211.970000;211.972000;211.960000;211.971000;0 +20260316 140500;211.971000;211.974000;211.958000;211.964000;0 +20260316 140600;211.965000;211.970000;211.956000;211.959000;0 +20260316 140700;211.959000;211.975000;211.959000;211.964000;0 +20260316 140800;211.964000;211.978000;211.964000;211.972000;0 +20260316 140900;211.973000;212.005000;211.973000;212.003000;0 +20260316 141000;212.004000;212.014000;211.973000;211.976000;0 +20260316 141100;211.977000;211.983000;211.962000;211.976000;0 +20260316 141200;211.976000;211.985000;211.944000;211.950000;0 +20260316 141300;211.956000;211.976000;211.953000;211.963000;0 +20260316 141400;211.963000;211.988000;211.963000;211.987000;0 +20260316 141500;211.984000;211.985000;211.970000;211.978000;0 +20260316 141600;211.982000;212.001000;211.978000;211.990000;0 +20260316 141700;211.990000;212.015000;211.981000;212.011000;0 +20260316 141800;212.011000;212.020000;212.008000;212.008000;0 +20260316 141900;212.005000;212.010000;211.991000;211.999000;0 +20260316 142000;211.997000;212.005000;211.988000;211.999000;0 +20260316 142100;211.998000;212.007000;211.990000;211.994000;0 +20260316 142200;211.994000;212.000000;211.984000;211.995000;0 +20260316 142300;211.996000;212.000000;211.983000;211.989000;0 +20260316 142400;211.987000;211.995000;211.979000;211.981000;0 +20260316 142500;211.981000;211.989000;211.970000;211.974000;0 +20260316 142600;211.974000;211.990000;211.974000;211.983000;0 +20260316 142700;211.980000;211.985000;211.974000;211.977000;0 +20260316 142800;211.981000;211.981000;211.965000;211.972000;0 +20260316 142900;211.974000;211.994000;211.968000;211.974000;0 +20260316 143000;211.977000;211.994000;211.969000;211.982000;0 +20260316 143100;211.981000;211.988000;211.969000;211.987000;0 +20260316 143200;211.986000;212.008000;211.965000;212.002000;0 +20260316 143300;212.003000;212.014000;211.996000;212.011000;0 +20260316 143400;212.009000;212.024000;212.001000;212.015000;0 +20260316 143500;212.015000;212.025000;212.007000;212.009000;0 +20260316 143600;212.012000;212.023000;212.004000;212.016000;0 +20260316 143700;212.018000;212.028000;212.007000;212.014000;0 +20260316 143800;212.012000;212.021000;212.007000;212.014000;0 +20260316 143900;212.014000;212.014000;212.003000;212.005000;0 +20260316 144000;212.008000;212.024000;212.002000;212.024000;0 +20260316 144100;212.024000;212.024000;211.996000;212.012000;0 +20260316 144200;212.013000;212.031000;212.010000;212.023000;0 +20260316 144300;212.024000;212.027000;211.995000;212.003000;0 +20260316 144400;212.001000;212.033000;211.998000;212.028000;0 +20260316 144500;212.030000;212.038000;212.011000;212.025000;0 +20260316 144600;212.024000;212.035000;212.023000;212.030000;0 +20260316 144700;212.031000;212.044000;212.022000;212.028000;0 +20260316 144800;212.034000;212.064000;212.034000;212.052000;0 +20260316 144900;212.052000;212.089000;212.051000;212.077000;0 +20260316 145000;212.078000;212.083000;212.065000;212.076000;0 +20260316 145100;212.076000;212.088000;212.060000;212.083000;0 +20260316 145200;212.082000;212.092000;212.069000;212.076000;0 +20260316 145300;212.077000;212.081000;212.063000;212.081000;0 +20260316 145400;212.079000;212.096000;212.076000;212.095000;0 +20260316 145500;212.093000;212.113000;212.080000;212.083000;0 +20260316 145600;212.088000;212.088000;212.061000;212.072000;0 +20260316 145700;212.069000;212.079000;212.041000;212.046000;0 +20260316 145800;212.042000;212.063000;212.029000;212.059000;0 +20260316 145900;212.059000;212.092000;212.056000;212.085000;0 +20260316 150000;212.082000;212.084000;212.043000;212.060000;0 +20260316 150100;212.060000;212.079000;212.059000;212.067000;0 +20260316 150200;212.070000;212.071000;212.041000;212.068000;0 +20260316 150300;212.068000;212.078000;212.063000;212.078000;0 +20260316 150400;212.081000;212.085000;212.076000;212.082000;0 +20260316 150500;212.082000;212.095000;212.072000;212.095000;0 +20260316 150600;212.092000;212.093000;212.070000;212.071000;0 +20260316 150700;212.067000;212.076000;212.056000;212.057000;0 +20260316 150800;212.057000;212.060000;212.041000;212.042000;0 +20260316 150900;212.043000;212.044000;212.019000;212.028000;0 +20260316 151000;212.024000;212.026000;212.008000;212.011000;0 +20260316 151100;212.009000;212.022000;212.006000;212.012000;0 +20260316 151200;212.013000;212.016000;212.006000;212.013000;0 +20260316 151300;212.016000;212.019000;212.006000;212.007000;0 +20260316 151400;212.006000;212.008000;211.999000;211.999000;0 +20260316 151500;211.996000;211.996000;211.985000;211.989000;0 +20260316 151600;211.991000;211.994000;211.985000;211.988000;0 +20260316 151700;211.991000;211.991000;211.986000;211.986000;0 +20260316 151800;211.986000;211.989000;211.983000;211.988000;0 +20260316 151900;211.992000;211.996000;211.980000;211.981000;0 +20260316 152000;211.982000;211.983000;211.969000;211.969000;0 +20260316 152100;211.974000;211.993000;211.967000;211.980000;0 +20260316 152200;211.978000;211.981000;211.965000;211.974000;0 +20260316 152300;211.973000;211.973000;211.950000;211.951000;0 +20260316 152400;211.954000;211.959000;211.950000;211.950000;0 +20260316 152500;211.951000;211.952000;211.949000;211.949000;0 +20260316 152600;211.949000;211.959000;211.936000;211.951000;0 +20260316 152700;211.953000;211.973000;211.949000;211.966000;0 +20260316 152800;211.966000;211.996000;211.963000;211.984000;0 +20260316 152900;211.983000;211.983000;211.961000;211.966000;0 +20260316 153000;211.964000;211.972000;211.963000;211.967000;0 +20260316 153100;211.969000;211.970000;211.960000;211.963000;0 +20260316 153200;211.968000;211.985000;211.961000;211.974000;0 +20260316 153300;211.977000;211.994000;211.973000;211.977000;0 +20260316 153400;211.977000;211.982000;211.971000;211.982000;0 +20260316 153500;211.981000;211.996000;211.979000;211.982000;0 +20260316 153600;211.982000;211.995000;211.972000;211.991000;0 +20260316 153700;211.990000;211.993000;211.969000;211.969000;0 +20260316 153800;211.970000;211.995000;211.969000;211.994000;0 +20260316 153900;211.994000;211.994000;211.972000;211.981000;0 +20260316 154000;211.981000;211.982000;211.955000;211.976000;0 +20260316 154100;211.970000;211.975000;211.962000;211.965000;0 +20260316 154200;211.965000;211.965000;211.949000;211.953000;0 +20260316 154300;211.954000;211.966000;211.953000;211.966000;0 +20260316 154400;211.965000;211.983000;211.965000;211.965000;0 +20260316 154500;211.962000;211.985000;211.953000;211.976000;0 +20260316 154600;211.981000;211.981000;211.959000;211.961000;0 +20260316 154700;211.965000;211.967000;211.951000;211.957000;0 +20260316 154800;211.951000;211.960000;211.931000;211.934000;0 +20260316 154900;211.936000;211.936000;211.923000;211.930000;0 +20260316 155000;211.935000;211.935000;211.925000;211.929000;0 +20260316 155100;211.925000;211.934000;211.912000;211.916000;0 +20260316 155200;211.917000;211.917000;211.896000;211.912000;0 +20260316 155300;211.909000;211.911000;211.892000;211.892000;0 +20260316 155400;211.894000;211.894000;211.859000;211.861000;0 +20260316 155500;211.859000;211.867000;211.847000;211.851000;0 +20260316 155600;211.864000;211.868000;211.846000;211.849000;0 +20260316 155700;211.845000;211.870000;211.823000;211.831000;0 +20260316 155800;211.833000;211.848000;211.819000;211.822000;0 +20260316 155900;211.824000;211.838000;211.778000;211.778000;0 +20260316 160500;211.635000;211.655000;211.635000;211.655000;0 +20260316 160700;211.694000;211.746000;211.694000;211.746000;0 +20260316 160800;211.757000;211.762000;211.729000;211.729000;0 +20260316 160900;211.728000;211.742000;211.726000;211.742000;0 +20260316 161000;211.743000;211.743000;211.743000;211.743000;0 +20260316 161100;211.748000;211.748000;211.747000;211.747000;0 +20260316 161200;211.748000;211.758000;211.748000;211.758000;0 +20260316 161300;211.759000;211.764000;211.759000;211.764000;0 +20260316 161400;211.765000;211.765000;211.744000;211.750000;0 +20260316 161500;211.757000;211.786000;211.757000;211.781000;0 +20260316 161600;211.780000;211.785000;211.767000;211.776000;0 +20260316 161700;211.775000;211.781000;211.764000;211.764000;0 +20260316 161800;211.765000;211.772000;211.765000;211.771000;0 +20260316 161900;211.773000;211.797000;211.773000;211.794000;0 +20260316 162000;211.794000;211.815000;211.790000;211.815000;0 +20260316 162100;211.816000;211.841000;211.816000;211.829000;0 +20260316 162200;211.829000;211.839000;211.824000;211.827000;0 +20260316 162300;211.829000;211.835000;211.828000;211.832000;0 +20260316 162400;211.832000;211.846000;211.832000;211.841000;0 +20260316 162500;211.841000;211.843000;211.763000;211.832000;0 +20260316 162600;211.832000;211.834000;211.812000;211.826000;0 +20260316 162700;211.825000;211.827000;211.801000;211.807000;0 +20260316 162800;211.808000;211.816000;211.800000;211.808000;0 +20260316 162900;211.807000;211.818000;211.802000;211.808000;0 +20260316 163000;211.808000;211.817000;211.798000;211.815000;0 +20260316 163100;211.816000;211.819000;211.813000;211.817000;0 +20260316 163200;211.818000;211.831000;211.815000;211.818000;0 +20260316 163300;211.819000;211.832000;211.809000;211.809000;0 +20260316 163400;211.812000;211.837000;211.812000;211.836000;0 +20260316 163500;211.836000;211.861000;211.816000;211.816000;0 +20260316 163600;211.816000;211.858000;211.815000;211.838000;0 +20260316 163700;211.845000;211.860000;211.822000;211.839000;0 +20260316 163800;211.841000;211.854000;211.833000;211.846000;0 +20260316 163900;211.849000;211.867000;211.830000;211.835000;0 +20260316 164000;211.836000;211.863000;211.836000;211.855000;0 +20260316 164100;211.858000;211.862000;211.832000;211.833000;0 +20260316 164200;211.833000;211.860000;211.832000;211.846000;0 +20260316 164300;211.844000;211.858000;211.829000;211.847000;0 +20260316 164400;211.846000;211.853000;211.831000;211.843000;0 +20260316 164500;211.839000;211.856000;211.833000;211.856000;0 +20260316 164600;211.858000;211.870000;211.841000;211.847000;0 +20260316 164700;211.846000;211.880000;211.841000;211.864000;0 +20260316 164800;211.864000;211.882000;211.832000;211.857000;0 +20260316 164900;211.861000;211.874000;211.853000;211.863000;0 +20260316 165000;211.862000;211.877000;211.757000;211.821000;0 +20260316 165100;211.820000;211.885000;211.790000;211.828000;0 +20260316 165200;211.825000;211.857000;211.824000;211.855000;0 +20260316 165300;211.856000;211.871000;211.837000;211.870000;0 +20260316 165400;211.858000;211.864000;211.784000;211.784000;0 +20260316 165500;211.781000;211.806000;211.769000;211.770000;0 +20260316 165600;211.772000;211.803000;211.755000;211.799000;0 +20260316 165700;211.802000;211.804000;211.766000;211.772000;0 +20260316 165800;211.775000;211.787000;211.700000;211.783000;0 +20260316 165900;211.783000;211.793000;211.762000;211.792000;0 +20260316 170000;211.941000;211.941000;211.772000;211.822000;0 +20260316 170100;211.829000;211.844000;211.786000;211.795000;0 +20260316 170200;211.799000;211.811000;211.795000;211.804000;0 +20260316 170300;211.802000;211.842000;211.792000;211.840000;0 +20260316 170400;211.840000;211.869000;211.834000;211.868000;0 +20260316 170500;211.862000;211.862000;211.805000;211.818000;0 +20260316 170600;211.818000;211.819000;211.810000;211.813000;0 +20260316 170700;211.813000;211.816000;211.810000;211.810000;0 +20260316 170800;211.813000;211.821000;211.807000;211.812000;0 +20260316 170900;211.813000;211.831000;211.811000;211.828000;0 +20260316 171000;211.828000;211.830000;211.815000;211.819000;0 +20260316 171100;211.819000;211.836000;211.799000;211.823000;0 +20260316 171200;211.827000;211.829000;211.789000;211.789000;0 +20260316 171300;211.789000;211.804000;211.776000;211.802000;0 +20260316 171400;211.802000;211.810000;211.800000;211.806000;0 +20260316 171500;211.804000;211.805000;211.788000;211.799000;0 +20260316 171600;211.798000;211.811000;211.798000;211.805000;0 +20260316 171700;211.806000;211.818000;211.806000;211.812000;0 +20260316 171800;211.813000;211.817000;211.813000;211.816000;0 +20260316 171900;211.814000;211.821000;211.813000;211.820000;0 +20260316 172000;211.821000;211.839000;211.816000;211.834000;0 +20260316 172100;211.834000;211.845000;211.834000;211.844000;0 +20260316 172200;211.842000;211.861000;211.828000;211.857000;0 +20260316 172300;211.856000;211.865000;211.856000;211.865000;0 +20260316 172400;211.865000;211.868000;211.852000;211.861000;0 +20260316 172500;211.861000;211.876000;211.856000;211.874000;0 +20260316 172600;211.876000;211.876000;211.857000;211.863000;0 +20260316 172700;211.861000;211.875000;211.860000;211.862000;0 +20260316 172800;211.864000;211.864000;211.849000;211.863000;0 +20260316 172900;211.863000;211.875000;211.858000;211.871000;0 +20260316 173000;211.871000;211.876000;211.855000;211.860000;0 +20260316 173100;211.862000;211.883000;211.862000;211.883000;0 +20260316 173200;211.888000;211.897000;211.880000;211.883000;0 +20260316 173300;211.882000;211.883000;211.864000;211.867000;0 +20260316 173400;211.866000;211.867000;211.852000;211.852000;0 +20260316 173500;211.853000;211.862000;211.852000;211.860000;0 +20260316 173600;211.870000;211.873000;211.843000;211.843000;0 +20260316 173700;211.844000;211.844000;211.827000;211.833000;0 +20260316 173800;211.842000;211.855000;211.835000;211.847000;0 +20260316 173900;211.847000;211.847000;211.843000;211.847000;0 +20260316 174000;211.843000;211.846000;211.843000;211.844000;0 +20260316 174100;211.844000;211.845000;211.817000;211.832000;0 +20260316 174200;211.832000;211.836000;211.830000;211.834000;0 +20260316 174300;211.838000;211.849000;211.822000;211.849000;0 +20260316 174400;211.849000;211.857000;211.834000;211.857000;0 +20260316 174500;211.863000;211.877000;211.854000;211.867000;0 +20260316 174600;211.866000;211.870000;211.861000;211.861000;0 +20260316 174700;211.866000;211.868000;211.862000;211.867000;0 +20260316 174800;211.867000;211.887000;211.867000;211.886000;0 +20260316 174900;211.882000;211.885000;211.815000;211.831000;0 +20260316 175000;211.833000;211.848000;211.833000;211.840000;0 +20260316 175100;211.840000;211.841000;211.824000;211.826000;0 +20260316 175200;211.827000;211.831000;211.819000;211.820000;0 +20260316 175300;211.819000;211.824000;211.818000;211.819000;0 +20260316 175400;211.818000;211.831000;211.814000;211.830000;0 +20260316 175500;211.830000;211.831000;211.827000;211.831000;0 +20260316 175600;211.830000;211.832000;211.822000;211.829000;0 +20260316 175700;211.835000;211.845000;211.834000;211.844000;0 +20260316 175800;211.843000;211.846000;211.817000;211.819000;0 +20260316 175900;211.823000;211.825000;211.816000;211.824000;0 +20260316 180000;211.824000;211.877000;211.822000;211.874000;0 +20260316 180100;211.874000;211.875000;211.865000;211.873000;0 +20260316 180200;211.872000;211.874000;211.862000;211.869000;0 +20260316 180300;211.868000;211.869000;211.861000;211.863000;0 +20260316 180400;211.865000;211.870000;211.865000;211.869000;0 +20260316 180500;211.875000;211.878000;211.862000;211.875000;0 +20260316 180600;211.878000;211.898000;211.873000;211.889000;0 +20260316 180700;211.886000;211.911000;211.882000;211.903000;0 +20260316 180800;211.903000;211.905000;211.900000;211.901000;0 +20260316 180900;211.904000;211.904000;211.897000;211.899000;0 +20260316 181000;211.899000;211.902000;211.887000;211.887000;0 +20260316 181100;211.886000;211.898000;211.874000;211.894000;0 +20260316 181200;211.891000;211.910000;211.891000;211.906000;0 +20260316 181300;211.912000;211.912000;211.900000;211.904000;0 +20260316 181400;211.906000;211.906000;211.886000;211.893000;0 +20260316 181500;211.895000;211.901000;211.886000;211.899000;0 +20260316 181600;211.897000;211.897000;211.868000;211.879000;0 +20260316 181700;211.871000;211.882000;211.868000;211.880000;0 +20260316 181800;211.879000;211.887000;211.866000;211.866000;0 +20260316 181900;211.866000;211.890000;211.866000;211.871000;0 +20260316 182000;211.868000;211.874000;211.868000;211.874000;0 +20260316 182100;211.872000;211.894000;211.872000;211.892000;0 +20260316 182200;211.892000;211.892000;211.884000;211.884000;0 +20260316 182300;211.885000;211.885000;211.878000;211.878000;0 +20260316 182400;211.888000;211.892000;211.888000;211.890000;0 +20260316 182500;211.878000;211.887000;211.874000;211.884000;0 +20260316 182600;211.884000;211.885000;211.879000;211.879000;0 +20260316 182700;211.879000;211.889000;211.879000;211.885000;0 +20260316 182800;211.885000;211.894000;211.879000;211.883000;0 +20260316 182900;211.883000;211.885000;211.881000;211.884000;0 +20260316 183000;211.886000;211.892000;211.879000;211.885000;0 +20260316 183100;211.885000;211.888000;211.882000;211.888000;0 +20260316 183200;211.890000;211.907000;211.888000;211.902000;0 +20260316 183300;211.904000;211.912000;211.901000;211.907000;0 +20260316 183400;211.908000;211.910000;211.905000;211.908000;0 +20260316 183500;211.904000;211.907000;211.901000;211.903000;0 +20260316 183600;211.903000;211.922000;211.903000;211.922000;0 +20260316 183700;211.919000;211.924000;211.915000;211.921000;0 +20260316 183800;211.924000;211.924000;211.911000;211.913000;0 +20260316 183900;211.913000;211.915000;211.911000;211.914000;0 +20260316 184000;211.912000;211.912000;211.901000;211.901000;0 +20260316 184100;211.900000;211.901000;211.898000;211.901000;0 +20260316 184200;211.898000;211.899000;211.893000;211.896000;0 +20260316 184300;211.898000;211.898000;211.895000;211.895000;0 +20260316 184400;211.896000;211.899000;211.864000;211.866000;0 +20260316 184500;211.868000;211.891000;211.853000;211.886000;0 +20260316 184600;211.890000;211.890000;211.852000;211.855000;0 +20260316 184700;211.857000;211.879000;211.857000;211.868000;0 +20260316 184800;211.868000;211.873000;211.801000;211.807000;0 +20260316 184900;211.810000;211.833000;211.810000;211.816000;0 +20260316 185000;211.815000;211.846000;211.813000;211.845000;0 +20260316 185100;211.845000;211.865000;211.845000;211.859000;0 +20260316 185200;211.857000;211.861000;211.837000;211.848000;0 +20260316 185300;211.854000;211.876000;211.801000;211.875000;0 +20260316 185400;211.875000;211.875000;211.843000;211.843000;0 +20260316 185500;211.844000;211.853000;211.832000;211.834000;0 +20260316 185600;211.835000;211.835000;211.814000;211.818000;0 +20260316 185700;211.816000;211.830000;211.814000;211.824000;0 +20260316 185800;211.821000;211.846000;211.820000;211.833000;0 +20260316 185900;211.829000;211.855000;211.827000;211.842000;0 +20260316 190000;211.840000;211.848000;211.818000;211.842000;0 +20260316 190100;211.837000;211.839000;211.798000;211.817000;0 +20260316 190200;211.816000;211.853000;211.815000;211.837000;0 +20260316 190300;211.839000;211.870000;211.839000;211.844000;0 +20260316 190400;211.845000;211.845000;211.832000;211.837000;0 +20260316 190500;211.838000;211.877000;211.837000;211.858000;0 +20260316 190600;211.858000;211.868000;211.848000;211.861000;0 +20260316 190700;211.864000;211.890000;211.864000;211.883000;0 +20260316 190800;211.891000;211.897000;211.865000;211.871000;0 +20260316 190900;211.878000;211.887000;211.871000;211.887000;0 +20260316 191000;211.891000;211.910000;211.889000;211.910000;0 +20260316 191100;211.909000;211.915000;211.892000;211.915000;0 +20260316 191200;211.916000;211.916000;211.891000;211.903000;0 +20260316 191300;211.899000;211.915000;211.894000;211.910000;0 +20260316 191400;211.914000;211.914000;211.886000;211.887000;0 +20260316 191500;211.888000;211.916000;211.888000;211.903000;0 +20260316 191600;211.900000;211.902000;211.869000;211.879000;0 +20260316 191700;211.882000;211.899000;211.876000;211.876000;0 +20260316 191800;211.877000;211.904000;211.877000;211.897000;0 +20260316 191900;211.896000;211.902000;211.883000;211.889000;0 +20260316 192000;211.889000;211.900000;211.879000;211.881000;0 +20260316 192100;211.882000;211.882000;211.848000;211.848000;0 +20260316 192200;211.847000;211.854000;211.840000;211.850000;0 +20260316 192300;211.850000;211.862000;211.845000;211.860000;0 +20260316 192400;211.859000;211.859000;211.833000;211.843000;0 +20260316 192500;211.841000;211.841000;211.832000;211.840000;0 +20260316 192600;211.840000;211.840000;211.818000;211.836000;0 +20260316 192700;211.833000;211.836000;211.818000;211.820000;0 +20260316 192800;211.824000;211.828000;211.818000;211.822000;0 +20260316 192900;211.839000;211.855000;211.838000;211.853000;0 +20260316 193000;211.857000;211.866000;211.855000;211.855000;0 +20260316 193100;211.855000;211.860000;211.843000;211.853000;0 +20260316 193200;211.848000;211.849000;211.823000;211.832000;0 +20260316 193300;211.832000;211.860000;211.829000;211.854000;0 +20260316 193400;211.851000;211.856000;211.839000;211.839000;0 +20260316 193500;211.839000;211.866000;211.836000;211.862000;0 +20260316 193600;211.860000;211.861000;211.840000;211.845000;0 +20260316 193700;211.844000;211.844000;211.828000;211.834000;0 +20260316 193800;211.832000;211.837000;211.822000;211.829000;0 +20260316 193900;211.828000;211.835000;211.816000;211.831000;0 +20260316 194000;211.831000;211.837000;211.819000;211.820000;0 +20260316 194100;211.820000;211.822000;211.805000;211.806000;0 +20260316 194200;211.807000;211.820000;211.802000;211.803000;0 +20260316 194300;211.804000;211.811000;211.801000;211.806000;0 +20260316 194400;211.806000;211.815000;211.799000;211.810000;0 +20260316 194500;211.810000;211.817000;211.802000;211.810000;0 +20260316 194600;211.814000;211.819000;211.804000;211.813000;0 +20260316 194700;211.812000;211.837000;211.810000;211.831000;0 +20260316 194800;211.829000;211.836000;211.824000;211.829000;0 +20260316 194900;211.830000;211.852000;211.830000;211.851000;0 +20260316 195000;211.850000;211.862000;211.837000;211.856000;0 +20260316 195100;211.855000;211.871000;211.817000;211.826000;0 +20260316 195200;211.826000;211.860000;211.811000;211.837000;0 +20260316 195300;211.839000;211.867000;211.826000;211.841000;0 +20260316 195400;211.836000;211.941000;211.830000;211.915000;0 +20260316 195500;211.913000;211.932000;211.884000;211.912000;0 +20260316 195600;211.912000;211.940000;211.894000;211.897000;0 +20260316 195700;211.899000;211.921000;211.897000;211.910000;0 +20260316 195800;211.912000;211.919000;211.903000;211.910000;0 +20260316 195900;211.909000;211.927000;211.902000;211.927000;0 +20260316 200000;211.927000;211.938000;211.893000;211.915000;0 +20260316 200100;211.914000;211.945000;211.905000;211.916000;0 +20260316 200200;211.915000;211.931000;211.897000;211.897000;0 +20260316 200300;211.895000;211.904000;211.880000;211.889000;0 +20260316 200400;211.888000;211.924000;211.880000;211.919000;0 +20260316 200500;211.919000;211.925000;211.899000;211.902000;0 +20260316 200600;211.903000;211.927000;211.899000;211.926000;0 +20260316 200700;211.925000;211.943000;211.892000;211.912000;0 +20260316 200800;211.920000;211.931000;211.904000;211.925000;0 +20260316 200900;211.927000;211.952000;211.925000;211.941000;0 +20260316 201000;211.940000;211.961000;211.934000;211.955000;0 +20260316 201100;211.955000;211.986000;211.949000;211.977000;0 +20260316 201200;211.975000;212.003000;211.972000;212.003000;0 +20260316 201300;211.998000;211.998000;211.946000;211.954000;0 +20260316 201400;211.954000;211.955000;211.920000;211.923000;0 +20260316 201500;211.919000;211.942000;211.913000;211.934000;0 +20260316 201600;211.934000;211.963000;211.923000;211.963000;0 +20260316 201700;211.961000;211.988000;211.958000;211.965000;0 +20260316 201800;211.962000;211.962000;211.943000;211.954000;0 +20260316 201900;211.951000;211.968000;211.946000;211.955000;0 +20260316 202000;211.957000;211.979000;211.957000;211.967000;0 +20260316 202100;211.967000;211.983000;211.955000;211.979000;0 +20260316 202200;211.975000;211.982000;211.963000;211.969000;0 +20260316 202300;211.969000;211.979000;211.961000;211.972000;0 +20260316 202400;211.971000;211.980000;211.963000;211.975000;0 +20260316 202500;211.975000;211.982000;211.964000;211.982000;0 +20260316 202600;211.984000;212.000000;211.976000;211.991000;0 +20260316 202700;211.992000;211.992000;211.980000;211.987000;0 +20260316 202800;211.993000;212.000000;211.983000;211.987000;0 +20260316 202900;211.986000;211.997000;211.978000;211.992000;0 +20260316 203000;211.992000;212.023000;211.991000;212.023000;0 +20260316 203100;212.023000;212.026000;211.994000;212.001000;0 +20260316 203200;211.997000;211.997000;211.984000;211.987000;0 +20260316 203300;211.985000;211.999000;211.983000;211.993000;0 +20260316 203400;211.996000;212.006000;211.992000;212.006000;0 +20260316 203500;212.006000;212.033000;212.002000;212.022000;0 +20260316 203600;212.025000;212.028000;211.995000;212.008000;0 +20260316 203700;212.007000;212.019000;211.991000;212.002000;0 +20260316 203800;212.003000;212.003000;211.988000;211.996000;0 +20260316 203900;211.996000;212.017000;211.993000;212.013000;0 +20260316 204000;212.010000;212.010000;211.990000;212.003000;0 +20260316 204100;212.002000;212.011000;211.995000;212.011000;0 +20260316 204200;212.010000;212.014000;211.996000;211.998000;0 +20260316 204300;212.000000;212.009000;211.993000;211.998000;0 +20260316 204400;211.997000;212.025000;211.997000;212.020000;0 +20260316 204500;212.021000;212.023000;212.003000;212.018000;0 +20260316 204600;212.019000;212.040000;212.015000;212.027000;0 +20260316 204700;212.025000;212.035000;212.022000;212.034000;0 +20260316 204800;212.035000;212.040000;212.020000;212.027000;0 +20260316 204900;212.028000;212.049000;212.023000;212.043000;0 +20260316 205000;212.043000;212.074000;212.043000;212.073000;0 +20260316 205100;212.070000;212.091000;212.069000;212.090000;0 +20260316 205200;212.088000;212.111000;212.088000;212.094000;0 +20260316 205300;212.093000;212.115000;212.087000;212.088000;0 +20260316 205400;212.088000;212.090000;212.056000;212.057000;0 +20260316 205500;212.059000;212.068000;212.050000;212.064000;0 +20260316 205600;212.065000;212.075000;212.058000;212.066000;0 +20260316 205700;212.068000;212.074000;212.053000;212.054000;0 +20260316 205800;212.055000;212.071000;212.047000;212.070000;0 +20260316 205900;212.070000;212.076000;212.061000;212.073000;0 +20260316 210000;212.073000;212.081000;212.051000;212.073000;0 +20260316 210100;212.070000;212.087000;212.069000;212.082000;0 +20260316 210200;212.081000;212.086000;212.065000;212.070000;0 +20260316 210300;212.069000;212.082000;212.068000;212.074000;0 +20260316 210400;212.073000;212.086000;212.070000;212.070000;0 +20260316 210500;212.072000;212.082000;212.065000;212.070000;0 +20260316 210600;212.069000;212.081000;212.069000;212.070000;0 +20260316 210700;212.071000;212.072000;212.063000;212.063000;0 +20260316 210800;212.067000;212.069000;212.052000;212.066000;0 +20260316 210900;212.064000;212.091000;212.060000;212.083000;0 +20260316 211000;212.084000;212.116000;212.081000;212.099000;0 +20260316 211100;212.103000;212.117000;212.087000;212.087000;0 +20260316 211200;212.088000;212.091000;212.088000;212.090000;0 +20260316 211300;212.090000;212.090000;212.081000;212.082000;0 +20260316 211400;212.084000;212.106000;212.084000;212.104000;0 +20260316 211500;212.103000;212.105000;212.088000;212.096000;0 +20260316 211600;212.095000;212.115000;212.095000;212.101000;0 +20260316 211700;212.105000;212.116000;212.098000;212.114000;0 +20260316 211800;212.114000;212.115000;212.102000;212.104000;0 +20260316 211900;212.105000;212.132000;212.101000;212.132000;0 +20260316 212000;212.128000;212.134000;212.124000;212.129000;0 +20260316 212100;212.131000;212.136000;212.125000;212.131000;0 +20260316 212200;212.127000;212.130000;212.103000;212.103000;0 +20260316 212300;212.102000;212.122000;212.102000;212.120000;0 +20260316 212400;212.117000;212.118000;212.107000;212.108000;0 +20260316 212500;212.105000;212.117000;212.105000;212.115000;0 +20260316 212600;212.116000;212.118000;212.097000;212.097000;0 +20260316 212700;212.097000;212.105000;212.088000;212.091000;0 +20260316 212800;212.095000;212.098000;212.082000;212.085000;0 +20260316 212900;212.084000;212.086000;212.049000;212.051000;0 +20260316 213000;212.051000;212.063000;212.038000;212.055000;0 +20260316 213100;212.053000;212.063000;212.050000;212.063000;0 +20260316 213200;212.063000;212.063000;212.045000;212.045000;0 +20260316 213300;212.045000;212.055000;212.044000;212.051000;0 +20260316 213400;212.051000;212.052000;212.035000;212.047000;0 +20260316 213500;212.047000;212.049000;212.038000;212.042000;0 +20260316 213600;212.043000;212.050000;212.035000;212.040000;0 +20260316 213700;212.039000;212.060000;212.038000;212.060000;0 +20260316 213800;212.062000;212.069000;212.051000;212.053000;0 +20260316 213900;212.053000;212.056000;212.046000;212.054000;0 +20260316 214000;212.053000;212.055000;212.033000;212.042000;0 +20260316 214100;212.046000;212.051000;212.043000;212.047000;0 +20260316 214200;212.044000;212.065000;212.037000;212.065000;0 +20260316 214300;212.062000;212.069000;212.053000;212.054000;0 +20260316 214400;212.056000;212.075000;212.053000;212.074000;0 +20260316 214500;212.074000;212.074000;212.062000;212.068000;0 +20260316 214600;212.067000;212.075000;212.063000;212.066000;0 +20260316 214700;212.068000;212.068000;212.057000;212.062000;0 +20260316 214800;212.059000;212.064000;212.055000;212.059000;0 +20260316 214900;212.060000;212.063000;212.055000;212.055000;0 +20260316 215000;212.055000;212.055000;212.038000;212.051000;0 +20260316 215100;212.049000;212.064000;212.041000;212.059000;0 +20260316 215200;212.060000;212.076000;212.060000;212.065000;0 +20260316 215300;212.062000;212.062000;212.042000;212.046000;0 +20260316 215400;212.044000;212.054000;212.043000;212.050000;0 +20260316 215500;212.050000;212.062000;212.048000;212.054000;0 +20260316 215600;212.055000;212.069000;212.054000;212.056000;0 +20260316 215700;212.057000;212.067000;212.054000;212.054000;0 +20260316 215800;212.055000;212.066000;212.055000;212.065000;0 +20260316 215900;212.066000;212.066000;212.040000;212.043000;0 +20260316 220000;212.045000;212.074000;212.045000;212.071000;0 +20260316 220100;212.071000;212.083000;212.069000;212.076000;0 +20260316 220200;212.073000;212.081000;212.070000;212.077000;0 +20260316 220300;212.075000;212.077000;212.068000;212.070000;0 +20260316 220400;212.076000;212.076000;212.064000;212.070000;0 +20260316 220500;212.068000;212.079000;212.055000;212.075000;0 +20260316 220600;212.074000;212.078000;212.058000;212.058000;0 +20260316 220700;212.057000;212.067000;212.053000;212.054000;0 +20260316 220800;212.053000;212.056000;212.050000;212.055000;0 +20260316 220900;212.052000;212.053000;212.040000;212.040000;0 +20260316 221000;212.040000;212.047000;212.038000;212.043000;0 +20260316 221100;212.044000;212.050000;212.038000;212.043000;0 +20260316 221200;212.041000;212.070000;212.039000;212.064000;0 +20260316 221300;212.065000;212.066000;212.053000;212.060000;0 +20260316 221400;212.058000;212.067000;212.057000;212.064000;0 +20260316 221500;212.067000;212.068000;212.050000;212.053000;0 +20260316 221600;212.056000;212.062000;212.048000;212.056000;0 +20260316 221700;212.057000;212.067000;212.057000;212.063000;0 +20260316 221800;212.063000;212.068000;212.063000;212.066000;0 +20260316 221900;212.066000;212.095000;212.065000;212.095000;0 +20260316 222000;212.095000;212.096000;212.084000;212.088000;0 +20260316 222100;212.088000;212.097000;212.078000;212.096000;0 +20260316 222200;212.094000;212.094000;212.071000;212.083000;0 +20260316 222300;212.082000;212.102000;212.082000;212.100000;0 +20260316 222400;212.102000;212.108000;212.092000;212.092000;0 +20260316 222500;212.090000;212.093000;212.082000;212.093000;0 +20260316 222600;212.091000;212.093000;212.081000;212.085000;0 +20260316 222700;212.084000;212.084000;212.071000;212.071000;0 +20260316 222800;212.072000;212.076000;212.065000;212.073000;0 +20260316 222900;212.070000;212.083000;212.067000;212.083000;0 +20260316 223000;212.085000;212.103000;212.031000;212.065000;0 +20260316 223100;212.065000;212.067000;212.028000;212.046000;0 +20260316 223200;212.044000;212.048000;212.029000;212.033000;0 +20260316 223300;212.035000;212.066000;212.035000;212.059000;0 +20260316 223400;212.058000;212.079000;212.055000;212.070000;0 +20260316 223500;212.073000;212.082000;212.055000;212.055000;0 +20260316 223600;212.054000;212.063000;212.028000;212.032000;0 +20260316 223700;212.034000;212.051000;212.033000;212.051000;0 +20260316 223800;212.052000;212.075000;212.050000;212.060000;0 +20260316 223900;212.061000;212.065000;212.045000;212.056000;0 +20260316 224000;212.053000;212.058000;212.039000;212.046000;0 +20260316 224100;212.046000;212.046000;212.009000;212.012000;0 +20260316 224200;212.012000;212.013000;211.991000;211.999000;0 +20260316 224300;212.002000;212.007000;211.989000;211.993000;0 +20260316 224400;211.990000;211.994000;211.974000;211.983000;0 +20260316 224500;211.984000;211.986000;211.954000;211.955000;0 +20260316 224600;211.955000;211.975000;211.948000;211.975000;0 +20260316 224700;211.973000;211.978000;211.954000;211.969000;0 +20260316 224800;211.967000;211.973000;211.951000;211.952000;0 +20260316 224900;211.950000;211.955000;211.944000;211.955000;0 +20260316 225000;211.954000;211.978000;211.944000;211.965000;0 +20260316 225100;211.963000;211.985000;211.955000;211.955000;0 +20260316 225200;211.955000;211.959000;211.946000;211.951000;0 +20260316 225300;211.951000;211.959000;211.942000;211.954000;0 +20260316 225400;211.955000;211.980000;211.949000;211.977000;0 +20260316 225500;211.980000;211.993000;211.969000;211.986000;0 +20260316 225600;211.986000;211.988000;211.970000;211.973000;0 +20260316 225700;211.975000;211.975000;211.962000;211.973000;0 +20260316 225800;211.972000;211.974000;211.956000;211.969000;0 +20260316 225900;211.968000;211.969000;211.954000;211.965000;0 +20260316 230000;211.965000;211.966000;211.921000;211.926000;0 +20260316 230100;211.926000;211.940000;211.902000;211.940000;0 +20260316 230200;211.940000;211.964000;211.933000;211.960000;0 +20260316 230300;211.960000;211.976000;211.954000;211.976000;0 +20260316 230400;211.979000;211.982000;211.963000;211.965000;0 +20260316 230500;211.969000;211.988000;211.959000;211.962000;0 +20260316 230600;211.962000;211.962000;211.944000;211.944000;0 +20260316 230700;211.945000;211.954000;211.941000;211.945000;0 +20260316 230800;211.941000;211.946000;211.940000;211.941000;0 +20260316 230900;211.939000;211.945000;211.935000;211.938000;0 +20260316 231000;211.937000;211.958000;211.937000;211.958000;0 +20260316 231100;211.957000;211.960000;211.948000;211.952000;0 +20260316 231200;211.948000;211.969000;211.948000;211.960000;0 +20260316 231300;211.957000;211.968000;211.950000;211.950000;0 +20260316 231400;211.949000;211.973000;211.943000;211.960000;0 +20260316 231500;211.960000;211.984000;211.959000;211.980000;0 +20260316 231600;211.977000;211.996000;211.976000;211.987000;0 +20260316 231700;211.989000;211.994000;211.980000;211.987000;0 +20260316 231800;211.985000;212.011000;211.985000;211.999000;0 +20260316 231900;212.004000;212.007000;211.996000;212.002000;0 +20260316 232000;212.002000;212.006000;211.992000;211.994000;0 +20260316 232100;211.995000;211.999000;211.983000;211.983000;0 +20260316 232200;211.982000;211.984000;211.971000;211.975000;0 +20260316 232300;211.976000;211.976000;211.959000;211.969000;0 +20260316 232400;211.968000;211.971000;211.959000;211.969000;0 +20260316 232500;211.973000;211.974000;211.959000;211.959000;0 +20260316 232600;211.960000;211.972000;211.959000;211.971000;0 +20260316 232700;211.973000;211.978000;211.962000;211.962000;0 +20260316 232800;211.959000;211.970000;211.959000;211.965000;0 +20260316 232900;211.968000;211.968000;211.957000;211.960000;0 +20260316 233000;211.959000;211.968000;211.959000;211.959000;0 +20260316 233100;211.959000;211.964000;211.957000;211.959000;0 +20260316 233200;211.960000;211.967000;211.953000;211.963000;0 +20260316 233300;211.959000;211.961000;211.954000;211.959000;0 +20260316 233400;211.959000;211.968000;211.957000;211.968000;0 +20260316 233500;211.968000;211.971000;211.951000;211.952000;0 +20260316 233600;211.952000;211.963000;211.952000;211.963000;0 +20260316 233700;211.963000;211.970000;211.962000;211.970000;0 +20260316 233800;211.970000;212.002000;211.970000;211.987000;0 +20260316 233900;211.991000;211.991000;211.979000;211.979000;0 +20260316 234000;211.976000;211.989000;211.950000;211.950000;0 +20260316 234100;211.952000;211.957000;211.948000;211.949000;0 +20260316 234200;211.950000;211.956000;211.947000;211.952000;0 +20260316 234300;211.956000;211.977000;211.956000;211.977000;0 +20260316 234400;211.972000;211.993000;211.971000;211.985000;0 +20260316 234500;211.985000;211.987000;211.974000;211.985000;0 +20260316 234600;211.986000;212.007000;211.986000;212.002000;0 +20260316 234700;212.001000;212.002000;211.982000;212.002000;0 +20260316 234800;212.001000;212.014000;211.997000;212.000000;0 +20260316 234900;212.000000;212.001000;211.984000;211.995000;0 +20260316 235000;211.993000;212.013000;211.988000;211.998000;0 +20260316 235100;212.010000;212.014000;212.008000;212.014000;0 +20260316 235200;212.014000;212.020000;211.999000;212.020000;0 +20260316 235300;212.020000;212.020000;212.004000;212.004000;0 +20260316 235400;212.000000;212.000000;211.982000;211.982000;0 +20260316 235500;211.987000;211.987000;211.977000;211.980000;0 +20260316 235600;211.984000;211.998000;211.969000;211.975000;0 +20260316 235700;211.974000;211.975000;211.962000;211.965000;0 +20260316 235800;211.967000;211.967000;211.952000;211.954000;0 +20260316 235900;211.955000;211.968000;211.955000;211.956000;0 +20260317 000000;211.954000;211.962000;211.932000;211.932000;0 +20260317 000100;211.930000;211.934000;211.914000;211.920000;0 +20260317 000200;211.923000;211.941000;211.921000;211.924000;0 +20260317 000300;211.923000;211.944000;211.922000;211.938000;0 +20260317 000400;211.938000;211.954000;211.938000;211.951000;0 +20260317 000500;211.952000;211.955000;211.942000;211.946000;0 +20260317 000600;211.946000;211.949000;211.938000;211.938000;0 +20260317 000700;211.939000;211.950000;211.937000;211.950000;0 +20260317 000800;211.951000;211.957000;211.947000;211.953000;0 +20260317 000900;211.952000;211.962000;211.945000;211.954000;0 +20260317 001000;211.954000;211.955000;211.930000;211.946000;0 +20260317 001100;211.944000;211.946000;211.919000;211.920000;0 +20260317 001200;211.920000;211.939000;211.918000;211.939000;0 +20260317 001300;211.938000;211.953000;211.935000;211.941000;0 +20260317 001400;211.938000;211.967000;211.937000;211.954000;0 +20260317 001500;211.955000;211.982000;211.946000;211.976000;0 +20260317 001600;211.972000;212.000000;211.965000;211.995000;0 +20260317 001700;211.991000;212.004000;211.991000;211.997000;0 +20260317 001800;211.999000;211.999000;211.980000;211.984000;0 +20260317 001900;211.985000;211.987000;211.983000;211.983000;0 +20260317 002000;211.983000;212.020000;211.970000;212.017000;0 +20260317 002100;212.016000;212.029000;212.014000;212.026000;0 +20260317 002200;212.027000;212.028000;212.013000;212.024000;0 +20260317 002300;212.025000;212.025000;212.013000;212.014000;0 +20260317 002400;212.014000;212.025000;212.009000;212.010000;0 +20260317 002500;212.009000;212.010000;211.992000;212.004000;0 +20260317 002600;212.003000;212.007000;211.995000;212.000000;0 +20260317 002700;212.005000;212.010000;211.988000;211.994000;0 +20260317 002800;211.992000;211.995000;211.991000;211.991000;0 +20260317 002900;211.988000;211.990000;211.983000;211.983000;0 +20260317 003000;211.986000;211.996000;211.966000;211.972000;0 +20260317 003100;211.972000;211.976000;211.959000;211.961000;0 +20260317 003200;211.959000;211.968000;211.957000;211.965000;0 +20260317 003300;211.963000;211.971000;211.959000;211.969000;0 +20260317 003400;211.973000;211.977000;211.967000;211.971000;0 +20260317 003500;211.971000;211.989000;211.971000;211.986000;0 +20260317 003600;211.987000;212.004000;211.983000;212.000000;0 +20260317 003700;212.000000;212.020000;211.997000;212.011000;0 +20260317 003800;212.010000;212.011000;211.991000;211.994000;0 +20260317 003900;211.998000;211.999000;211.993000;211.993000;0 +20260317 004000;211.993000;212.006000;211.979000;211.979000;0 +20260317 004100;211.976000;211.998000;211.976000;211.998000;0 +20260317 004200;211.997000;211.997000;211.971000;211.971000;0 +20260317 004300;211.970000;211.974000;211.957000;211.960000;0 +20260317 004400;211.959000;211.960000;211.937000;211.945000;0 +20260317 004500;211.945000;211.949000;211.919000;211.933000;0 +20260317 004600;211.932000;211.939000;211.911000;211.915000;0 +20260317 004700;211.915000;211.915000;211.896000;211.897000;0 +20260317 004800;211.898000;211.907000;211.888000;211.901000;0 +20260317 004900;211.903000;211.906000;211.890000;211.892000;0 +20260317 005000;211.892000;211.893000;211.866000;211.872000;0 +20260317 005100;211.872000;211.894000;211.872000;211.883000;0 +20260317 005200;211.883000;211.889000;211.878000;211.880000;0 +20260317 005300;211.879000;211.887000;211.860000;211.863000;0 +20260317 005400;211.865000;211.882000;211.863000;211.879000;0 +20260317 005500;211.879000;211.879000;211.843000;211.855000;0 +20260317 005600;211.854000;211.863000;211.829000;211.832000;0 +20260317 005700;211.833000;211.860000;211.825000;211.846000;0 +20260317 005800;211.846000;211.864000;211.832000;211.837000;0 +20260317 005900;211.840000;211.846000;211.831000;211.844000;0 +20260317 010000;211.844000;211.879000;211.836000;211.857000;0 +20260317 010100;211.858000;211.866000;211.806000;211.820000;0 +20260317 010200;211.823000;211.824000;211.768000;211.771000;0 +20260317 010300;211.771000;211.801000;211.769000;211.776000;0 +20260317 010400;211.777000;211.783000;211.732000;211.748000;0 +20260317 010500;211.746000;211.753000;211.697000;211.704000;0 +20260317 010600;211.706000;211.707000;211.675000;211.705000;0 +20260317 010700;211.700000;211.709000;211.675000;211.693000;0 +20260317 010800;211.691000;211.692000;211.645000;211.652000;0 +20260317 010900;211.654000;211.670000;211.648000;211.659000;0 +20260317 011000;211.661000;211.662000;211.637000;211.638000;0 +20260317 011100;211.637000;211.650000;211.626000;211.636000;0 +20260317 011200;211.639000;211.665000;211.637000;211.644000;0 +20260317 011300;211.646000;211.646000;211.626000;211.637000;0 +20260317 011400;211.639000;211.674000;211.631000;211.668000;0 +20260317 011500;211.669000;211.686000;211.662000;211.683000;0 +20260317 011600;211.683000;211.690000;211.666000;211.677000;0 +20260317 011700;211.683000;211.706000;211.679000;211.693000;0 +20260317 011800;211.692000;211.720000;211.691000;211.711000;0 +20260317 011900;211.711000;211.731000;211.710000;211.726000;0 +20260317 012000;211.725000;211.725000;211.695000;211.718000;0 +20260317 012100;211.720000;211.734000;211.715000;211.723000;0 +20260317 012200;211.723000;211.730000;211.712000;211.726000;0 +20260317 012300;211.725000;211.736000;211.716000;211.730000;0 +20260317 012400;211.730000;211.764000;211.723000;211.758000;0 +20260317 012500;211.771000;211.771000;211.737000;211.758000;0 +20260317 012600;211.759000;211.798000;211.758000;211.797000;0 +20260317 012700;211.801000;211.841000;211.801000;211.837000;0 +20260317 012800;211.837000;211.851000;211.823000;211.827000;0 +20260317 012900;211.829000;211.835000;211.796000;211.802000;0 +20260317 013000;211.803000;211.812000;211.774000;211.806000;0 +20260317 013100;211.807000;211.828000;211.780000;211.828000;0 +20260317 013200;211.827000;211.828000;211.806000;211.813000;0 +20260317 013300;211.813000;211.830000;211.812000;211.825000;0 +20260317 013400;211.826000;211.835000;211.802000;211.809000;0 +20260317 013500;211.811000;211.834000;211.801000;211.831000;0 +20260317 013600;211.830000;211.844000;211.824000;211.840000;0 +20260317 013700;211.838000;211.838000;211.822000;211.823000;0 +20260317 013800;211.822000;211.828000;211.816000;211.826000;0 +20260317 013900;211.828000;211.862000;211.824000;211.858000;0 +20260317 014000;211.859000;211.863000;211.821000;211.831000;0 +20260317 014100;211.831000;211.840000;211.823000;211.837000;0 +20260317 014200;211.836000;211.853000;211.823000;211.824000;0 +20260317 014300;211.822000;211.824000;211.806000;211.820000;0 +20260317 014400;211.820000;211.824000;211.805000;211.814000;0 +20260317 014500;211.813000;211.814000;211.782000;211.782000;0 +20260317 014600;211.780000;211.780000;211.744000;211.744000;0 +20260317 014700;211.744000;211.758000;211.730000;211.739000;0 +20260317 014800;211.741000;211.749000;211.705000;211.712000;0 +20260317 014900;211.713000;211.713000;211.673000;211.682000;0 +20260317 015000;211.683000;211.693000;211.669000;211.674000;0 +20260317 015100;211.674000;211.704000;211.668000;211.696000;0 +20260317 015200;211.697000;211.712000;211.695000;211.708000;0 +20260317 015300;211.708000;211.734000;211.708000;211.732000;0 +20260317 015400;211.732000;211.757000;211.728000;211.753000;0 +20260317 015500;211.752000;211.758000;211.739000;211.742000;0 +20260317 015600;211.741000;211.759000;211.723000;211.756000;0 +20260317 015700;211.757000;211.783000;211.752000;211.779000;0 +20260317 015800;211.776000;211.782000;211.761000;211.776000;0 +20260317 015900;211.775000;211.781000;211.773000;211.778000;0 +20260317 020000;211.781000;211.817000;211.776000;211.804000;0 +20260317 020100;211.800000;211.810000;211.788000;211.806000;0 +20260317 020200;211.805000;211.821000;211.792000;211.807000;0 +20260317 020300;211.808000;211.819000;211.794000;211.812000;0 +20260317 020400;211.812000;211.822000;211.806000;211.812000;0 +20260317 020500;211.813000;211.828000;211.797000;211.813000;0 +20260317 020600;211.812000;211.824000;211.810000;211.814000;0 +20260317 020700;211.814000;211.823000;211.812000;211.815000;0 +20260317 020800;211.814000;211.826000;211.807000;211.816000;0 +20260317 020900;211.814000;211.845000;211.809000;211.842000;0 +20260317 021000;211.844000;211.863000;211.843000;211.852000;0 +20260317 021100;211.851000;211.866000;211.843000;211.862000;0 +20260317 021200;211.864000;211.866000;211.846000;211.859000;0 +20260317 021300;211.860000;211.877000;211.859000;211.866000;0 +20260317 021400;211.866000;211.870000;211.831000;211.832000;0 +20260317 021500;211.831000;211.831000;211.768000;211.769000;0 +20260317 021600;211.769000;211.772000;211.744000;211.757000;0 +20260317 021700;211.759000;211.762000;211.750000;211.757000;0 +20260317 021800;211.753000;211.757000;211.731000;211.751000;0 +20260317 021900;211.752000;211.787000;211.745000;211.778000;0 +20260317 022000;211.779000;211.794000;211.761000;211.789000;0 +20260317 022100;211.789000;211.811000;211.775000;211.811000;0 +20260317 022200;211.809000;211.862000;211.799000;211.857000;0 +20260317 022300;211.854000;211.859000;211.832000;211.848000;0 +20260317 022400;211.844000;211.845000;211.823000;211.834000;0 +20260317 022500;211.835000;211.856000;211.835000;211.850000;0 +20260317 022600;211.848000;211.911000;211.848000;211.910000;0 +20260317 022700;211.913000;211.927000;211.896000;211.926000;0 +20260317 022800;211.926000;211.934000;211.900000;211.907000;0 +20260317 022900;211.911000;211.929000;211.898000;211.909000;0 +20260317 023000;211.908000;211.958000;211.907000;211.944000;0 +20260317 023100;211.944000;211.963000;211.928000;211.963000;0 +20260317 023200;211.966000;211.966000;211.937000;211.942000;0 +20260317 023300;211.946000;211.953000;211.934000;211.938000;0 +20260317 023400;211.937000;211.964000;211.932000;211.963000;0 +20260317 023500;211.964000;211.971000;211.919000;211.921000;0 +20260317 023600;211.919000;211.935000;211.916000;211.934000;0 +20260317 023700;211.935000;211.951000;211.917000;211.946000;0 +20260317 023800;211.948000;211.964000;211.943000;211.964000;0 +20260317 023900;211.965000;211.996000;211.957000;211.961000;0 +20260317 024000;211.962000;211.978000;211.962000;211.966000;0 +20260317 024100;211.967000;211.969000;211.907000;211.919000;0 +20260317 024200;211.913000;211.918000;211.884000;211.907000;0 +20260317 024300;211.905000;211.917000;211.894000;211.906000;0 +20260317 024400;211.904000;211.921000;211.901000;211.918000;0 +20260317 024500;211.922000;211.923000;211.901000;211.913000;0 +20260317 024600;211.914000;211.924000;211.909000;211.916000;0 +20260317 024700;211.916000;211.938000;211.907000;211.923000;0 +20260317 024800;211.925000;211.930000;211.911000;211.916000;0 +20260317 024900;211.917000;211.925000;211.905000;211.905000;0 +20260317 025000;211.902000;211.920000;211.888000;211.888000;0 +20260317 025100;211.888000;211.898000;211.874000;211.893000;0 +20260317 025200;211.894000;211.894000;211.865000;211.892000;0 +20260317 025300;211.893000;211.905000;211.891000;211.896000;0 +20260317 025400;211.894000;211.912000;211.879000;211.882000;0 +20260317 025500;211.884000;211.898000;211.855000;211.898000;0 +20260317 025600;211.895000;211.918000;211.892000;211.905000;0 +20260317 025700;211.907000;211.911000;211.883000;211.901000;0 +20260317 025800;211.903000;211.914000;211.890000;211.907000;0 +20260317 025900;211.905000;211.905000;211.860000;211.860000;0 +20260317 030000;211.859000;211.862000;211.818000;211.828000;0 +20260317 030100;211.830000;211.839000;211.796000;211.823000;0 +20260317 030200;211.828000;211.840000;211.798000;211.807000;0 +20260317 030300;211.804000;211.813000;211.791000;211.797000;0 +20260317 030400;211.799000;211.803000;211.756000;211.803000;0 +20260317 030500;211.800000;211.801000;211.765000;211.768000;0 +20260317 030600;211.768000;211.773000;211.728000;211.733000;0 +20260317 030700;211.732000;211.753000;211.718000;211.750000;0 +20260317 030800;211.753000;211.767000;211.725000;211.735000;0 +20260317 030900;211.730000;211.739000;211.679000;211.681000;0 +20260317 031000;211.678000;211.704000;211.673000;211.702000;0 +20260317 031100;211.704000;211.708000;211.672000;211.686000;0 +20260317 031200;211.682000;211.689000;211.647000;211.674000;0 +20260317 031300;211.676000;211.689000;211.668000;211.680000;0 +20260317 031400;211.681000;211.714000;211.674000;211.710000;0 +20260317 031500;211.706000;211.740000;211.681000;211.740000;0 +20260317 031600;211.740000;211.740000;211.694000;211.710000;0 +20260317 031700;211.710000;211.735000;211.705000;211.735000;0 +20260317 031800;211.733000;211.746000;211.717000;211.744000;0 +20260317 031900;211.747000;211.774000;211.732000;211.774000;0 +20260317 032000;211.777000;211.790000;211.762000;211.785000;0 +20260317 032100;211.781000;211.825000;211.781000;211.815000;0 +20260317 032200;211.817000;211.822000;211.799000;211.820000;0 +20260317 032300;211.818000;211.825000;211.813000;211.824000;0 +20260317 032400;211.821000;211.833000;211.808000;211.830000;0 +20260317 032500;211.826000;211.850000;211.819000;211.845000;0 +20260317 032600;211.843000;211.886000;211.839000;211.866000;0 +20260317 032700;211.866000;211.887000;211.854000;211.872000;0 +20260317 032800;211.871000;211.901000;211.868000;211.901000;0 +20260317 032900;211.900000;211.907000;211.862000;211.875000;0 +20260317 033000;211.878000;211.901000;211.878000;211.884000;0 +20260317 033100;211.883000;211.898000;211.873000;211.884000;0 +20260317 033200;211.882000;211.918000;211.877000;211.914000;0 +20260317 033300;211.913000;211.927000;211.891000;211.903000;0 +20260317 033400;211.902000;211.917000;211.896000;211.902000;0 +20260317 033500;211.903000;211.905000;211.843000;211.848000;0 +20260317 033600;211.849000;211.868000;211.846000;211.866000;0 +20260317 033700;211.862000;211.901000;211.862000;211.901000;0 +20260317 033800;211.898000;211.898000;211.870000;211.889000;0 +20260317 033900;211.889000;211.930000;211.887000;211.924000;0 +20260317 034000;211.926000;211.953000;211.912000;211.934000;0 +20260317 034100;211.932000;211.956000;211.925000;211.954000;0 +20260317 034200;211.954000;211.995000;211.948000;211.961000;0 +20260317 034300;211.962000;212.014000;211.962000;211.992000;0 +20260317 034400;211.992000;212.015000;211.980000;211.987000;0 +20260317 034500;211.986000;211.998000;211.968000;211.991000;0 +20260317 034600;211.992000;212.023000;211.971000;211.981000;0 +20260317 034700;211.980000;212.018000;211.970000;212.011000;0 +20260317 034800;212.011000;212.043000;212.011000;212.034000;0 +20260317 034900;212.033000;212.052000;212.028000;212.052000;0 +20260317 035000;212.046000;212.080000;212.040000;212.040000;0 +20260317 035100;212.040000;212.053000;212.015000;212.021000;0 +20260317 035200;212.021000;212.022000;212.001000;212.010000;0 +20260317 035300;212.008000;212.023000;211.967000;211.967000;0 +20260317 035400;211.969000;211.985000;211.965000;211.985000;0 +20260317 035500;211.986000;211.992000;211.965000;211.966000;0 +20260317 035600;211.968000;211.987000;211.962000;211.979000;0 +20260317 035700;211.980000;211.992000;211.963000;211.978000;0 +20260317 035800;211.982000;212.033000;211.978000;212.019000;0 +20260317 035900;212.017000;212.065000;212.017000;212.065000;0 +20260317 040000;212.062000;212.106000;212.040000;212.098000;0 +20260317 040100;212.098000;212.148000;212.095000;212.145000;0 +20260317 040200;212.143000;212.151000;212.130000;212.149000;0 +20260317 040300;212.149000;212.151000;212.109000;212.129000;0 +20260317 040400;212.127000;212.130000;212.103000;212.112000;0 +20260317 040500;212.110000;212.119000;212.088000;212.117000;0 +20260317 040600;212.117000;212.149000;212.107000;212.141000;0 +20260317 040700;212.139000;212.150000;212.125000;212.142000;0 +20260317 040800;212.149000;212.160000;212.127000;212.128000;0 +20260317 040900;212.129000;212.140000;212.120000;212.138000;0 +20260317 041000;212.138000;212.146000;212.132000;212.141000;0 +20260317 041100;212.146000;212.155000;212.129000;212.144000;0 +20260317 041200;212.142000;212.164000;212.128000;212.128000;0 +20260317 041300;212.126000;212.134000;212.109000;212.118000;0 +20260317 041400;212.117000;212.119000;212.093000;212.105000;0 +20260317 041500;212.105000;212.115000;212.094000;212.100000;0 +20260317 041600;212.096000;212.117000;212.090000;212.094000;0 +20260317 041700;212.093000;212.104000;212.074000;212.100000;0 +20260317 041800;212.101000;212.115000;212.084000;212.111000;0 +20260317 041900;212.112000;212.135000;212.101000;212.112000;0 +20260317 042000;212.107000;212.122000;212.099000;212.117000;0 +20260317 042100;212.120000;212.122000;212.103000;212.103000;0 +20260317 042200;212.106000;212.107000;212.086000;212.096000;0 +20260317 042300;212.094000;212.100000;212.058000;212.069000;0 +20260317 042400;212.069000;212.098000;212.066000;212.091000;0 +20260317 042500;212.087000;212.144000;212.080000;212.142000;0 +20260317 042600;212.144000;212.151000;212.116000;212.131000;0 +20260317 042700;212.131000;212.153000;212.111000;212.150000;0 +20260317 042800;212.151000;212.162000;212.138000;212.138000;0 +20260317 042900;212.138000;212.172000;212.130000;212.133000;0 +20260317 043000;212.133000;212.181000;212.125000;212.181000;0 +20260317 043100;212.180000;212.194000;212.170000;212.178000;0 +20260317 043200;212.178000;212.194000;212.164000;212.170000;0 +20260317 043300;212.171000;212.186000;212.162000;212.186000;0 +20260317 043400;212.188000;212.211000;212.180000;212.200000;0 +20260317 043500;212.195000;212.204000;212.169000;212.184000;0 +20260317 043600;212.186000;212.208000;212.185000;212.196000;0 +20260317 043700;212.199000;212.205000;212.182000;212.197000;0 +20260317 043800;212.198000;212.219000;212.198000;212.213000;0 +20260317 043900;212.213000;212.233000;212.193000;212.194000;0 +20260317 044000;212.193000;212.201000;212.168000;212.176000;0 +20260317 044100;212.178000;212.193000;212.171000;212.176000;0 +20260317 044200;212.173000;212.187000;212.156000;212.162000;0 +20260317 044300;212.164000;212.180000;212.163000;212.175000;0 +20260317 044400;212.178000;212.212000;212.178000;212.197000;0 +20260317 044500;212.195000;212.195000;212.154000;212.171000;0 +20260317 044600;212.172000;212.174000;212.156000;212.169000;0 +20260317 044700;212.170000;212.178000;212.157000;212.177000;0 +20260317 044800;212.178000;212.183000;212.160000;212.183000;0 +20260317 044900;212.183000;212.183000;212.167000;212.179000;0 +20260317 045000;212.179000;212.185000;212.168000;212.168000;0 +20260317 045100;212.173000;212.187000;212.161000;212.177000;0 +20260317 045200;212.177000;212.184000;212.168000;212.179000;0 +20260317 045300;212.180000;212.185000;212.137000;212.143000;0 +20260317 045400;212.142000;212.142000;212.116000;212.118000;0 +20260317 045500;212.118000;212.145000;212.107000;212.127000;0 +20260317 045600;212.122000;212.145000;212.112000;212.144000;0 +20260317 045700;212.145000;212.189000;212.140000;212.189000;0 +20260317 045800;212.188000;212.191000;212.170000;212.177000;0 +20260317 045900;212.178000;212.214000;212.177000;212.200000;0 +20260317 050000;212.200000;212.200000;212.134000;212.195000;0 +20260317 050100;212.194000;212.214000;212.180000;212.210000;0 +20260317 050200;212.210000;212.221000;212.191000;212.203000;0 +20260317 050300;212.204000;212.204000;212.155000;212.167000;0 +20260317 050400;212.166000;212.199000;212.166000;212.179000;0 +20260317 050500;212.177000;212.235000;212.153000;212.230000;0 +20260317 050600;212.227000;212.238000;212.193000;212.224000;0 +20260317 050700;212.224000;212.229000;212.201000;212.222000;0 +20260317 050800;212.221000;212.264000;212.221000;212.229000;0 +20260317 050900;212.229000;212.238000;212.222000;212.224000;0 +20260317 051000;212.217000;212.231000;212.201000;212.225000;0 +20260317 051100;212.225000;212.227000;212.213000;212.218000;0 +20260317 051200;212.217000;212.224000;212.209000;212.209000;0 +20260317 051300;212.209000;212.230000;212.209000;212.229000;0 +20260317 051400;212.225000;212.226000;212.188000;212.200000;0 +20260317 051500;212.201000;212.201000;212.150000;212.165000;0 +20260317 051600;212.159000;212.163000;212.122000;212.133000;0 +20260317 051700;212.135000;212.137000;212.110000;212.118000;0 +20260317 051800;212.118000;212.125000;212.092000;212.094000;0 +20260317 051900;212.098000;212.102000;212.074000;212.078000;0 +20260317 052000;212.077000;212.084000;212.062000;212.062000;0 +20260317 052100;212.064000;212.093000;212.064000;212.077000;0 +20260317 052200;212.078000;212.106000;212.078000;212.100000;0 +20260317 052300;212.100000;212.100000;212.068000;212.076000;0 +20260317 052400;212.078000;212.086000;212.053000;212.063000;0 +20260317 052500;212.064000;212.067000;212.050000;212.050000;0 +20260317 052600;212.054000;212.062000;212.042000;212.050000;0 +20260317 052700;212.054000;212.070000;212.043000;212.064000;0 +20260317 052800;212.061000;212.078000;212.057000;212.066000;0 +20260317 052900;212.069000;212.076000;212.055000;212.070000;0 +20260317 053000;212.069000;212.084000;212.061000;212.079000;0 +20260317 053100;212.079000;212.079000;211.992000;212.003000;0 +20260317 053200;212.003000;212.039000;212.002000;212.017000;0 +20260317 053300;212.016000;212.018000;212.001000;212.014000;0 +20260317 053400;212.007000;212.026000;212.002000;212.015000;0 +20260317 053500;212.010000;212.024000;212.001000;212.014000;0 +20260317 053600;212.017000;212.039000;212.017000;212.033000;0 +20260317 053700;212.031000;212.040000;212.022000;212.038000;0 +20260317 053800;212.039000;212.039000;212.009000;212.017000;0 +20260317 053900;212.017000;212.017000;211.987000;211.991000;0 +20260317 054000;211.993000;211.996000;211.975000;211.989000;0 +20260317 054100;211.988000;212.027000;211.984000;212.011000;0 +20260317 054200;212.012000;212.027000;212.005000;212.013000;0 +20260317 054300;212.012000;212.021000;211.996000;212.018000;0 +20260317 054400;212.020000;212.020000;212.005000;212.010000;0 +20260317 054500;212.011000;212.033000;212.011000;212.032000;0 +20260317 054600;212.029000;212.045000;212.024000;212.032000;0 +20260317 054700;212.032000;212.042000;212.013000;212.020000;0 +20260317 054800;212.020000;212.028000;211.991000;212.001000;0 +20260317 054900;212.001000;212.014000;211.995000;212.014000;0 +20260317 055000;212.014000;212.027000;212.006000;212.008000;0 +20260317 055100;212.010000;212.031000;212.004000;212.030000;0 +20260317 055200;212.027000;212.027000;212.003000;212.003000;0 +20260317 055300;212.006000;212.044000;212.006000;212.039000;0 +20260317 055400;212.040000;212.040000;212.022000;212.022000;0 +20260317 055500;212.020000;212.035000;212.006000;212.014000;0 +20260317 055600;212.016000;212.022000;212.006000;212.016000;0 +20260317 055700;212.019000;212.019000;212.004000;212.012000;0 +20260317 055800;212.013000;212.014000;211.978000;211.985000;0 +20260317 055900;211.983000;212.008000;211.979000;212.008000;0 +20260317 060000;212.006000;212.026000;212.005000;212.020000;0 +20260317 060100;212.019000;212.025000;212.007000;212.007000;0 +20260317 060200;212.009000;212.009000;211.997000;212.007000;0 +20260317 060300;212.012000;212.018000;211.997000;212.004000;0 +20260317 060400;212.006000;212.029000;212.001000;212.001000;0 +20260317 060500;212.001000;212.010000;211.999000;211.999000;0 +20260317 060600;211.995000;212.000000;211.967000;212.000000;0 +20260317 060700;212.000000;212.026000;211.994000;212.021000;0 +20260317 060800;212.021000;212.034000;212.009000;212.031000;0 +20260317 060900;212.031000;212.044000;212.027000;212.042000;0 +20260317 061000;212.041000;212.065000;212.037000;212.054000;0 +20260317 061100;212.053000;212.074000;212.051000;212.066000;0 +20260317 061200;212.068000;212.101000;212.068000;212.099000;0 +20260317 061300;212.099000;212.106000;212.067000;212.068000;0 +20260317 061400;212.069000;212.076000;212.052000;212.052000;0 +20260317 061500;212.051000;212.053000;212.030000;212.038000;0 +20260317 061600;212.037000;212.043000;212.027000;212.043000;0 +20260317 061700;212.040000;212.045000;212.007000;212.011000;0 +20260317 061800;212.010000;212.033000;212.002000;212.032000;0 +20260317 061900;212.030000;212.030000;211.978000;211.982000;0 +20260317 062000;211.982000;211.999000;211.973000;211.994000;0 +20260317 062100;211.997000;212.016000;211.990000;212.016000;0 +20260317 062200;212.018000;212.043000;212.003000;212.007000;0 +20260317 062300;212.006000;212.019000;212.000000;212.005000;0 +20260317 062400;212.005000;212.044000;211.984000;212.043000;0 +20260317 062500;212.041000;212.063000;212.035000;212.057000;0 +20260317 062600;212.055000;212.055000;212.015000;212.023000;0 +20260317 062700;212.023000;212.029000;212.009000;212.017000;0 +20260317 062800;212.016000;212.038000;212.015000;212.029000;0 +20260317 062900;212.028000;212.028000;212.004000;212.007000;0 +20260317 063000;212.005000;212.008000;211.963000;211.975000;0 +20260317 063100;211.976000;212.002000;211.976000;211.990000;0 +20260317 063200;211.990000;211.997000;211.982000;211.992000;0 +20260317 063300;211.994000;212.005000;211.981000;211.999000;0 +20260317 063400;211.998000;212.012000;211.985000;211.985000;0 +20260317 063500;211.985000;212.013000;211.976000;212.010000;0 +20260317 063600;212.011000;212.018000;212.000000;212.015000;0 +20260317 063700;212.015000;212.026000;212.008000;212.018000;0 +20260317 063800;212.025000;212.031000;212.011000;212.028000;0 +20260317 063900;212.029000;212.083000;212.018000;212.077000;0 +20260317 064000;212.076000;212.094000;212.070000;212.082000;0 +20260317 064100;212.082000;212.091000;212.050000;212.050000;0 +20260317 064200;212.050000;212.050000;212.024000;212.042000;0 +20260317 064300;212.042000;212.051000;212.030000;212.048000;0 +20260317 064400;212.051000;212.062000;212.045000;212.051000;0 +20260317 064500;212.052000;212.073000;212.051000;212.067000;0 +20260317 064600;212.068000;212.068000;211.978000;211.986000;0 +20260317 064700;211.987000;211.998000;211.950000;211.956000;0 +20260317 064800;211.957000;211.957000;211.896000;211.897000;0 +20260317 064900;211.898000;211.921000;211.889000;211.919000;0 +20260317 065000;211.920000;211.942000;211.902000;211.930000;0 +20260317 065100;211.928000;211.928000;211.890000;211.907000;0 +20260317 065200;211.905000;211.905000;211.876000;211.880000;0 +20260317 065300;211.880000;211.903000;211.875000;211.895000;0 +20260317 065400;211.894000;211.894000;211.824000;211.824000;0 +20260317 065500;211.824000;211.853000;211.824000;211.838000;0 +20260317 065600;211.839000;211.856000;211.819000;211.832000;0 +20260317 065700;211.828000;211.886000;211.828000;211.875000;0 +20260317 065800;211.879000;211.903000;211.873000;211.888000;0 +20260317 065900;211.888000;211.904000;211.866000;211.873000;0 +20260317 070000;211.878000;211.899000;211.868000;211.886000;0 +20260317 070100;211.882000;211.924000;211.882000;211.909000;0 +20260317 070200;211.910000;211.931000;211.874000;211.879000;0 +20260317 070300;211.879000;211.892000;211.836000;211.841000;0 +20260317 070400;211.842000;211.892000;211.842000;211.889000;0 +20260317 070500;211.888000;211.926000;211.887000;211.900000;0 +20260317 070600;211.899000;211.956000;211.899000;211.944000;0 +20260317 070700;211.943000;211.991000;211.939000;211.979000;0 +20260317 070800;211.975000;212.008000;211.960000;212.008000;0 +20260317 070900;212.011000;212.011000;211.989000;211.992000;0 +20260317 071000;211.994000;212.001000;211.981000;211.985000;0 +20260317 071100;211.990000;211.990000;211.962000;211.968000;0 +20260317 071200;211.969000;211.988000;211.966000;211.982000;0 +20260317 071300;211.983000;211.996000;211.963000;211.979000;0 +20260317 071400;211.978000;211.994000;211.968000;211.987000;0 +20260317 071500;211.984000;211.990000;211.955000;211.969000;0 +20260317 071600;211.969000;211.982000;211.953000;211.977000;0 +20260317 071700;211.975000;211.982000;211.952000;211.965000;0 +20260317 071800;211.964000;211.989000;211.953000;211.954000;0 +20260317 071900;211.952000;211.959000;211.928000;211.931000;0 +20260317 072000;211.928000;211.957000;211.920000;211.953000;0 +20260317 072100;211.956000;211.970000;211.945000;211.955000;0 +20260317 072200;211.956000;211.981000;211.937000;211.939000;0 +20260317 072300;211.939000;211.939000;211.900000;211.900000;0 +20260317 072400;211.899000;211.915000;211.883000;211.897000;0 +20260317 072500;211.897000;211.917000;211.893000;211.905000;0 +20260317 072600;211.902000;211.914000;211.882000;211.896000;0 +20260317 072700;211.898000;211.908000;211.894000;211.907000;0 +20260317 072800;211.907000;211.910000;211.888000;211.891000;0 +20260317 072900;211.893000;211.913000;211.872000;211.907000;0 +20260317 073000;211.915000;211.934000;211.901000;211.933000;0 +20260317 073100;211.933000;211.946000;211.927000;211.942000;0 +20260317 073200;211.940000;211.973000;211.935000;211.959000;0 +20260317 073300;211.961000;211.968000;211.942000;211.961000;0 +20260317 073400;211.963000;211.983000;211.960000;211.965000;0 +20260317 073500;211.967000;211.972000;211.940000;211.971000;0 +20260317 073600;211.971000;211.985000;211.947000;211.975000;0 +20260317 073700;211.978000;211.985000;211.958000;211.960000;0 +20260317 073800;211.961000;211.966000;211.942000;211.957000;0 +20260317 073900;211.958000;211.958000;211.919000;211.922000;0 +20260317 074000;211.923000;211.944000;211.911000;211.924000;0 +20260317 074100;211.924000;211.933000;211.872000;211.874000;0 +20260317 074200;211.873000;211.902000;211.870000;211.886000;0 +20260317 074300;211.887000;211.894000;211.873000;211.887000;0 +20260317 074400;211.884000;211.915000;211.878000;211.903000;0 +20260317 074500;211.903000;211.909000;211.891000;211.903000;0 +20260317 074600;211.905000;211.932000;211.905000;211.928000;0 +20260317 074700;211.931000;211.994000;211.930000;211.992000;0 +20260317 074800;211.994000;212.013000;211.964000;212.011000;0 +20260317 074900;212.012000;212.068000;212.003000;212.060000;0 +20260317 075000;212.057000;212.059000;212.035000;212.038000;0 +20260317 075100;212.039000;212.048000;212.027000;212.040000;0 +20260317 075200;212.038000;212.050000;212.031000;212.049000;0 +20260317 075300;212.054000;212.077000;212.054000;212.076000;0 +20260317 075400;212.077000;212.079000;212.052000;212.055000;0 +20260317 075500;212.054000;212.060000;212.017000;212.020000;0 +20260317 075600;212.019000;212.023000;211.999000;212.008000;0 +20260317 075700;212.011000;212.018000;211.996000;212.014000;0 +20260317 075800;212.014000;212.021000;212.006000;212.010000;0 +20260317 075900;212.009000;212.026000;212.007000;212.021000;0 +20260317 080000;212.022000;212.051000;212.022000;212.045000;0 +20260317 080100;212.043000;212.081000;212.042000;212.075000;0 +20260317 080200;212.074000;212.137000;212.055000;212.137000;0 +20260317 080300;212.136000;212.142000;212.105000;212.108000;0 +20260317 080400;212.103000;212.139000;212.098000;212.132000;0 +20260317 080500;212.130000;212.133000;212.101000;212.101000;0 +20260317 080600;212.103000;212.122000;212.092000;212.113000;0 +20260317 080700;212.109000;212.127000;212.091000;212.119000;0 +20260317 080800;212.120000;212.128000;212.074000;212.077000;0 +20260317 080900;212.075000;212.084000;212.058000;212.062000;0 +20260317 081000;212.062000;212.097000;212.056000;212.097000;0 +20260317 081100;212.100000;212.122000;212.077000;212.122000;0 +20260317 081200;212.121000;212.124000;212.080000;212.103000;0 +20260317 081300;212.103000;212.122000;212.089000;212.122000;0 +20260317 081400;212.117000;212.161000;212.108000;212.156000;0 +20260317 081500;212.155000;212.169000;212.132000;212.143000;0 +20260317 081600;212.143000;212.154000;212.121000;212.147000;0 +20260317 081700;212.146000;212.168000;212.142000;212.158000;0 +20260317 081800;212.159000;212.165000;212.134000;212.142000;0 +20260317 081900;212.140000;212.155000;212.115000;212.115000;0 +20260317 082000;212.117000;212.148000;212.106000;212.136000;0 +20260317 082100;212.135000;212.139000;212.098000;212.124000;0 +20260317 082200;212.124000;212.128000;212.077000;212.088000;0 +20260317 082300;212.088000;212.095000;212.073000;212.077000;0 +20260317 082400;212.077000;212.115000;212.062000;212.081000;0 +20260317 082500;212.082000;212.119000;212.070000;212.090000;0 +20260317 082600;212.095000;212.101000;212.070000;212.085000;0 +20260317 082700;212.085000;212.101000;212.068000;212.068000;0 +20260317 082800;212.070000;212.114000;212.058000;212.094000;0 +20260317 082900;212.092000;212.092000;212.049000;212.056000;0 +20260317 083000;212.054000;212.067000;212.021000;212.059000;0 +20260317 083100;212.056000;212.080000;212.046000;212.071000;0 +20260317 083200;212.072000;212.104000;212.062000;212.098000;0 +20260317 083300;212.095000;212.120000;212.082000;212.095000;0 +20260317 083400;212.095000;212.103000;212.038000;212.053000;0 +20260317 083500;212.051000;212.074000;212.042000;212.056000;0 +20260317 083600;212.057000;212.081000;212.040000;212.070000;0 +20260317 083700;212.068000;212.072000;212.012000;212.026000;0 +20260317 083800;212.026000;212.026000;211.976000;212.007000;0 +20260317 083900;212.007000;212.028000;212.007000;212.026000;0 +20260317 084000;212.028000;212.031000;211.961000;211.970000;0 +20260317 084100;211.969000;212.022000;211.969000;212.021000;0 +20260317 084200;212.018000;212.046000;212.008000;212.010000;0 +20260317 084300;212.011000;212.067000;212.011000;212.054000;0 +20260317 084400;212.051000;212.065000;212.017000;212.038000;0 +20260317 084500;212.037000;212.093000;212.023000;212.093000;0 +20260317 084600;212.093000;212.137000;212.091000;212.128000;0 +20260317 084700;212.128000;212.164000;212.128000;212.147000;0 +20260317 084800;212.148000;212.163000;212.101000;212.125000;0 +20260317 084900;212.122000;212.131000;212.106000;212.118000;0 +20260317 085000;212.115000;212.115000;212.066000;212.069000;0 +20260317 085100;212.073000;212.092000;212.068000;212.074000;0 +20260317 085200;212.074000;212.126000;212.070000;212.118000;0 +20260317 085300;212.119000;212.123000;212.087000;212.109000;0 +20260317 085400;212.107000;212.109000;212.084000;212.106000;0 +20260317 085500;212.104000;212.122000;212.102000;212.109000;0 +20260317 085600;212.105000;212.106000;212.040000;212.040000;0 +20260317 085700;212.040000;212.066000;212.017000;212.017000;0 +20260317 085800;212.016000;212.060000;212.016000;212.036000;0 +20260317 085900;212.034000;212.046000;212.016000;212.041000;0 +20260317 090000;212.039000;212.053000;212.017000;212.031000;0 +20260317 090100;212.033000;212.080000;212.033000;212.043000;0 +20260317 090200;212.045000;212.066000;212.025000;212.038000;0 +20260317 090300;212.035000;212.093000;212.033000;212.087000;0 +20260317 090400;212.088000;212.092000;212.065000;212.090000;0 +20260317 090500;212.089000;212.111000;212.082000;212.109000;0 +20260317 090600;212.109000;212.110000;212.040000;212.048000;0 +20260317 090700;212.049000;212.062000;212.021000;212.036000;0 +20260317 090800;212.035000;212.063000;212.033000;212.056000;0 +20260317 090900;212.055000;212.064000;212.045000;212.059000;0 +20260317 091000;212.063000;212.063000;212.030000;212.033000;0 +20260317 091100;212.035000;212.046000;212.026000;212.038000;0 +20260317 091200;212.037000;212.067000;212.036000;212.061000;0 +20260317 091300;212.062000;212.088000;212.053000;212.081000;0 +20260317 091400;212.084000;212.142000;212.074000;212.122000;0 +20260317 091500;212.124000;212.125000;212.098000;212.114000;0 +20260317 091600;212.117000;212.136000;212.109000;212.126000;0 +20260317 091700;212.130000;212.130000;212.083000;212.086000;0 +20260317 091800;212.087000;212.135000;212.087000;212.133000;0 +20260317 091900;212.129000;212.143000;212.110000;212.127000;0 +20260317 092000;212.128000;212.157000;212.118000;212.147000;0 +20260317 092100;212.146000;212.154000;212.136000;212.153000;0 +20260317 092200;212.150000;212.156000;212.123000;212.127000;0 +20260317 092300;212.126000;212.172000;212.126000;212.164000;0 +20260317 092400;212.162000;212.168000;212.129000;212.129000;0 +20260317 092500;212.129000;212.136000;212.081000;212.082000;0 +20260317 092600;212.083000;212.124000;212.080000;212.115000;0 +20260317 092700;212.114000;212.133000;212.114000;212.124000;0 +20260317 092800;212.122000;212.168000;212.117000;212.158000;0 +20260317 092900;212.157000;212.163000;212.141000;212.154000;0 +20260317 093000;212.155000;212.176000;212.152000;212.157000;0 +20260317 093100;212.157000;212.170000;212.152000;212.165000;0 +20260317 093200;212.167000;212.174000;212.141000;212.153000;0 +20260317 093300;212.152000;212.185000;212.138000;212.176000;0 +20260317 093400;212.179000;212.196000;212.172000;212.174000;0 +20260317 093500;212.179000;212.211000;212.173000;212.202000;0 +20260317 093600;212.201000;212.206000;212.181000;212.189000;0 +20260317 093700;212.189000;212.222000;212.188000;212.205000;0 +20260317 093800;212.204000;212.209000;212.175000;212.194000;0 +20260317 093900;212.196000;212.209000;212.187000;212.197000;0 +20260317 094000;212.199000;212.204000;212.176000;212.188000;0 +20260317 094100;212.189000;212.213000;212.184000;212.197000;0 +20260317 094200;212.197000;212.221000;212.193000;212.202000;0 +20260317 094300;212.202000;212.223000;212.196000;212.215000;0 +20260317 094400;212.214000;212.240000;212.208000;212.231000;0 +20260317 094500;212.230000;212.243000;212.217000;212.221000;0 +20260317 094600;212.217000;212.217000;212.192000;212.209000;0 +20260317 094700;212.207000;212.215000;212.185000;212.192000;0 +20260317 094800;212.192000;212.200000;212.172000;212.182000;0 +20260317 094900;212.184000;212.187000;212.150000;212.164000;0 +20260317 095000;212.164000;212.167000;212.139000;212.139000;0 +20260317 095100;212.138000;212.168000;212.134000;212.153000;0 +20260317 095200;212.148000;212.159000;212.111000;212.112000;0 +20260317 095300;212.111000;212.154000;212.111000;212.144000;0 +20260317 095400;212.145000;212.146000;212.115000;212.123000;0 +20260317 095500;212.125000;212.136000;212.111000;212.125000;0 +20260317 095600;212.126000;212.130000;212.090000;212.090000;0 +20260317 095700;212.087000;212.118000;212.078000;212.112000;0 +20260317 095800;212.113000;212.120000;212.103000;212.106000;0 +20260317 095900;212.104000;212.142000;212.099000;212.141000;0 +20260317 100000;212.141000;212.176000;212.137000;212.165000;0 +20260317 100100;212.165000;212.189000;212.161000;212.171000;0 +20260317 100200;212.169000;212.196000;212.163000;212.182000;0 +20260317 100300;212.181000;212.189000;212.160000;212.189000;0 +20260317 100400;212.185000;212.201000;212.166000;212.173000;0 +20260317 100500;212.170000;212.180000;212.152000;212.157000;0 +20260317 100600;212.158000;212.164000;212.132000;212.142000;0 +20260317 100700;212.142000;212.144000;212.118000;212.120000;0 +20260317 100800;212.120000;212.120000;212.092000;212.118000;0 +20260317 100900;212.118000;212.127000;212.107000;212.108000;0 +20260317 101000;212.110000;212.136000;212.100000;212.136000;0 +20260317 101100;212.135000;212.174000;212.135000;212.154000;0 +20260317 101200;212.154000;212.172000;212.154000;212.164000;0 +20260317 101300;212.166000;212.185000;212.154000;212.184000;0 +20260317 101400;212.183000;212.197000;212.168000;212.173000;0 +20260317 101500;212.172000;212.202000;212.172000;212.197000;0 +20260317 101600;212.197000;212.211000;212.189000;212.199000;0 +20260317 101700;212.197000;212.200000;212.170000;212.190000;0 +20260317 101800;212.189000;212.189000;212.152000;212.158000;0 +20260317 101900;212.156000;212.209000;212.156000;212.209000;0 +20260317 102000;212.210000;212.229000;212.070000;212.182000;0 +20260317 102100;212.194000;212.221000;212.187000;212.211000;0 +20260317 102200;212.210000;212.254000;212.197000;212.248000;0 +20260317 102300;212.252000;212.266000;212.238000;212.238000;0 +20260317 102400;212.238000;212.238000;212.212000;212.228000;0 +20260317 102500;212.229000;212.241000;212.205000;212.214000;0 +20260317 102600;212.213000;212.235000;212.199000;212.230000;0 +20260317 102700;212.231000;212.231000;212.177000;212.180000;0 +20260317 102800;212.183000;212.188000;212.169000;212.180000;0 +20260317 102900;212.180000;212.185000;212.163000;212.164000;0 +20260317 103000;212.161000;212.181000;212.152000;212.163000;0 +20260317 103100;212.168000;212.175000;212.154000;212.171000;0 +20260317 103200;212.173000;212.202000;212.160000;212.170000;0 +20260317 103300;212.170000;212.202000;212.170000;212.178000;0 +20260317 103400;212.182000;212.192000;212.173000;212.184000;0 +20260317 103500;212.183000;212.194000;212.159000;212.159000;0 +20260317 103600;212.159000;212.190000;212.148000;212.152000;0 +20260317 103700;212.150000;212.179000;212.149000;212.175000;0 +20260317 103800;212.175000;212.199000;212.172000;212.187000;0 +20260317 103900;212.189000;212.212000;212.187000;212.195000;0 +20260317 104000;212.196000;212.196000;212.162000;212.165000;0 +20260317 104100;212.163000;212.180000;212.158000;212.172000;0 +20260317 104200;212.172000;212.193000;212.172000;212.179000;0 +20260317 104300;212.180000;212.207000;212.179000;212.200000;0 +20260317 104400;212.202000;212.205000;212.189000;212.202000;0 +20260317 104500;212.201000;212.217000;212.190000;212.205000;0 +20260317 104600;212.203000;212.230000;212.197000;212.220000;0 +20260317 104700;212.221000;212.240000;212.219000;212.240000;0 +20260317 104800;212.240000;212.252000;212.216000;212.239000;0 +20260317 104900;212.239000;212.243000;212.223000;212.234000;0 +20260317 105000;212.233000;212.241000;212.214000;212.230000;0 +20260317 105100;212.231000;212.242000;212.212000;212.213000;0 +20260317 105200;212.213000;212.239000;212.201000;212.238000;0 +20260317 105300;212.234000;212.237000;212.208000;212.212000;0 +20260317 105400;212.214000;212.224000;212.182000;212.201000;0 +20260317 105500;212.204000;212.215000;212.194000;212.205000;0 +20260317 105600;212.205000;212.205000;212.146000;212.146000;0 +20260317 105700;212.146000;212.226000;212.144000;212.213000;0 +20260317 105800;212.213000;212.217000;212.197000;212.209000;0 +20260317 105900;212.208000;212.209000;212.183000;212.187000;0 +20260317 110000;212.187000;212.192000;212.165000;212.182000;0 +20260317 110100;212.179000;212.179000;212.142000;212.145000;0 +20260317 110200;212.148000;212.166000;212.140000;212.166000;0 +20260317 110300;212.165000;212.179000;212.144000;212.164000;0 +20260317 110400;212.164000;212.181000;212.158000;212.174000;0 +20260317 110500;212.173000;212.184000;212.155000;212.167000;0 +20260317 110600;212.168000;212.188000;212.165000;212.178000;0 +20260317 110700;212.178000;212.182000;212.156000;212.172000;0 +20260317 110800;212.172000;212.187000;212.162000;212.173000;0 +20260317 110900;212.174000;212.176000;212.133000;212.143000;0 +20260317 111000;212.140000;212.176000;212.137000;212.168000;0 +20260317 111100;212.164000;212.179000;212.162000;212.174000;0 +20260317 111200;212.174000;212.177000;212.163000;212.177000;0 +20260317 111300;212.177000;212.182000;212.165000;212.177000;0 +20260317 111400;212.177000;212.181000;212.146000;212.146000;0 +20260317 111500;212.150000;212.167000;212.135000;212.156000;0 +20260317 111600;212.156000;212.179000;212.139000;212.172000;0 +20260317 111700;212.170000;212.210000;212.170000;212.200000;0 +20260317 111800;212.198000;212.215000;212.189000;212.206000;0 +20260317 111900;212.206000;212.217000;212.181000;212.195000;0 +20260317 112000;212.195000;212.197000;212.170000;212.178000;0 +20260317 112100;212.176000;212.179000;212.140000;212.152000;0 +20260317 112200;212.153000;212.153000;212.122000;212.134000;0 +20260317 112300;212.135000;212.142000;212.108000;212.116000;0 +20260317 112400;212.115000;212.137000;212.112000;212.123000;0 +20260317 112500;212.122000;212.130000;212.107000;212.120000;0 +20260317 112600;212.121000;212.121000;212.087000;212.087000;0 +20260317 112700;212.090000;212.097000;212.077000;212.077000;0 +20260317 112800;212.079000;212.094000;212.062000;212.074000;0 +20260317 112900;212.079000;212.083000;212.072000;212.072000;0 +20260317 113000;212.072000;212.082000;212.036000;212.048000;0 +20260317 113100;212.045000;212.053000;212.017000;212.047000;0 +20260317 113200;212.046000;212.080000;212.045000;212.069000;0 +20260317 113300;212.070000;212.074000;212.055000;212.067000;0 +20260317 113400;212.065000;212.066000;212.043000;212.063000;0 +20260317 113500;212.064000;212.078000;212.050000;212.060000;0 +20260317 113600;212.061000;212.070000;212.047000;212.064000;0 +20260317 113700;212.065000;212.091000;212.065000;212.088000;0 +20260317 113800;212.086000;212.101000;212.078000;212.090000;0 +20260317 113900;212.090000;212.118000;212.081000;212.114000;0 +20260317 114000;212.117000;212.154000;212.113000;212.138000;0 +20260317 114100;212.139000;212.139000;212.104000;212.119000;0 +20260317 114200;212.121000;212.131000;212.112000;212.120000;0 +20260317 114300;212.123000;212.137000;212.114000;212.117000;0 +20260317 114400;212.119000;212.139000;212.117000;212.139000;0 +20260317 114500;212.138000;212.168000;212.137000;212.162000;0 +20260317 114600;212.161000;212.163000;212.148000;212.154000;0 +20260317 114700;212.153000;212.153000;212.141000;212.141000;0 +20260317 114800;212.138000;212.141000;212.125000;212.133000;0 +20260317 114900;212.129000;212.139000;212.123000;212.134000;0 +20260317 115000;212.135000;212.148000;212.129000;212.140000;0 +20260317 115100;212.140000;212.145000;212.123000;212.124000;0 +20260317 115200;212.123000;212.139000;212.123000;212.134000;0 +20260317 115300;212.132000;212.168000;212.128000;212.166000;0 +20260317 115400;212.170000;212.181000;212.164000;212.180000;0 +20260317 115500;212.180000;212.182000;212.163000;212.167000;0 +20260317 115600;212.167000;212.174000;212.152000;212.156000;0 +20260317 115700;212.155000;212.166000;212.153000;212.163000;0 +20260317 115800;212.165000;212.170000;212.149000;212.151000;0 +20260317 115900;212.153000;212.153000;212.131000;212.141000;0 +20260317 120000;212.141000;212.164000;212.140000;212.159000;0 +20260317 120100;212.161000;212.165000;212.150000;212.162000;0 +20260317 120200;212.159000;212.183000;212.152000;212.172000;0 +20260317 120300;212.172000;212.184000;212.165000;212.180000;0 +20260317 120400;212.181000;212.182000;212.171000;212.171000;0 +20260317 120500;212.171000;212.185000;212.167000;212.168000;0 +20260317 120600;212.169000;212.179000;212.162000;212.179000;0 +20260317 120700;212.179000;212.186000;212.172000;212.185000;0 +20260317 120800;212.185000;212.194000;212.181000;212.186000;0 +20260317 120900;212.186000;212.200000;212.183000;212.185000;0 +20260317 121000;212.185000;212.196000;212.175000;212.184000;0 +20260317 121100;212.184000;212.186000;212.164000;212.167000;0 +20260317 121200;212.171000;212.171000;212.148000;212.162000;0 +20260317 121300;212.163000;212.185000;212.155000;212.183000;0 +20260317 121400;212.181000;212.186000;212.169000;212.172000;0 +20260317 121500;212.174000;212.185000;212.159000;212.179000;0 +20260317 121600;212.178000;212.186000;212.168000;212.184000;0 +20260317 121700;212.182000;212.199000;212.182000;212.196000;0 +20260317 121800;212.195000;212.204000;212.175000;212.197000;0 +20260317 121900;212.198000;212.204000;212.188000;212.200000;0 +20260317 122000;212.201000;212.205000;212.189000;212.191000;0 +20260317 122100;212.194000;212.202000;212.181000;212.187000;0 +20260317 122200;212.191000;212.193000;212.170000;212.184000;0 +20260317 122300;212.185000;212.233000;212.173000;212.233000;0 +20260317 122400;212.232000;212.247000;212.226000;212.237000;0 +20260317 122500;212.236000;212.247000;212.233000;212.243000;0 +20260317 122600;212.244000;212.252000;212.237000;212.237000;0 +20260317 122700;212.239000;212.243000;212.228000;212.240000;0 +20260317 122800;212.241000;212.246000;212.231000;212.243000;0 +20260317 122900;212.241000;212.254000;212.231000;212.233000;0 +20260317 123000;212.232000;212.232000;212.218000;212.224000;0 +20260317 123100;212.224000;212.233000;212.218000;212.227000;0 +20260317 123200;212.225000;212.226000;212.187000;212.191000;0 +20260317 123300;212.191000;212.197000;212.175000;212.176000;0 +20260317 123400;212.177000;212.187000;212.173000;212.178000;0 +20260317 123500;212.178000;212.194000;212.178000;212.183000;0 +20260317 123600;212.183000;212.209000;212.183000;212.208000;0 +20260317 123700;212.212000;212.240000;212.211000;212.236000;0 +20260317 123800;212.236000;212.236000;212.212000;212.212000;0 +20260317 123900;212.214000;212.251000;212.212000;212.242000;0 +20260317 124000;212.237000;212.249000;212.236000;212.244000;0 +20260317 124100;212.246000;212.264000;212.236000;212.264000;0 +20260317 124200;212.260000;212.260000;212.241000;212.243000;0 +20260317 124300;212.242000;212.247000;212.224000;212.235000;0 +20260317 124400;212.237000;212.253000;212.236000;212.239000;0 +20260317 124500;212.239000;212.263000;212.239000;212.256000;0 +20260317 124600;212.255000;212.299000;212.253000;212.299000;0 +20260317 124700;212.298000;212.318000;212.294000;212.301000;0 +20260317 124800;212.302000;212.333000;212.302000;212.333000;0 +20260317 124900;212.333000;212.337000;212.323000;212.329000;0 +20260317 125000;212.330000;212.344000;212.321000;212.332000;0 +20260317 125100;212.330000;212.338000;212.325000;212.338000;0 +20260317 125200;212.337000;212.348000;212.330000;212.335000;0 +20260317 125300;212.343000;212.352000;212.331000;212.352000;0 +20260317 125400;212.361000;212.361000;212.342000;212.342000;0 +20260317 125500;212.342000;212.345000;212.320000;212.332000;0 +20260317 125600;212.332000;212.343000;212.315000;212.339000;0 +20260317 125700;212.334000;212.342000;212.329000;212.340000;0 +20260317 125800;212.341000;212.376000;212.331000;212.361000;0 +20260317 125900;212.362000;212.368000;212.356000;212.361000;0 +20260317 130000;212.362000;212.392000;212.362000;212.384000;0 +20260317 130100;212.384000;212.398000;212.378000;212.392000;0 +20260317 130200;212.392000;212.406000;212.390000;212.398000;0 +20260317 130300;212.396000;212.403000;212.380000;212.391000;0 +20260317 130400;212.392000;212.404000;212.378000;212.402000;0 +20260317 130500;212.401000;212.402000;212.382000;212.386000;0 +20260317 130600;212.387000;212.392000;212.378000;212.379000;0 +20260317 130700;212.378000;212.389000;212.375000;212.388000;0 +20260317 130800;212.388000;212.388000;212.368000;212.368000;0 +20260317 130900;212.368000;212.388000;212.368000;212.383000;0 +20260317 131000;212.384000;212.384000;212.364000;212.371000;0 +20260317 131100;212.374000;212.383000;212.366000;212.375000;0 +20260317 131200;212.374000;212.395000;212.374000;212.383000;0 +20260317 131300;212.383000;212.387000;212.372000;212.376000;0 +20260317 131400;212.375000;212.396000;212.375000;212.382000;0 +20260317 131500;212.381000;212.392000;212.369000;212.371000;0 +20260317 131600;212.372000;212.381000;212.358000;212.360000;0 +20260317 131700;212.363000;212.364000;212.344000;212.345000;0 +20260317 131800;212.345000;212.345000;212.325000;212.329000;0 +20260317 131900;212.327000;212.359000;212.326000;212.358000;0 +20260317 132000;212.359000;212.364000;212.354000;212.361000;0 +20260317 132100;212.362000;212.363000;212.352000;212.353000;0 +20260317 132200;212.352000;212.364000;212.352000;212.359000;0 +20260317 132300;212.360000;212.362000;212.348000;212.353000;0 +20260317 132400;212.355000;212.362000;212.351000;212.355000;0 +20260317 132500;212.360000;212.373000;212.359000;212.362000;0 +20260317 132600;212.362000;212.367000;212.357000;212.365000;0 +20260317 132700;212.367000;212.375000;212.360000;212.366000;0 +20260317 132800;212.367000;212.373000;212.359000;212.360000;0 +20260317 132900;212.361000;212.379000;212.361000;212.379000;0 +20260317 133000;212.375000;212.390000;212.370000;212.381000;0 +20260317 133100;212.379000;212.394000;212.379000;212.380000;0 +20260317 133200;212.385000;212.397000;212.378000;212.395000;0 +20260317 133300;212.395000;212.402000;212.386000;212.387000;0 +20260317 133400;212.389000;212.398000;212.387000;212.397000;0 +20260317 133500;212.394000;212.402000;212.390000;212.399000;0 +20260317 133600;212.399000;212.411000;212.399000;212.402000;0 +20260317 133700;212.408000;212.414000;212.400000;212.414000;0 +20260317 133800;212.415000;212.423000;212.411000;212.423000;0 +20260317 133900;212.421000;212.428000;212.398000;212.400000;0 +20260317 134000;212.403000;212.408000;212.388000;212.393000;0 +20260317 134100;212.394000;212.405000;212.391000;212.402000;0 +20260317 134200;212.404000;212.404000;212.398000;212.400000;0 +20260317 134300;212.403000;212.423000;212.400000;212.419000;0 +20260317 134400;212.417000;212.420000;212.401000;212.409000;0 +20260317 134500;212.408000;212.410000;212.402000;212.408000;0 +20260317 134600;212.410000;212.410000;212.385000;212.392000;0 +20260317 134700;212.392000;212.396000;212.381000;212.386000;0 +20260317 134800;212.385000;212.401000;212.383000;212.395000;0 +20260317 134900;212.395000;212.399000;212.388000;212.397000;0 +20260317 135000;212.396000;212.399000;212.390000;212.391000;0 +20260317 135100;212.393000;212.410000;212.391000;212.410000;0 +20260317 135200;212.409000;212.411000;212.402000;212.404000;0 +20260317 135300;212.401000;212.412000;212.401000;212.409000;0 +20260317 135400;212.409000;212.419000;212.407000;212.411000;0 +20260317 135500;212.409000;212.409000;212.396000;212.401000;0 +20260317 135600;212.403000;212.412000;212.389000;212.407000;0 +20260317 135700;212.408000;212.416000;212.405000;212.408000;0 +20260317 135800;212.408000;212.428000;212.403000;212.428000;0 +20260317 135900;212.429000;212.434000;212.415000;212.417000;0 +20260317 140000;212.424000;212.429000;212.413000;212.417000;0 +20260317 140100;212.424000;212.446000;212.422000;212.431000;0 +20260317 140200;212.432000;212.438000;212.417000;212.418000;0 +20260317 140300;212.420000;212.425000;212.405000;212.425000;0 +20260317 140400;212.424000;212.434000;212.424000;212.432000;0 +20260317 140500;212.431000;212.449000;212.429000;212.431000;0 +20260317 140600;212.431000;212.442000;212.416000;212.418000;0 +20260317 140700;212.421000;212.437000;212.414000;212.420000;0 +20260317 140800;212.419000;212.426000;212.418000;212.425000;0 +20260317 140900;212.424000;212.435000;212.424000;212.425000;0 +20260317 141000;212.426000;212.439000;212.422000;212.433000;0 +20260317 141100;212.432000;212.433000;212.427000;212.431000;0 +20260317 141200;212.430000;212.438000;212.425000;212.438000;0 +20260317 141300;212.435000;212.456000;212.427000;212.449000;0 +20260317 141400;212.450000;212.471000;212.444000;212.467000;0 +20260317 141500;212.468000;212.468000;212.448000;212.462000;0 +20260317 141600;212.459000;212.465000;212.455000;212.463000;0 +20260317 141700;212.462000;212.467000;212.447000;212.450000;0 +20260317 141800;212.450000;212.468000;212.440000;212.464000;0 +20260317 141900;212.463000;212.466000;212.449000;212.463000;0 +20260317 142000;212.463000;212.476000;212.452000;212.454000;0 +20260317 142100;212.454000;212.456000;212.447000;212.449000;0 +20260317 142200;212.452000;212.454000;212.433000;212.434000;0 +20260317 142300;212.435000;212.442000;212.431000;212.431000;0 +20260317 142400;212.432000;212.432000;212.423000;212.423000;0 +20260317 142500;212.422000;212.426000;212.406000;212.409000;0 +20260317 142600;212.411000;212.415000;212.411000;212.414000;0 +20260317 142700;212.409000;212.412000;212.391000;212.392000;0 +20260317 142800;212.391000;212.415000;212.391000;212.409000;0 +20260317 142900;212.408000;212.408000;212.385000;212.396000;0 +20260317 143000;212.394000;212.416000;212.389000;212.404000;0 +20260317 143100;212.404000;212.412000;212.392000;212.394000;0 +20260317 143200;212.395000;212.403000;212.383000;212.390000;0 +20260317 143300;212.390000;212.404000;212.383000;212.395000;0 +20260317 143400;212.394000;212.397000;212.376000;212.380000;0 +20260317 143500;212.378000;212.397000;212.375000;212.397000;0 +20260317 143600;212.397000;212.397000;212.382000;212.382000;0 +20260317 143700;212.382000;212.384000;212.372000;212.372000;0 +20260317 143800;212.376000;212.389000;212.376000;212.387000;0 +20260317 143900;212.385000;212.391000;212.382000;212.390000;0 +20260317 144000;212.391000;212.393000;212.384000;212.389000;0 +20260317 144100;212.387000;212.404000;212.387000;212.399000;0 +20260317 144200;212.398000;212.401000;212.392000;212.394000;0 +20260317 144300;212.399000;212.399000;212.384000;212.391000;0 +20260317 144400;212.392000;212.411000;212.390000;212.405000;0 +20260317 144500;212.408000;212.445000;212.408000;212.445000;0 +20260317 144600;212.445000;212.449000;212.438000;212.441000;0 +20260317 144700;212.444000;212.447000;212.432000;212.432000;0 +20260317 144800;212.436000;212.447000;212.433000;212.443000;0 +20260317 144900;212.442000;212.453000;212.434000;212.436000;0 +20260317 145000;212.434000;212.434000;212.411000;212.415000;0 +20260317 145100;212.413000;212.423000;212.413000;212.419000;0 +20260317 145200;212.418000;212.420000;212.404000;212.411000;0 +20260317 145300;212.410000;212.422000;212.396000;212.411000;0 +20260317 145400;212.410000;212.419000;212.401000;212.419000;0 +20260317 145500;212.416000;212.425000;212.395000;212.396000;0 +20260317 145600;212.397000;212.400000;212.378000;212.384000;0 +20260317 145700;212.384000;212.390000;212.354000;212.358000;0 +20260317 145800;212.358000;212.375000;212.357000;212.359000;0 +20260317 145900;212.358000;212.385000;212.357000;212.377000;0 +20260317 150000;212.377000;212.385000;212.354000;212.373000;0 +20260317 150100;212.373000;212.399000;212.366000;212.366000;0 +20260317 150200;212.371000;212.385000;212.368000;212.375000;0 +20260317 150300;212.381000;212.401000;212.381000;212.390000;0 +20260317 150400;212.394000;212.415000;212.389000;212.397000;0 +20260317 150500;212.395000;212.404000;212.388000;212.391000;0 +20260317 150600;212.386000;212.400000;212.361000;212.372000;0 +20260317 150700;212.374000;212.378000;212.369000;212.378000;0 +20260317 150800;212.379000;212.379000;212.375000;212.378000;0 +20260317 150900;212.379000;212.386000;212.373000;212.376000;0 +20260317 151000;212.381000;212.387000;212.377000;212.382000;0 +20260317 151100;212.388000;212.388000;212.362000;212.366000;0 +20260317 151200;212.368000;212.368000;212.353000;212.357000;0 +20260317 151300;212.364000;212.372000;212.363000;212.366000;0 +20260317 151400;212.365000;212.370000;212.365000;212.367000;0 +20260317 151500;212.367000;212.376000;212.367000;212.375000;0 +20260317 151600;212.376000;212.378000;212.366000;212.366000;0 +20260317 151700;212.360000;212.364000;212.349000;212.350000;0 +20260317 151800;212.349000;212.368000;212.349000;212.365000;0 +20260317 151900;212.368000;212.375000;212.365000;212.374000;0 +20260317 152000;212.373000;212.374000;212.369000;212.372000;0 +20260317 152100;212.372000;212.374000;212.363000;212.364000;0 +20260317 152200;212.364000;212.366000;212.363000;212.363000;0 +20260317 152300;212.364000;212.366000;212.363000;212.363000;0 +20260317 152400;212.366000;212.368000;212.360000;212.366000;0 +20260317 152500;212.366000;212.377000;212.366000;212.369000;0 +20260317 152600;212.369000;212.369000;212.358000;212.364000;0 +20260317 152700;212.365000;212.365000;212.357000;212.359000;0 +20260317 152800;212.357000;212.361000;212.349000;212.349000;0 +20260317 152900;212.351000;212.352000;212.346000;212.350000;0 +20260317 153000;212.352000;212.358000;212.352000;212.356000;0 +20260317 153100;212.356000;212.367000;212.356000;212.365000;0 +20260317 153200;212.364000;212.375000;212.362000;212.365000;0 +20260317 153300;212.366000;212.373000;212.363000;212.372000;0 +20260317 153400;212.373000;212.381000;212.373000;212.378000;0 +20260317 153500;212.375000;212.383000;212.374000;212.383000;0 +20260317 153600;212.382000;212.382000;212.369000;212.369000;0 +20260317 153700;212.370000;212.370000;212.369000;212.369000;0 +20260317 153800;212.370000;212.372000;212.369000;212.370000;0 +20260317 153900;212.371000;212.374000;212.352000;212.353000;0 +20260317 154000;212.355000;212.360000;212.353000;212.358000;0 +20260317 154100;212.357000;212.359000;212.357000;212.357000;0 +20260317 154200;212.357000;212.357000;212.342000;212.351000;0 +20260317 154300;212.348000;212.351000;212.348000;212.350000;0 +20260317 154400;212.350000;212.361000;212.348000;212.356000;0 +20260317 154500;212.356000;212.361000;212.352000;212.357000;0 +20260317 154600;212.360000;212.368000;212.359000;212.366000;0 +20260317 154700;212.365000;212.375000;212.359000;212.362000;0 +20260317 154800;212.360000;212.369000;212.360000;212.362000;0 +20260317 154900;212.366000;212.383000;212.363000;212.367000;0 +20260317 155000;212.370000;212.370000;212.353000;212.364000;0 +20260317 155100;212.361000;212.363000;212.345000;212.348000;0 +20260317 155200;212.346000;212.364000;212.343000;212.361000;0 +20260317 155300;212.361000;212.362000;212.353000;212.359000;0 +20260317 155400;212.359000;212.365000;212.353000;212.358000;0 +20260317 155500;212.353000;212.375000;212.346000;212.369000;0 +20260317 155600;212.363000;212.388000;212.361000;212.383000;0 +20260317 155700;212.378000;212.397000;212.371000;212.384000;0 +20260317 155800;212.384000;212.384000;212.327000;212.331000;0 +20260317 155900;212.330000;212.353000;212.300000;212.308000;0 +20260317 160000;212.309000;212.309000;212.309000;212.309000;0 +20260317 160400;212.275000;212.275000;212.275000;212.275000;0 +20260317 160500;212.284000;212.285000;212.284000;212.285000;0 +20260317 160600;212.285000;212.285000;212.285000;212.285000;0 +20260317 160700;212.286000;212.286000;212.272000;212.273000;0 +20260317 160800;212.272000;212.274000;212.272000;212.274000;0 +20260317 160900;212.271000;212.329000;212.118000;212.169000;0 +20260317 161000;212.179000;212.201000;212.179000;212.201000;0 +20260317 161100;212.200000;212.286000;212.132000;212.286000;0 +20260317 161200;212.294000;212.307000;212.292000;212.307000;0 +20260317 161300;212.307000;212.307000;212.301000;212.301000;0 +20260317 161400;212.302000;212.325000;212.292000;212.292000;0 +20260317 161500;212.317000;212.366000;212.317000;212.365000;0 +20260317 161600;212.351000;212.368000;212.237000;212.350000;0 +20260317 161700;212.354000;212.361000;212.246000;212.309000;0 +20260317 161800;212.309000;212.330000;212.298000;212.328000;0 +20260317 161900;212.327000;212.330000;212.297000;212.298000;0 +20260317 162000;212.303000;212.319000;212.303000;212.307000;0 +20260317 162100;212.307000;212.307000;212.203000;212.209000;0 +20260317 162200;212.211000;212.229000;212.211000;212.228000;0 +20260317 162300;212.228000;212.233000;212.203000;212.203000;0 +20260317 162400;212.200000;212.228000;212.195000;212.228000;0 +20260317 162500;212.231000;212.271000;212.212000;212.270000;0 +20260317 162600;212.272000;212.279000;212.272000;212.277000;0 +20260317 162700;212.279000;212.289000;212.279000;212.286000;0 +20260317 162800;212.289000;212.294000;212.277000;212.285000;0 +20260317 162900;212.286000;212.310000;212.269000;212.309000;0 +20260317 163000;212.309000;212.322000;212.294000;212.322000;0 +20260317 163100;212.322000;212.332000;212.302000;212.305000;0 +20260317 163200;212.306000;212.332000;212.297000;212.301000;0 +20260317 163300;212.301000;212.332000;212.299000;212.310000;0 +20260317 163400;212.310000;212.330000;212.309000;212.320000;0 +20260317 163500;212.320000;212.326000;212.307000;212.307000;0 +20260317 163600;212.305000;212.323000;212.303000;212.315000;0 +20260317 163700;212.319000;212.323000;212.311000;212.323000;0 +20260317 163800;212.320000;212.327000;212.310000;212.320000;0 +20260317 163900;212.320000;212.325000;212.306000;212.306000;0 +20260317 164000;212.305000;212.316000;212.305000;212.314000;0 +20260317 164100;212.317000;212.324000;212.309000;212.311000;0 +20260317 164200;212.311000;212.328000;212.311000;212.322000;0 +20260317 164300;212.324000;212.326000;212.310000;212.313000;0 +20260317 164400;212.313000;212.323000;212.263000;212.268000;0 +20260317 164500;212.267000;212.322000;212.265000;212.322000;0 +20260317 164600;212.326000;212.327000;212.317000;212.319000;0 +20260317 164700;212.318000;212.318000;212.318000;212.318000;0 +20260317 164800;212.318000;212.325000;212.298000;212.320000;0 +20260317 164900;212.321000;212.327000;212.318000;212.320000;0 +20260317 165000;212.316000;212.325000;212.316000;212.320000;0 +20260317 165100;212.320000;212.326000;212.318000;212.318000;0 +20260317 165200;212.318000;212.338000;212.314000;212.326000;0 +20260317 165300;212.327000;212.358000;212.322000;212.343000;0 +20260317 165400;212.343000;212.344000;212.316000;212.323000;0 +20260317 165500;212.322000;212.348000;212.317000;212.327000;0 +20260317 165600;212.327000;212.344000;212.317000;212.330000;0 +20260317 165700;212.330000;212.347000;212.322000;212.340000;0 +20260317 165800;212.335000;212.366000;212.335000;212.361000;0 +20260317 165900;212.361000;212.361000;212.332000;212.333000;0 +20260317 170000;212.326000;212.339000;212.315000;212.331000;0 +20260317 170100;212.315000;212.331000;212.312000;212.328000;0 +20260317 170200;212.328000;212.346000;212.322000;212.341000;0 +20260317 170300;212.340000;212.367000;212.338000;212.340000;0 +20260317 170400;212.338000;212.355000;212.325000;212.333000;0 +20260317 170500;212.332000;212.360000;212.284000;212.300000;0 +20260317 170600;212.320000;212.355000;212.310000;212.345000;0 +20260317 170700;212.339000;212.362000;212.322000;212.360000;0 +20260317 170800;212.360000;212.361000;212.325000;212.340000;0 +20260317 170900;212.332000;212.342000;212.292000;212.315000;0 +20260317 171000;212.325000;212.331000;212.299000;212.308000;0 +20260317 171100;212.309000;212.313000;212.299000;212.313000;0 +20260317 171200;212.315000;212.338000;212.304000;212.335000;0 +20260317 171300;212.338000;212.341000;212.330000;212.331000;0 +20260317 171400;212.332000;212.343000;212.304000;212.312000;0 +20260317 171500;212.307000;212.307000;212.276000;212.289000;0 +20260317 171600;212.290000;212.290000;212.269000;212.280000;0 +20260317 171700;212.285000;212.297000;212.285000;212.296000;0 +20260317 171800;212.296000;212.304000;212.296000;212.296000;0 +20260317 171900;212.297000;212.300000;212.295000;212.299000;0 +20260317 172000;212.301000;212.321000;212.301000;212.318000;0 +20260317 172100;212.318000;212.338000;212.315000;212.334000;0 +20260317 172200;212.336000;212.345000;212.313000;212.324000;0 +20260317 172300;212.321000;212.333000;212.314000;212.332000;0 +20260317 172400;212.332000;212.332000;212.319000;212.320000;0 +20260317 172500;212.320000;212.321000;212.308000;212.314000;0 +20260317 172600;212.313000;212.342000;212.312000;212.331000;0 +20260317 172700;212.332000;212.332000;212.317000;212.328000;0 +20260317 172800;212.331000;212.334000;212.317000;212.334000;0 +20260317 172900;212.338000;212.357000;212.334000;212.357000;0 +20260317 173000;212.361000;212.389000;212.344000;212.371000;0 +20260317 173100;212.372000;212.389000;212.360000;212.383000;0 +20260317 173200;212.391000;212.398000;212.391000;212.392000;0 +20260317 173300;212.391000;212.399000;212.387000;212.391000;0 +20260317 173400;212.387000;212.409000;212.373000;212.373000;0 +20260317 173500;212.386000;212.406000;212.382000;212.393000;0 +20260317 173600;212.389000;212.410000;212.377000;212.389000;0 +20260317 173700;212.392000;212.412000;212.378000;212.383000;0 +20260317 173800;212.385000;212.410000;212.382000;212.394000;0 +20260317 173900;212.397000;212.402000;212.376000;212.402000;0 +20260317 174000;212.388000;212.392000;212.378000;212.382000;0 +20260317 174100;212.382000;212.382000;212.359000;212.369000;0 +20260317 174200;212.365000;212.371000;212.361000;212.367000;0 +20260317 174300;212.373000;212.381000;212.358000;212.366000;0 +20260317 174400;212.367000;212.387000;212.353000;212.369000;0 +20260317 174500;212.372000;212.377000;212.352000;212.370000;0 +20260317 174600;212.369000;212.373000;212.353000;212.356000;0 +20260317 174700;212.357000;212.362000;212.344000;212.349000;0 +20260317 174800;212.349000;212.371000;212.349000;212.355000;0 +20260317 174900;212.355000;212.366000;212.346000;212.358000;0 +20260317 175000;212.362000;212.369000;212.357000;212.360000;0 +20260317 175100;212.357000;212.387000;212.357000;212.369000;0 +20260317 175200;212.364000;212.376000;212.352000;212.364000;0 +20260317 175300;212.363000;212.386000;212.363000;212.386000;0 +20260317 175400;212.385000;212.385000;212.362000;212.366000;0 +20260317 175500;212.366000;212.391000;212.350000;212.368000;0 +20260317 175600;212.369000;212.373000;212.360000;212.366000;0 +20260317 175700;212.368000;212.368000;212.352000;212.353000;0 +20260317 175800;212.353000;212.356000;212.349000;212.352000;0 +20260317 175900;212.352000;212.355000;212.342000;212.352000;0 +20260317 180000;212.353000;212.362000;212.344000;212.345000;0 +20260317 180100;212.346000;212.362000;212.346000;212.354000;0 +20260317 180200;212.354000;212.358000;212.320000;212.342000;0 +20260317 180300;212.340000;212.346000;212.335000;212.341000;0 +20260317 180400;212.339000;212.345000;212.333000;212.334000;0 +20260317 180500;212.333000;212.355000;212.332000;212.349000;0 +20260317 180600;212.347000;212.350000;212.335000;212.347000;0 +20260317 180700;212.347000;212.349000;212.334000;212.347000;0 +20260317 180800;212.347000;212.360000;212.337000;212.339000;0 +20260317 180900;212.339000;212.359000;212.331000;212.355000;0 +20260317 181000;212.343000;212.355000;212.341000;212.349000;0 +20260317 181100;212.348000;212.348000;212.334000;212.342000;0 +20260317 181200;212.342000;212.347000;212.330000;212.330000;0 +20260317 181300;212.330000;212.334000;212.329000;212.334000;0 +20260317 181400;212.333000;212.343000;212.331000;212.336000;0 +20260317 181500;212.336000;212.336000;212.325000;212.329000;0 +20260317 181600;212.331000;212.331000;212.326000;212.329000;0 +20260317 181700;212.328000;212.329000;212.313000;212.315000;0 +20260317 181800;212.316000;212.328000;212.314000;212.327000;0 +20260317 181900;212.327000;212.328000;212.318000;212.323000;0 +20260317 182000;212.322000;212.322000;212.286000;212.305000;0 +20260317 182100;212.305000;212.308000;212.300000;212.300000;0 +20260317 182200;212.300000;212.309000;212.299000;212.301000;0 +20260317 182300;212.300000;212.308000;212.298000;212.304000;0 +20260317 182400;212.307000;212.317000;212.288000;212.290000;0 +20260317 182500;212.298000;212.307000;212.283000;212.283000;0 +20260317 182600;212.283000;212.289000;212.282000;212.285000;0 +20260317 182700;212.283000;212.299000;212.261000;212.262000;0 +20260317 182800;212.264000;212.300000;212.262000;212.281000;0 +20260317 182900;212.277000;212.287000;212.267000;212.270000;0 +20260317 183000;212.268000;212.278000;212.254000;212.258000;0 +20260317 183100;212.259000;212.280000;212.256000;212.273000;0 +20260317 183200;212.273000;212.282000;212.262000;212.278000;0 +20260317 183300;212.278000;212.287000;212.277000;212.286000;0 +20260317 183400;212.287000;212.288000;212.260000;212.279000;0 +20260317 183500;212.280000;212.284000;212.273000;212.280000;0 +20260317 183600;212.281000;212.288000;212.280000;212.284000;0 +20260317 183700;212.284000;212.293000;212.269000;212.272000;0 +20260317 183800;212.271000;212.275000;212.269000;212.270000;0 +20260317 183900;212.270000;212.273000;212.259000;212.268000;0 +20260317 184000;212.266000;212.277000;212.265000;212.271000;0 +20260317 184100;212.273000;212.283000;212.268000;212.270000;0 +20260317 184200;212.270000;212.275000;212.268000;212.272000;0 +20260317 184300;212.269000;212.274000;212.269000;212.274000;0 +20260317 184400;212.275000;212.275000;212.221000;212.254000;0 +20260317 184500;212.255000;212.285000;212.254000;212.267000;0 +20260317 184600;212.267000;212.267000;212.247000;212.249000;0 +20260317 184700;212.248000;212.251000;212.232000;212.242000;0 +20260317 184800;212.242000;212.252000;212.232000;212.247000;0 +20260317 184900;212.248000;212.248000;212.231000;212.231000;0 +20260317 185000;212.227000;212.243000;212.207000;212.221000;0 +20260317 185100;212.220000;212.245000;212.214000;212.216000;0 +20260317 185200;212.216000;212.236000;212.210000;212.227000;0 +20260317 185300;212.230000;212.232000;212.219000;212.223000;0 +20260317 185400;212.221000;212.255000;212.219000;212.250000;0 +20260317 185500;212.250000;212.265000;212.238000;212.256000;0 +20260317 185600;212.250000;212.264000;212.225000;212.246000;0 +20260317 185700;212.254000;212.254000;212.236000;212.248000;0 +20260317 185800;212.250000;212.260000;212.245000;212.245000;0 +20260317 185900;212.249000;212.269000;212.244000;212.257000;0 +20260317 190000;212.256000;212.268000;212.187000;212.206000;0 +20260317 190100;212.206000;212.243000;212.195000;212.232000;0 +20260317 190200;212.232000;212.247000;212.214000;212.242000;0 +20260317 190300;212.244000;212.249000;212.208000;212.211000;0 +20260317 190400;212.213000;212.239000;212.211000;212.213000;0 +20260317 190500;212.212000;212.261000;212.202000;212.250000;0 +20260317 190600;212.248000;212.275000;212.234000;212.271000;0 +20260317 190700;212.269000;212.279000;212.242000;212.264000;0 +20260317 190800;212.267000;212.272000;212.224000;212.233000;0 +20260317 190900;212.227000;212.247000;212.216000;212.224000;0 +20260317 191000;212.223000;212.253000;212.215000;212.238000;0 +20260317 191100;212.235000;212.252000;212.221000;212.226000;0 +20260317 191200;212.229000;212.230000;212.186000;212.189000;0 +20260317 191300;212.188000;212.209000;212.178000;212.181000;0 +20260317 191400;212.184000;212.207000;212.178000;212.192000;0 +20260317 191500;212.190000;212.235000;212.184000;212.226000;0 +20260317 191600;212.227000;212.233000;212.205000;212.226000;0 +20260317 191700;212.226000;212.233000;212.191000;212.205000;0 +20260317 191800;212.205000;212.229000;212.178000;212.228000;0 +20260317 191900;212.228000;212.228000;212.200000;212.207000;0 +20260317 192000;212.208000;212.228000;212.193000;212.194000;0 +20260317 192100;212.194000;212.197000;212.154000;212.170000;0 +20260317 192200;212.173000;212.179000;212.151000;212.152000;0 +20260317 192300;212.153000;212.176000;212.153000;212.172000;0 +20260317 192400;212.173000;212.188000;212.123000;212.188000;0 +20260317 192500;212.187000;212.201000;212.175000;212.192000;0 +20260317 192600;212.195000;212.253000;212.191000;212.247000;0 +20260317 192700;212.246000;212.247000;212.224000;212.235000;0 +20260317 192800;212.237000;212.274000;212.223000;212.257000;0 +20260317 192900;212.256000;212.280000;212.249000;212.262000;0 +20260317 193000;212.263000;212.290000;212.254000;212.283000;0 +20260317 193100;212.283000;212.348000;212.275000;212.333000;0 +20260317 193200;212.331000;212.355000;212.322000;212.349000;0 +20260317 193300;212.341000;212.375000;212.326000;212.370000;0 +20260317 193400;212.365000;212.390000;212.357000;212.384000;0 +20260317 193500;212.384000;212.403000;212.372000;212.382000;0 +20260317 193600;212.389000;212.392000;212.346000;212.385000;0 +20260317 193700;212.384000;212.414000;212.346000;212.356000;0 +20260317 193800;212.357000;212.394000;212.335000;212.378000;0 +20260317 193900;212.378000;212.421000;212.376000;212.409000;0 +20260317 194000;212.410000;212.417000;212.382000;212.402000;0 +20260317 194100;212.412000;212.412000;212.371000;212.376000;0 +20260317 194200;212.375000;212.390000;212.352000;212.358000;0 +20260317 194300;212.358000;212.368000;212.340000;212.357000;0 +20260317 194400;212.368000;212.371000;212.341000;212.361000;0 +20260317 194500;212.363000;212.393000;212.347000;212.378000;0 +20260317 194600;212.379000;212.382000;212.355000;212.379000;0 +20260317 194700;212.377000;212.395000;212.350000;212.383000;0 +20260317 194800;212.382000;212.407000;212.371000;212.397000;0 +20260317 194900;212.399000;212.413000;212.386000;212.395000;0 +20260317 195000;212.398000;212.404000;212.359000;212.375000;0 +20260317 195100;212.373000;212.399000;212.365000;212.390000;0 +20260317 195200;212.386000;212.405000;212.377000;212.392000;0 +20260317 195300;212.390000;212.448000;212.388000;212.441000;0 +20260317 195400;212.443000;212.487000;212.433000;212.462000;0 +20260317 195500;212.462000;212.473000;212.405000;212.410000;0 +20260317 195600;212.411000;212.446000;212.407000;212.429000;0 +20260317 195700;212.428000;212.436000;212.387000;212.403000;0 +20260317 195800;212.400000;212.408000;212.391000;212.401000;0 +20260317 195900;212.395000;212.395000;212.364000;212.371000;0 +20260317 200000;212.371000;212.414000;212.371000;212.411000;0 +20260317 200100;212.410000;212.435000;212.400000;212.418000;0 +20260317 200200;212.421000;212.435000;212.401000;212.417000;0 +20260317 200300;212.419000;212.429000;212.412000;212.421000;0 +20260317 200400;212.423000;212.434000;212.409000;212.422000;0 +20260317 200500;212.423000;212.430000;212.415000;212.419000;0 +20260317 200600;212.418000;212.420000;212.402000;212.407000;0 +20260317 200700;212.408000;212.418000;212.399000;212.403000;0 +20260317 200800;212.415000;212.422000;212.399000;212.407000;0 +20260317 200900;212.407000;212.408000;212.391000;212.400000;0 +20260317 201000;212.403000;212.403000;212.385000;212.391000;0 +20260317 201100;212.390000;212.396000;212.381000;212.382000;0 +20260317 201200;212.376000;212.390000;212.370000;212.381000;0 +20260317 201300;212.380000;212.390000;212.362000;212.372000;0 +20260317 201400;212.368000;212.373000;212.368000;212.370000;0 +20260317 201500;212.367000;212.379000;212.357000;212.375000;0 +20260317 201600;212.374000;212.392000;212.369000;212.392000;0 +20260317 201700;212.391000;212.402000;212.382000;212.396000;0 +20260317 201800;212.396000;212.401000;212.390000;212.397000;0 +20260317 201900;212.404000;212.418000;212.403000;212.409000;0 +20260317 202000;212.409000;212.438000;212.409000;212.424000;0 +20260317 202100;212.423000;212.426000;212.397000;212.406000;0 +20260317 202200;212.405000;212.406000;212.388000;212.389000;0 +20260317 202300;212.393000;212.400000;212.383000;212.393000;0 +20260317 202400;212.393000;212.409000;212.387000;212.401000;0 +20260317 202500;212.401000;212.410000;212.393000;212.398000;0 +20260317 202600;212.397000;212.405000;212.387000;212.405000;0 +20260317 202700;212.413000;212.414000;212.392000;212.404000;0 +20260317 202800;212.405000;212.405000;212.391000;212.402000;0 +20260317 202900;212.397000;212.411000;212.382000;212.403000;0 +20260317 203000;212.405000;212.407000;212.386000;212.386000;0 +20260317 203100;212.385000;212.396000;212.372000;212.372000;0 +20260317 203200;212.375000;212.386000;212.357000;212.358000;0 +20260317 203300;212.357000;212.371000;212.352000;212.365000;0 +20260317 203400;212.367000;212.383000;212.366000;212.379000;0 +20260317 203500;212.377000;212.379000;212.323000;212.329000;0 +20260317 203600;212.326000;212.334000;212.314000;212.328000;0 +20260317 203700;212.332000;212.349000;212.322000;212.347000;0 +20260317 203800;212.347000;212.355000;212.339000;212.350000;0 +20260317 203900;212.349000;212.359000;212.330000;212.331000;0 +20260317 204000;212.330000;212.339000;212.312000;212.316000;0 +20260317 204100;212.317000;212.331000;212.314000;212.328000;0 +20260317 204200;212.326000;212.330000;212.318000;212.320000;0 +20260317 204300;212.321000;212.349000;212.321000;212.337000;0 +20260317 204400;212.337000;212.349000;212.329000;212.333000;0 +20260317 204500;212.332000;212.336000;212.321000;212.331000;0 +20260317 204600;212.331000;212.343000;212.324000;212.339000;0 +20260317 204700;212.339000;212.367000;212.336000;212.350000;0 +20260317 204800;212.350000;212.354000;212.347000;212.347000;0 +20260317 204900;212.345000;212.348000;212.331000;212.332000;0 +20260317 205000;212.335000;212.339000;212.324000;212.335000;0 +20260317 205100;212.335000;212.336000;212.318000;212.321000;0 +20260317 205200;212.324000;212.326000;212.300000;212.305000;0 +20260317 205300;212.304000;212.310000;212.297000;212.306000;0 +20260317 205400;212.307000;212.311000;212.300000;212.310000;0 +20260317 205500;212.308000;212.319000;212.308000;212.308000;0 +20260317 205600;212.309000;212.321000;212.294000;212.301000;0 +20260317 205700;212.298000;212.310000;212.296000;212.296000;0 +20260317 205800;212.296000;212.302000;212.286000;212.299000;0 +20260317 205900;212.300000;212.331000;212.299000;212.330000;0 +20260317 210000;212.329000;212.331000;212.317000;212.317000;0 +20260317 210100;212.323000;212.337000;212.321000;212.332000;0 +20260317 210200;212.334000;212.343000;212.320000;212.323000;0 +20260317 210300;212.320000;212.320000;212.295000;212.298000;0 +20260317 210400;212.297000;212.310000;212.294000;212.309000;0 +20260317 210500;212.308000;212.319000;212.299000;212.308000;0 +20260317 210600;212.307000;212.308000;212.292000;212.293000;0 +20260317 210700;212.297000;212.298000;212.276000;212.276000;0 +20260317 210800;212.277000;212.321000;212.272000;212.317000;0 +20260317 210900;212.318000;212.324000;212.308000;212.312000;0 +20260317 211000;212.312000;212.312000;212.294000;212.310000;0 +20260317 211100;212.313000;212.313000;212.302000;212.302000;0 +20260317 211200;212.298000;212.301000;212.289000;212.290000;0 +20260317 211300;212.289000;212.292000;212.282000;212.288000;0 +20260317 211400;212.291000;212.304000;212.290000;212.295000;0 +20260317 211500;212.295000;212.308000;212.288000;212.302000;0 +20260317 211600;212.302000;212.314000;212.301000;212.310000;0 +20260317 211700;212.312000;212.314000;212.299000;212.304000;0 +20260317 211800;212.305000;212.319000;212.300000;212.319000;0 +20260317 211900;212.317000;212.338000;212.316000;212.335000;0 +20260317 212000;212.333000;212.334000;212.300000;212.304000;0 +20260317 212100;212.304000;212.315000;212.302000;212.307000;0 +20260317 212200;212.308000;212.315000;212.302000;212.303000;0 +20260317 212300;212.305000;212.311000;212.293000;212.303000;0 +20260317 212400;212.300000;212.300000;212.292000;212.294000;0 +20260317 212500;212.294000;212.303000;212.282000;212.301000;0 +20260317 212600;212.301000;212.302000;212.293000;212.302000;0 +20260317 212700;212.302000;212.309000;212.299000;212.303000;0 +20260317 212800;212.303000;212.310000;212.300000;212.304000;0 +20260317 212900;212.305000;212.306000;212.281000;212.283000;0 +20260317 213000;212.284000;212.291000;212.280000;212.280000;0 +20260317 213100;212.280000;212.281000;212.241000;212.247000;0 +20260317 213200;212.244000;212.253000;212.237000;212.252000;0 +20260317 213300;212.250000;212.250000;212.228000;212.239000;0 +20260317 213400;212.241000;212.254000;212.228000;212.254000;0 +20260317 213500;212.252000;212.276000;212.246000;212.275000;0 +20260317 213600;212.276000;212.283000;212.260000;212.264000;0 +20260317 213700;212.263000;212.272000;212.260000;212.269000;0 +20260317 213800;212.268000;212.276000;212.266000;212.274000;0 +20260317 213900;212.276000;212.279000;212.262000;212.263000;0 +20260317 214000;212.264000;212.276000;212.262000;212.276000;0 +20260317 214100;212.276000;212.283000;212.271000;212.281000;0 +20260317 214200;212.279000;212.281000;212.269000;212.271000;0 +20260317 214300;212.270000;212.283000;212.269000;212.273000;0 +20260317 214400;212.273000;212.273000;212.224000;212.246000;0 +20260317 214500;212.248000;212.252000;212.243000;212.251000;0 +20260317 214600;212.250000;212.266000;212.247000;212.252000;0 +20260317 214700;212.249000;212.254000;212.212000;212.212000;0 +20260317 214800;212.213000;212.231000;212.211000;212.213000;0 +20260317 214900;212.213000;212.226000;212.209000;212.211000;0 +20260317 215000;212.212000;212.229000;212.202000;212.226000;0 +20260317 215100;212.226000;212.231000;212.214000;212.215000;0 +20260317 215200;212.219000;212.225000;212.214000;212.222000;0 +20260317 215300;212.222000;212.223000;212.209000;212.218000;0 +20260317 215400;212.216000;212.220000;212.204000;212.208000;0 +20260317 215500;212.206000;212.210000;212.190000;212.196000;0 +20260317 215600;212.196000;212.202000;212.164000;212.175000;0 +20260317 215700;212.177000;212.179000;212.144000;212.147000;0 +20260317 215800;212.147000;212.183000;212.142000;212.182000;0 +20260317 215900;212.181000;212.190000;212.173000;212.189000;0 +20260317 220000;212.190000;212.221000;212.186000;212.210000;0 +20260317 220100;212.211000;212.211000;212.188000;212.198000;0 +20260317 220200;212.202000;212.205000;212.196000;212.203000;0 +20260317 220300;212.202000;212.214000;212.197000;212.210000;0 +20260317 220400;212.211000;212.212000;212.191000;212.195000;0 +20260317 220500;212.196000;212.210000;212.186000;212.189000;0 +20260317 220600;212.189000;212.192000;212.180000;212.187000;0 +20260317 220700;212.186000;212.187000;212.174000;212.180000;0 +20260317 220800;212.182000;212.201000;212.179000;212.197000;0 +20260317 220900;212.201000;212.212000;212.192000;212.211000;0 +20260317 221000;212.210000;212.213000;212.195000;212.200000;0 +20260317 221100;212.197000;212.208000;212.194000;212.207000;0 +20260317 221200;212.208000;212.212000;212.203000;212.212000;0 +20260317 221300;212.210000;212.218000;212.208000;212.210000;0 +20260317 221400;212.212000;212.220000;212.211000;212.212000;0 +20260317 221500;212.213000;212.222000;212.206000;212.212000;0 +20260317 221600;212.212000;212.221000;212.207000;212.219000;0 +20260317 221700;212.219000;212.230000;212.215000;212.230000;0 +20260317 221800;212.227000;212.243000;212.224000;212.243000;0 +20260317 221900;212.241000;212.248000;212.238000;212.248000;0 +20260317 222000;212.246000;212.259000;212.245000;212.259000;0 +20260317 222100;212.257000;212.268000;212.254000;212.262000;0 +20260317 222200;212.262000;212.274000;212.260000;212.269000;0 +20260317 222300;212.269000;212.277000;212.261000;212.265000;0 +20260317 222400;212.265000;212.272000;212.265000;212.267000;0 +20260317 222500;212.266000;212.271000;212.263000;212.270000;0 +20260317 222600;212.268000;212.274000;212.264000;212.274000;0 +20260317 222700;212.272000;212.273000;212.265000;212.265000;0 +20260317 222800;212.267000;212.275000;212.265000;212.269000;0 +20260317 222900;212.268000;212.272000;212.268000;212.269000;0 +20260317 223000;212.268000;212.280000;212.264000;212.264000;0 +20260317 223100;212.264000;212.264000;212.254000;212.254000;0 +20260317 223200;212.250000;212.272000;212.250000;212.270000;0 +20260317 223300;212.268000;212.269000;212.248000;212.249000;0 +20260317 223400;212.244000;212.244000;212.232000;212.234000;0 +20260317 223500;212.237000;212.246000;212.234000;212.246000;0 +20260317 223600;212.248000;212.253000;212.244000;212.253000;0 +20260317 223700;212.252000;212.252000;212.247000;212.251000;0 +20260317 223800;212.250000;212.257000;212.245000;212.255000;0 +20260317 223900;212.254000;212.260000;212.252000;212.252000;0 +20260317 224000;212.252000;212.268000;212.251000;212.261000;0 +20260317 224100;212.262000;212.262000;212.259000;212.259000;0 +20260317 224200;212.259000;212.272000;212.258000;212.272000;0 +20260317 224300;212.272000;212.274000;212.270000;212.273000;0 +20260317 224400;212.274000;212.285000;212.272000;212.283000;0 +20260317 224500;212.282000;212.293000;212.277000;212.293000;0 +20260317 224600;212.291000;212.291000;212.274000;212.288000;0 +20260317 224700;212.290000;212.296000;212.284000;212.291000;0 +20260317 224800;212.293000;212.295000;212.288000;212.291000;0 +20260317 224900;212.292000;212.307000;212.291000;212.305000;0 +20260317 225000;212.300000;212.317000;212.300000;212.310000;0 +20260317 225100;212.313000;212.313000;212.309000;212.309000;0 +20260317 225200;212.311000;212.313000;212.308000;212.311000;0 +20260317 225300;212.312000;212.313000;212.310000;212.312000;0 +20260317 225400;212.310000;212.320000;212.293000;212.300000;0 +20260317 225500;212.300000;212.300000;212.290000;212.297000;0 +20260317 225600;212.297000;212.303000;212.291000;212.301000;0 +20260317 225700;212.299000;212.319000;212.298000;212.315000;0 +20260317 225800;212.316000;212.318000;212.307000;212.311000;0 +20260317 225900;212.311000;212.313000;212.292000;212.305000;0 +20260317 230000;212.305000;212.328000;212.297000;212.300000;0 +20260317 230100;212.300000;212.307000;212.283000;212.290000;0 +20260317 230200;212.287000;212.305000;212.280000;212.305000;0 +20260317 230300;212.305000;212.307000;212.297000;212.305000;0 +20260317 230400;212.303000;212.314000;212.303000;212.310000;0 +20260317 230500;212.311000;212.315000;212.285000;212.285000;0 +20260317 230600;212.285000;212.302000;212.285000;212.302000;0 +20260317 230700;212.303000;212.303000;212.292000;212.292000;0 +20260317 230800;212.292000;212.316000;212.291000;212.313000;0 +20260317 230900;212.316000;212.319000;212.308000;212.308000;0 +20260317 231000;212.309000;212.309000;212.291000;212.298000;0 +20260317 231100;212.297000;212.315000;212.297000;212.303000;0 +20260317 231200;212.304000;212.309000;212.295000;212.298000;0 +20260317 231300;212.298000;212.300000;212.287000;212.288000;0 +20260317 231400;212.289000;212.294000;212.282000;212.291000;0 +20260317 231500;212.291000;212.291000;212.245000;212.253000;0 +20260317 231600;212.256000;212.256000;212.241000;212.249000;0 +20260317 231700;212.249000;212.274000;212.241000;212.273000;0 +20260317 231800;212.273000;212.283000;212.269000;212.283000;0 +20260317 231900;212.280000;212.288000;212.280000;212.284000;0 +20260317 232000;212.283000;212.301000;212.283000;212.297000;0 +20260317 232100;212.298000;212.311000;212.297000;212.303000;0 +20260317 232200;212.303000;212.330000;212.301000;212.316000;0 +20260317 232300;212.317000;212.327000;212.309000;212.327000;0 +20260317 232400;212.329000;212.329000;212.305000;212.324000;0 +20260317 232500;212.322000;212.324000;212.297000;212.303000;0 +20260317 232600;212.303000;212.315000;212.298000;212.308000;0 +20260317 232700;212.307000;212.318000;212.306000;212.314000;0 +20260317 232800;212.309000;212.313000;212.301000;212.307000;0 +20260317 232900;212.307000;212.318000;212.307000;212.315000;0 +20260317 233000;212.315000;212.318000;212.284000;212.284000;0 +20260317 233100;212.289000;212.290000;212.269000;212.269000;0 +20260317 233200;212.276000;212.279000;212.240000;212.241000;0 +20260317 233300;212.240000;212.254000;212.239000;212.254000;0 +20260317 233400;212.249000;212.259000;212.244000;212.258000;0 +20260317 233500;212.260000;212.264000;212.241000;212.256000;0 +20260317 233600;212.259000;212.259000;212.240000;212.253000;0 +20260317 233700;212.253000;212.256000;212.221000;212.235000;0 +20260317 233800;212.233000;212.249000;212.233000;212.237000;0 +20260317 233900;212.235000;212.248000;212.225000;212.225000;0 +20260317 234000;212.226000;212.226000;212.204000;212.208000;0 +20260317 234100;212.206000;212.223000;212.202000;212.223000;0 +20260317 234200;212.224000;212.233000;212.222000;212.224000;0 +20260317 234300;212.225000;212.226000;212.222000;212.226000;0 +20260317 234400;212.228000;212.231000;212.210000;212.210000;0 +20260317 234500;212.211000;212.237000;212.199000;212.237000;0 +20260317 234600;212.235000;212.240000;212.222000;212.226000;0 +20260317 234700;212.227000;212.227000;212.177000;212.191000;0 +20260317 234800;212.189000;212.201000;212.183000;212.192000;0 +20260317 234900;212.193000;212.204000;212.191000;212.198000;0 +20260317 235000;212.198000;212.198000;212.162000;212.178000;0 +20260317 235100;212.182000;212.193000;212.160000;212.169000;0 +20260317 235200;212.170000;212.195000;212.165000;212.194000;0 +20260317 235300;212.192000;212.205000;212.189000;212.192000;0 +20260317 235400;212.194000;212.194000;212.175000;212.175000;0 +20260317 235500;212.188000;212.189000;212.170000;212.185000;0 +20260317 235600;212.187000;212.198000;212.186000;212.198000;0 +20260317 235700;212.192000;212.200000;212.185000;212.200000;0 +20260317 235800;212.198000;212.216000;212.194000;212.212000;0 +20260317 235900;212.211000;212.226000;212.207000;212.226000;0 +20260318 000000;212.225000;212.233000;212.200000;212.207000;0 +20260318 000100;212.209000;212.209000;212.193000;212.200000;0 +20260318 000200;212.200000;212.207000;212.165000;212.171000;0 +20260318 000300;212.173000;212.183000;212.167000;212.175000;0 +20260318 000400;212.176000;212.185000;212.161000;212.171000;0 +20260318 000500;212.169000;212.173000;212.158000;212.170000;0 +20260318 000600;212.168000;212.168000;212.132000;212.143000;0 +20260318 000700;212.142000;212.150000;212.126000;212.140000;0 +20260318 000800;212.136000;212.166000;212.136000;212.156000;0 +20260318 000900;212.157000;212.163000;212.155000;212.160000;0 +20260318 001000;212.161000;212.166000;212.147000;212.158000;0 +20260318 001100;212.151000;212.186000;212.141000;212.182000;0 +20260318 001200;212.177000;212.194000;212.172000;212.173000;0 +20260318 001300;212.172000;212.173000;212.148000;212.150000;0 +20260318 001400;212.147000;212.155000;212.145000;212.154000;0 +20260318 001500;212.156000;212.176000;212.134000;212.163000;0 +20260318 001600;212.165000;212.166000;212.156000;212.159000;0 +20260318 001700;212.158000;212.158000;212.137000;212.143000;0 +20260318 001800;212.143000;212.162000;212.138000;212.161000;0 +20260318 001900;212.162000;212.172000;212.150000;212.170000;0 +20260318 002000;212.166000;212.178000;212.147000;212.151000;0 +20260318 002100;212.153000;212.157000;212.133000;212.135000;0 +20260318 002200;212.128000;212.132000;212.098000;212.102000;0 +20260318 002300;212.101000;212.122000;212.100000;212.117000;0 +20260318 002400;212.116000;212.134000;212.116000;212.130000;0 +20260318 002500;212.131000;212.151000;212.131000;212.142000;0 +20260318 002600;212.146000;212.147000;212.127000;212.140000;0 +20260318 002700;212.142000;212.151000;212.136000;212.137000;0 +20260318 002800;212.137000;212.160000;212.132000;212.147000;0 +20260318 002900;212.148000;212.157000;212.142000;212.157000;0 +20260318 003000;212.154000;212.179000;212.151000;212.168000;0 +20260318 003100;212.169000;212.179000;212.156000;212.158000;0 +20260318 003200;212.158000;212.158000;212.154000;212.157000;0 +20260318 003300;212.155000;212.156000;212.138000;212.150000;0 +20260318 003400;212.151000;212.159000;212.139000;212.158000;0 +20260318 003500;212.160000;212.179000;212.160000;212.168000;0 +20260318 003600;212.168000;212.170000;212.166000;212.168000;0 +20260318 003700;212.167000;212.201000;212.167000;212.198000;0 +20260318 003800;212.198000;212.208000;212.194000;212.206000;0 +20260318 003900;212.207000;212.209000;212.189000;212.195000;0 +20260318 004000;212.193000;212.209000;212.186000;212.208000;0 +20260318 004100;212.208000;212.213000;212.200000;212.206000;0 +20260318 004200;212.205000;212.206000;212.180000;212.180000;0 +20260318 004300;212.180000;212.197000;212.180000;212.180000;0 +20260318 004400;212.180000;212.198000;212.175000;212.198000;0 +20260318 004500;212.198000;212.203000;212.183000;212.188000;0 +20260318 004600;212.186000;212.202000;212.184000;212.201000;0 +20260318 004700;212.197000;212.199000;212.184000;212.192000;0 +20260318 004800;212.192000;212.197000;212.180000;212.181000;0 +20260318 004900;212.180000;212.203000;212.180000;212.203000;0 +20260318 005000;212.205000;212.210000;212.200000;212.209000;0 +20260318 005100;212.214000;212.217000;212.212000;212.215000;0 +20260318 005200;212.218000;212.218000;212.194000;212.202000;0 +20260318 005300;212.202000;212.233000;212.202000;212.219000;0 +20260318 005400;212.222000;212.232000;212.219000;212.222000;0 +20260318 005500;212.224000;212.263000;212.224000;212.259000;0 +20260318 005600;212.258000;212.262000;212.237000;212.242000;0 +20260318 005700;212.243000;212.249000;212.227000;212.237000;0 +20260318 005800;212.237000;212.250000;212.212000;212.228000;0 +20260318 005900;212.227000;212.231000;212.203000;212.207000;0 +20260318 010000;212.207000;212.220000;212.192000;212.213000;0 +20260318 010100;212.214000;212.214000;212.198000;212.200000;0 +20260318 010200;212.198000;212.200000;212.187000;212.200000;0 +20260318 010300;212.201000;212.201000;212.162000;212.163000;0 +20260318 010400;212.163000;212.163000;212.119000;212.119000;0 +20260318 010500;212.116000;212.135000;212.116000;212.130000;0 +20260318 010600;212.129000;212.143000;212.125000;212.143000;0 +20260318 010700;212.143000;212.154000;212.136000;212.138000;0 +20260318 010800;212.141000;212.159000;212.138000;212.155000;0 +20260318 010900;212.159000;212.159000;212.140000;212.144000;0 +20260318 011000;212.144000;212.145000;212.130000;212.137000;0 +20260318 011100;212.138000;212.144000;212.135000;212.143000;0 +20260318 011200;212.139000;212.143000;212.118000;212.123000;0 +20260318 011300;212.121000;212.121000;212.094000;212.100000;0 +20260318 011400;212.100000;212.107000;212.092000;212.092000;0 +20260318 011500;212.094000;212.096000;212.069000;212.072000;0 +20260318 011600;212.074000;212.092000;212.065000;212.066000;0 +20260318 011700;212.065000;212.069000;212.044000;212.066000;0 +20260318 011800;212.065000;212.071000;212.039000;212.063000;0 +20260318 011900;212.064000;212.076000;212.035000;212.056000;0 +20260318 012000;212.053000;212.084000;212.042000;212.084000;0 +20260318 012100;212.084000;212.104000;212.083000;212.092000;0 +20260318 012200;212.094000;212.096000;212.055000;212.064000;0 +20260318 012300;212.066000;212.090000;212.059000;212.083000;0 +20260318 012400;212.084000;212.136000;212.082000;212.132000;0 +20260318 012500;212.132000;212.138000;212.105000;212.138000;0 +20260318 012600;212.133000;212.139000;212.119000;212.130000;0 +20260318 012700;212.129000;212.153000;212.125000;212.144000;0 +20260318 012800;212.145000;212.151000;212.145000;212.150000;0 +20260318 012900;212.147000;212.150000;212.118000;212.119000;0 +20260318 013000;212.118000;212.123000;212.079000;212.082000;0 +20260318 013100;212.082000;212.082000;212.058000;212.063000;0 +20260318 013200;212.063000;212.092000;212.063000;212.083000;0 +20260318 013300;212.084000;212.121000;212.076000;212.121000;0 +20260318 013400;212.121000;212.133000;212.113000;212.127000;0 +20260318 013500;212.123000;212.152000;212.123000;212.141000;0 +20260318 013600;212.138000;212.150000;212.130000;212.138000;0 +20260318 013700;212.138000;212.138000;212.120000;212.131000;0 +20260318 013800;212.133000;212.154000;212.108000;212.123000;0 +20260318 013900;212.124000;212.132000;212.113000;212.113000;0 +20260318 014000;212.110000;212.116000;212.095000;212.113000;0 +20260318 014100;212.113000;212.148000;212.108000;212.146000;0 +20260318 014200;212.147000;212.156000;212.134000;212.134000;0 +20260318 014300;212.134000;212.140000;212.131000;212.137000;0 +20260318 014400;212.148000;212.171000;212.146000;212.166000;0 +20260318 014500;212.164000;212.173000;212.149000;212.151000;0 +20260318 014600;212.152000;212.154000;212.139000;212.139000;0 +20260318 014700;212.142000;212.169000;212.140000;212.166000;0 +20260318 014800;212.167000;212.170000;212.148000;212.159000;0 +20260318 014900;212.154000;212.167000;212.137000;212.162000;0 +20260318 015000;212.161000;212.168000;212.154000;212.163000;0 +20260318 015100;212.164000;212.183000;212.164000;212.177000;0 +20260318 015200;212.174000;212.184000;212.164000;212.174000;0 +20260318 015300;212.173000;212.175000;212.159000;212.169000;0 +20260318 015400;212.168000;212.175000;212.159000;212.170000;0 +20260318 015500;212.172000;212.184000;212.162000;212.175000;0 +20260318 015600;212.175000;212.175000;212.159000;212.170000;0 +20260318 015700;212.171000;212.173000;212.134000;212.134000;0 +20260318 015800;212.134000;212.138000;212.120000;212.132000;0 +20260318 015900;212.131000;212.151000;212.126000;212.151000;0 +20260318 020000;212.152000;212.161000;212.136000;212.155000;0 +20260318 020100;212.153000;212.172000;212.149000;212.166000;0 +20260318 020200;212.166000;212.169000;212.138000;212.141000;0 +20260318 020300;212.141000;212.143000;212.116000;212.138000;0 +20260318 020400;212.140000;212.159000;212.139000;212.144000;0 +20260318 020500;212.144000;212.151000;212.113000;212.122000;0 +20260318 020600;212.122000;212.135000;212.116000;212.135000;0 +20260318 020700;212.131000;212.162000;212.131000;212.159000;0 +20260318 020800;212.150000;212.216000;212.150000;212.202000;0 +20260318 020900;212.203000;212.212000;212.188000;212.198000;0 +20260318 021000;212.198000;212.201000;212.166000;212.182000;0 +20260318 021100;212.185000;212.196000;212.182000;212.196000;0 +20260318 021200;212.197000;212.231000;212.189000;212.219000;0 +20260318 021300;212.219000;212.236000;212.211000;212.234000;0 +20260318 021400;212.239000;212.244000;212.221000;212.230000;0 +20260318 021500;212.228000;212.235000;212.188000;212.207000;0 +20260318 021600;212.205000;212.206000;212.181000;212.187000;0 +20260318 021700;212.190000;212.205000;212.181000;212.183000;0 +20260318 021800;212.182000;212.204000;212.181000;212.183000;0 +20260318 021900;212.184000;212.235000;212.178000;212.234000;0 +20260318 022000;212.234000;212.234000;212.200000;212.201000;0 +20260318 022100;212.203000;212.222000;212.200000;212.217000;0 +20260318 022200;212.217000;212.243000;212.215000;212.234000;0 +20260318 022300;212.235000;212.246000;212.233000;212.236000;0 +20260318 022400;212.241000;212.262000;212.232000;212.256000;0 +20260318 022500;212.254000;212.279000;212.239000;212.241000;0 +20260318 022600;212.239000;212.244000;212.229000;212.238000;0 +20260318 022700;212.240000;212.240000;212.193000;212.199000;0 +20260318 022800;212.198000;212.214000;212.179000;212.214000;0 +20260318 022900;212.214000;212.247000;212.211000;212.227000;0 +20260318 023000;212.227000;212.227000;212.193000;212.204000;0 +20260318 023100;212.203000;212.207000;212.156000;212.156000;0 +20260318 023200;212.154000;212.180000;212.130000;212.180000;0 +20260318 023300;212.180000;212.180000;212.124000;212.129000;0 +20260318 023400;212.132000;212.142000;212.130000;212.130000;0 +20260318 023500;212.129000;212.139000;212.117000;212.125000;0 +20260318 023600;212.125000;212.131000;212.092000;212.095000;0 +20260318 023700;212.093000;212.110000;212.093000;212.107000;0 +20260318 023800;212.108000;212.137000;212.101000;212.137000;0 +20260318 023900;212.134000;212.143000;212.113000;212.136000;0 +20260318 024000;212.139000;212.146000;212.133000;212.144000;0 +20260318 024100;212.143000;212.166000;212.136000;212.165000;0 +20260318 024200;212.163000;212.163000;212.136000;212.144000;0 +20260318 024300;212.146000;212.156000;212.084000;212.087000;0 +20260318 024400;212.088000;212.101000;212.030000;212.032000;0 +20260318 024500;212.035000;212.036000;211.998000;212.012000;0 +20260318 024600;212.013000;212.022000;211.992000;211.992000;0 +20260318 024700;211.993000;212.017000;211.980000;211.991000;0 +20260318 024800;211.990000;212.000000;211.986000;211.988000;0 +20260318 024900;211.988000;211.992000;211.971000;211.979000;0 +20260318 025000;211.978000;211.994000;211.960000;211.988000;0 +20260318 025100;211.988000;212.005000;211.979000;212.002000;0 +20260318 025200;212.005000;212.021000;212.000000;212.021000;0 +20260318 025300;212.023000;212.023000;211.984000;211.986000;0 +20260318 025400;211.988000;211.991000;211.968000;211.970000;0 +20260318 025500;211.974000;211.984000;211.948000;211.980000;0 +20260318 025600;211.983000;212.009000;211.972000;211.980000;0 +20260318 025700;211.974000;211.984000;211.959000;211.984000;0 +20260318 025800;211.987000;211.992000;211.968000;211.977000;0 +20260318 025900;211.975000;212.014000;211.960000;212.014000;0 +20260318 030000;212.017000;212.037000;211.998000;212.025000;0 +20260318 030100;212.024000;212.066000;212.024000;212.061000;0 +20260318 030200;212.059000;212.116000;212.051000;212.112000;0 +20260318 030300;212.113000;212.133000;212.107000;212.116000;0 +20260318 030400;212.114000;212.142000;212.111000;212.140000;0 +20260318 030500;212.142000;212.142000;212.108000;212.131000;0 +20260318 030600;212.133000;212.138000;212.128000;212.136000;0 +20260318 030700;212.137000;212.140000;212.109000;212.109000;0 +20260318 030800;212.111000;212.163000;212.111000;212.143000;0 +20260318 030900;212.144000;212.172000;212.139000;212.167000;0 +20260318 031000;212.165000;212.207000;212.161000;212.199000;0 +20260318 031100;212.201000;212.208000;212.186000;212.204000;0 +20260318 031200;212.202000;212.220000;212.202000;212.220000;0 +20260318 031300;212.212000;212.224000;212.183000;212.191000;0 +20260318 031400;212.193000;212.212000;212.188000;212.201000;0 +20260318 031500;212.199000;212.243000;212.195000;212.237000;0 +20260318 031600;212.238000;212.238000;212.203000;212.225000;0 +20260318 031700;212.225000;212.233000;212.197000;212.198000;0 +20260318 031800;212.199000;212.204000;212.171000;212.173000;0 +20260318 031900;212.165000;212.174000;212.129000;212.130000;0 +20260318 032000;212.127000;212.165000;212.111000;212.158000;0 +20260318 032100;212.157000;212.160000;212.111000;212.115000;0 +20260318 032200;212.115000;212.125000;212.096000;212.123000;0 +20260318 032300;212.123000;212.129000;212.077000;212.079000;0 +20260318 032400;212.077000;212.077000;212.047000;212.073000;0 +20260318 032500;212.079000;212.102000;212.065000;212.082000;0 +20260318 032600;212.084000;212.086000;212.051000;212.066000;0 +20260318 032700;212.065000;212.088000;212.058000;212.077000;0 +20260318 032800;212.078000;212.091000;212.070000;212.081000;0 +20260318 032900;212.082000;212.096000;212.075000;212.088000;0 +20260318 033000;212.088000;212.120000;212.082000;212.096000;0 +20260318 033100;212.096000;212.161000;212.096000;212.159000;0 +20260318 033200;212.159000;212.163000;212.139000;212.163000;0 +20260318 033300;212.163000;212.181000;212.144000;212.144000;0 +20260318 033400;212.143000;212.159000;212.123000;212.157000;0 +20260318 033500;212.155000;212.172000;212.141000;212.153000;0 +20260318 033600;212.152000;212.157000;212.133000;212.133000;0 +20260318 033700;212.135000;212.170000;212.135000;212.162000;0 +20260318 033800;212.165000;212.176000;212.155000;212.170000;0 +20260318 033900;212.172000;212.192000;212.172000;212.192000;0 +20260318 034000;212.194000;212.194000;212.162000;212.167000;0 +20260318 034100;212.165000;212.179000;212.159000;212.176000;0 +20260318 034200;212.177000;212.180000;212.152000;212.152000;0 +20260318 034300;212.155000;212.159000;212.133000;212.146000;0 +20260318 034400;212.147000;212.162000;212.147000;212.159000;0 +20260318 034500;212.160000;212.164000;212.111000;212.115000;0 +20260318 034600;212.115000;212.115000;212.096000;212.104000;0 +20260318 034700;212.102000;212.149000;212.090000;212.141000;0 +20260318 034800;212.138000;212.163000;212.138000;212.158000;0 +20260318 034900;212.157000;212.179000;212.154000;212.178000;0 +20260318 035000;212.176000;212.200000;212.175000;212.192000;0 +20260318 035100;212.191000;212.207000;212.187000;212.200000;0 +20260318 035200;212.201000;212.207000;212.176000;212.186000;0 +20260318 035300;212.183000;212.224000;212.183000;212.205000;0 +20260318 035400;212.203000;212.224000;212.189000;212.196000;0 +20260318 035500;212.198000;212.210000;212.176000;212.199000;0 +20260318 035600;212.200000;212.217000;212.179000;212.192000;0 +20260318 035700;212.193000;212.205000;212.180000;212.198000;0 +20260318 035800;212.197000;212.207000;212.190000;212.205000;0 +20260318 035900;212.207000;212.211000;212.192000;212.197000;0 +20260318 040000;212.193000;212.219000;212.187000;212.200000;0 +20260318 040100;212.196000;212.220000;212.194000;212.211000;0 +20260318 040200;212.213000;212.219000;212.181000;212.196000;0 +20260318 040300;212.193000;212.206000;212.183000;212.188000;0 +20260318 040400;212.188000;212.214000;212.188000;212.206000;0 +20260318 040500;212.206000;212.229000;212.201000;212.212000;0 +20260318 040600;212.213000;212.231000;212.208000;212.230000;0 +20260318 040700;212.231000;212.245000;212.224000;212.245000;0 +20260318 040800;212.243000;212.245000;212.223000;212.233000;0 +20260318 040900;212.229000;212.260000;212.223000;212.252000;0 +20260318 041000;212.250000;212.256000;212.228000;212.251000;0 +20260318 041100;212.248000;212.252000;212.225000;212.226000;0 +20260318 041200;212.225000;212.232000;212.208000;212.220000;0 +20260318 041300;212.218000;212.240000;212.213000;212.217000;0 +20260318 041400;212.217000;212.217000;212.189000;212.207000;0 +20260318 041500;212.205000;212.240000;212.203000;212.236000;0 +20260318 041600;212.238000;212.246000;212.219000;212.243000;0 +20260318 041700;212.244000;212.244000;212.218000;212.228000;0 +20260318 041800;212.228000;212.261000;212.228000;212.248000;0 +20260318 041900;212.248000;212.263000;212.238000;212.256000;0 +20260318 042000;212.261000;212.269000;212.240000;212.253000;0 +20260318 042100;212.256000;212.270000;212.253000;212.257000;0 +20260318 042200;212.258000;212.262000;212.244000;212.262000;0 +20260318 042300;212.264000;212.271000;212.242000;212.247000;0 +20260318 042400;212.247000;212.258000;212.229000;212.252000;0 +20260318 042500;212.249000;212.249000;212.229000;212.243000;0 +20260318 042600;212.243000;212.246000;212.230000;212.232000;0 +20260318 042700;212.233000;212.234000;212.215000;212.215000;0 +20260318 042800;212.216000;212.222000;212.206000;212.220000;0 +20260318 042900;212.220000;212.243000;212.212000;212.241000;0 +20260318 043000;212.243000;212.257000;212.225000;212.228000;0 +20260318 043100;212.228000;212.258000;212.226000;212.245000;0 +20260318 043200;212.244000;212.250000;212.220000;212.228000;0 +20260318 043300;212.226000;212.235000;212.219000;212.222000;0 +20260318 043400;212.225000;212.236000;212.217000;212.220000;0 +20260318 043500;212.221000;212.232000;212.210000;212.226000;0 +20260318 043600;212.227000;212.233000;212.211000;212.223000;0 +20260318 043700;212.223000;212.253000;212.218000;212.253000;0 +20260318 043800;212.256000;212.256000;212.237000;212.239000;0 +20260318 043900;212.238000;212.239000;212.200000;212.207000;0 +20260318 044000;212.207000;212.222000;212.200000;212.219000;0 +20260318 044100;212.222000;212.252000;212.213000;212.247000;0 +20260318 044200;212.246000;212.262000;212.242000;212.244000;0 +20260318 044300;212.245000;212.274000;212.245000;212.274000;0 +20260318 044400;212.272000;212.293000;212.267000;212.279000;0 +20260318 044500;212.276000;212.315000;212.276000;212.312000;0 +20260318 044600;212.314000;212.341000;212.305000;212.340000;0 +20260318 044700;212.339000;212.344000;212.318000;212.325000;0 +20260318 044800;212.327000;212.332000;212.314000;212.318000;0 +20260318 044900;212.315000;212.320000;212.302000;212.302000;0 +20260318 045000;212.304000;212.334000;212.301000;212.332000;0 +20260318 045100;212.330000;212.340000;212.308000;212.325000;0 +20260318 045200;212.319000;212.321000;212.299000;212.305000;0 +20260318 045300;212.301000;212.307000;212.293000;212.295000;0 +20260318 045400;212.296000;212.296000;212.283000;212.288000;0 +20260318 045500;212.289000;212.304000;212.269000;212.270000;0 +20260318 045600;212.269000;212.280000;212.268000;212.271000;0 +20260318 045700;212.272000;212.283000;212.268000;212.274000;0 +20260318 045800;212.272000;212.278000;212.268000;212.276000;0 +20260318 045900;212.276000;212.302000;212.276000;212.301000;0 +20260318 050000;212.304000;212.313000;212.282000;212.308000;0 +20260318 050100;212.308000;212.330000;212.308000;212.330000;0 +20260318 050200;212.327000;212.332000;212.322000;212.323000;0 +20260318 050300;212.320000;212.324000;212.315000;212.322000;0 +20260318 050400;212.323000;212.349000;212.317000;212.349000;0 +20260318 050500;212.350000;212.362000;212.338000;212.355000;0 +20260318 050600;212.356000;212.379000;212.354000;212.379000;0 +20260318 050700;212.378000;212.403000;212.372000;212.396000;0 +20260318 050800;212.397000;212.416000;212.397000;212.408000;0 +20260318 050900;212.409000;212.422000;212.404000;212.404000;0 +20260318 051000;212.400000;212.400000;212.389000;212.389000;0 +20260318 051100;212.389000;212.389000;212.358000;212.370000;0 +20260318 051200;212.373000;212.374000;212.361000;212.367000;0 +20260318 051300;212.367000;212.372000;212.357000;212.362000;0 +20260318 051400;212.363000;212.365000;212.348000;212.357000;0 +20260318 051500;212.360000;212.389000;212.357000;212.383000;0 +20260318 051600;212.381000;212.406000;212.381000;212.405000;0 +20260318 051700;212.405000;212.411000;212.393000;212.399000;0 +20260318 051800;212.400000;212.400000;212.378000;212.395000;0 +20260318 051900;212.394000;212.401000;212.376000;212.380000;0 +20260318 052000;212.376000;212.382000;212.363000;212.366000;0 +20260318 052100;212.368000;212.377000;212.366000;212.372000;0 +20260318 052200;212.373000;212.385000;212.348000;212.362000;0 +20260318 052300;212.363000;212.376000;212.362000;212.367000;0 +20260318 052400;212.366000;212.381000;212.365000;212.379000;0 +20260318 052500;212.380000;212.380000;212.356000;212.365000;0 +20260318 052600;212.366000;212.368000;212.340000;212.341000;0 +20260318 052700;212.340000;212.340000;212.325000;212.338000;0 +20260318 052800;212.340000;212.345000;212.321000;212.321000;0 +20260318 052900;212.320000;212.321000;212.294000;212.295000;0 +20260318 053000;212.294000;212.312000;212.294000;212.309000;0 +20260318 053100;212.307000;212.307000;212.286000;212.290000;0 +20260318 053200;212.288000;212.295000;212.251000;212.251000;0 +20260318 053300;212.250000;212.281000;212.248000;212.269000;0 +20260318 053400;212.271000;212.285000;212.259000;212.266000;0 +20260318 053500;212.264000;212.298000;212.264000;212.298000;0 +20260318 053600;212.293000;212.311000;212.291000;212.311000;0 +20260318 053700;212.311000;212.320000;212.308000;212.312000;0 +20260318 053800;212.309000;212.316000;212.283000;212.284000;0 +20260318 053900;212.286000;212.306000;212.285000;212.303000;0 +20260318 054000;212.301000;212.322000;212.300000;212.314000;0 +20260318 054100;212.318000;212.327000;212.314000;212.315000;0 +20260318 054200;212.317000;212.336000;212.313000;212.333000;0 +20260318 054300;212.332000;212.349000;212.307000;212.308000;0 +20260318 054400;212.305000;212.310000;212.290000;212.298000;0 +20260318 054500;212.301000;212.342000;212.294000;212.341000;0 +20260318 054600;212.341000;212.341000;212.323000;212.332000;0 +20260318 054700;212.325000;212.327000;212.314000;212.315000;0 +20260318 054800;212.315000;212.315000;212.294000;212.306000;0 +20260318 054900;212.308000;212.311000;212.302000;212.308000;0 +20260318 055000;212.306000;212.318000;212.306000;212.314000;0 +20260318 055100;212.313000;212.348000;212.313000;212.348000;0 +20260318 055200;212.350000;212.356000;212.335000;212.335000;0 +20260318 055300;212.337000;212.339000;212.307000;212.311000;0 +20260318 055400;212.312000;212.312000;212.285000;212.291000;0 +20260318 055500;212.294000;212.304000;212.291000;212.304000;0 +20260318 055600;212.305000;212.324000;212.305000;212.320000;0 +20260318 055700;212.318000;212.332000;212.316000;212.332000;0 +20260318 055800;212.334000;212.359000;212.334000;212.352000;0 +20260318 055900;212.352000;212.371000;212.352000;212.361000;0 +20260318 060000;212.361000;212.377000;212.346000;212.355000;0 +20260318 060100;212.355000;212.373000;212.345000;212.369000;0 +20260318 060200;212.368000;212.386000;212.356000;212.385000;0 +20260318 060300;212.383000;212.408000;212.382000;212.404000;0 +20260318 060400;212.404000;212.422000;212.402000;212.422000;0 +20260318 060500;212.421000;212.428000;212.384000;212.384000;0 +20260318 060600;212.384000;212.398000;212.373000;212.374000;0 +20260318 060700;212.380000;212.398000;212.368000;212.391000;0 +20260318 060800;212.394000;212.412000;212.389000;212.405000;0 +20260318 060900;212.403000;212.420000;212.403000;212.415000;0 +20260318 061000;212.414000;212.435000;212.410000;212.430000;0 +20260318 061100;212.431000;212.448000;212.427000;212.437000;0 +20260318 061200;212.437000;212.447000;212.415000;212.415000;0 +20260318 061300;212.417000;212.425000;212.400000;212.402000;0 +20260318 061400;212.406000;212.422000;212.391000;212.410000;0 +20260318 061500;212.409000;212.421000;212.404000;212.414000;0 +20260318 061600;212.413000;212.448000;212.411000;212.445000;0 +20260318 061700;212.444000;212.445000;212.422000;212.431000;0 +20260318 061800;212.433000;212.458000;212.433000;212.451000;0 +20260318 061900;212.450000;212.462000;212.443000;212.459000;0 +20260318 062000;212.454000;212.470000;212.448000;212.449000;0 +20260318 062100;212.449000;212.465000;212.446000;212.453000;0 +20260318 062200;212.453000;212.461000;212.436000;212.446000;0 +20260318 062300;212.441000;212.457000;212.431000;212.456000;0 +20260318 062400;212.454000;212.456000;212.414000;212.423000;0 +20260318 062500;212.421000;212.428000;212.369000;212.372000;0 +20260318 062600;212.369000;212.402000;212.349000;212.358000;0 +20260318 062700;212.357000;212.386000;212.311000;212.336000;0 +20260318 062800;212.334000;212.353000;212.329000;212.345000;0 +20260318 062900;212.347000;212.366000;212.331000;212.342000;0 +20260318 063000;212.341000;212.374000;212.329000;212.353000;0 +20260318 063100;212.353000;212.379000;212.346000;212.375000;0 +20260318 063200;212.375000;212.386000;212.345000;212.363000;0 +20260318 063300;212.365000;212.398000;212.364000;212.393000;0 +20260318 063400;212.396000;212.422000;212.385000;212.390000;0 +20260318 063500;212.391000;212.394000;212.362000;212.384000;0 +20260318 063600;212.383000;212.391000;212.342000;212.354000;0 +20260318 063700;212.354000;212.372000;212.350000;212.366000;0 +20260318 063800;212.367000;212.370000;212.350000;212.353000;0 +20260318 063900;212.356000;212.370000;212.352000;212.360000;0 +20260318 064000;212.358000;212.371000;212.342000;212.369000;0 +20260318 064100;212.378000;212.415000;212.366000;212.410000;0 +20260318 064200;212.411000;212.444000;212.408000;212.444000;0 +20260318 064300;212.445000;212.449000;212.419000;212.429000;0 +20260318 064400;212.423000;212.423000;212.404000;212.411000;0 +20260318 064500;212.407000;212.412000;212.369000;212.379000;0 +20260318 064600;212.379000;212.396000;212.373000;212.377000;0 +20260318 064700;212.380000;212.385000;212.359000;212.376000;0 +20260318 064800;212.375000;212.391000;212.373000;212.385000;0 +20260318 064900;212.389000;212.414000;212.382000;212.403000;0 +20260318 065000;212.404000;212.406000;212.379000;212.388000;0 +20260318 065100;212.385000;212.399000;212.384000;212.394000;0 +20260318 065200;212.394000;212.460000;212.394000;212.448000;0 +20260318 065300;212.452000;212.485000;212.443000;212.478000;0 +20260318 065400;212.480000;212.488000;212.445000;212.449000;0 +20260318 065500;212.446000;212.471000;212.423000;212.426000;0 +20260318 065600;212.425000;212.431000;212.385000;212.401000;0 +20260318 065700;212.401000;212.412000;212.373000;212.389000;0 +20260318 065800;212.390000;212.400000;212.341000;212.358000;0 +20260318 065900;212.361000;212.393000;212.356000;212.379000;0 +20260318 070000;212.383000;212.388000;212.340000;212.384000;0 +20260318 070100;212.386000;212.426000;212.378000;212.417000;0 +20260318 070200;212.420000;212.427000;212.402000;212.427000;0 +20260318 070300;212.428000;212.442000;212.411000;212.426000;0 +20260318 070400;212.422000;212.434000;212.389000;212.405000;0 +20260318 070500;212.402000;212.423000;212.397000;212.401000;0 +20260318 070600;212.404000;212.405000;212.374000;212.377000;0 +20260318 070700;212.374000;212.389000;212.343000;212.363000;0 +20260318 070800;212.359000;212.412000;212.359000;212.394000;0 +20260318 070900;212.395000;212.406000;212.370000;212.378000;0 +20260318 071000;212.375000;212.406000;212.371000;212.396000;0 +20260318 071100;212.391000;212.418000;212.387000;212.393000;0 +20260318 071200;212.390000;212.390000;212.342000;212.356000;0 +20260318 071300;212.355000;212.361000;212.324000;212.335000;0 +20260318 071400;212.336000;212.378000;212.325000;212.371000;0 +20260318 071500;212.375000;212.376000;212.341000;212.366000;0 +20260318 071600;212.365000;212.369000;212.297000;212.317000;0 +20260318 071700;212.319000;212.368000;212.316000;212.368000;0 +20260318 071800;212.366000;212.371000;212.350000;212.353000;0 +20260318 071900;212.352000;212.365000;212.325000;212.348000;0 +20260318 072000;212.350000;212.385000;212.327000;212.331000;0 +20260318 072100;212.329000;212.351000;212.314000;212.326000;0 +20260318 072200;212.327000;212.344000;212.317000;212.343000;0 +20260318 072300;212.343000;212.349000;212.316000;212.337000;0 +20260318 072400;212.332000;212.339000;212.283000;212.288000;0 +20260318 072500;212.289000;212.296000;212.242000;212.243000;0 +20260318 072600;212.242000;212.267000;212.236000;212.258000;0 +20260318 072700;212.258000;212.284000;212.256000;212.272000;0 +20260318 072800;212.271000;212.271000;212.249000;212.262000;0 +20260318 072900;212.264000;212.287000;212.253000;212.253000;0 +20260318 073000;212.247000;212.308000;212.234000;212.283000;0 +20260318 073100;212.284000;212.284000;212.243000;212.267000;0 +20260318 073200;212.269000;212.278000;212.229000;212.269000;0 +20260318 073300;212.271000;212.298000;212.263000;212.268000;0 +20260318 073400;212.265000;212.330000;212.264000;212.328000;0 +20260318 073500;212.327000;212.346000;212.319000;212.333000;0 +20260318 073600;212.328000;212.336000;212.313000;212.323000;0 +20260318 073700;212.324000;212.333000;212.277000;212.277000;0 +20260318 073800;212.278000;212.311000;212.276000;212.311000;0 +20260318 073900;212.311000;212.349000;212.311000;212.337000;0 +20260318 074000;212.334000;212.353000;212.320000;212.328000;0 +20260318 074100;212.326000;212.368000;212.326000;212.361000;0 +20260318 074200;212.363000;212.368000;212.299000;212.304000;0 +20260318 074300;212.304000;212.343000;212.280000;212.284000;0 +20260318 074400;212.286000;212.325000;212.279000;212.316000;0 +20260318 074500;212.316000;212.352000;212.310000;212.312000;0 +20260318 074600;212.313000;212.326000;212.301000;212.302000;0 +20260318 074700;212.302000;212.331000;212.298000;212.315000;0 +20260318 074800;212.313000;212.332000;212.253000;212.260000;0 +20260318 074900;212.262000;212.278000;212.237000;212.240000;0 +20260318 075000;212.241000;212.251000;212.208000;212.238000;0 +20260318 075100;212.238000;212.288000;212.234000;212.279000;0 +20260318 075200;212.279000;212.346000;212.279000;212.342000;0 +20260318 075300;212.342000;212.368000;212.294000;212.296000;0 +20260318 075400;212.294000;212.306000;212.240000;212.253000;0 +20260318 075500;212.251000;212.327000;212.250000;212.319000;0 +20260318 075600;212.319000;212.334000;212.306000;212.309000;0 +20260318 075700;212.309000;212.315000;212.260000;212.268000;0 +20260318 075800;212.271000;212.312000;212.256000;212.285000;0 +20260318 075900;212.284000;212.297000;212.270000;212.290000;0 +20260318 080000;212.294000;212.328000;212.276000;212.306000;0 +20260318 080100;212.304000;212.324000;212.281000;212.295000;0 +20260318 080200;212.300000;212.359000;212.290000;212.338000;0 +20260318 080300;212.338000;212.407000;212.337000;212.400000;0 +20260318 080400;212.397000;212.427000;212.376000;212.379000;0 +20260318 080500;212.376000;212.395000;212.330000;212.349000;0 +20260318 080600;212.348000;212.358000;212.320000;212.341000;0 +20260318 080700;212.352000;212.412000;212.352000;212.394000;0 +20260318 080800;212.396000;212.406000;212.353000;212.359000;0 +20260318 080900;212.357000;212.374000;212.329000;212.353000;0 +20260318 081000;212.350000;212.375000;212.336000;212.339000;0 +20260318 081100;212.340000;212.374000;212.329000;212.329000;0 +20260318 081200;212.330000;212.335000;212.315000;212.327000;0 +20260318 081300;212.330000;212.367000;212.311000;212.311000;0 +20260318 081400;212.311000;212.345000;212.310000;212.335000;0 +20260318 081500;212.334000;212.347000;212.292000;212.294000;0 +20260318 081600;212.299000;212.322000;212.292000;212.307000;0 +20260318 081700;212.307000;212.332000;212.294000;212.327000;0 +20260318 081800;212.326000;212.344000;212.320000;212.338000;0 +20260318 081900;212.337000;212.357000;212.326000;212.339000;0 +20260318 082000;212.335000;212.402000;212.335000;212.382000;0 +20260318 082100;212.383000;212.408000;212.381000;212.390000;0 +20260318 082200;212.388000;212.408000;212.372000;212.400000;0 +20260318 082300;212.399000;212.447000;212.399000;212.420000;0 +20260318 082400;212.419000;212.428000;212.411000;212.421000;0 +20260318 082500;212.421000;212.433000;212.391000;212.414000;0 +20260318 082600;212.414000;212.447000;212.413000;212.442000;0 +20260318 082700;212.439000;212.458000;212.423000;212.450000;0 +20260318 082800;212.447000;212.452000;212.423000;212.424000;0 +20260318 082900;212.424000;212.444000;212.419000;212.433000;0 +20260318 083000;212.433000;212.478000;212.426000;212.452000;0 +20260318 083100;212.457000;212.467000;212.413000;212.429000;0 +20260318 083200;212.429000;212.432000;212.401000;212.421000;0 +20260318 083300;212.421000;212.421000;212.345000;212.346000;0 +20260318 083400;212.347000;212.390000;212.347000;212.383000;0 +20260318 083500;212.384000;212.427000;212.380000;212.419000;0 +20260318 083600;212.418000;212.428000;212.364000;212.383000;0 +20260318 083700;212.386000;212.430000;212.378000;212.419000;0 +20260318 083800;212.420000;212.477000;212.409000;212.464000;0 +20260318 083900;212.462000;212.486000;212.455000;212.474000;0 +20260318 084000;212.472000;212.489000;212.455000;212.477000;0 +20260318 084100;212.480000;212.491000;212.456000;212.475000;0 +20260318 084200;212.479000;212.510000;212.472000;212.478000;0 +20260318 084300;212.477000;212.479000;212.411000;212.417000;0 +20260318 084400;212.419000;212.430000;212.399000;212.424000;0 +20260318 084500;212.424000;212.442000;212.400000;212.418000;0 +20260318 084600;212.420000;212.477000;212.393000;212.467000;0 +20260318 084700;212.467000;212.503000;212.452000;212.484000;0 +20260318 084800;212.484000;212.516000;212.468000;212.468000;0 +20260318 084900;212.468000;212.497000;212.457000;212.470000;0 +20260318 085000;212.472000;212.476000;212.447000;212.456000;0 +20260318 085100;212.459000;212.479000;212.423000;212.428000;0 +20260318 085200;212.428000;212.454000;212.414000;212.443000;0 +20260318 085300;212.440000;212.463000;212.426000;212.455000;0 +20260318 085400;212.455000;212.486000;212.443000;212.474000;0 +20260318 085500;212.474000;212.512000;212.449000;212.504000;0 +20260318 085600;212.504000;212.504000;212.465000;212.503000;0 +20260318 085700;212.501000;212.516000;212.458000;212.461000;0 +20260318 085800;212.462000;212.503000;212.462000;212.503000;0 +20260318 085900;212.496000;212.529000;212.494000;212.528000;0 +20260318 090000;212.527000;212.537000;212.482000;212.501000;0 +20260318 090100;212.500000;212.522000;212.494000;212.498000;0 +20260318 090200;212.499000;212.538000;212.496000;212.497000;0 +20260318 090300;212.497000;212.551000;212.497000;212.551000;0 +20260318 090400;212.550000;212.574000;212.544000;212.573000;0 +20260318 090500;212.575000;212.633000;212.564000;212.605000;0 +20260318 090600;212.608000;212.617000;212.566000;212.590000;0 +20260318 090700;212.591000;212.591000;212.529000;212.564000;0 +20260318 090800;212.561000;212.588000;212.541000;212.577000;0 +20260318 090900;212.576000;212.579000;212.497000;212.498000;0 +20260318 091000;212.497000;212.509000;212.467000;212.472000;0 +20260318 091100;212.476000;212.487000;212.348000;212.356000;0 +20260318 091200;212.356000;212.361000;212.274000;212.282000;0 +20260318 091300;212.286000;212.292000;212.216000;212.222000;0 +20260318 091400;212.220000;212.263000;212.209000;212.254000;0 +20260318 091500;212.252000;212.259000;212.216000;212.226000;0 +20260318 091600;212.228000;212.246000;212.207000;212.219000;0 +20260318 091700;212.219000;212.240000;212.190000;212.219000;0 +20260318 091800;212.219000;212.256000;212.219000;212.226000;0 +20260318 091900;212.232000;212.263000;212.229000;212.262000;0 +20260318 092000;212.262000;212.275000;212.235000;212.235000;0 +20260318 092100;212.236000;212.282000;212.236000;212.276000;0 +20260318 092200;212.279000;212.285000;212.241000;212.241000;0 +20260318 092300;212.240000;212.258000;212.234000;212.253000;0 +20260318 092400;212.252000;212.257000;212.227000;212.234000;0 +20260318 092500;212.236000;212.247000;212.201000;212.201000;0 +20260318 092600;212.203000;212.216000;212.188000;212.193000;0 +20260318 092700;212.192000;212.231000;212.192000;212.217000;0 +20260318 092800;212.215000;212.227000;212.186000;212.194000;0 +20260318 092900;212.194000;212.257000;212.194000;212.252000;0 +20260318 093000;212.254000;212.274000;212.235000;212.263000;0 +20260318 093100;212.269000;212.304000;212.265000;212.266000;0 +20260318 093200;212.266000;212.294000;212.264000;212.288000;0 +20260318 093300;212.288000;212.312000;212.278000;212.304000;0 +20260318 093400;212.304000;212.327000;212.283000;212.285000;0 +20260318 093500;212.284000;212.328000;212.284000;212.298000;0 +20260318 093600;212.290000;212.337000;212.285000;212.337000;0 +20260318 093700;212.333000;212.335000;212.308000;212.332000;0 +20260318 093800;212.328000;212.361000;212.314000;212.361000;0 +20260318 093900;212.359000;212.374000;212.323000;212.323000;0 +20260318 094000;212.322000;212.339000;212.315000;212.338000;0 +20260318 094100;212.337000;212.383000;212.337000;212.348000;0 +20260318 094200;212.349000;212.372000;212.344000;212.362000;0 +20260318 094300;212.362000;212.362000;212.311000;212.353000;0 +20260318 094400;212.351000;212.399000;212.342000;212.382000;0 +20260318 094500;212.380000;212.425000;212.380000;212.407000;0 +20260318 094600;212.408000;212.432000;212.408000;212.425000;0 +20260318 094700;212.425000;212.454000;212.409000;212.450000;0 +20260318 094800;212.449000;212.449000;212.428000;212.430000;0 +20260318 094900;212.431000;212.437000;212.385000;212.396000;0 +20260318 095000;212.398000;212.447000;212.396000;212.441000;0 +20260318 095100;212.438000;212.483000;212.437000;212.453000;0 +20260318 095200;212.452000;212.477000;212.433000;212.450000;0 +20260318 095300;212.450000;212.500000;212.438000;212.474000;0 +20260318 095400;212.477000;212.519000;212.455000;212.456000;0 +20260318 095500;212.455000;212.469000;212.422000;212.422000;0 +20260318 095600;212.428000;212.437000;212.406000;212.419000;0 +20260318 095700;212.419000;212.468000;212.413000;212.458000;0 +20260318 095800;212.461000;212.499000;212.447000;212.488000;0 +20260318 095900;212.492000;212.494000;212.434000;212.441000;0 +20260318 100000;212.445000;212.514000;212.444000;212.498000;0 +20260318 100100;212.502000;212.539000;212.496000;212.500000;0 +20260318 100200;212.498000;212.511000;212.469000;212.496000;0 +20260318 100300;212.494000;212.528000;212.483000;212.512000;0 +20260318 100400;212.514000;212.531000;212.500000;212.504000;0 +20260318 100500;212.505000;212.517000;212.486000;212.492000;0 +20260318 100600;212.497000;212.534000;212.485000;212.525000;0 +20260318 100700;212.526000;212.565000;212.526000;212.560000;0 +20260318 100800;212.560000;212.560000;212.507000;212.517000;0 +20260318 100900;212.517000;212.517000;212.483000;212.506000;0 +20260318 101000;212.507000;212.507000;212.473000;212.503000;0 +20260318 101100;212.505000;212.506000;212.454000;212.476000;0 +20260318 101200;212.474000;212.478000;212.444000;212.465000;0 +20260318 101300;212.466000;212.468000;212.431000;212.459000;0 +20260318 101400;212.462000;212.466000;212.447000;212.448000;0 +20260318 101500;212.450000;212.477000;212.449000;212.461000;0 +20260318 101600;212.460000;212.489000;212.460000;212.476000;0 +20260318 101700;212.476000;212.485000;212.469000;212.475000;0 +20260318 101800;212.475000;212.481000;212.428000;212.433000;0 +20260318 101900;212.431000;212.454000;212.424000;212.449000;0 +20260318 102000;212.450000;212.466000;212.444000;212.457000;0 +20260318 102100;212.457000;212.476000;212.453000;212.465000;0 +20260318 102200;212.464000;212.475000;212.449000;212.458000;0 +20260318 102300;212.460000;212.480000;212.447000;212.472000;0 +20260318 102400;212.471000;212.498000;212.468000;212.493000;0 +20260318 102500;212.492000;212.496000;212.452000;212.457000;0 +20260318 102600;212.456000;212.465000;212.439000;212.439000;0 +20260318 102700;212.438000;212.439000;212.392000;212.396000;0 +20260318 102800;212.396000;212.435000;212.390000;212.429000;0 +20260318 102900;212.427000;212.450000;212.416000;212.442000;0 +20260318 103000;212.442000;212.481000;212.433000;212.471000;0 +20260318 103100;212.471000;212.474000;212.437000;212.457000;0 +20260318 103200;212.455000;212.484000;212.455000;212.471000;0 +20260318 103300;212.471000;212.484000;212.454000;212.484000;0 +20260318 103400;212.484000;212.486000;212.453000;212.458000;0 +20260318 103500;212.458000;212.483000;212.447000;212.477000;0 +20260318 103600;212.474000;212.494000;212.472000;212.483000;0 +20260318 103700;212.486000;212.491000;212.463000;212.475000;0 +20260318 103800;212.477000;212.482000;212.459000;212.465000;0 +20260318 103900;212.467000;212.469000;212.444000;212.453000;0 +20260318 104000;212.454000;212.460000;212.433000;212.452000;0 +20260318 104100;212.452000;212.470000;212.418000;212.422000;0 +20260318 104200;212.422000;212.458000;212.421000;212.452000;0 +20260318 104300;212.454000;212.466000;212.435000;212.448000;0 +20260318 104400;212.448000;212.454000;212.441000;212.454000;0 +20260318 104500;212.454000;212.455000;212.431000;212.448000;0 +20260318 104600;212.449000;212.456000;212.439000;212.449000;0 +20260318 104700;212.448000;212.467000;212.432000;212.453000;0 +20260318 104800;212.452000;212.479000;212.452000;212.465000;0 +20260318 104900;212.463000;212.467000;212.439000;212.442000;0 +20260318 105000;212.436000;212.436000;212.375000;212.392000;0 +20260318 105100;212.395000;212.425000;212.395000;212.407000;0 +20260318 105200;212.409000;212.414000;212.371000;212.372000;0 +20260318 105300;212.373000;212.374000;212.342000;212.344000;0 +20260318 105400;212.346000;212.362000;212.330000;212.361000;0 +20260318 105500;212.362000;212.413000;212.362000;212.408000;0 +20260318 105600;212.405000;212.410000;212.367000;212.380000;0 +20260318 105700;212.381000;212.426000;212.371000;212.426000;0 +20260318 105800;212.425000;212.438000;212.411000;212.437000;0 +20260318 105900;212.437000;212.473000;212.434000;212.462000;0 +20260318 110000;212.461000;212.470000;212.449000;212.464000;0 +20260318 110100;212.461000;212.463000;212.439000;212.443000;0 +20260318 110200;212.443000;212.469000;212.438000;212.466000;0 +20260318 110300;212.466000;212.486000;212.458000;212.484000;0 +20260318 110400;212.484000;212.498000;212.471000;212.495000;0 +20260318 110500;212.495000;212.511000;212.477000;212.506000;0 +20260318 110600;212.506000;212.514000;212.488000;212.514000;0 +20260318 110700;212.514000;212.533000;212.500000;212.507000;0 +20260318 110800;212.506000;212.545000;212.498000;212.544000;0 +20260318 110900;212.543000;212.546000;212.524000;212.534000;0 +20260318 111000;212.533000;212.545000;212.515000;212.541000;0 +20260318 111100;212.541000;212.563000;212.541000;212.560000;0 +20260318 111200;212.559000;212.604000;212.559000;212.604000;0 +20260318 111300;212.602000;212.642000;212.596000;212.635000;0 +20260318 111400;212.636000;212.642000;212.605000;212.614000;0 +20260318 111500;212.612000;212.614000;212.522000;212.523000;0 +20260318 111600;212.520000;212.538000;212.520000;212.538000;0 +20260318 111700;212.537000;212.542000;212.523000;212.530000;0 +20260318 111800;212.530000;212.542000;212.520000;212.534000;0 +20260318 111900;212.533000;212.578000;212.532000;212.576000;0 +20260318 112000;212.575000;212.607000;212.569000;212.596000;0 +20260318 112100;212.600000;212.613000;212.589000;212.589000;0 +20260318 112200;212.590000;212.592000;212.578000;212.589000;0 +20260318 112300;212.588000;212.604000;212.577000;212.584000;0 +20260318 112400;212.585000;212.585000;212.560000;212.578000;0 +20260318 112500;212.577000;212.577000;212.541000;212.547000;0 +20260318 112600;212.548000;212.554000;212.534000;212.536000;0 +20260318 112700;212.534000;212.547000;212.526000;212.530000;0 +20260318 112800;212.530000;212.565000;212.527000;212.561000;0 +20260318 112900;212.561000;212.586000;212.556000;212.562000;0 +20260318 113000;212.565000;212.568000;212.549000;212.564000;0 +20260318 113100;212.566000;212.573000;212.551000;212.559000;0 +20260318 113200;212.565000;212.575000;212.539000;212.571000;0 +20260318 113300;212.572000;212.576000;212.550000;212.551000;0 +20260318 113400;212.552000;212.559000;212.534000;212.540000;0 +20260318 113500;212.537000;212.541000;212.487000;212.488000;0 +20260318 113600;212.487000;212.501000;212.483000;212.491000;0 +20260318 113700;212.492000;212.518000;212.487000;212.518000;0 +20260318 113800;212.517000;212.518000;212.504000;212.515000;0 +20260318 113900;212.515000;212.538000;212.511000;212.531000;0 +20260318 114000;212.531000;212.536000;212.505000;212.505000;0 +20260318 114100;212.502000;212.524000;212.501000;212.515000;0 +20260318 114200;212.514000;212.533000;212.502000;212.511000;0 +20260318 114300;212.509000;212.534000;212.503000;212.533000;0 +20260318 114400;212.533000;212.537000;212.506000;212.535000;0 +20260318 114500;212.533000;212.545000;212.520000;212.539000;0 +20260318 114600;212.540000;212.554000;212.530000;212.545000;0 +20260318 114700;212.544000;212.551000;212.534000;212.546000;0 +20260318 114800;212.545000;212.552000;212.535000;212.542000;0 +20260318 114900;212.540000;212.542000;212.519000;212.527000;0 +20260318 115000;212.526000;212.563000;212.518000;212.558000;0 +20260318 115100;212.558000;212.561000;212.528000;212.531000;0 +20260318 115200;212.531000;212.568000;212.521000;212.560000;0 +20260318 115300;212.560000;212.583000;212.558000;212.583000;0 +20260318 115400;212.582000;212.584000;212.568000;212.578000;0 +20260318 115500;212.577000;212.609000;212.574000;212.609000;0 +20260318 115600;212.610000;212.621000;212.590000;212.608000;0 +20260318 115700;212.607000;212.637000;212.592000;212.637000;0 +20260318 115800;212.637000;212.661000;212.635000;212.657000;0 +20260318 115900;212.657000;212.662000;212.636000;212.653000;0 +20260318 120000;212.652000;212.665000;212.627000;212.655000;0 +20260318 120100;212.656000;212.661000;212.628000;212.643000;0 +20260318 120200;212.646000;212.649000;212.618000;212.627000;0 +20260318 120300;212.626000;212.635000;212.614000;212.628000;0 +20260318 120400;212.628000;212.640000;212.621000;212.634000;0 +20260318 120500;212.633000;212.633000;212.593000;212.600000;0 +20260318 120600;212.600000;212.625000;212.580000;212.625000;0 +20260318 120700;212.627000;212.629000;212.598000;212.619000;0 +20260318 120800;212.619000;212.630000;212.582000;212.584000;0 +20260318 120900;212.585000;212.592000;212.572000;212.589000;0 +20260318 121000;212.590000;212.614000;212.587000;212.597000;0 +20260318 121100;212.598000;212.605000;212.567000;212.567000;0 +20260318 121200;212.568000;212.587000;212.568000;212.585000;0 +20260318 121300;212.586000;212.593000;212.566000;212.571000;0 +20260318 121400;212.571000;212.574000;212.550000;212.552000;0 +20260318 121500;212.552000;212.561000;212.544000;212.561000;0 +20260318 121600;212.557000;212.573000;212.552000;212.570000;0 +20260318 121700;212.571000;212.583000;212.559000;212.572000;0 +20260318 121800;212.571000;212.593000;212.566000;212.584000;0 +20260318 121900;212.585000;212.611000;212.579000;212.605000;0 +20260318 122000;212.605000;212.607000;212.591000;212.598000;0 +20260318 122100;212.597000;212.604000;212.585000;212.585000;0 +20260318 122200;212.583000;212.585000;212.555000;212.559000;0 +20260318 122300;212.561000;212.568000;212.553000;212.567000;0 +20260318 122400;212.566000;212.584000;212.565000;212.574000;0 +20260318 122500;212.574000;212.575000;212.543000;212.550000;0 +20260318 122600;212.552000;212.560000;212.545000;212.551000;0 +20260318 122700;212.554000;212.578000;212.553000;212.567000;0 +20260318 122800;212.567000;212.617000;212.567000;212.609000;0 +20260318 122900;212.613000;212.628000;212.599000;212.623000;0 +20260318 123000;212.625000;212.635000;212.608000;212.609000;0 +20260318 123100;212.608000;212.622000;212.596000;212.596000;0 +20260318 123200;212.598000;212.624000;212.594000;212.606000;0 +20260318 123300;212.608000;212.646000;212.608000;212.642000;0 +20260318 123400;212.638000;212.663000;212.631000;212.657000;0 +20260318 123500;212.658000;212.665000;212.629000;212.645000;0 +20260318 123600;212.646000;212.651000;212.628000;212.648000;0 +20260318 123700;212.645000;212.664000;212.643000;212.660000;0 +20260318 123800;212.660000;212.674000;212.656000;212.672000;0 +20260318 123900;212.669000;212.724000;212.663000;212.714000;0 +20260318 124000;212.716000;212.716000;212.648000;212.650000;0 +20260318 124100;212.649000;212.649000;212.615000;212.625000;0 +20260318 124200;212.623000;212.634000;212.613000;212.623000;0 +20260318 124300;212.624000;212.637000;212.610000;212.612000;0 +20260318 124400;212.614000;212.632000;212.612000;212.629000;0 +20260318 124500;212.626000;212.690000;212.622000;212.681000;0 +20260318 124600;212.681000;212.690000;212.653000;212.668000;0 +20260318 124700;212.667000;212.668000;212.604000;212.621000;0 +20260318 124800;212.621000;212.644000;212.609000;212.639000;0 +20260318 124900;212.640000;212.643000;212.615000;212.616000;0 +20260318 125000;212.617000;212.621000;212.601000;212.611000;0 +20260318 125100;212.610000;212.625000;212.591000;212.622000;0 +20260318 125200;212.622000;212.624000;212.599000;212.607000;0 +20260318 125300;212.608000;212.624000;212.600000;212.624000;0 +20260318 125400;212.624000;212.641000;212.622000;212.637000;0 +20260318 125500;212.638000;212.638000;212.600000;212.609000;0 +20260318 125600;212.608000;212.650000;212.607000;212.647000;0 +20260318 125700;212.648000;212.665000;212.639000;212.647000;0 +20260318 125800;212.647000;212.684000;212.644000;212.683000;0 +20260318 125900;212.687000;212.705000;212.640000;212.641000;0 +20260318 130000;212.638000;212.638000;212.575000;212.592000;0 +20260318 130100;212.588000;212.659000;212.587000;212.641000;0 +20260318 130200;212.642000;212.642000;212.572000;212.589000;0 +20260318 130300;212.588000;212.637000;212.560000;212.615000;0 +20260318 130400;212.615000;212.641000;212.594000;212.627000;0 +20260318 130500;212.625000;212.647000;212.578000;212.583000;0 +20260318 130600;212.583000;212.595000;212.569000;212.581000;0 +20260318 130700;212.581000;212.599000;212.561000;212.571000;0 +20260318 130800;212.570000;212.578000;212.546000;212.572000;0 +20260318 130900;212.571000;212.577000;212.548000;212.562000;0 +20260318 131000;212.563000;212.582000;212.547000;212.572000;0 +20260318 131100;212.575000;212.584000;212.551000;212.567000;0 +20260318 131200;212.566000;212.580000;212.557000;212.569000;0 +20260318 131300;212.569000;212.575000;212.551000;212.573000;0 +20260318 131400;212.572000;212.584000;212.551000;212.561000;0 +20260318 131500;212.559000;212.561000;212.455000;212.459000;0 +20260318 131600;212.463000;212.504000;212.463000;212.467000;0 +20260318 131700;212.469000;212.480000;212.439000;212.445000;0 +20260318 131800;212.444000;212.466000;212.431000;212.458000;0 +20260318 131900;212.459000;212.476000;212.437000;212.442000;0 +20260318 132000;212.439000;212.464000;212.437000;212.459000;0 +20260318 132100;212.462000;212.485000;212.456000;212.478000;0 +20260318 132200;212.477000;212.494000;212.453000;212.470000;0 +20260318 132300;212.472000;212.480000;212.427000;212.431000;0 +20260318 132400;212.433000;212.460000;212.423000;212.460000;0 +20260318 132500;212.456000;212.476000;212.428000;212.459000;0 +20260318 132600;212.461000;212.474000;212.445000;212.474000;0 +20260318 132700;212.469000;212.471000;212.440000;212.460000;0 +20260318 132800;212.460000;212.476000;212.458000;212.464000;0 +20260318 132900;212.465000;212.481000;212.451000;212.477000;0 +20260318 133000;212.481000;212.510000;212.464000;212.504000;0 +20260318 133100;212.508000;212.510000;212.475000;212.484000;0 +20260318 133200;212.484000;212.506000;212.475000;212.479000;0 +20260318 133300;212.489000;212.524000;212.477000;212.522000;0 +20260318 133400;212.521000;212.525000;212.480000;212.486000;0 +20260318 133500;212.484000;212.535000;212.482000;212.523000;0 +20260318 133600;212.523000;212.564000;212.516000;212.556000;0 +20260318 133700;212.566000;212.594000;212.558000;212.567000;0 +20260318 133800;212.567000;212.568000;212.492000;212.509000;0 +20260318 133900;212.509000;212.520000;212.477000;212.489000;0 +20260318 134000;212.488000;212.499000;212.462000;212.484000;0 +20260318 134100;212.482000;212.505000;212.462000;212.469000;0 +20260318 134200;212.470000;212.545000;212.470000;212.509000;0 +20260318 134300;212.508000;212.530000;212.498000;212.514000;0 +20260318 134400;212.518000;212.520000;212.447000;212.453000;0 +20260318 134500;212.451000;212.465000;212.422000;212.433000;0 +20260318 134600;212.434000;212.459000;212.394000;212.399000;0 +20260318 134700;212.404000;212.424000;212.373000;212.388000;0 +20260318 134800;212.396000;212.416000;212.381000;212.414000;0 +20260318 134900;212.412000;212.423000;212.369000;212.401000;0 +20260318 135000;212.400000;212.402000;212.342000;212.355000;0 +20260318 135100;212.354000;212.411000;212.351000;212.403000;0 +20260318 135200;212.401000;212.410000;212.373000;212.375000;0 +20260318 135300;212.374000;212.411000;212.362000;212.378000;0 +20260318 135400;212.379000;212.391000;212.369000;212.376000;0 +20260318 135500;212.379000;212.386000;212.349000;212.352000;0 +20260318 135600;212.351000;212.382000;212.321000;212.327000;0 +20260318 135700;212.328000;212.357000;212.301000;212.302000;0 +20260318 135800;212.302000;212.310000;212.275000;212.290000;0 +20260318 135900;212.292000;212.310000;212.256000;212.264000;0 +20260318 140000;212.265000;212.298000;212.250000;212.293000;0 +20260318 140100;212.292000;212.314000;212.258000;212.258000;0 +20260318 140200;212.254000;212.310000;212.232000;212.289000;0 +20260318 140300;212.291000;212.311000;212.270000;212.284000;0 +20260318 140400;212.283000;212.323000;212.283000;212.307000;0 +20260318 140500;212.304000;212.310000;212.267000;212.285000;0 +20260318 140600;212.282000;212.308000;212.270000;212.288000;0 +20260318 140700;212.287000;212.298000;212.263000;212.268000;0 +20260318 140800;212.268000;212.311000;212.268000;212.291000;0 +20260318 140900;212.292000;212.305000;212.274000;212.281000;0 +20260318 141000;212.280000;212.285000;212.238000;212.242000;0 +20260318 141100;212.239000;212.245000;212.212000;212.224000;0 +20260318 141200;212.226000;212.253000;212.223000;212.240000;0 +20260318 141300;212.239000;212.260000;212.238000;212.247000;0 +20260318 141400;212.248000;212.264000;212.242000;212.257000;0 +20260318 141500;212.258000;212.294000;212.254000;212.289000;0 +20260318 141600;212.283000;212.287000;212.246000;212.251000;0 +20260318 141700;212.253000;212.275000;212.245000;212.247000;0 +20260318 141800;212.249000;212.268000;212.234000;212.261000;0 +20260318 141900;212.262000;212.276000;212.245000;212.255000;0 +20260318 142000;212.259000;212.281000;212.250000;212.274000;0 +20260318 142100;212.279000;212.280000;212.244000;212.251000;0 +20260318 142200;212.252000;212.310000;212.250000;212.265000;0 +20260318 142300;212.267000;212.272000;212.212000;212.239000;0 +20260318 142400;212.252000;212.252000;212.223000;212.234000;0 +20260318 142500;212.240000;212.249000;212.228000;212.239000;0 +20260318 142600;212.242000;212.258000;212.237000;212.238000;0 +20260318 142700;212.238000;212.250000;212.228000;212.237000;0 +20260318 142800;212.234000;212.277000;212.233000;212.260000;0 +20260318 142900;212.260000;212.260000;212.240000;212.255000;0 +20260318 143000;212.250000;212.263000;212.230000;212.252000;0 +20260318 143100;212.252000;212.256000;212.244000;212.252000;0 +20260318 143200;212.252000;212.291000;212.251000;212.287000;0 +20260318 143300;212.289000;212.306000;212.281000;212.293000;0 +20260318 143400;212.292000;212.310000;212.286000;212.310000;0 +20260318 143500;212.311000;212.313000;212.283000;212.298000;0 +20260318 143600;212.294000;212.298000;212.270000;212.275000;0 +20260318 143700;212.275000;212.291000;212.275000;212.278000;0 +20260318 143800;212.278000;212.290000;212.268000;212.279000;0 +20260318 143900;212.282000;212.284000;212.270000;212.278000;0 +20260318 144000;212.278000;212.303000;212.276000;212.287000;0 +20260318 144100;212.287000;212.294000;212.268000;212.277000;0 +20260318 144200;212.277000;212.287000;212.267000;212.281000;0 +20260318 144300;212.277000;212.280000;212.239000;212.242000;0 +20260318 144400;212.241000;212.255000;212.221000;212.222000;0 +20260318 144500;212.223000;212.240000;212.216000;212.217000;0 +20260318 144600;212.218000;212.237000;212.202000;212.204000;0 +20260318 144700;212.203000;212.217000;212.168000;212.191000;0 +20260318 144800;212.190000;212.219000;212.182000;212.218000;0 +20260318 144900;212.218000;212.226000;212.207000;212.213000;0 +20260318 145000;212.215000;212.252000;212.201000;212.207000;0 +20260318 145100;212.207000;212.207000;212.135000;212.136000;0 +20260318 145200;212.135000;212.167000;212.114000;212.155000;0 +20260318 145300;212.158000;212.162000;212.134000;212.156000;0 +20260318 145400;212.150000;212.155000;212.125000;212.138000;0 +20260318 145500;212.140000;212.148000;212.122000;212.145000;0 +20260318 145600;212.147000;212.156000;212.121000;212.125000;0 +20260318 145700;212.125000;212.146000;212.115000;212.132000;0 +20260318 145800;212.131000;212.179000;212.124000;212.176000;0 +20260318 145900;212.176000;212.215000;212.173000;212.197000;0 +20260318 150000;212.194000;212.204000;212.168000;212.201000;0 +20260318 150100;212.203000;212.205000;212.164000;212.166000;0 +20260318 150200;212.171000;212.198000;212.171000;212.173000;0 +20260318 150300;212.175000;212.204000;212.174000;212.199000;0 +20260318 150400;212.201000;212.221000;212.191000;212.217000;0 +20260318 150500;212.219000;212.224000;212.178000;212.181000;0 +20260318 150600;212.173000;212.186000;212.172000;212.181000;0 +20260318 150700;212.181000;212.193000;212.177000;212.182000;0 +20260318 150800;212.182000;212.184000;212.171000;212.173000;0 +20260318 150900;212.173000;212.185000;212.170000;212.175000;0 +20260318 151000;212.179000;212.199000;212.178000;212.193000;0 +20260318 151100;212.193000;212.196000;212.054000;212.071000;0 +20260318 151200;212.078000;212.091000;212.015000;212.016000;0 +20260318 151300;212.020000;212.065000;212.019000;212.048000;0 +20260318 151400;212.055000;212.060000;212.023000;212.032000;0 +20260318 151500;212.037000;212.045000;212.008000;212.028000;0 +20260318 151600;212.025000;212.027000;212.003000;212.022000;0 +20260318 151700;212.022000;212.040000;212.007000;212.016000;0 +20260318 151800;212.016000;212.023000;211.988000;211.995000;0 +20260318 151900;211.991000;212.004000;211.958000;211.958000;0 +20260318 152000;211.959000;211.976000;211.927000;211.967000;0 +20260318 152100;211.967000;211.995000;211.962000;211.975000;0 +20260318 152200;211.975000;211.998000;211.975000;211.991000;0 +20260318 152300;211.994000;212.009000;211.976000;211.980000;0 +20260318 152400;211.976000;211.984000;211.953000;211.960000;0 +20260318 152500;211.961000;211.973000;211.948000;211.957000;0 +20260318 152600;211.958000;211.964000;211.942000;211.963000;0 +20260318 152700;211.963000;211.963000;211.941000;211.956000;0 +20260318 152800;211.957000;211.958000;211.928000;211.940000;0 +20260318 152900;211.941000;211.958000;211.936000;211.947000;0 +20260318 153000;211.945000;211.969000;211.942000;211.955000;0 +20260318 153100;211.955000;211.960000;211.944000;211.946000;0 +20260318 153200;211.951000;211.952000;211.919000;211.926000;0 +20260318 153300;211.929000;211.939000;211.924000;211.939000;0 +20260318 153400;211.940000;211.940000;211.916000;211.918000;0 +20260318 153500;211.918000;211.922000;211.908000;211.917000;0 +20260318 153600;211.917000;211.917000;211.912000;211.913000;0 +20260318 153700;211.915000;211.922000;211.909000;211.918000;0 +20260318 153800;211.914000;211.961000;211.893000;211.950000;0 +20260318 153900;211.951000;211.953000;211.923000;211.931000;0 +20260318 154000;211.928000;211.928000;211.916000;211.921000;0 +20260318 154100;211.922000;211.925000;211.907000;211.920000;0 +20260318 154200;211.924000;211.924000;211.913000;211.922000;0 +20260318 154300;211.918000;211.929000;211.899000;211.918000;0 +20260318 154400;211.924000;211.926000;211.904000;211.923000;0 +20260318 154500;211.932000;211.937000;211.922000;211.937000;0 +20260318 154600;211.937000;211.971000;211.934000;211.966000;0 +20260318 154700;211.966000;211.982000;211.956000;211.973000;0 +20260318 154800;211.970000;211.984000;211.964000;211.984000;0 +20260318 154900;211.982000;211.982000;211.928000;211.949000;0 +20260318 155000;211.943000;211.959000;211.938000;211.938000;0 +20260318 155100;211.939000;211.945000;211.936000;211.939000;0 +20260318 155200;211.940000;211.956000;211.938000;211.939000;0 +20260318 155300;211.941000;211.946000;211.903000;211.910000;0 +20260318 155400;211.910000;211.920000;211.888000;211.905000;0 +20260318 155500;211.905000;211.930000;211.893000;211.930000;0 +20260318 155600;211.927000;211.959000;211.922000;211.951000;0 +20260318 155700;211.948000;211.951000;211.915000;211.935000;0 +20260318 155800;211.938000;211.952000;211.921000;211.947000;0 +20260318 155900;211.943000;211.973000;211.866000;211.866000;0 +20260318 160400;211.812000;211.812000;211.812000;211.812000;0 +20260318 160500;211.778000;211.821000;211.771000;211.821000;0 +20260318 160700;211.824000;211.824000;211.824000;211.824000;0 +20260318 160900;211.823000;211.824000;211.823000;211.824000;0 +20260318 161000;211.823000;211.824000;211.822000;211.822000;0 +20260318 161100;211.823000;211.839000;211.820000;211.828000;0 +20260318 161200;211.829000;211.876000;211.819000;211.849000;0 +20260318 161300;211.745000;211.759000;211.707000;211.716000;0 +20260318 161400;211.726000;211.841000;211.691000;211.691000;0 +20260318 161500;211.710000;211.792000;211.692000;211.792000;0 +20260318 161600;211.792000;211.793000;211.732000;211.742000;0 +20260318 161700;211.751000;211.825000;211.751000;211.787000;0 +20260318 161800;211.829000;211.842000;211.782000;211.820000;0 +20260318 161900;211.829000;211.981000;211.817000;211.980000;0 +20260318 162000;211.981000;212.002000;211.980000;211.980000;0 +20260318 162100;211.980000;211.981000;211.980000;211.981000;0 +20260318 162200;211.980000;211.980000;211.980000;211.980000;0 +20260318 162300;211.980000;211.981000;211.980000;211.980000;0 +20260318 162400;211.980000;211.981000;211.980000;211.981000;0 +20260318 162500;211.981000;211.981000;211.980000;211.980000;0 +20260318 162600;211.980000;211.980000;211.980000;211.980000;0 +20260318 162700;211.980000;211.980000;211.980000;211.980000;0 +20260318 162800;211.980000;211.981000;211.980000;211.981000;0 +20260318 162900;211.980000;211.981000;211.980000;211.981000;0 +20260318 163000;211.981000;211.981000;211.980000;211.980000;0 +20260318 163100;211.980000;211.981000;211.980000;211.980000;0 +20260318 163200;211.980000;211.981000;211.980000;211.980000;0 +20260318 163300;211.981000;211.981000;211.980000;211.981000;0 +20260318 163400;211.980000;211.981000;211.980000;211.980000;0 +20260318 163500;211.981000;211.981000;211.980000;211.980000;0 +20260318 163600;211.980000;211.981000;211.975000;211.975000;0 +20260318 163700;211.980000;211.980000;211.975000;211.976000;0 +20260318 163800;211.975000;211.976000;211.975000;211.975000;0 +20260318 163900;211.976000;211.981000;211.975000;211.980000;0 +20260318 164000;211.980000;211.980000;211.980000;211.980000;0 +20260318 164100;211.980000;211.981000;211.980000;211.980000;0 +20260318 164200;211.980000;211.981000;211.980000;211.981000;0 +20260318 164300;211.980000;211.981000;211.980000;211.980000;0 +20260318 164400;211.980000;211.981000;211.976000;211.976000;0 +20260318 164500;211.976000;211.976000;211.976000;211.976000;0 +20260318 164600;211.976000;211.977000;211.976000;211.976000;0 +20260318 164700;211.980000;211.981000;211.980000;211.980000;0 +20260318 164800;211.980000;211.980000;211.980000;211.980000;0 +20260318 164900;211.980000;211.981000;211.980000;211.981000;0 +20260318 165000;211.980000;211.981000;211.980000;211.980000;0 +20260318 165100;211.980000;211.981000;211.980000;211.980000;0 +20260318 165200;211.980000;211.981000;211.836000;211.874000;0 +20260318 165300;211.873000;211.990000;211.808000;211.990000;0 +20260318 165400;211.990000;211.990000;211.989000;211.989000;0 +20260318 165500;211.989000;211.990000;211.989000;211.989000;0 +20260318 165600;211.989000;211.989000;211.989000;211.989000;0 +20260318 165700;211.989000;211.990000;211.989000;211.990000;0 +20260318 165800;211.990000;211.990000;211.989000;211.990000;0 +20260318 165900;211.989000;211.989000;211.989000;211.989000;0 +20260318 170000;211.989000;211.990000;211.888000;211.903000;0 +20260318 170100;211.899000;211.904000;211.831000;211.871000;0 +20260318 170200;211.869000;211.871000;211.849000;211.871000;0 +20260318 170300;211.871000;211.873000;211.831000;211.832000;0 +20260318 170400;211.832000;211.848000;211.817000;211.822000;0 +20260318 170500;211.821000;211.847000;211.792000;211.794000;0 +20260318 170600;211.798000;211.846000;211.794000;211.828000;0 +20260318 170700;211.824000;211.848000;211.819000;211.831000;0 +20260318 170800;211.831000;211.838000;211.821000;211.836000;0 +20260318 170900;211.835000;211.835000;211.833000;211.834000;0 +20260318 171000;211.833000;211.849000;211.833000;211.844000;0 +20260318 171100;211.841000;211.845000;211.829000;211.836000;0 +20260318 171200;211.831000;211.862000;211.815000;211.818000;0 +20260318 171300;211.817000;211.820000;211.792000;211.814000;0 +20260318 171400;211.813000;211.828000;211.799000;211.800000;0 +20260318 171500;211.801000;211.833000;211.795000;211.805000;0 +20260318 171600;211.808000;211.813000;211.794000;211.799000;0 +20260318 171700;211.800000;211.810000;211.799000;211.799000;0 +20260318 171800;211.796000;211.812000;211.794000;211.796000;0 +20260318 171900;211.800000;211.823000;211.792000;211.810000;0 +20260318 172000;211.812000;211.817000;211.792000;211.804000;0 +20260318 172100;211.807000;211.811000;211.792000;211.795000;0 +20260318 172200;211.795000;211.812000;211.792000;211.795000;0 +20260318 172300;211.803000;211.833000;211.793000;211.829000;0 +20260318 172400;211.829000;211.830000;211.803000;211.805000;0 +20260318 172500;211.805000;211.812000;211.802000;211.805000;0 +20260318 172600;211.806000;211.806000;211.792000;211.792000;0 +20260318 172700;211.796000;211.798000;211.794000;211.798000;0 +20260318 172800;211.796000;211.845000;211.794000;211.842000;0 +20260318 172900;211.841000;211.856000;211.839000;211.854000;0 +20260318 173000;211.861000;211.861000;211.820000;211.832000;0 +20260318 173100;211.832000;211.832000;211.816000;211.823000;0 +20260318 173200;211.823000;211.828000;211.815000;211.817000;0 +20260318 173300;211.815000;211.840000;211.813000;211.839000;0 +20260318 173400;211.838000;211.841000;211.812000;211.821000;0 +20260318 173500;211.821000;211.823000;211.812000;211.815000;0 +20260318 173600;211.816000;211.828000;211.813000;211.818000;0 +20260318 173700;211.819000;211.823000;211.815000;211.817000;0 +20260318 173800;211.814000;211.818000;211.812000;211.818000;0 +20260318 173900;211.818000;211.820000;211.812000;211.818000;0 +20260318 174000;211.819000;211.824000;211.812000;211.812000;0 +20260318 174100;211.812000;211.820000;211.812000;211.818000;0 +20260318 174200;211.817000;211.821000;211.813000;211.815000;0 +20260318 174300;211.812000;211.820000;211.812000;211.818000;0 +20260318 174400;211.818000;211.820000;211.812000;211.812000;0 +20260318 174500;211.812000;211.818000;211.812000;211.813000;0 +20260318 174600;211.814000;211.818000;211.812000;211.817000;0 +20260318 174700;211.818000;211.826000;211.817000;211.825000;0 +20260318 174800;211.823000;211.835000;211.820000;211.831000;0 +20260318 174900;211.833000;211.834000;211.824000;211.828000;0 +20260318 175000;211.826000;211.849000;211.818000;211.849000;0 +20260318 175100;211.849000;211.852000;211.838000;211.846000;0 +20260318 175200;211.847000;211.856000;211.841000;211.854000;0 +20260318 175300;211.859000;211.863000;211.846000;211.846000;0 +20260318 175400;211.842000;211.853000;211.838000;211.853000;0 +20260318 175500;211.853000;211.860000;211.852000;211.855000;0 +20260318 175600;211.855000;211.857000;211.842000;211.854000;0 +20260318 175700;211.857000;211.859000;211.843000;211.846000;0 +20260318 175800;211.843000;211.843000;211.821000;211.826000;0 +20260318 175900;211.827000;211.836000;211.824000;211.832000;0 +20260318 180000;211.832000;211.857000;211.821000;211.840000;0 +20260318 180100;211.838000;211.844000;211.826000;211.839000;0 +20260318 180200;211.842000;211.857000;211.836000;211.852000;0 +20260318 180300;211.851000;211.868000;211.851000;211.868000;0 +20260318 180400;211.868000;211.874000;211.857000;211.864000;0 +20260318 180500;211.863000;211.867000;211.857000;211.866000;0 +20260318 180600;211.868000;211.894000;211.864000;211.891000;0 +20260318 180700;211.888000;211.905000;211.880000;211.905000;0 +20260318 180800;211.904000;211.904000;211.892000;211.899000;0 +20260318 180900;211.899000;211.913000;211.890000;211.905000;0 +20260318 181000;211.903000;211.937000;211.903000;211.912000;0 +20260318 181100;211.913000;211.927000;211.912000;211.918000;0 +20260318 181200;211.913000;211.923000;211.895000;211.897000;0 +20260318 181300;211.895000;211.900000;211.890000;211.893000;0 +20260318 181400;211.890000;211.896000;211.888000;211.892000;0 +20260318 181500;211.893000;211.906000;211.893000;211.902000;0 +20260318 181600;211.902000;211.930000;211.895000;211.903000;0 +20260318 181700;211.907000;211.910000;211.904000;211.909000;0 +20260318 181800;211.906000;211.915000;211.906000;211.912000;0 +20260318 181900;211.913000;211.913000;211.905000;211.910000;0 +20260318 182000;211.912000;211.913000;211.906000;211.911000;0 +20260318 182100;211.917000;211.925000;211.916000;211.916000;0 +20260318 182200;211.915000;211.918000;211.906000;211.910000;0 +20260318 182300;211.910000;211.923000;211.910000;211.913000;0 +20260318 182400;211.909000;211.925000;211.906000;211.906000;0 +20260318 182500;211.906000;211.915000;211.897000;211.901000;0 +20260318 182600;211.903000;211.908000;211.877000;211.893000;0 +20260318 182700;211.893000;211.902000;211.883000;211.884000;0 +20260318 182800;211.887000;211.898000;211.878000;211.898000;0 +20260318 182900;211.898000;211.899000;211.890000;211.893000;0 +20260318 183000;211.893000;211.897000;211.884000;211.890000;0 +20260318 183100;211.890000;211.894000;211.874000;211.888000;0 +20260318 183200;211.882000;211.897000;211.882000;211.887000;0 +20260318 183300;211.886000;211.899000;211.884000;211.899000;0 +20260318 183400;211.899000;211.921000;211.899000;211.919000;0 +20260318 183500;211.920000;211.921000;211.895000;211.906000;0 +20260318 183600;211.908000;211.911000;211.902000;211.902000;0 +20260318 183700;211.902000;211.907000;211.888000;211.894000;0 +20260318 183800;211.894000;211.904000;211.889000;211.900000;0 +20260318 183900;211.902000;211.923000;211.901000;211.919000;0 +20260318 184000;211.919000;211.924000;211.915000;211.923000;0 +20260318 184100;211.924000;211.949000;211.924000;211.942000;0 +20260318 184200;211.944000;211.957000;211.942000;211.957000;0 +20260318 184300;211.954000;211.957000;211.931000;211.943000;0 +20260318 184400;211.943000;211.946000;211.903000;211.907000;0 +20260318 184500;211.912000;211.952000;211.912000;211.914000;0 +20260318 184600;211.915000;211.949000;211.914000;211.936000;0 +20260318 184700;211.935000;211.953000;211.930000;211.939000;0 +20260318 184800;211.950000;211.961000;211.941000;211.949000;0 +20260318 184900;211.950000;211.958000;211.941000;211.958000;0 +20260318 185000;211.957000;211.976000;211.951000;211.955000;0 +20260318 185100;211.953000;211.974000;211.941000;211.974000;0 +20260318 185200;211.974000;211.982000;211.963000;211.963000;0 +20260318 185300;211.964000;211.964000;211.948000;211.955000;0 +20260318 185400;211.953000;211.968000;211.946000;211.953000;0 +20260318 185500;211.954000;211.962000;211.943000;211.948000;0 +20260318 185600;211.956000;211.962000;211.931000;211.938000;0 +20260318 185700;211.940000;211.956000;211.934000;211.951000;0 +20260318 185800;211.954000;211.966000;211.948000;211.963000;0 +20260318 185900;211.961000;211.983000;211.961000;211.973000;0 +20260318 190000;211.978000;212.002000;211.960000;211.983000;0 +20260318 190100;211.983000;212.025000;211.972000;212.014000;0 +20260318 190200;212.017000;212.021000;211.981000;211.987000;0 +20260318 190300;211.988000;212.003000;211.980000;211.998000;0 +20260318 190400;212.002000;212.021000;211.998000;212.020000;0 +20260318 190500;212.019000;212.025000;212.001000;212.019000;0 +20260318 190600;212.020000;212.040000;212.003000;212.010000;0 +20260318 190700;212.009000;212.028000;212.006000;212.013000;0 +20260318 190800;212.013000;212.013000;211.998000;212.003000;0 +20260318 190900;212.003000;212.008000;211.986000;211.996000;0 +20260318 191000;211.996000;212.019000;211.984000;211.985000;0 +20260318 191100;211.989000;212.004000;211.982000;211.997000;0 +20260318 191200;211.996000;212.026000;211.992000;212.019000;0 +20260318 191300;212.021000;212.029000;212.011000;212.020000;0 +20260318 191400;212.021000;212.028000;212.014000;212.028000;0 +20260318 191500;212.030000;212.053000;212.027000;212.045000;0 +20260318 191600;212.041000;212.052000;212.033000;212.037000;0 +20260318 191700;212.037000;212.037000;212.001000;212.012000;0 +20260318 191800;212.012000;212.042000;212.012000;212.039000;0 +20260318 191900;212.039000;212.063000;212.038000;212.055000;0 +20260318 192000;212.051000;212.091000;212.051000;212.087000;0 +20260318 192100;212.086000;212.086000;212.044000;212.055000;0 +20260318 192200;212.054000;212.055000;212.028000;212.038000;0 +20260318 192300;212.035000;212.063000;212.019000;212.021000;0 +20260318 192400;212.021000;212.023000;211.966000;211.987000;0 +20260318 192500;211.999000;212.026000;211.995000;212.008000;0 +20260318 192600;212.007000;212.017000;212.002000;212.015000;0 +20260318 192700;212.015000;212.023000;211.985000;211.988000;0 +20260318 192800;211.985000;212.031000;211.985000;212.019000;0 +20260318 192900;212.024000;212.041000;212.022000;212.032000;0 +20260318 193000;212.028000;212.081000;212.023000;212.072000;0 +20260318 193100;212.079000;212.088000;212.054000;212.058000;0 +20260318 193200;212.056000;212.071000;212.055000;212.071000;0 +20260318 193300;212.070000;212.076000;212.024000;212.026000;0 +20260318 193400;212.023000;212.058000;212.023000;212.044000;0 +20260318 193500;212.042000;212.043000;212.023000;212.033000;0 +20260318 193600;212.030000;212.050000;212.023000;212.034000;0 +20260318 193700;212.035000;212.054000;212.031000;212.043000;0 +20260318 193800;212.042000;212.048000;212.027000;212.031000;0 +20260318 193900;212.032000;212.036000;212.010000;212.021000;0 +20260318 194000;212.025000;212.038000;212.007000;212.025000;0 +20260318 194100;212.025000;212.039000;212.019000;212.020000;0 +20260318 194200;212.020000;212.024000;211.997000;212.011000;0 +20260318 194300;212.011000;212.013000;211.978000;211.981000;0 +20260318 194400;211.979000;211.990000;211.970000;211.985000;0 +20260318 194500;211.989000;211.997000;211.973000;211.996000;0 +20260318 194600;211.999000;212.012000;211.983000;212.012000;0 +20260318 194700;212.008000;212.046000;212.007000;212.034000;0 +20260318 194800;212.031000;212.041000;211.983000;211.992000;0 +20260318 194900;211.995000;212.014000;211.985000;211.999000;0 +20260318 195000;211.999000;212.008000;211.986000;211.987000;0 +20260318 195100;211.988000;212.010000;211.967000;212.006000;0 +20260318 195200;212.010000;212.020000;211.991000;211.994000;0 +20260318 195300;211.993000;212.037000;211.986000;212.024000;0 +20260318 195400;212.025000;212.112000;212.016000;212.096000;0 +20260318 195500;212.088000;212.160000;212.079000;212.159000;0 +20260318 195600;212.157000;212.199000;212.150000;212.195000;0 +20260318 195700;212.196000;212.216000;212.185000;212.215000;0 +20260318 195800;212.215000;212.244000;212.198000;212.231000;0 +20260318 195900;212.231000;212.269000;212.213000;212.266000;0 +20260318 200000;212.268000;212.319000;212.255000;212.315000;0 +20260318 200100;212.315000;212.339000;212.296000;212.330000;0 +20260318 200200;212.331000;212.348000;212.293000;212.297000;0 +20260318 200300;212.297000;212.298000;212.262000;212.270000;0 +20260318 200400;212.270000;212.287000;212.245000;212.255000;0 +20260318 200500;212.253000;212.273000;212.243000;212.271000;0 +20260318 200600;212.276000;212.297000;212.273000;212.296000;0 +20260318 200700;212.297000;212.297000;212.283000;212.283000;0 +20260318 200800;212.284000;212.315000;212.281000;212.301000;0 +20260318 200900;212.297000;212.303000;212.258000;212.261000;0 +20260318 201000;212.262000;212.262000;212.187000;212.215000;0 +20260318 201100;212.216000;212.218000;212.181000;212.186000;0 +20260318 201200;212.184000;212.187000;212.164000;212.179000;0 +20260318 201300;212.181000;212.189000;212.160000;212.167000;0 +20260318 201400;212.169000;212.183000;212.151000;212.155000;0 +20260318 201500;212.153000;212.172000;212.137000;212.169000;0 +20260318 201600;212.166000;212.205000;212.165000;212.198000;0 +20260318 201700;212.197000;212.199000;212.167000;212.196000;0 +20260318 201800;212.198000;212.206000;212.170000;212.173000;0 +20260318 201900;212.175000;212.192000;212.164000;212.170000;0 +20260318 202000;212.166000;212.170000;212.152000;212.153000;0 +20260318 202100;212.163000;212.183000;212.163000;212.177000;0 +20260318 202200;212.176000;212.184000;212.170000;212.182000;0 +20260318 202300;212.180000;212.207000;212.169000;212.199000;0 +20260318 202400;212.199000;212.201000;212.186000;212.195000;0 +20260318 202500;212.195000;212.196000;212.170000;212.182000;0 +20260318 202600;212.181000;212.183000;212.164000;212.168000;0 +20260318 202700;212.166000;212.186000;212.164000;212.182000;0 +20260318 202800;212.185000;212.186000;212.168000;212.183000;0 +20260318 202900;212.185000;212.198000;212.180000;212.189000;0 +20260318 203000;212.191000;212.194000;212.152000;212.155000;0 +20260318 203100;212.155000;212.164000;212.131000;212.138000;0 +20260318 203200;212.139000;212.139000;212.097000;212.097000;0 +20260318 203300;212.099000;212.111000;212.089000;212.095000;0 +20260318 203400;212.096000;212.100000;212.064000;212.082000;0 +20260318 203500;212.082000;212.097000;212.076000;212.087000;0 +20260318 203600;212.084000;212.098000;212.066000;212.097000;0 +20260318 203700;212.095000;212.137000;212.095000;212.132000;0 +20260318 203800;212.130000;212.132000;212.107000;212.113000;0 +20260318 203900;212.114000;212.121000;212.105000;212.121000;0 +20260318 204000;212.118000;212.142000;212.110000;212.137000;0 +20260318 204100;212.137000;212.149000;212.132000;212.146000;0 +20260318 204200;212.145000;212.148000;212.125000;212.131000;0 +20260318 204300;212.132000;212.154000;212.132000;212.149000;0 +20260318 204400;212.150000;212.150000;212.124000;212.134000;0 +20260318 204500;212.133000;212.140000;212.124000;212.133000;0 +20260318 204600;212.136000;212.155000;212.126000;212.149000;0 +20260318 204700;212.147000;212.154000;212.138000;212.144000;0 +20260318 204800;212.145000;212.149000;212.127000;212.130000;0 +20260318 204900;212.132000;212.146000;212.128000;212.132000;0 +20260318 205000;212.129000;212.145000;212.128000;212.131000;0 +20260318 205100;212.129000;212.148000;212.124000;212.147000;0 +20260318 205200;212.146000;212.154000;212.132000;212.139000;0 +20260318 205300;212.138000;212.143000;212.130000;212.133000;0 +20260318 205400;212.128000;212.141000;212.128000;212.133000;0 +20260318 205500;212.134000;212.135000;212.096000;212.099000;0 +20260318 205600;212.098000;212.111000;212.095000;212.102000;0 +20260318 205700;212.102000;212.102000;212.082000;212.093000;0 +20260318 205800;212.093000;212.099000;212.073000;212.079000;0 +20260318 205900;212.077000;212.096000;212.076000;212.082000;0 +20260318 210000;212.082000;212.086000;212.005000;212.016000;0 +20260318 210100;212.014000;212.028000;211.986000;212.006000;0 +20260318 210200;212.007000;212.022000;211.988000;212.020000;0 +20260318 210300;212.007000;212.023000;212.004000;212.020000;0 +20260318 210400;212.020000;212.033000;212.014000;212.015000;0 +20260318 210500;212.011000;212.015000;211.990000;212.001000;0 +20260318 210600;212.004000;212.055000;211.994000;212.045000;0 +20260318 210700;212.044000;212.128000;212.037000;212.072000;0 +20260318 210800;212.072000;212.121000;212.054000;212.111000;0 +20260318 210900;212.106000;212.125000;212.089000;212.119000;0 +20260318 211000;212.118000;212.162000;212.095000;212.160000;0 +20260318 211100;212.156000;212.171000;212.137000;212.141000;0 +20260318 211200;212.140000;212.144000;212.119000;212.126000;0 +20260318 211300;212.135000;212.162000;212.132000;212.162000;0 +20260318 211400;212.159000;212.161000;212.128000;212.130000;0 +20260318 211500;212.136000;212.158000;212.132000;212.134000;0 +20260318 211600;212.135000;212.164000;212.132000;212.158000;0 +20260318 211700;212.162000;212.173000;212.148000;212.172000;0 +20260318 211800;212.173000;212.180000;212.152000;212.168000;0 +20260318 211900;212.163000;212.172000;212.153000;212.171000;0 +20260318 212000;212.170000;212.183000;212.156000;212.161000;0 +20260318 212100;212.160000;212.207000;212.156000;212.191000;0 +20260318 212200;212.191000;212.209000;212.188000;212.198000;0 +20260318 212300;212.195000;212.195000;212.175000;212.190000;0 +20260318 212400;212.191000;212.208000;212.191000;212.203000;0 +20260318 212500;212.199000;212.206000;212.182000;212.185000;0 +20260318 212600;212.179000;212.204000;212.178000;212.201000;0 +20260318 212700;212.199000;212.206000;212.174000;212.182000;0 +20260318 212800;212.183000;212.202000;212.182000;212.194000;0 +20260318 212900;212.196000;212.202000;212.178000;212.185000;0 +20260318 213000;212.183000;212.195000;212.167000;212.175000;0 +20260318 213100;212.175000;212.185000;212.164000;212.165000;0 +20260318 213200;212.166000;212.176000;212.151000;212.170000;0 +20260318 213300;212.176000;212.180000;212.157000;212.173000;0 +20260318 213400;212.171000;212.184000;212.167000;212.184000;0 +20260318 213500;212.186000;212.187000;212.175000;212.181000;0 +20260318 213600;212.179000;212.201000;212.174000;212.184000;0 +20260318 213700;212.183000;212.188000;212.170000;212.185000;0 +20260318 213800;212.182000;212.188000;212.162000;212.173000;0 +20260318 213900;212.170000;212.178000;212.129000;212.155000;0 +20260318 214000;212.154000;212.179000;212.147000;212.174000;0 +20260318 214100;212.171000;212.183000;212.162000;212.164000;0 +20260318 214200;212.162000;212.168000;212.155000;212.167000;0 +20260318 214300;212.167000;212.184000;212.129000;212.134000;0 +20260318 214400;212.136000;212.156000;212.136000;212.154000;0 +20260318 214500;212.154000;212.159000;212.107000;212.107000;0 +20260318 214600;212.105000;212.222000;212.104000;212.174000;0 +20260318 214700;212.171000;212.218000;212.161000;212.203000;0 +20260318 214800;212.198000;212.215000;212.128000;212.134000;0 +20260318 214900;212.137000;212.181000;212.131000;212.161000;0 +20260318 215000;212.159000;212.241000;212.159000;212.204000;0 +20260318 215100;212.203000;212.203000;212.172000;212.182000;0 +20260318 215200;212.183000;212.184000;212.161000;212.168000;0 +20260318 215300;212.165000;212.185000;212.164000;212.177000;0 +20260318 215400;212.182000;212.182000;212.154000;212.154000;0 +20260318 215500;212.150000;212.151000;212.117000;212.120000;0 +20260318 215600;212.118000;212.123000;212.093000;212.100000;0 +20260318 215700;212.106000;212.157000;212.104000;212.141000;0 +20260318 215800;212.141000;212.148000;212.113000;212.122000;0 +20260318 215900;212.120000;212.143000;212.120000;212.138000;0 +20260318 220000;212.139000;212.158000;212.139000;212.156000;0 +20260318 220100;212.159000;212.159000;212.125000;212.151000;0 +20260318 220200;212.153000;212.164000;212.143000;212.148000;0 +20260318 220300;212.147000;212.158000;212.140000;212.154000;0 +20260318 220400;212.153000;212.165000;212.142000;212.144000;0 +20260318 220500;212.143000;212.144000;212.113000;212.132000;0 +20260318 220600;212.132000;212.134000;212.114000;212.114000;0 +20260318 220700;212.109000;212.134000;212.105000;212.131000;0 +20260318 220800;212.133000;212.149000;212.125000;212.149000;0 +20260318 220900;212.151000;212.164000;212.142000;212.149000;0 +20260318 221000;212.149000;212.166000;212.142000;212.161000;0 +20260318 221100;212.157000;212.165000;212.150000;212.160000;0 +20260318 221200;212.162000;212.165000;212.153000;212.155000;0 +20260318 221300;212.157000;212.177000;212.155000;212.170000;0 +20260318 221400;212.171000;212.180000;212.168000;212.170000;0 +20260318 221500;212.171000;212.174000;212.163000;212.164000;0 +20260318 221600;212.166000;212.183000;212.165000;212.176000;0 +20260318 221700;212.183000;212.199000;212.170000;212.196000;0 +20260318 221800;212.197000;212.207000;212.193000;212.196000;0 +20260318 221900;212.197000;212.197000;212.143000;212.149000;0 +20260318 222000;212.151000;212.178000;212.147000;212.173000;0 +20260318 222100;212.173000;212.180000;212.150000;212.165000;0 +20260318 222200;212.167000;212.177000;212.160000;212.168000;0 +20260318 222300;212.173000;212.183000;212.164000;212.182000;0 +20260318 222400;212.188000;212.188000;212.173000;212.179000;0 +20260318 222500;212.178000;212.188000;212.170000;212.172000;0 +20260318 222600;212.173000;212.183000;212.166000;212.181000;0 +20260318 222700;212.181000;212.200000;212.173000;212.199000;0 +20260318 222800;212.201000;212.201000;212.180000;212.192000;0 +20260318 222900;212.194000;212.211000;212.192000;212.202000;0 +20260318 223000;212.205000;212.205000;212.170000;212.179000;0 +20260318 223100;212.180000;212.180000;212.156000;212.162000;0 +20260318 223200;212.162000;212.169000;212.146000;212.149000;0 +20260318 223300;212.149000;212.162000;212.149000;212.162000;0 +20260318 223400;212.163000;212.175000;212.163000;212.166000;0 +20260318 223500;212.165000;212.169000;212.158000;212.164000;0 +20260318 223600;212.166000;212.167000;212.154000;212.158000;0 +20260318 223700;212.160000;212.164000;212.134000;212.134000;0 +20260318 223800;212.139000;212.160000;212.138000;212.145000;0 +20260318 223900;212.142000;212.161000;212.142000;212.161000;0 +20260318 224000;212.162000;212.163000;212.138000;212.138000;0 +20260318 224100;212.138000;212.168000;212.138000;212.166000;0 +20260318 224200;212.164000;212.166000;212.162000;212.165000;0 +20260318 224300;212.157000;212.160000;212.149000;212.150000;0 +20260318 224400;212.163000;212.163000;212.134000;212.134000;0 +20260318 224500;212.137000;212.141000;212.099000;212.099000;0 +20260318 224600;212.098000;212.100000;212.085000;212.085000;0 +20260318 224700;212.083000;212.084000;212.067000;212.077000;0 +20260318 224800;212.078000;212.080000;212.064000;212.079000;0 +20260318 224900;212.081000;212.093000;212.081000;212.087000;0 +20260318 225000;212.089000;212.090000;212.070000;212.070000;0 +20260318 225100;212.071000;212.080000;212.061000;212.079000;0 +20260318 225200;212.081000;212.081000;212.068000;212.069000;0 +20260318 225300;212.073000;212.076000;212.064000;212.064000;0 +20260318 225400;212.062000;212.072000;212.051000;212.053000;0 +20260318 225500;212.050000;212.050000;212.002000;212.002000;0 +20260318 225600;212.005000;212.013000;212.002000;212.013000;0 +20260318 225700;212.012000;212.034000;212.009000;212.023000;0 +20260318 225800;212.021000;212.031000;212.011000;212.012000;0 +20260318 225900;212.012000;212.017000;212.002000;212.008000;0 +20260318 230000;212.005000;212.005000;211.976000;211.985000;0 +20260318 230100;211.987000;211.995000;211.970000;211.975000;0 +20260318 230200;211.978000;211.991000;211.978000;211.986000;0 +20260318 230300;211.980000;211.988000;211.973000;211.987000;0 +20260318 230400;211.989000;211.989000;211.968000;211.972000;0 +20260318 230500;211.970000;211.971000;211.946000;211.952000;0 +20260318 230600;211.944000;211.962000;211.932000;211.956000;0 +20260318 230700;211.953000;211.963000;211.939000;211.942000;0 +20260318 230800;211.947000;211.947000;211.931000;211.932000;0 +20260318 230900;211.931000;211.931000;211.910000;211.910000;0 +20260318 231000;211.908000;211.914000;211.896000;211.906000;0 +20260318 231100;211.905000;211.912000;211.899000;211.909000;0 +20260318 231200;211.909000;211.911000;211.896000;211.898000;0 +20260318 231300;211.894000;211.900000;211.885000;211.889000;0 +20260318 231400;211.888000;211.900000;211.885000;211.899000;0 +20260318 231500;211.899000;211.913000;211.889000;211.904000;0 +20260318 231600;211.902000;211.913000;211.893000;211.913000;0 +20260318 231700;211.911000;211.916000;211.881000;211.883000;0 +20260318 231800;211.883000;211.909000;211.874000;211.887000;0 +20260318 231900;211.886000;211.886000;211.854000;211.867000;0 +20260318 232000;211.870000;211.892000;211.860000;211.875000;0 +20260318 232100;211.886000;211.944000;211.886000;211.936000;0 +20260318 232200;211.930000;211.942000;211.914000;211.924000;0 +20260318 232300;211.924000;211.924000;211.909000;211.910000;0 +20260318 232400;211.907000;211.910000;211.901000;211.901000;0 +20260318 232500;211.909000;211.915000;211.888000;211.904000;0 +20260318 232600;211.903000;211.910000;211.900000;211.907000;0 +20260318 232700;211.905000;211.921000;211.901000;211.903000;0 +20260318 232800;211.900000;211.920000;211.900000;211.913000;0 +20260318 232900;211.911000;211.920000;211.904000;211.911000;0 +20260318 233000;211.913000;211.921000;211.908000;211.913000;0 +20260318 233100;211.918000;211.923000;211.889000;211.892000;0 +20260318 233200;211.891000;211.906000;211.884000;211.900000;0 +20260318 233300;211.902000;211.907000;211.888000;211.903000;0 +20260318 233400;211.901000;211.903000;211.871000;211.871000;0 +20260318 233500;211.873000;211.874000;211.867000;211.872000;0 +20260318 233600;211.872000;211.886000;211.871000;211.872000;0 +20260318 233700;211.875000;211.876000;211.861000;211.863000;0 +20260318 233800;211.865000;211.865000;211.856000;211.858000;0 +20260318 233900;211.859000;211.867000;211.853000;211.854000;0 +20260318 234000;211.856000;211.857000;211.837000;211.837000;0 +20260318 234100;211.839000;211.845000;211.825000;211.825000;0 +20260318 234200;211.824000;211.840000;211.824000;211.840000;0 +20260318 234300;211.839000;211.862000;211.838000;211.856000;0 +20260318 234400;211.854000;211.869000;211.849000;211.867000;0 +20260318 234500;211.864000;211.870000;211.858000;211.868000;0 +20260318 234600;211.867000;211.893000;211.867000;211.892000;0 +20260318 234700;211.890000;211.890000;211.862000;211.867000;0 +20260318 234800;211.869000;211.869000;211.853000;211.857000;0 +20260318 234900;211.858000;211.861000;211.836000;211.837000;0 +20260318 235000;211.838000;211.867000;211.836000;211.864000;0 +20260318 235100;211.862000;211.884000;211.862000;211.868000;0 +20260318 235200;211.869000;211.880000;211.864000;211.877000;0 +20260318 235300;211.878000;211.884000;211.877000;211.884000;0 +20260318 235400;211.881000;211.904000;211.878000;211.894000;0 +20260318 235500;211.897000;211.909000;211.894000;211.909000;0 +20260318 235600;211.912000;211.917000;211.884000;211.885000;0 +20260318 235700;211.891000;211.893000;211.872000;211.873000;0 +20260318 235800;211.872000;211.889000;211.872000;211.889000;0 +20260318 235900;211.887000;211.896000;211.886000;211.893000;0 +20260319 000000;211.890000;211.898000;211.885000;211.894000;0 +20260319 000100;211.890000;211.892000;211.874000;211.877000;0 +20260319 000200;211.891000;211.895000;211.881000;211.888000;0 +20260319 000300;211.887000;211.894000;211.880000;211.893000;0 +20260319 000400;211.895000;211.895000;211.880000;211.889000;0 +20260319 000500;211.890000;211.900000;211.885000;211.886000;0 +20260319 000600;211.884000;211.891000;211.880000;211.881000;0 +20260319 000700;211.882000;211.903000;211.882000;211.900000;0 +20260319 000800;211.907000;211.925000;211.898000;211.925000;0 +20260319 000900;211.924000;211.924000;211.911000;211.911000;0 +20260319 001000;211.914000;211.920000;211.910000;211.910000;0 +20260319 001100;211.912000;211.912000;211.897000;211.897000;0 +20260319 001200;211.896000;211.906000;211.896000;211.906000;0 +20260319 001300;211.905000;211.907000;211.897000;211.901000;0 +20260319 001400;211.904000;211.913000;211.902000;211.910000;0 +20260319 001500;211.910000;211.921000;211.908000;211.918000;0 +20260319 001600;211.916000;211.929000;211.914000;211.914000;0 +20260319 001700;211.914000;211.927000;211.914000;211.926000;0 +20260319 001800;211.926000;211.927000;211.917000;211.926000;0 +20260319 001900;211.927000;211.940000;211.924000;211.931000;0 +20260319 002000;211.931000;211.959000;211.931000;211.954000;0 +20260319 002100;211.960000;211.978000;211.953000;211.955000;0 +20260319 002200;211.954000;211.954000;211.947000;211.948000;0 +20260319 002300;211.948000;211.955000;211.947000;211.951000;0 +20260319 002400;211.951000;211.958000;211.940000;211.945000;0 +20260319 002500;211.942000;211.947000;211.931000;211.935000;0 +20260319 002600;211.938000;211.943000;211.929000;211.935000;0 +20260319 002700;211.935000;211.937000;211.921000;211.922000;0 +20260319 002800;211.923000;211.924000;211.900000;211.900000;0 +20260319 002900;211.900000;211.912000;211.897000;211.907000;0 +20260319 003000;211.910000;211.910000;211.896000;211.908000;0 +20260319 003100;211.902000;211.908000;211.897000;211.901000;0 +20260319 003200;211.901000;211.905000;211.896000;211.900000;0 +20260319 003300;211.901000;211.908000;211.894000;211.894000;0 +20260319 003400;211.895000;211.896000;211.871000;211.876000;0 +20260319 003500;211.878000;211.890000;211.875000;211.884000;0 +20260319 003600;211.884000;211.895000;211.881000;211.895000;0 +20260319 003700;211.897000;211.916000;211.895000;211.906000;0 +20260319 003800;211.903000;211.912000;211.882000;211.885000;0 +20260319 003900;211.882000;211.885000;211.871000;211.877000;0 +20260319 004000;211.880000;211.892000;211.866000;211.877000;0 +20260319 004100;211.874000;211.875000;211.861000;211.865000;0 +20260319 004200;211.862000;211.885000;211.862000;211.884000;0 +20260319 004300;211.881000;211.899000;211.878000;211.896000;0 +20260319 004400;211.897000;211.899000;211.857000;211.885000;0 +20260319 004500;211.881000;211.909000;211.876000;211.902000;0 +20260319 004600;211.907000;211.913000;211.889000;211.902000;0 +20260319 004700;211.897000;211.924000;211.886000;211.911000;0 +20260319 004800;211.916000;211.916000;211.902000;211.906000;0 +20260319 004900;211.907000;211.922000;211.903000;211.919000;0 +20260319 005000;211.916000;211.938000;211.888000;211.890000;0 +20260319 005100;211.892000;211.911000;211.885000;211.897000;0 +20260319 005200;211.896000;211.908000;211.871000;211.881000;0 +20260319 005300;211.882000;211.886000;211.874000;211.880000;0 +20260319 005400;211.881000;211.901000;211.880000;211.893000;0 +20260319 005500;211.894000;211.907000;211.891000;211.893000;0 +20260319 005600;211.893000;211.893000;211.875000;211.878000;0 +20260319 005700;211.879000;211.880000;211.870000;211.874000;0 +20260319 005800;211.874000;211.880000;211.871000;211.872000;0 +20260319 005900;211.873000;211.876000;211.811000;211.831000;0 +20260319 010000;211.842000;211.865000;211.831000;211.858000;0 +20260319 010100;211.861000;211.862000;211.846000;211.859000;0 +20260319 010200;211.859000;211.861000;211.838000;211.841000;0 +20260319 010300;211.843000;211.857000;211.838000;211.846000;0 +20260319 010400;211.848000;211.890000;211.842000;211.889000;0 +20260319 010500;211.892000;211.911000;211.879000;211.911000;0 +20260319 010600;211.911000;211.924000;211.888000;211.901000;0 +20260319 010700;211.899000;211.900000;211.886000;211.888000;0 +20260319 010800;211.887000;211.901000;211.875000;211.881000;0 +20260319 010900;211.883000;211.892000;211.880000;211.885000;0 +20260319 011000;211.885000;211.910000;211.885000;211.908000;0 +20260319 011100;211.909000;211.923000;211.901000;211.920000;0 +20260319 011200;211.921000;211.931000;211.913000;211.923000;0 +20260319 011300;211.920000;211.949000;211.919000;211.943000;0 +20260319 011400;211.944000;211.952000;211.931000;211.945000;0 +20260319 011500;211.945000;211.959000;211.936000;211.948000;0 +20260319 011600;211.953000;211.984000;211.942000;211.976000;0 +20260319 011700;211.978000;211.995000;211.969000;211.980000;0 +20260319 011800;211.980000;211.982000;211.935000;211.935000;0 +20260319 011900;211.934000;211.940000;211.924000;211.925000;0 +20260319 012000;211.926000;211.929000;211.915000;211.925000;0 +20260319 012100;211.926000;211.939000;211.924000;211.928000;0 +20260319 012200;211.922000;211.941000;211.916000;211.926000;0 +20260319 012300;211.924000;211.942000;211.921000;211.925000;0 +20260319 012400;211.928000;211.940000;211.923000;211.932000;0 +20260319 012500;211.932000;211.941000;211.924000;211.934000;0 +20260319 012600;211.935000;211.936000;211.927000;211.931000;0 +20260319 012700;211.931000;211.931000;211.920000;211.927000;0 +20260319 012800;211.925000;211.928000;211.909000;211.909000;0 +20260319 012900;211.909000;211.926000;211.899000;211.919000;0 +20260319 013000;211.921000;211.933000;211.889000;211.890000;0 +20260319 013100;211.898000;211.921000;211.894000;211.917000;0 +20260319 013200;211.917000;211.933000;211.881000;211.883000;0 +20260319 013300;211.881000;211.881000;211.815000;211.823000;0 +20260319 013400;211.824000;211.846000;211.766000;211.841000;0 +20260319 013500;211.840000;211.868000;211.811000;211.838000;0 +20260319 013600;211.837000;211.854000;211.809000;211.832000;0 +20260319 013700;211.832000;211.846000;211.791000;211.801000;0 +20260319 013800;211.810000;211.837000;211.756000;211.837000;0 +20260319 013900;211.837000;211.864000;211.822000;211.830000;0 +20260319 014000;211.829000;211.873000;211.824000;211.831000;0 +20260319 014100;211.833000;211.897000;211.799000;211.892000;0 +20260319 014200;211.893000;211.931000;211.891000;211.918000;0 +20260319 014300;211.916000;211.923000;211.900000;211.923000;0 +20260319 014400;211.925000;211.931000;211.903000;211.908000;0 +20260319 014500;211.902000;211.941000;211.897000;211.898000;0 +20260319 014600;211.905000;211.909000;211.886000;211.898000;0 +20260319 014700;211.896000;211.903000;211.857000;211.857000;0 +20260319 014800;211.860000;211.898000;211.853000;211.882000;0 +20260319 014900;211.884000;211.911000;211.873000;211.909000;0 +20260319 015000;211.906000;211.937000;211.892000;211.924000;0 +20260319 015100;211.932000;211.955000;211.927000;211.938000;0 +20260319 015200;211.937000;211.961000;211.910000;211.922000;0 +20260319 015300;211.923000;211.926000;211.900000;211.901000;0 +20260319 015400;211.906000;211.922000;211.893000;211.898000;0 +20260319 015500;211.897000;211.926000;211.874000;211.912000;0 +20260319 015600;211.910000;211.921000;211.896000;211.918000;0 +20260319 015700;211.917000;211.932000;211.898000;211.900000;0 +20260319 015800;211.902000;211.902000;211.825000;211.833000;0 +20260319 015900;211.834000;211.857000;211.821000;211.824000;0 +20260319 020000;211.826000;211.866000;211.797000;211.838000;0 +20260319 020100;211.839000;211.851000;211.687000;211.687000;0 +20260319 020200;211.693000;211.706000;211.568000;211.590000;0 +20260319 020300;211.590000;211.623000;211.582000;211.616000;0 +20260319 020400;211.615000;211.651000;211.588000;211.589000;0 +20260319 020500;211.596000;211.604000;211.522000;211.546000;0 +20260319 020600;211.543000;211.553000;211.520000;211.544000;0 +20260319 020700;211.544000;211.556000;211.476000;211.492000;0 +20260319 020800;211.493000;211.499000;211.253000;211.400000;0 +20260319 020900;211.400000;211.501000;211.373000;211.498000;0 +20260319 021000;211.498000;211.501000;211.371000;211.466000;0 +20260319 021100;211.465000;211.500000;211.389000;211.428000;0 +20260319 021200;211.425000;211.487000;211.425000;211.460000;0 +20260319 021300;211.465000;211.500000;211.431000;211.470000;0 +20260319 021400;211.470000;211.519000;211.448000;211.516000;0 +20260319 021500;211.517000;211.587000;211.509000;211.587000;0 +20260319 021600;211.588000;211.602000;211.541000;211.545000;0 +20260319 021700;211.546000;211.567000;211.521000;211.537000;0 +20260319 021800;211.539000;211.557000;211.452000;211.513000;0 +20260319 021900;211.511000;211.559000;211.511000;211.555000;0 +20260319 022000;211.556000;211.568000;211.466000;211.489000;0 +20260319 022100;211.490000;211.551000;211.485000;211.497000;0 +20260319 022200;211.497000;211.528000;211.440000;211.443000;0 +20260319 022300;211.448000;211.475000;211.359000;211.397000;0 +20260319 022400;211.395000;211.424000;211.382000;211.413000;0 +20260319 022500;211.415000;211.445000;211.372000;211.432000;0 +20260319 022600;211.433000;211.451000;211.394000;211.399000;0 +20260319 022700;211.401000;211.422000;211.372000;211.412000;0 +20260319 022800;211.412000;211.477000;211.403000;211.471000;0 +20260319 022900;211.469000;211.469000;211.419000;211.450000;0 +20260319 023000;211.450000;211.459000;211.423000;211.451000;0 +20260319 023100;211.450000;211.461000;211.420000;211.429000;0 +20260319 023200;211.431000;211.463000;211.427000;211.458000;0 +20260319 023300;211.461000;211.496000;211.456000;211.469000;0 +20260319 023400;211.467000;211.493000;211.453000;211.483000;0 +20260319 023500;211.483000;211.539000;211.482000;211.507000;0 +20260319 023600;211.507000;211.558000;211.507000;211.557000;0 +20260319 023700;211.558000;211.629000;211.533000;211.619000;0 +20260319 023800;211.619000;211.634000;211.600000;211.622000;0 +20260319 023900;211.625000;211.627000;211.595000;211.596000;0 +20260319 024000;211.597000;211.597000;211.538000;211.539000;0 +20260319 024100;211.538000;211.607000;211.538000;211.599000;0 +20260319 024200;211.604000;211.640000;211.591000;211.614000;0 +20260319 024300;211.612000;211.613000;211.575000;211.576000;0 +20260319 024400;211.575000;211.577000;211.490000;211.514000;0 +20260319 024500;211.514000;211.570000;211.488000;211.570000;0 +20260319 024600;211.568000;211.607000;211.550000;211.594000;0 +20260319 024700;211.594000;211.618000;211.583000;211.612000;0 +20260319 024800;211.612000;211.647000;211.566000;211.568000;0 +20260319 024900;211.570000;211.581000;211.543000;211.543000;0 +20260319 025000;211.544000;211.562000;211.519000;211.539000;0 +20260319 025100;211.541000;211.546000;211.492000;211.518000;0 +20260319 025200;211.517000;211.525000;211.486000;211.495000;0 +20260319 025300;211.495000;211.497000;211.456000;211.480000;0 +20260319 025400;211.478000;211.497000;211.465000;211.467000;0 +20260319 025500;211.467000;211.468000;211.377000;211.377000;0 +20260319 025600;211.373000;211.386000;211.314000;211.324000;0 +20260319 025700;211.323000;211.324000;211.280000;211.290000;0 +20260319 025800;211.284000;211.312000;211.221000;211.245000;0 +20260319 025900;211.247000;211.259000;211.153000;211.193000;0 +20260319 030000;211.192000;211.232000;211.161000;211.174000;0 +20260319 030100;211.175000;211.298000;211.163000;211.217000;0 +20260319 030200;211.216000;211.216000;211.095000;211.107000;0 +20260319 030300;211.107000;211.130000;211.036000;211.054000;0 +20260319 030400;211.054000;211.055000;210.977000;211.033000;0 +20260319 030500;211.033000;211.090000;211.030000;211.071000;0 +20260319 030600;211.071000;211.082000;211.041000;211.073000;0 +20260319 030700;211.069000;211.083000;211.036000;211.051000;0 +20260319 030800;211.054000;211.060000;210.972000;210.975000;0 +20260319 030900;210.969000;210.977000;210.923000;210.961000;0 +20260319 031000;210.962000;211.008000;210.904000;210.905000;0 +20260319 031100;210.906000;210.936000;210.894000;210.922000;0 +20260319 031200;210.919000;210.921000;210.858000;210.893000;0 +20260319 031300;210.890000;210.894000;210.843000;210.884000;0 +20260319 031400;210.884000;210.937000;210.878000;210.932000;0 +20260319 031500;210.938000;211.008000;210.938000;211.008000;0 +20260319 031600;211.005000;211.011000;210.980000;210.998000;0 +20260319 031700;211.000000;211.062000;210.996000;211.059000;0 +20260319 031800;211.056000;211.069000;211.019000;211.060000;0 +20260319 031900;211.065000;211.068000;211.014000;211.041000;0 +20260319 032000;211.040000;211.161000;211.016000;211.145000;0 +20260319 032100;211.145000;211.163000;211.040000;211.044000;0 +20260319 032200;211.044000;211.094000;211.031000;211.075000;0 +20260319 032300;211.077000;211.097000;211.070000;211.090000;0 +20260319 032400;211.086000;211.145000;211.079000;211.126000;0 +20260319 032500;211.130000;211.132000;211.040000;211.053000;0 +20260319 032600;211.052000;211.058000;211.004000;211.045000;0 +20260319 032700;211.048000;211.071000;211.032000;211.053000;0 +20260319 032800;211.056000;211.089000;211.051000;211.077000;0 +20260319 032900;211.071000;211.081000;211.042000;211.080000;0 +20260319 033000;211.082000;211.167000;211.074000;211.164000;0 +20260319 033100;211.162000;211.203000;211.147000;211.175000;0 +20260319 033200;211.176000;211.196000;211.159000;211.170000;0 +20260319 033300;211.164000;211.182000;211.141000;211.156000;0 +20260319 033400;211.157000;211.157000;211.086000;211.107000;0 +20260319 033500;211.109000;211.158000;211.102000;211.150000;0 +20260319 033600;211.158000;211.169000;211.118000;211.153000;0 +20260319 033700;211.153000;211.157000;211.104000;211.145000;0 +20260319 033800;211.144000;211.246000;211.133000;211.233000;0 +20260319 033900;211.232000;211.264000;211.212000;211.244000;0 +20260319 034000;211.245000;211.245000;211.175000;211.199000;0 +20260319 034100;211.199000;211.231000;211.150000;211.176000;0 +20260319 034200;211.176000;211.177000;211.104000;211.115000;0 +20260319 034300;211.118000;211.132000;211.080000;211.101000;0 +20260319 034400;211.103000;211.134000;211.075000;211.075000;0 +20260319 034500;211.076000;211.084000;211.061000;211.078000;0 +20260319 034600;211.077000;211.102000;211.058000;211.066000;0 +20260319 034700;211.069000;211.122000;211.069000;211.098000;0 +20260319 034800;211.098000;211.098000;211.052000;211.069000;0 +20260319 034900;211.068000;211.080000;211.045000;211.045000;0 +20260319 035000;211.050000;211.082000;211.033000;211.068000;0 +20260319 035100;211.068000;211.094000;211.021000;211.033000;0 +20260319 035200;211.031000;211.044000;210.991000;210.991000;0 +20260319 035300;210.995000;211.054000;210.993000;211.036000;0 +20260319 035400;211.037000;211.060000;211.008000;211.029000;0 +20260319 035500;211.032000;211.066000;211.032000;211.050000;0 +20260319 035600;211.049000;211.057000;211.028000;211.056000;0 +20260319 035700;211.056000;211.057000;210.995000;211.000000;0 +20260319 035800;211.000000;211.024000;210.984000;210.989000;0 +20260319 035900;210.987000;210.987000;210.954000;210.962000;0 +20260319 040000;210.963000;211.020000;210.963000;211.018000;0 +20260319 040100;211.016000;211.062000;211.014000;211.037000;0 +20260319 040200;211.037000;211.066000;211.026000;211.050000;0 +20260319 040300;211.048000;211.088000;211.048000;211.080000;0 +20260319 040400;211.084000;211.086000;211.034000;211.038000;0 +20260319 040500;211.036000;211.095000;211.027000;211.095000;0 +20260319 040600;211.093000;211.167000;211.078000;211.157000;0 +20260319 040700;211.154000;211.163000;211.106000;211.114000;0 +20260319 040800;211.112000;211.122000;211.020000;211.026000;0 +20260319 040900;211.027000;211.046000;210.995000;211.026000;0 +20260319 041000;211.030000;211.048000;211.000000;211.006000;0 +20260319 041100;211.007000;211.022000;210.976000;210.985000;0 +20260319 041200;210.987000;211.102000;210.971000;211.098000;0 +20260319 041300;211.107000;211.110000;211.067000;211.080000;0 +20260319 041400;211.086000;211.086000;211.023000;211.024000;0 +20260319 041500;211.024000;211.071000;211.015000;211.049000;0 +20260319 041600;211.046000;211.081000;211.035000;211.047000;0 +20260319 041700;211.049000;211.085000;211.035000;211.085000;0 +20260319 041800;211.086000;211.162000;211.082000;211.158000;0 +20260319 041900;211.158000;211.208000;211.143000;211.182000;0 +20260319 042000;211.182000;211.199000;211.141000;211.191000;0 +20260319 042100;211.192000;211.294000;211.189000;211.294000;0 +20260319 042200;211.290000;211.363000;211.282000;211.360000;0 +20260319 042300;211.359000;211.375000;211.330000;211.330000;0 +20260319 042400;211.328000;211.344000;211.282000;211.296000;0 +20260319 042500;211.294000;211.350000;211.283000;211.291000;0 +20260319 042600;211.293000;211.320000;211.215000;211.296000;0 +20260319 042700;211.295000;211.332000;211.237000;211.246000;0 +20260319 042800;211.249000;211.274000;211.184000;211.244000;0 +20260319 042900;211.243000;211.243000;211.182000;211.209000;0 +20260319 043000;211.208000;211.222000;211.158000;211.175000;0 +20260319 043100;211.171000;211.183000;211.143000;211.167000;0 +20260319 043200;211.168000;211.188000;211.147000;211.159000;0 +20260319 043300;211.158000;211.165000;211.134000;211.148000;0 +20260319 043400;211.147000;211.160000;211.119000;211.158000;0 +20260319 043500;211.161000;211.191000;211.133000;211.163000;0 +20260319 043600;211.160000;211.174000;211.132000;211.155000;0 +20260319 043700;211.153000;211.204000;211.153000;211.172000;0 +20260319 043800;211.172000;211.210000;211.148000;211.207000;0 +20260319 043900;211.210000;211.257000;211.205000;211.209000;0 +20260319 044000;211.208000;211.271000;211.188000;211.266000;0 +20260319 044100;211.266000;211.280000;211.228000;211.249000;0 +20260319 044200;211.249000;211.282000;211.232000;211.274000;0 +20260319 044300;211.272000;211.301000;211.253000;211.253000;0 +20260319 044400;211.252000;211.317000;211.245000;211.317000;0 +20260319 044500;211.313000;211.341000;211.286000;211.286000;0 +20260319 044600;211.287000;211.341000;211.282000;211.336000;0 +20260319 044700;211.338000;211.404000;211.325000;211.389000;0 +20260319 044800;211.388000;211.394000;211.356000;211.356000;0 +20260319 044900;211.354000;211.362000;211.323000;211.354000;0 +20260319 045000;211.353000;211.413000;211.336000;211.409000;0 +20260319 045100;211.406000;211.470000;211.363000;211.437000;0 +20260319 045200;211.438000;211.469000;211.403000;211.435000;0 +20260319 045300;211.434000;211.504000;211.428000;211.499000;0 +20260319 045400;211.493000;211.510000;211.471000;211.503000;0 +20260319 045500;211.499000;211.520000;211.486000;211.514000;0 +20260319 045600;211.513000;211.516000;211.478000;211.504000;0 +20260319 045700;211.505000;211.516000;211.441000;211.459000;0 +20260319 045800;211.459000;211.472000;211.405000;211.434000;0 +20260319 045900;211.435000;211.446000;211.407000;211.429000;0 +20260319 050000;211.429000;211.441000;211.370000;211.375000;0 +20260319 050100;211.377000;211.430000;211.370000;211.429000;0 +20260319 050200;211.428000;211.430000;211.399000;211.421000;0 +20260319 050300;211.421000;211.425000;211.379000;211.390000;0 +20260319 050400;211.391000;211.411000;211.369000;211.404000;0 +20260319 050500;211.404000;211.422000;211.377000;211.413000;0 +20260319 050600;211.414000;211.432000;211.406000;211.417000;0 +20260319 050700;211.416000;211.454000;211.408000;211.443000;0 +20260319 050800;211.442000;211.452000;211.403000;211.405000;0 +20260319 050900;211.405000;211.410000;211.388000;211.397000;0 +20260319 051000;211.396000;211.398000;211.369000;211.388000;0 +20260319 051100;211.386000;211.410000;211.381000;211.387000;0 +20260319 051200;211.388000;211.422000;211.387000;211.410000;0 +20260319 051300;211.410000;211.411000;211.387000;211.407000;0 +20260319 051400;211.406000;211.406000;211.371000;211.377000;0 +20260319 051500;211.379000;211.397000;211.349000;211.359000;0 +20260319 051600;211.361000;211.380000;211.324000;211.324000;0 +20260319 051700;211.325000;211.344000;211.317000;211.317000;0 +20260319 051800;211.318000;211.354000;211.300000;211.340000;0 +20260319 051900;211.342000;211.345000;211.302000;211.302000;0 +20260319 052000;211.305000;211.305000;211.260000;211.294000;0 +20260319 052100;211.294000;211.345000;211.292000;211.332000;0 +20260319 052200;211.332000;211.348000;211.327000;211.343000;0 +20260319 052300;211.342000;211.361000;211.335000;211.361000;0 +20260319 052400;211.354000;211.384000;211.354000;211.378000;0 +20260319 052500;211.379000;211.392000;211.365000;211.383000;0 +20260319 052600;211.389000;211.397000;211.368000;211.396000;0 +20260319 052700;211.403000;211.410000;211.341000;211.342000;0 +20260319 052800;211.343000;211.353000;211.337000;211.344000;0 +20260319 052900;211.337000;211.356000;211.325000;211.335000;0 +20260319 053000;211.332000;211.332000;211.282000;211.287000;0 +20260319 053100;211.290000;211.290000;211.239000;211.241000;0 +20260319 053200;211.240000;211.261000;211.239000;211.256000;0 +20260319 053300;211.257000;211.300000;211.257000;211.299000;0 +20260319 053400;211.299000;211.327000;211.292000;211.314000;0 +20260319 053500;211.313000;211.326000;211.299000;211.318000;0 +20260319 053600;211.321000;211.324000;211.296000;211.297000;0 +20260319 053700;211.295000;211.305000;211.278000;211.279000;0 +20260319 053800;211.280000;211.322000;211.266000;211.321000;0 +20260319 053900;211.329000;211.367000;211.323000;211.363000;0 +20260319 054000;211.363000;211.370000;211.297000;211.316000;0 +20260319 054100;211.317000;211.340000;211.315000;211.337000;0 +20260319 054200;211.333000;211.339000;211.310000;211.310000;0 +20260319 054300;211.310000;211.342000;211.296000;211.329000;0 +20260319 054400;211.329000;211.331000;211.270000;211.271000;0 +20260319 054500;211.270000;211.312000;211.265000;211.305000;0 +20260319 054600;211.304000;211.329000;211.304000;211.309000;0 +20260319 054700;211.310000;211.345000;211.309000;211.330000;0 +20260319 054800;211.331000;211.343000;211.321000;211.343000;0 +20260319 054900;211.344000;211.368000;211.329000;211.364000;0 +20260319 055000;211.365000;211.399000;211.361000;211.385000;0 +20260319 055100;211.384000;211.416000;211.377000;211.406000;0 +20260319 055200;211.405000;211.445000;211.405000;211.429000;0 +20260319 055300;211.429000;211.439000;211.390000;211.394000;0 +20260319 055400;211.393000;211.408000;211.379000;211.381000;0 +20260319 055500;211.380000;211.380000;211.315000;211.322000;0 +20260319 055600;211.323000;211.359000;211.319000;211.333000;0 +20260319 055700;211.334000;211.339000;211.313000;211.339000;0 +20260319 055800;211.342000;211.373000;211.329000;211.338000;0 +20260319 055900;211.337000;211.338000;211.283000;211.295000;0 +20260319 060000;211.298000;211.343000;211.289000;211.320000;0 +20260319 060100;211.317000;211.350000;211.307000;211.348000;0 +20260319 060200;211.349000;211.387000;211.334000;211.370000;0 +20260319 060300;211.371000;211.393000;211.363000;211.379000;0 +20260319 060400;211.380000;211.382000;211.359000;211.365000;0 +20260319 060500;211.364000;211.373000;211.349000;211.355000;0 +20260319 060600;211.354000;211.376000;211.334000;211.360000;0 +20260319 060700;211.357000;211.384000;211.357000;211.370000;0 +20260319 060800;211.372000;211.382000;211.350000;211.360000;0 +20260319 060900;211.364000;211.371000;211.335000;211.338000;0 +20260319 061000;211.339000;211.366000;211.331000;211.347000;0 +20260319 061100;211.345000;211.366000;211.336000;211.366000;0 +20260319 061200;211.364000;211.366000;211.338000;211.352000;0 +20260319 061300;211.352000;211.364000;211.331000;211.333000;0 +20260319 061400;211.332000;211.336000;211.313000;211.313000;0 +20260319 061500;211.311000;211.313000;211.272000;211.272000;0 +20260319 061600;211.276000;211.319000;211.260000;211.317000;0 +20260319 061700;211.315000;211.317000;211.283000;211.283000;0 +20260319 061800;211.284000;211.336000;211.284000;211.323000;0 +20260319 061900;211.324000;211.340000;211.308000;211.325000;0 +20260319 062000;211.327000;211.327000;211.296000;211.300000;0 +20260319 062100;211.301000;211.309000;211.290000;211.294000;0 +20260319 062200;211.292000;211.293000;211.249000;211.258000;0 +20260319 062300;211.259000;211.265000;211.207000;211.210000;0 +20260319 062400;211.211000;211.231000;211.196000;211.210000;0 +20260319 062500;211.210000;211.234000;211.199000;211.229000;0 +20260319 062600;211.229000;211.238000;211.195000;211.205000;0 +20260319 062700;211.205000;211.208000;211.178000;211.191000;0 +20260319 062800;211.190000;211.212000;211.188000;211.209000;0 +20260319 062900;211.209000;211.228000;211.206000;211.223000;0 +20260319 063000;211.217000;211.250000;211.199000;211.214000;0 +20260319 063100;211.213000;211.235000;211.202000;211.235000;0 +20260319 063200;211.236000;211.262000;211.234000;211.254000;0 +20260319 063300;211.254000;211.267000;211.251000;211.254000;0 +20260319 063400;211.254000;211.265000;211.244000;211.263000;0 +20260319 063500;211.262000;211.279000;211.249000;211.270000;0 +20260319 063600;211.275000;211.277000;211.254000;211.254000;0 +20260319 063700;211.254000;211.269000;211.229000;211.261000;0 +20260319 063800;211.264000;211.268000;211.240000;211.248000;0 +20260319 063900;211.248000;211.258000;211.232000;211.234000;0 +20260319 064000;211.234000;211.249000;211.222000;211.230000;0 +20260319 064100;211.230000;211.242000;211.221000;211.239000;0 +20260319 064200;211.240000;211.248000;211.228000;211.241000;0 +20260319 064300;211.241000;211.274000;211.231000;211.265000;0 +20260319 064400;211.266000;211.291000;211.221000;211.232000;0 +20260319 064500;211.233000;211.235000;211.153000;211.156000;0 +20260319 064600;211.156000;211.178000;211.148000;211.148000;0 +20260319 064700;211.149000;211.206000;211.148000;211.200000;0 +20260319 064800;211.203000;211.247000;211.195000;211.199000;0 +20260319 064900;211.201000;211.250000;211.198000;211.250000;0 +20260319 065000;211.252000;211.289000;211.229000;211.288000;0 +20260319 065100;211.288000;211.335000;211.283000;211.334000;0 +20260319 065200;211.333000;211.333000;211.299000;211.319000;0 +20260319 065300;211.320000;211.360000;211.310000;211.338000;0 +20260319 065400;211.338000;211.377000;211.337000;211.360000;0 +20260319 065500;211.360000;211.367000;211.335000;211.346000;0 +20260319 065600;211.342000;211.432000;211.342000;211.430000;0 +20260319 065700;211.426000;211.435000;211.396000;211.398000;0 +20260319 065800;211.397000;211.426000;211.395000;211.418000;0 +20260319 065900;211.417000;211.445000;211.391000;211.424000;0 +20260319 070000;211.406000;211.696000;211.394000;211.596000;0 +20260319 070100;211.585000;211.586000;211.350000;211.465000;0 +20260319 070200;211.469000;211.520000;211.435000;211.517000;0 +20260319 070300;211.516000;211.546000;211.456000;211.456000;0 +20260319 070400;211.455000;211.455000;211.322000;211.397000;0 +20260319 070500;211.399000;211.455000;211.357000;211.427000;0 +20260319 070600;211.419000;211.556000;211.419000;211.517000;0 +20260319 070700;211.517000;211.595000;211.489000;211.553000;0 +20260319 070800;211.556000;211.563000;211.477000;211.531000;0 +20260319 070900;211.530000;211.567000;211.502000;211.560000;0 +20260319 071000;211.563000;211.566000;211.495000;211.516000;0 +20260319 071100;211.518000;211.621000;211.518000;211.620000;0 +20260319 071200;211.624000;211.682000;211.559000;211.567000;0 +20260319 071300;211.566000;211.594000;211.543000;211.549000;0 +20260319 071400;211.551000;211.567000;211.520000;211.527000;0 +20260319 071500;211.525000;211.578000;211.508000;211.556000;0 +20260319 071600;211.556000;211.599000;211.542000;211.596000;0 +20260319 071700;211.596000;211.608000;211.560000;211.585000;0 +20260319 071800;211.585000;211.605000;211.561000;211.566000;0 +20260319 071900;211.564000;211.572000;211.545000;211.558000;0 +20260319 072000;211.559000;211.621000;211.556000;211.576000;0 +20260319 072100;211.576000;211.638000;211.549000;211.613000;0 +20260319 072200;211.614000;211.658000;211.571000;211.576000;0 +20260319 072300;211.574000;211.595000;211.549000;211.564000;0 +20260319 072400;211.566000;211.600000;211.564000;211.581000;0 +20260319 072500;211.581000;211.605000;211.542000;211.543000;0 +20260319 072600;211.545000;211.592000;211.483000;211.513000;0 +20260319 072700;211.514000;211.566000;211.484000;211.555000;0 +20260319 072800;211.555000;211.559000;211.522000;211.550000;0 +20260319 072900;211.549000;211.549000;211.506000;211.508000;0 +20260319 073000;211.488000;211.580000;211.447000;211.525000;0 +20260319 073100;211.529000;211.580000;211.506000;211.558000;0 +20260319 073200;211.560000;211.560000;211.503000;211.503000;0 +20260319 073300;211.502000;211.516000;211.425000;211.426000;0 +20260319 073400;211.425000;211.449000;211.410000;211.431000;0 +20260319 073500;211.433000;211.469000;211.415000;211.418000;0 +20260319 073600;211.418000;211.430000;211.392000;211.417000;0 +20260319 073700;211.417000;211.468000;211.417000;211.459000;0 +20260319 073800;211.461000;211.481000;211.424000;211.430000;0 +20260319 073900;211.430000;211.473000;211.416000;211.427000;0 +20260319 074000;211.419000;211.473000;211.391000;211.473000;0 +20260319 074100;211.472000;211.493000;211.452000;211.466000;0 +20260319 074200;211.463000;211.535000;211.449000;211.533000;0 +20260319 074300;211.530000;211.573000;211.490000;211.493000;0 +20260319 074400;211.499000;211.542000;211.491000;211.494000;0 +20260319 074500;211.493000;211.493000;211.409000;211.411000;0 +20260319 074600;211.413000;211.476000;211.411000;211.476000;0 +20260319 074700;211.474000;211.474000;211.428000;211.447000;0 +20260319 074800;211.448000;211.459000;211.408000;211.422000;0 +20260319 074900;211.422000;211.470000;211.403000;211.415000;0 +20260319 075000;211.413000;211.415000;211.334000;211.377000;0 +20260319 075100;211.378000;211.405000;211.332000;211.349000;0 +20260319 075200;211.352000;211.361000;211.302000;211.331000;0 +20260319 075300;211.330000;211.341000;211.272000;211.286000;0 +20260319 075400;211.292000;211.321000;211.277000;211.307000;0 +20260319 075500;211.307000;211.353000;211.295000;211.348000;0 +20260319 075600;211.348000;211.385000;211.315000;211.375000;0 +20260319 075700;211.374000;211.401000;211.338000;211.346000;0 +20260319 075800;211.345000;211.354000;211.318000;211.347000;0 +20260319 075900;211.348000;211.349000;211.312000;211.324000;0 +20260319 080000;211.326000;211.352000;211.311000;211.329000;0 +20260319 080100;211.328000;211.331000;211.292000;211.292000;0 +20260319 080200;211.290000;211.339000;211.287000;211.333000;0 +20260319 080300;211.337000;211.352000;211.299000;211.342000;0 +20260319 080400;211.339000;211.378000;211.287000;211.290000;0 +20260319 080500;211.289000;211.316000;211.273000;211.280000;0 +20260319 080600;211.277000;211.282000;211.243000;211.266000;0 +20260319 080700;211.266000;211.316000;211.256000;211.289000;0 +20260319 080800;211.289000;211.292000;211.226000;211.236000;0 +20260319 080900;211.236000;211.243000;211.185000;211.188000;0 +20260319 081000;211.187000;211.218000;211.162000;211.162000;0 +20260319 081100;211.163000;211.219000;211.158000;211.193000;0 +20260319 081200;211.189000;211.241000;211.188000;211.201000;0 +20260319 081300;211.203000;211.239000;211.195000;211.237000;0 +20260319 081400;211.238000;211.290000;211.232000;211.251000;0 +20260319 081500;211.258000;211.285000;211.225000;211.249000;0 +20260319 081600;211.249000;211.266000;211.234000;211.251000;0 +20260319 081700;211.257000;211.301000;211.228000;211.264000;0 +20260319 081800;211.264000;211.345000;211.243000;211.338000;0 +20260319 081900;211.348000;211.412000;211.345000;211.401000;0 +20260319 082000;211.397000;211.421000;211.332000;211.337000;0 +20260319 082100;211.338000;211.361000;211.321000;211.324000;0 +20260319 082200;211.324000;211.378000;211.305000;211.334000;0 +20260319 082300;211.335000;211.367000;211.300000;211.303000;0 +20260319 082400;211.297000;211.338000;211.276000;211.281000;0 +20260319 082500;211.278000;211.294000;211.207000;211.213000;0 +20260319 082600;211.215000;211.236000;211.193000;211.193000;0 +20260319 082700;211.195000;211.243000;211.192000;211.240000;0 +20260319 082800;211.244000;211.290000;211.236000;211.265000;0 +20260319 082900;211.273000;211.276000;211.209000;211.213000;0 +20260319 083000;211.213000;211.213000;210.908000;210.936000;0 +20260319 083100;210.935000;210.968000;210.889000;210.938000;0 +20260319 083200;210.943000;210.953000;210.830000;210.842000;0 +20260319 083300;210.842000;210.857000;210.792000;210.815000;0 +20260319 083400;210.816000;210.943000;210.802000;210.940000;0 +20260319 083500;210.944000;210.995000;210.908000;210.960000;0 +20260319 083600;210.954000;211.000000;210.927000;210.983000;0 +20260319 083700;210.982000;211.016000;210.948000;210.987000;0 +20260319 083800;210.992000;211.024000;210.964000;210.975000;0 +20260319 083900;210.973000;211.028000;210.943000;210.989000;0 +20260319 084000;210.993000;211.050000;210.939000;210.950000;0 +20260319 084100;210.946000;211.102000;210.946000;211.083000;0 +20260319 084200;211.082000;211.084000;211.023000;211.026000;0 +20260319 084300;211.026000;211.076000;211.013000;211.070000;0 +20260319 084400;211.069000;211.105000;211.023000;211.042000;0 +20260319 084500;211.043000;211.080000;211.019000;211.063000;0 +20260319 084600;211.063000;211.117000;211.031000;211.074000;0 +20260319 084700;211.074000;211.106000;211.050000;211.068000;0 +20260319 084800;211.069000;211.078000;211.012000;211.048000;0 +20260319 084900;211.047000;211.072000;211.017000;211.057000;0 +20260319 085000;211.059000;211.083000;211.008000;211.049000;0 +20260319 085100;211.048000;211.116000;211.043000;211.089000;0 +20260319 085200;211.087000;211.100000;211.007000;211.059000;0 +20260319 085300;211.063000;211.087000;211.040000;211.047000;0 +20260319 085400;211.046000;211.149000;211.044000;211.124000;0 +20260319 085500;211.119000;211.194000;211.078000;211.160000;0 +20260319 085600;211.162000;211.252000;211.154000;211.176000;0 +20260319 085700;211.171000;211.258000;211.167000;211.212000;0 +20260319 085800;211.223000;211.289000;211.217000;211.247000;0 +20260319 085900;211.247000;211.249000;211.211000;211.223000;0 +20260319 090000;211.217000;211.249000;211.088000;211.243000;0 +20260319 090100;211.247000;211.407000;211.239000;211.374000;0 +20260319 090200;211.377000;211.451000;211.277000;211.376000;0 +20260319 090300;211.379000;211.379000;211.246000;211.259000;0 +20260319 090400;211.257000;211.296000;211.230000;211.247000;0 +20260319 090500;211.249000;211.289000;211.180000;211.180000;0 +20260319 090600;211.181000;211.266000;211.141000;211.172000;0 +20260319 090700;211.171000;211.266000;211.151000;211.266000;0 +20260319 090800;211.262000;211.269000;211.196000;211.211000;0 +20260319 090900;211.211000;211.247000;211.197000;211.244000;0 +20260319 091000;211.240000;211.318000;211.240000;211.277000;0 +20260319 091100;211.274000;211.321000;211.261000;211.290000;0 +20260319 091200;211.292000;211.297000;211.247000;211.248000;0 +20260319 091300;211.247000;211.273000;211.228000;211.264000;0 +20260319 091400;211.263000;211.280000;211.224000;211.231000;0 +20260319 091500;211.223000;211.263000;211.167000;211.202000;0 +20260319 091600;211.199000;211.213000;211.156000;211.212000;0 +20260319 091700;211.212000;211.346000;211.208000;211.318000;0 +20260319 091800;211.323000;211.370000;211.317000;211.367000;0 +20260319 091900;211.366000;211.448000;211.337000;211.429000;0 +20260319 092000;211.429000;211.439000;211.369000;211.375000;0 +20260319 092100;211.372000;211.429000;211.351000;211.410000;0 +20260319 092200;211.410000;211.489000;211.391000;211.465000;0 +20260319 092300;211.466000;211.512000;211.421000;211.422000;0 +20260319 092400;211.420000;211.438000;211.328000;211.344000;0 +20260319 092500;211.349000;211.354000;211.291000;211.312000;0 +20260319 092600;211.308000;211.326000;211.259000;211.267000;0 +20260319 092700;211.270000;211.311000;211.253000;211.285000;0 +20260319 092800;211.285000;211.311000;211.277000;211.284000;0 +20260319 092900;211.282000;211.316000;211.268000;211.299000;0 +20260319 093000;211.297000;211.349000;211.294000;211.311000;0 +20260319 093100;211.314000;211.349000;211.293000;211.332000;0 +20260319 093200;211.334000;211.396000;211.332000;211.364000;0 +20260319 093300;211.367000;211.393000;211.332000;211.381000;0 +20260319 093400;211.384000;211.440000;211.368000;211.437000;0 +20260319 093500;211.430000;211.486000;211.430000;211.482000;0 +20260319 093600;211.480000;211.488000;211.435000;211.456000;0 +20260319 093700;211.463000;211.477000;211.420000;211.427000;0 +20260319 093800;211.429000;211.439000;211.413000;211.413000;0 +20260319 093900;211.413000;211.425000;211.391000;211.392000;0 +20260319 094000;211.392000;211.410000;211.378000;211.383000;0 +20260319 094100;211.383000;211.395000;211.348000;211.360000;0 +20260319 094200;211.357000;211.374000;211.344000;211.368000;0 +20260319 094300;211.365000;211.389000;211.304000;211.320000;0 +20260319 094400;211.319000;211.368000;211.311000;211.366000;0 +20260319 094500;211.367000;211.389000;211.352000;211.383000;0 +20260319 094600;211.386000;211.446000;211.372000;211.433000;0 +20260319 094700;211.436000;211.436000;211.366000;211.382000;0 +20260319 094800;211.383000;211.405000;211.366000;211.384000;0 +20260319 094900;211.385000;211.398000;211.373000;211.392000;0 +20260319 095000;211.390000;211.461000;211.385000;211.461000;0 +20260319 095100;211.460000;211.605000;211.457000;211.605000;0 +20260319 095200;211.605000;211.615000;211.489000;211.506000;0 +20260319 095300;211.505000;211.558000;211.500000;211.535000;0 +20260319 095400;211.536000;211.538000;211.492000;211.502000;0 +20260319 095500;211.497000;211.623000;211.496000;211.620000;0 +20260319 095600;211.616000;211.633000;211.558000;211.630000;0 +20260319 095700;211.628000;211.636000;211.599000;211.609000;0 +20260319 095800;211.612000;211.612000;211.582000;211.582000;0 +20260319 095900;211.586000;211.646000;211.583000;211.643000;0 +20260319 100000;211.644000;211.664000;211.606000;211.614000;0 +20260319 100100;211.615000;211.655000;211.614000;211.636000;0 +20260319 100200;211.635000;211.650000;211.602000;211.629000;0 +20260319 100300;211.631000;211.710000;211.631000;211.708000;0 +20260319 100400;211.704000;211.704000;211.653000;211.683000;0 +20260319 100500;211.683000;211.799000;211.673000;211.793000;0 +20260319 100600;211.795000;211.824000;211.765000;211.785000;0 +20260319 100700;211.786000;211.797000;211.737000;211.745000;0 +20260319 100800;211.746000;211.806000;211.738000;211.786000;0 +20260319 100900;211.797000;211.885000;211.794000;211.860000;0 +20260319 101000;211.861000;211.876000;211.815000;211.828000;0 +20260319 101100;211.827000;211.832000;211.801000;211.813000;0 +20260319 101200;211.813000;211.821000;211.793000;211.802000;0 +20260319 101300;211.802000;211.900000;211.796000;211.893000;0 +20260319 101400;211.894000;211.899000;211.838000;211.844000;0 +20260319 101500;211.841000;211.841000;211.765000;211.806000;0 +20260319 101600;211.810000;211.850000;211.810000;211.840000;0 +20260319 101700;211.840000;211.848000;211.797000;211.804000;0 +20260319 101800;211.813000;211.840000;211.802000;211.813000;0 +20260319 101900;211.810000;211.827000;211.769000;211.824000;0 +20260319 102000;211.819000;211.825000;211.795000;211.803000;0 +20260319 102100;211.804000;211.814000;211.768000;211.790000;0 +20260319 102200;211.793000;211.817000;211.792000;211.815000;0 +20260319 102300;211.815000;211.833000;211.808000;211.827000;0 +20260319 102400;211.830000;211.867000;211.782000;211.783000;0 +20260319 102500;211.785000;211.805000;211.742000;211.758000;0 +20260319 102600;211.759000;211.785000;211.755000;211.765000;0 +20260319 102700;211.763000;211.770000;211.715000;211.725000;0 +20260319 102800;211.724000;211.736000;211.700000;211.709000;0 +20260319 102900;211.706000;211.762000;211.705000;211.749000;0 +20260319 103000;211.747000;211.753000;211.704000;211.733000;0 +20260319 103100;211.733000;211.745000;211.704000;211.705000;0 +20260319 103200;211.707000;211.742000;211.683000;211.702000;0 +20260319 103300;211.702000;211.706000;211.681000;211.687000;0 +20260319 103400;211.690000;211.719000;211.677000;211.709000;0 +20260319 103500;211.705000;211.710000;211.640000;211.640000;0 +20260319 103600;211.640000;211.654000;211.619000;211.620000;0 +20260319 103700;211.617000;211.635000;211.578000;211.578000;0 +20260319 103800;211.578000;211.592000;211.550000;211.554000;0 +20260319 103900;211.555000;211.573000;211.537000;211.569000;0 +20260319 104000;211.570000;211.579000;211.538000;211.561000;0 +20260319 104100;211.556000;211.568000;211.533000;211.539000;0 +20260319 104200;211.537000;211.568000;211.534000;211.546000;0 +20260319 104300;211.543000;211.585000;211.543000;211.576000;0 +20260319 104400;211.580000;211.630000;211.574000;211.625000;0 +20260319 104500;211.626000;211.648000;211.606000;211.639000;0 +20260319 104600;211.637000;211.641000;211.579000;211.596000;0 +20260319 104700;211.594000;211.629000;211.570000;211.583000;0 +20260319 104800;211.584000;211.590000;211.562000;211.571000;0 +20260319 104900;211.571000;211.590000;211.560000;211.581000;0 +20260319 105000;211.582000;211.582000;211.537000;211.558000;0 +20260319 105100;211.556000;211.579000;211.506000;211.523000;0 +20260319 105200;211.531000;211.557000;211.515000;211.538000;0 +20260319 105300;211.538000;211.543000;211.509000;211.514000;0 +20260319 105400;211.514000;211.518000;211.459000;211.459000;0 +20260319 105500;211.459000;211.479000;211.410000;211.459000;0 +20260319 105600;211.460000;211.470000;211.331000;211.333000;0 +20260319 105700;211.329000;211.350000;211.227000;211.261000;0 +20260319 105800;211.263000;211.310000;211.252000;211.302000;0 +20260319 105900;211.299000;211.334000;211.286000;211.318000;0 +20260319 110000;211.315000;211.333000;211.285000;211.296000;0 +20260319 110100;211.297000;211.302000;211.260000;211.260000;0 +20260319 110200;211.261000;211.375000;211.256000;211.365000;0 +20260319 110300;211.369000;211.387000;211.331000;211.347000;0 +20260319 110400;211.347000;211.381000;211.326000;211.342000;0 +20260319 110500;211.345000;211.374000;211.343000;211.347000;0 +20260319 110600;211.348000;211.357000;211.305000;211.321000;0 +20260319 110700;211.322000;211.412000;211.314000;211.392000;0 +20260319 110800;211.388000;211.395000;211.327000;211.350000;0 +20260319 110900;211.350000;211.350000;211.291000;211.333000;0 +20260319 111000;211.337000;211.392000;211.337000;211.347000;0 +20260319 111100;211.346000;211.455000;211.325000;211.425000;0 +20260319 111200;211.425000;211.434000;211.388000;211.413000;0 +20260319 111300;211.417000;211.426000;211.370000;211.377000;0 +20260319 111400;211.381000;211.399000;211.327000;211.339000;0 +20260319 111500;211.335000;211.397000;211.334000;211.380000;0 +20260319 111600;211.377000;211.402000;211.328000;211.348000;0 +20260319 111700;211.350000;211.382000;211.332000;211.346000;0 +20260319 111800;211.346000;211.387000;211.296000;211.334000;0 +20260319 111900;211.328000;211.364000;211.311000;211.339000;0 +20260319 112000;211.344000;211.429000;211.332000;211.419000;0 +20260319 112100;211.421000;211.462000;211.413000;211.414000;0 +20260319 112200;211.411000;211.437000;211.395000;211.429000;0 +20260319 112300;211.430000;211.440000;211.401000;211.424000;0 +20260319 112400;211.420000;211.431000;211.381000;211.382000;0 +20260319 112500;211.381000;211.403000;211.340000;211.340000;0 +20260319 112600;211.340000;211.368000;211.326000;211.359000;0 +20260319 112700;211.360000;211.392000;211.360000;211.377000;0 +20260319 112800;211.377000;211.377000;211.346000;211.366000;0 +20260319 112900;211.364000;211.397000;211.335000;211.369000;0 +20260319 113000;211.368000;211.395000;211.328000;211.332000;0 +20260319 113100;211.333000;211.337000;211.305000;211.324000;0 +20260319 113200;211.320000;211.345000;211.307000;211.334000;0 +20260319 113300;211.330000;211.352000;211.323000;211.332000;0 +20260319 113400;211.333000;211.336000;211.304000;211.309000;0 +20260319 113500;211.313000;211.316000;211.277000;211.290000;0 +20260319 113600;211.289000;211.329000;211.275000;211.314000;0 +20260319 113700;211.313000;211.314000;211.244000;211.244000;0 +20260319 113800;211.245000;211.269000;211.231000;211.249000;0 +20260319 113900;211.255000;211.307000;211.254000;211.286000;0 +20260319 114000;211.286000;211.337000;211.266000;211.327000;0 +20260319 114100;211.329000;211.338000;211.313000;211.320000;0 +20260319 114200;211.324000;211.369000;211.320000;211.343000;0 +20260319 114300;211.344000;211.349000;211.319000;211.319000;0 +20260319 114400;211.321000;211.332000;211.308000;211.316000;0 +20260319 114500;211.316000;211.329000;211.287000;211.289000;0 +20260319 114600;211.290000;211.302000;211.265000;211.275000;0 +20260319 114700;211.275000;211.308000;211.264000;211.274000;0 +20260319 114800;211.273000;211.287000;211.269000;211.275000;0 +20260319 114900;211.276000;211.295000;211.268000;211.279000;0 +20260319 115000;211.278000;211.278000;211.211000;211.216000;0 +20260319 115100;211.218000;211.221000;211.181000;211.200000;0 +20260319 115200;211.200000;211.208000;211.179000;211.196000;0 +20260319 115300;211.195000;211.198000;211.168000;211.195000;0 +20260319 115400;211.197000;211.250000;211.197000;211.236000;0 +20260319 115500;211.235000;211.264000;211.232000;211.243000;0 +20260319 115600;211.246000;211.252000;211.231000;211.249000;0 +20260319 115700;211.250000;211.274000;211.247000;211.267000;0 +20260319 115800;211.270000;211.301000;211.261000;211.277000;0 +20260319 115900;211.274000;211.302000;211.270000;211.289000;0 +20260319 120000;211.291000;211.322000;211.283000;211.312000;0 +20260319 120100;211.314000;211.321000;211.300000;211.321000;0 +20260319 120200;211.323000;211.411000;211.321000;211.410000;0 +20260319 120300;211.409000;211.455000;211.409000;211.421000;0 +20260319 120400;211.421000;211.441000;211.413000;211.417000;0 +20260319 120500;211.418000;211.475000;211.418000;211.432000;0 +20260319 120600;211.433000;211.449000;211.426000;211.443000;0 +20260319 120700;211.440000;211.463000;211.427000;211.462000;0 +20260319 120800;211.460000;211.464000;211.401000;211.402000;0 +20260319 120900;211.402000;211.427000;211.392000;211.413000;0 +20260319 121000;211.415000;211.430000;211.412000;211.425000;0 +20260319 121100;211.428000;211.459000;211.423000;211.446000;0 +20260319 121200;211.447000;211.466000;211.424000;211.425000;0 +20260319 121300;211.423000;211.431000;211.395000;211.405000;0 +20260319 121400;211.406000;211.443000;211.406000;211.431000;0 +20260319 121500;211.432000;211.481000;211.432000;211.459000;0 +20260319 121600;211.459000;211.490000;211.456000;211.479000;0 +20260319 121700;211.478000;211.501000;211.475000;211.500000;0 +20260319 121800;211.500000;211.530000;211.495000;211.524000;0 +20260319 121900;211.524000;211.536000;211.469000;211.477000;0 +20260319 122000;211.476000;211.488000;211.462000;211.465000;0 +20260319 122100;211.466000;211.499000;211.465000;211.486000;0 +20260319 122200;211.487000;211.494000;211.469000;211.474000;0 +20260319 122300;211.471000;211.510000;211.457000;211.508000;0 +20260319 122400;211.509000;211.510000;211.472000;211.486000;0 +20260319 122500;211.488000;211.506000;211.476000;211.497000;0 +20260319 122600;211.493000;211.509000;211.478000;211.502000;0 +20260319 122700;211.505000;211.540000;211.503000;211.538000;0 +20260319 122800;211.538000;211.543000;211.500000;211.502000;0 +20260319 122900;211.500000;211.526000;211.480000;211.518000;0 +20260319 123000;211.520000;211.526000;211.494000;211.519000;0 +20260319 123100;211.518000;211.539000;211.508000;211.539000;0 +20260319 123200;211.538000;211.539000;211.482000;211.482000;0 +20260319 123300;211.481000;211.481000;211.439000;211.448000;0 +20260319 123400;211.449000;211.489000;211.447000;211.486000;0 +20260319 123500;211.484000;211.511000;211.481000;211.490000;0 +20260319 123600;211.491000;211.500000;211.481000;211.493000;0 +20260319 123700;211.491000;211.506000;211.479000;211.489000;0 +20260319 123800;211.490000;211.509000;211.487000;211.496000;0 +20260319 123900;211.496000;211.527000;211.493000;211.517000;0 +20260319 124000;211.518000;211.541000;211.517000;211.528000;0 +20260319 124100;211.525000;211.541000;211.517000;211.529000;0 +20260319 124200;211.528000;211.528000;211.504000;211.513000;0 +20260319 124300;211.516000;211.539000;211.513000;211.526000;0 +20260319 124400;211.529000;211.547000;211.516000;211.522000;0 +20260319 124500;211.522000;211.538000;211.513000;211.536000;0 +20260319 124600;211.539000;211.539000;211.519000;211.529000;0 +20260319 124700;211.530000;211.532000;211.501000;211.510000;0 +20260319 124800;211.510000;211.523000;211.491000;211.497000;0 +20260319 124900;211.497000;211.513000;211.493000;211.511000;0 +20260319 125000;211.510000;211.511000;211.491000;211.492000;0 +20260319 125100;211.490000;211.501000;211.485000;211.497000;0 +20260319 125200;211.494000;211.553000;211.493000;211.541000;0 +20260319 125300;211.544000;211.551000;211.519000;211.519000;0 +20260319 125400;211.522000;211.612000;211.522000;211.593000;0 +20260319 125500;211.594000;211.600000;211.549000;211.550000;0 +20260319 125600;211.550000;211.550000;211.510000;211.512000;0 +20260319 125700;211.513000;211.537000;211.506000;211.516000;0 +20260319 125800;211.526000;211.543000;211.518000;211.523000;0 +20260319 125900;211.518000;211.527000;211.515000;211.518000;0 +20260319 130000;211.519000;211.553000;211.485000;211.544000;0 +20260319 130100;211.541000;211.542000;211.521000;211.526000;0 +20260319 130200;211.525000;211.530000;211.486000;211.495000;0 +20260319 130300;211.495000;211.509000;211.475000;211.485000;0 +20260319 130400;211.486000;211.511000;211.485000;211.500000;0 +20260319 130500;211.501000;211.520000;211.489000;211.509000;0 +20260319 130600;211.508000;211.509000;211.473000;211.483000;0 +20260319 130700;211.480000;211.521000;211.479000;211.519000;0 +20260319 130800;211.521000;211.543000;211.514000;211.529000;0 +20260319 130900;211.529000;211.539000;211.517000;211.529000;0 +20260319 131000;211.532000;211.550000;211.528000;211.550000;0 +20260319 131100;211.550000;211.550000;211.528000;211.528000;0 +20260319 131200;211.530000;211.558000;211.525000;211.555000;0 +20260319 131300;211.559000;211.622000;211.554000;211.613000;0 +20260319 131400;211.612000;211.625000;211.586000;211.614000;0 +20260319 131500;211.617000;211.624000;211.597000;211.614000;0 +20260319 131600;211.615000;211.615000;211.579000;211.591000;0 +20260319 131700;211.591000;211.592000;211.530000;211.536000;0 +20260319 131800;211.535000;211.542000;211.524000;211.538000;0 +20260319 131900;211.537000;211.581000;211.535000;211.579000;0 +20260319 132000;211.578000;211.616000;211.574000;211.609000;0 +20260319 132100;211.608000;211.610000;211.588000;211.600000;0 +20260319 132200;211.601000;211.602000;211.546000;211.551000;0 +20260319 132300;211.550000;211.550000;211.496000;211.505000;0 +20260319 132400;211.505000;211.515000;211.492000;211.494000;0 +20260319 132500;211.494000;211.506000;211.489000;211.498000;0 +20260319 132600;211.501000;211.518000;211.497000;211.515000;0 +20260319 132700;211.515000;211.534000;211.511000;211.533000;0 +20260319 132800;211.534000;211.534000;211.501000;211.514000;0 +20260319 132900;211.516000;211.517000;211.503000;211.507000;0 +20260319 133000;211.507000;211.508000;211.472000;211.476000;0 +20260319 133100;211.477000;211.508000;211.475000;211.494000;0 +20260319 133200;211.495000;211.503000;211.476000;211.476000;0 +20260319 133300;211.474000;211.495000;211.471000;211.490000;0 +20260319 133400;211.486000;211.509000;211.480000;211.509000;0 +20260319 133500;211.507000;211.525000;211.499000;211.504000;0 +20260319 133600;211.501000;211.526000;211.501000;211.513000;0 +20260319 133700;211.515000;211.518000;211.486000;211.487000;0 +20260319 133800;211.488000;211.501000;211.484000;211.495000;0 +20260319 133900;211.492000;211.509000;211.491000;211.509000;0 +20260319 134000;211.510000;211.516000;211.491000;211.495000;0 +20260319 134100;211.497000;211.508000;211.481000;211.485000;0 +20260319 134200;211.482000;211.514000;211.482000;211.505000;0 +20260319 134300;211.504000;211.534000;211.504000;211.510000;0 +20260319 134400;211.510000;211.541000;211.510000;211.512000;0 +20260319 134500;211.512000;211.516000;211.498000;211.503000;0 +20260319 134600;211.505000;211.534000;211.501000;211.528000;0 +20260319 134700;211.527000;211.533000;211.514000;211.528000;0 +20260319 134800;211.527000;211.529000;211.504000;211.507000;0 +20260319 134900;211.513000;211.525000;211.507000;211.520000;0 +20260319 135000;211.518000;211.534000;211.515000;211.526000;0 +20260319 135100;211.526000;211.584000;211.517000;211.583000;0 +20260319 135200;211.583000;211.606000;211.577000;211.596000;0 +20260319 135300;211.589000;211.590000;211.546000;211.548000;0 +20260319 135400;211.550000;211.557000;211.541000;211.545000;0 +20260319 135500;211.548000;211.556000;211.537000;211.547000;0 +20260319 135600;211.545000;211.589000;211.535000;211.572000;0 +20260319 135700;211.572000;211.616000;211.567000;211.594000;0 +20260319 135800;211.592000;211.643000;211.589000;211.624000;0 +20260319 135900;211.625000;211.631000;211.589000;211.607000;0 +20260319 140000;211.610000;211.670000;211.607000;211.652000;0 +20260319 140100;211.652000;211.668000;211.642000;211.660000;0 +20260319 140200;211.662000;211.740000;211.654000;211.738000;0 +20260319 140300;211.739000;211.745000;211.675000;211.727000;0 +20260319 140400;211.726000;211.776000;211.723000;211.766000;0 +20260319 140500;211.768000;211.894000;211.765000;211.869000;0 +20260319 140600;211.864000;212.023000;211.849000;211.977000;0 +20260319 140700;211.977000;212.015000;211.917000;211.929000;0 +20260319 140800;211.927000;212.097000;211.921000;212.000000;0 +20260319 140900;212.001000;212.048000;211.954000;211.955000;0 +20260319 141000;211.956000;212.126000;211.921000;212.119000;0 +20260319 141100;212.124000;212.147000;212.061000;212.105000;0 +20260319 141200;212.105000;212.124000;212.024000;212.029000;0 +20260319 141300;212.027000;212.092000;212.012000;212.063000;0 +20260319 141400;212.066000;212.127000;212.049000;212.117000;0 +20260319 141500;212.120000;212.152000;212.064000;212.152000;0 +20260319 141600;212.150000;212.154000;212.020000;212.022000;0 +20260319 141700;212.028000;212.085000;212.021000;212.044000;0 +20260319 141800;212.044000;212.052000;211.968000;212.003000;0 +20260319 141900;212.007000;212.034000;211.956000;212.010000;0 +20260319 142000;212.005000;212.008000;211.899000;211.915000;0 +20260319 142100;211.915000;211.980000;211.909000;211.942000;0 +20260319 142200;211.947000;211.979000;211.923000;211.972000;0 +20260319 142300;211.970000;211.976000;211.892000;211.895000;0 +20260319 142400;211.894000;211.911000;211.864000;211.874000;0 +20260319 142500;211.875000;211.891000;211.790000;211.791000;0 +20260319 142600;211.793000;211.808000;211.752000;211.772000;0 +20260319 142700;211.773000;211.788000;211.742000;211.743000;0 +20260319 142800;211.742000;211.776000;211.724000;211.773000;0 +20260319 142900;211.773000;211.800000;211.766000;211.798000;0 +20260319 143000;211.800000;211.806000;211.753000;211.776000;0 +20260319 143100;211.779000;211.794000;211.762000;211.780000;0 +20260319 143200;211.782000;211.790000;211.737000;211.743000;0 +20260319 143300;211.742000;211.782000;211.738000;211.768000;0 +20260319 143400;211.763000;211.773000;211.727000;211.749000;0 +20260319 143500;211.746000;211.767000;211.721000;211.733000;0 +20260319 143600;211.729000;211.777000;211.726000;211.767000;0 +20260319 143700;211.764000;211.792000;211.759000;211.789000;0 +20260319 143800;211.791000;211.794000;211.767000;211.769000;0 +20260319 143900;211.769000;211.793000;211.765000;211.774000;0 +20260319 144000;211.774000;211.774000;211.730000;211.731000;0 +20260319 144100;211.731000;211.741000;211.711000;211.717000;0 +20260319 144200;211.719000;211.742000;211.710000;211.734000;0 +20260319 144300;211.736000;211.754000;211.725000;211.739000;0 +20260319 144400;211.739000;211.750000;211.720000;211.734000;0 +20260319 144500;211.733000;211.755000;211.715000;211.730000;0 +20260319 144600;211.731000;211.747000;211.726000;211.739000;0 +20260319 144700;211.744000;211.764000;211.737000;211.751000;0 +20260319 144800;211.753000;211.753000;211.726000;211.730000;0 +20260319 144900;211.731000;211.732000;211.711000;211.724000;0 +20260319 145000;211.722000;211.723000;211.659000;211.688000;0 +20260319 145100;211.688000;211.705000;211.675000;211.692000;0 +20260319 145200;211.693000;211.707000;211.675000;211.678000;0 +20260319 145300;211.679000;211.691000;211.673000;211.678000;0 +20260319 145400;211.678000;211.683000;211.634000;211.635000;0 +20260319 145500;211.635000;211.688000;211.635000;211.682000;0 +20260319 145600;211.679000;211.713000;211.655000;211.707000;0 +20260319 145700;211.707000;211.718000;211.686000;211.701000;0 +20260319 145800;211.703000;211.703000;211.662000;211.675000;0 +20260319 145900;211.675000;211.731000;211.670000;211.723000;0 +20260319 150000;211.717000;211.759000;211.712000;211.749000;0 +20260319 150100;211.752000;211.759000;211.710000;211.733000;0 +20260319 150200;211.733000;211.734000;211.708000;211.717000;0 +20260319 150300;211.715000;211.732000;211.713000;211.715000;0 +20260319 150400;211.717000;211.762000;211.715000;211.762000;0 +20260319 150500;211.762000;211.789000;211.738000;211.789000;0 +20260319 150600;211.787000;211.823000;211.778000;211.778000;0 +20260319 150700;211.780000;211.804000;211.768000;211.798000;0 +20260319 150800;211.799000;211.808000;211.765000;211.769000;0 +20260319 150900;211.771000;211.774000;211.737000;211.749000;0 +20260319 151000;211.752000;211.771000;211.735000;211.768000;0 +20260319 151100;211.768000;211.773000;211.750000;211.751000;0 +20260319 151200;211.748000;211.757000;211.742000;211.743000;0 +20260319 151300;211.745000;211.747000;211.736000;211.744000;0 +20260319 151400;211.739000;211.758000;211.733000;211.733000;0 +20260319 151500;211.736000;211.768000;211.736000;211.749000;0 +20260319 151600;211.746000;211.749000;211.738000;211.740000;0 +20260319 151700;211.740000;211.740000;211.715000;211.725000;0 +20260319 151800;211.723000;211.726000;211.704000;211.726000;0 +20260319 151900;211.728000;211.745000;211.721000;211.721000;0 +20260319 152000;211.720000;211.721000;211.707000;211.709000;0 +20260319 152100;211.709000;211.713000;211.707000;211.712000;0 +20260319 152200;211.712000;211.735000;211.711000;211.731000;0 +20260319 152300;211.728000;211.742000;211.711000;211.736000;0 +20260319 152400;211.736000;211.749000;211.731000;211.745000;0 +20260319 152500;211.750000;211.781000;211.742000;211.762000;0 +20260319 152600;211.764000;211.767000;211.756000;211.760000;0 +20260319 152700;211.760000;211.786000;211.749000;211.770000;0 +20260319 152800;211.772000;211.791000;211.765000;211.772000;0 +20260319 152900;211.773000;211.795000;211.773000;211.777000;0 +20260319 153000;211.774000;211.782000;211.757000;211.763000;0 +20260319 153100;211.763000;211.767000;211.750000;211.759000;0 +20260319 153200;211.762000;211.766000;211.753000;211.755000;0 +20260319 153300;211.754000;211.759000;211.743000;211.748000;0 +20260319 153400;211.752000;211.758000;211.718000;211.718000;0 +20260319 153500;211.717000;211.717000;211.672000;211.676000;0 +20260319 153600;211.681000;211.683000;211.665000;211.670000;0 +20260319 153700;211.672000;211.692000;211.668000;211.685000;0 +20260319 153800;211.696000;211.720000;211.696000;211.719000;0 +20260319 153900;211.720000;211.725000;211.717000;211.720000;0 +20260319 154000;211.723000;211.734000;211.718000;211.723000;0 +20260319 154100;211.719000;211.750000;211.719000;211.750000;0 +20260319 154200;211.752000;211.752000;211.719000;211.752000;0 +20260319 154300;211.752000;211.766000;211.752000;211.754000;0 +20260319 154400;211.754000;211.768000;211.748000;211.765000;0 +20260319 154500;211.770000;211.772000;211.764000;211.767000;0 +20260319 154600;211.766000;211.819000;211.766000;211.818000;0 +20260319 154700;211.815000;211.816000;211.790000;211.790000;0 +20260319 154800;211.792000;211.824000;211.790000;211.821000;0 +20260319 154900;211.817000;211.844000;211.813000;211.833000;0 +20260319 155000;211.833000;211.839000;211.816000;211.821000;0 +20260319 155100;211.821000;211.856000;211.821000;211.851000;0 +20260319 155200;211.853000;211.872000;211.853000;211.868000;0 +20260319 155300;211.871000;211.872000;211.825000;211.828000;0 +20260319 155400;211.832000;211.836000;211.801000;211.803000;0 +20260319 155500;211.803000;211.819000;211.795000;211.798000;0 +20260319 155600;211.794000;211.800000;211.782000;211.796000;0 +20260319 155700;211.801000;211.823000;211.772000;211.820000;0 +20260319 155800;211.819000;211.821000;211.777000;211.795000;0 +20260319 155900;211.789000;211.796000;211.762000;211.796000;0 +20260319 160000;211.795000;211.795000;211.791000;211.791000;0 +20260319 160400;211.646000;211.646000;211.566000;211.645000;0 +20260319 160500;211.583000;211.664000;211.583000;211.664000;0 +20260319 160600;211.663000;211.664000;211.663000;211.664000;0 +20260319 160700;211.664000;211.664000;211.661000;211.661000;0 +20260319 160800;211.660000;211.664000;211.660000;211.663000;0 +20260319 160900;211.663000;211.664000;211.663000;211.664000;0 +20260319 161000;211.666000;211.673000;211.666000;211.666000;0 +20260319 161100;211.684000;211.711000;211.665000;211.696000;0 +20260319 161200;211.694000;211.720000;211.628000;211.629000;0 +20260319 161300;211.624000;211.719000;211.598000;211.719000;0 +20260319 161400;211.718000;211.718000;211.622000;211.641000;0 +20260319 161500;211.655000;211.676000;211.641000;211.641000;0 +20260319 161600;211.642000;211.687000;211.641000;211.681000;0 +20260319 161700;211.681000;211.684000;211.679000;211.679000;0 +20260319 161800;211.679000;211.680000;211.679000;211.679000;0 +20260319 161900;211.645000;211.645000;211.568000;211.579000;0 +20260319 162000;211.578000;211.612000;211.578000;211.610000;0 +20260319 162100;211.611000;211.632000;211.610000;211.624000;0 +20260319 162200;211.625000;211.784000;211.619000;211.779000;0 +20260319 162300;211.779000;211.786000;211.779000;211.785000;0 +20260319 162400;211.785000;211.799000;211.785000;211.785000;0 +20260319 162500;211.785000;211.785000;211.744000;211.744000;0 +20260319 162600;211.773000;211.900000;211.669000;211.727000;0 +20260319 162700;211.725000;211.805000;211.725000;211.794000;0 +20260319 162800;211.796000;211.866000;211.796000;211.866000;0 +20260319 162900;211.866000;211.884000;211.830000;211.830000;0 +20260319 163000;211.823000;211.932000;211.788000;211.932000;0 +20260319 163100;211.938000;211.942000;211.816000;211.816000;0 +20260319 163200;211.818000;211.883000;211.805000;211.870000;0 +20260319 163300;211.871000;211.894000;211.863000;211.880000;0 +20260319 163400;211.879000;211.885000;211.873000;211.878000;0 +20260319 163500;211.878000;211.895000;211.843000;211.846000;0 +20260319 163600;211.848000;211.876000;211.840000;211.861000;0 +20260319 163700;211.864000;211.866000;211.842000;211.858000;0 +20260319 163800;211.858000;211.894000;211.848000;211.849000;0 +20260319 163900;211.849000;211.900000;211.840000;211.850000;0 +20260319 164000;211.850000;211.914000;211.850000;211.909000;0 +20260319 164100;211.916000;211.929000;211.870000;211.918000;0 +20260319 164200;211.913000;211.934000;211.902000;211.912000;0 +20260319 164300;211.909000;211.924000;211.906000;211.920000;0 +20260319 164400;211.920000;211.927000;211.884000;211.925000;0 +20260319 164500;211.925000;211.930000;211.906000;211.906000;0 +20260319 164600;211.907000;211.928000;211.895000;211.920000;0 +20260319 164700;211.920000;211.928000;211.894000;211.894000;0 +20260319 164800;211.925000;211.925000;211.887000;211.917000;0 +20260319 164900;211.917000;211.927000;211.892000;211.901000;0 +20260319 165000;211.901000;211.915000;211.899000;211.907000;0 +20260319 165100;211.910000;211.947000;211.903000;211.922000;0 +20260319 165200;211.924000;211.956000;211.919000;211.925000;0 +20260319 165300;211.923000;211.923000;211.921000;211.922000;0 +20260319 165400;211.926000;211.948000;211.890000;211.897000;0 +20260319 165500;211.922000;211.932000;211.834000;211.834000;0 +20260319 165600;211.845000;211.879000;211.698000;211.784000;0 +20260319 165700;211.784000;211.820000;211.757000;211.764000;0 +20260319 165800;211.764000;211.814000;211.754000;211.813000;0 +20260319 165900;211.814000;211.814000;211.813000;211.813000;0 +20260319 170000;211.956000;211.998000;211.799000;211.879000;0 +20260319 170100;211.886000;211.916000;211.851000;211.874000;0 +20260319 170200;211.870000;211.929000;211.864000;211.916000;0 +20260319 170300;211.908000;211.916000;211.908000;211.910000;0 +20260319 170400;211.905000;211.946000;211.905000;211.946000;0 +20260319 170500;211.946000;211.954000;211.919000;211.946000;0 +20260319 170600;211.948000;211.957000;211.928000;211.935000;0 +20260319 170700;211.934000;211.984000;211.934000;211.977000;0 +20260319 170800;211.975000;211.987000;211.961000;211.978000;0 +20260319 170900;211.978000;211.987000;211.958000;211.959000;0 +20260319 171000;211.952000;211.952000;211.930000;211.939000;0 +20260319 171100;211.941000;211.956000;211.941000;211.947000;0 +20260319 171200;211.944000;211.956000;211.940000;211.947000;0 +20260319 171300;211.946000;211.958000;211.945000;211.951000;0 +20260319 171400;211.951000;211.955000;211.926000;211.930000;0 +20260319 171500;211.930000;211.938000;211.909000;211.910000;0 +20260319 171600;211.910000;211.929000;211.909000;211.922000;0 +20260319 171700;211.929000;211.929000;211.901000;211.911000;0 +20260319 171800;211.925000;211.932000;211.911000;211.929000;0 +20260319 171900;211.928000;211.944000;211.925000;211.931000;0 +20260319 172000;211.940000;211.941000;211.926000;211.936000;0 +20260319 172100;211.940000;211.950000;211.940000;211.943000;0 +20260319 172200;211.943000;211.951000;211.927000;211.932000;0 +20260319 172300;211.926000;211.934000;211.885000;211.889000;0 +20260319 172400;211.887000;211.911000;211.887000;211.901000;0 +20260319 172500;211.905000;211.917000;211.903000;211.908000;0 +20260319 172600;211.912000;211.913000;211.890000;211.893000;0 +20260319 172700;211.894000;211.911000;211.894000;211.898000;0 +20260319 172800;211.897000;211.902000;211.897000;211.897000;0 +20260319 172900;211.897000;211.901000;211.890000;211.897000;0 +20260319 173000;211.897000;211.903000;211.884000;211.903000;0 +20260319 173100;211.903000;211.913000;211.894000;211.901000;0 +20260319 173200;211.905000;211.921000;211.894000;211.913000;0 +20260319 173300;211.911000;211.929000;211.911000;211.923000;0 +20260319 173400;211.923000;211.923000;211.904000;211.905000;0 +20260319 173500;211.907000;211.913000;211.900000;211.900000;0 +20260319 173600;211.900000;211.928000;211.874000;211.927000;0 +20260319 173700;211.924000;211.935000;211.915000;211.932000;0 +20260319 173800;211.931000;211.931000;211.917000;211.927000;0 +20260319 173900;211.925000;211.961000;211.923000;211.961000;0 +20260319 174000;211.960000;211.982000;211.960000;211.977000;0 +20260319 174100;211.977000;211.980000;211.947000;211.958000;0 +20260319 174200;211.957000;211.979000;211.948000;211.977000;0 +20260319 174300;211.979000;211.983000;211.971000;211.971000;0 +20260319 174400;211.968000;211.977000;211.956000;211.968000;0 +20260319 174500;211.966000;211.976000;211.958000;211.963000;0 +20260319 174600;211.958000;211.980000;211.955000;211.975000;0 +20260319 174700;211.975000;211.983000;211.953000;211.983000;0 +20260319 174800;211.983000;211.985000;211.966000;211.966000;0 +20260319 174900;211.973000;211.982000;211.969000;211.982000;0 +20260319 175000;211.982000;211.982000;211.962000;211.970000;0 +20260319 175100;211.969000;211.974000;211.963000;211.969000;0 +20260319 175200;211.970000;211.971000;211.961000;211.966000;0 +20260319 175300;211.962000;211.966000;211.948000;211.952000;0 +20260319 175400;211.953000;211.956000;211.952000;211.952000;0 +20260319 175500;211.957000;211.962000;211.949000;211.955000;0 +20260319 175600;211.956000;211.970000;211.950000;211.970000;0 +20260319 175700;211.970000;211.972000;211.961000;211.962000;0 +20260319 175800;211.960000;211.964000;211.949000;211.952000;0 +20260319 175900;211.949000;211.956000;211.947000;211.951000;0 +20260319 180000;211.952000;211.962000;211.927000;211.936000;0 +20260319 180100;211.937000;211.973000;211.936000;211.959000;0 +20260319 180200;211.959000;211.970000;211.959000;211.969000;0 +20260319 180300;211.971000;211.984000;211.970000;211.974000;0 +20260319 180400;211.972000;211.980000;211.953000;211.978000;0 +20260319 180500;211.978000;211.999000;211.967000;211.999000;0 +20260319 180600;211.998000;212.003000;211.974000;211.991000;0 +20260319 180700;211.992000;212.003000;211.984000;211.984000;0 +20260319 180800;211.985000;212.049000;211.981000;212.037000;0 +20260319 180900;212.039000;212.039000;212.004000;212.004000;0 +20260319 181000;212.006000;212.019000;211.991000;211.996000;0 +20260319 181100;211.994000;212.005000;211.991000;211.996000;0 +20260319 181200;211.998000;212.002000;211.984000;211.989000;0 +20260319 181300;211.992000;211.996000;211.981000;211.982000;0 +20260319 181400;211.987000;211.999000;211.984000;211.995000;0 +20260319 181500;211.993000;211.999000;211.985000;211.999000;0 +20260319 181600;212.000000;212.002000;211.970000;211.983000;0 +20260319 181700;211.981000;211.992000;211.981000;211.991000;0 +20260319 181800;211.996000;212.004000;211.987000;212.003000;0 +20260319 181900;212.003000;212.003000;211.982000;211.986000;0 +20260319 182000;211.985000;212.003000;211.985000;212.003000;0 +20260319 182100;212.001000;212.003000;211.989000;211.991000;0 +20260319 182200;211.991000;212.004000;211.987000;211.998000;0 +20260319 182300;211.997000;212.000000;211.992000;212.000000;0 +20260319 182400;212.004000;212.022000;212.003000;212.018000;0 +20260319 182500;212.016000;212.027000;212.015000;212.025000;0 +20260319 182600;212.025000;212.028000;212.010000;212.016000;0 +20260319 182700;212.018000;212.053000;212.015000;212.053000;0 +20260319 182800;212.054000;212.054000;212.030000;212.043000;0 +20260319 182900;212.044000;212.056000;212.044000;212.056000;0 +20260319 183000;212.056000;212.058000;212.029000;212.031000;0 +20260319 183100;212.031000;212.043000;212.026000;212.031000;0 +20260319 183200;212.034000;212.048000;212.031000;212.046000;0 +20260319 183300;212.045000;212.045000;212.017000;212.019000;0 +20260319 183400;212.017000;212.035000;212.014000;212.032000;0 +20260319 183500;212.032000;212.032000;212.018000;212.027000;0 +20260319 183600;212.026000;212.047000;212.026000;212.044000;0 +20260319 183700;212.044000;212.061000;212.044000;212.054000;0 +20260319 183800;212.053000;212.054000;212.041000;212.041000;0 +20260319 183900;212.041000;212.048000;212.040000;212.042000;0 +20260319 184000;212.043000;212.043000;212.027000;212.030000;0 +20260319 184100;212.028000;212.052000;212.026000;212.052000;0 +20260319 184200;212.051000;212.062000;212.047000;212.049000;0 +20260319 184300;212.049000;212.064000;212.045000;212.055000;0 +20260319 184400;212.054000;212.054000;212.012000;212.017000;0 +20260319 184500;212.019000;212.034000;212.017000;212.030000;0 +20260319 184600;212.030000;212.061000;212.030000;212.058000;0 +20260319 184700;212.055000;212.055000;212.018000;212.030000;0 +20260319 184800;212.029000;212.036000;212.015000;212.026000;0 +20260319 184900;212.032000;212.033000;212.014000;212.026000;0 +20260319 185000;212.030000;212.035000;212.029000;212.035000;0 +20260319 185100;212.033000;212.034000;212.015000;212.024000;0 +20260319 185200;212.025000;212.039000;212.022000;212.035000;0 +20260319 185300;212.033000;212.038000;212.025000;212.029000;0 +20260319 185400;212.031000;212.043000;212.025000;212.043000;0 +20260319 185500;212.040000;212.041000;212.003000;212.003000;0 +20260319 185600;212.002000;212.012000;211.997000;211.999000;0 +20260319 185700;212.002000;212.023000;211.996000;212.018000;0 +20260319 185800;212.015000;212.016000;212.002000;212.003000;0 +20260319 185900;212.001000;212.004000;211.989000;212.004000;0 +20260319 190000;212.006000;212.011000;211.958000;211.983000;0 +20260319 190100;211.981000;212.006000;211.971000;212.006000;0 +20260319 190200;212.009000;212.016000;211.980000;211.983000;0 +20260319 190300;211.981000;211.986000;211.962000;211.975000;0 +20260319 190400;211.972000;211.987000;211.959000;211.987000;0 +20260319 190500;211.986000;212.007000;211.976000;211.996000;0 +20260319 190600;211.999000;212.033000;211.999000;212.025000;0 +20260319 190700;212.023000;212.035000;212.016000;212.022000;0 +20260319 190800;212.029000;212.037000;212.017000;212.026000;0 +20260319 190900;212.024000;212.037000;212.017000;212.018000;0 +20260319 191000;212.020000;212.066000;212.020000;212.061000;0 +20260319 191100;212.063000;212.067000;212.038000;212.054000;0 +20260319 191200;212.053000;212.061000;212.044000;212.052000;0 +20260319 191300;212.051000;212.051000;212.027000;212.038000;0 +20260319 191400;212.036000;212.049000;212.028000;212.032000;0 +20260319 191500;212.032000;212.042000;212.004000;212.010000;0 +20260319 191600;212.010000;212.010000;211.970000;211.979000;0 +20260319 191700;211.980000;211.990000;211.933000;211.942000;0 +20260319 191800;211.942000;211.959000;211.930000;211.934000;0 +20260319 191900;211.932000;211.932000;211.905000;211.905000;0 +20260319 192000;211.904000;211.909000;211.884000;211.898000;0 +20260319 192100;211.897000;211.897000;211.835000;211.844000;0 +20260319 192200;211.839000;211.883000;211.837000;211.852000;0 +20260319 192300;211.854000;211.863000;211.815000;211.823000;0 +20260319 192400;211.825000;211.828000;211.802000;211.824000;0 +20260319 192500;211.825000;211.845000;211.817000;211.832000;0 +20260319 192600;211.832000;211.848000;211.817000;211.833000;0 +20260319 192700;211.834000;211.839000;211.816000;211.826000;0 +20260319 192800;211.820000;211.837000;211.818000;211.837000;0 +20260319 192900;211.837000;211.853000;211.837000;211.843000;0 +20260319 193000;211.847000;211.847000;211.823000;211.830000;0 +20260319 193100;211.831000;211.840000;211.820000;211.829000;0 +20260319 193200;211.829000;211.850000;211.819000;211.842000;0 +20260319 193300;211.845000;211.854000;211.834000;211.839000;0 +20260319 193400;211.844000;211.868000;211.841000;211.868000;0 +20260319 193500;211.872000;211.883000;211.862000;211.865000;0 +20260319 193600;211.867000;211.887000;211.854000;211.861000;0 +20260319 193700;211.860000;211.905000;211.860000;211.904000;0 +20260319 193800;211.904000;211.916000;211.901000;211.907000;0 +20260319 193900;211.907000;211.935000;211.900000;211.931000;0 +20260319 194000;211.931000;211.932000;211.903000;211.914000;0 +20260319 194100;211.916000;211.933000;211.912000;211.928000;0 +20260319 194200;211.930000;211.944000;211.926000;211.927000;0 +20260319 194300;211.927000;211.936000;211.921000;211.925000;0 +20260319 194400;211.925000;211.927000;211.912000;211.924000;0 +20260319 194500;211.924000;211.955000;211.916000;211.937000;0 +20260319 194600;211.950000;211.956000;211.943000;211.948000;0 +20260319 194700;211.944000;211.987000;211.944000;211.977000;0 +20260319 194800;211.978000;211.978000;211.947000;211.974000;0 +20260319 194900;211.974000;211.978000;211.955000;211.967000;0 +20260319 195000;211.965000;211.990000;211.965000;211.974000;0 +20260319 195100;211.969000;211.976000;211.943000;211.943000;0 +20260319 195200;211.940000;211.950000;211.923000;211.950000;0 +20260319 195300;211.951000;211.959000;211.933000;211.952000;0 +20260319 195400;211.956000;211.956000;211.912000;211.914000;0 +20260319 195500;211.913000;211.914000;211.870000;211.893000;0 +20260319 195600;211.890000;211.901000;211.877000;211.891000;0 +20260319 195700;211.894000;211.902000;211.868000;211.896000;0 +20260319 195800;211.894000;211.906000;211.877000;211.902000;0 +20260319 195900;211.902000;211.909000;211.880000;211.906000;0 +20260319 200000;211.907000;211.919000;211.876000;211.913000;0 +20260319 200100;211.915000;211.956000;211.893000;211.926000;0 +20260319 200200;211.924000;211.932000;211.892000;211.923000;0 +20260319 200300;211.918000;211.961000;211.907000;211.960000;0 +20260319 200400;211.960000;211.972000;211.936000;211.968000;0 +20260319 200500;211.965000;211.990000;211.964000;211.981000;0 +20260319 200600;211.979000;211.997000;211.970000;211.970000;0 +20260319 200700;211.964000;211.964000;211.941000;211.943000;0 +20260319 200800;211.943000;211.947000;211.905000;211.918000;0 +20260319 200900;211.918000;211.924000;211.900000;211.919000;0 +20260319 201000;211.920000;211.942000;211.907000;211.913000;0 +20260319 201100;211.914000;211.914000;211.872000;211.889000;0 +20260319 201200;211.885000;211.890000;211.862000;211.873000;0 +20260319 201300;211.873000;211.886000;211.865000;211.872000;0 +20260319 201400;211.870000;211.873000;211.850000;211.854000;0 +20260319 201500;211.854000;211.855000;211.818000;211.821000;0 +20260319 201600;211.823000;211.841000;211.812000;211.838000;0 +20260319 201700;211.836000;211.860000;211.821000;211.844000;0 +20260319 201800;211.844000;211.876000;211.844000;211.845000;0 +20260319 201900;211.846000;211.854000;211.835000;211.849000;0 +20260319 202000;211.848000;211.892000;211.847000;211.850000;0 +20260319 202100;211.850000;211.874000;211.826000;211.833000;0 +20260319 202200;211.833000;211.862000;211.823000;211.858000;0 +20260319 202300;211.859000;211.869000;211.843000;211.848000;0 +20260319 202400;211.849000;211.878000;211.849000;211.870000;0 +20260319 202500;211.871000;211.876000;211.848000;211.868000;0 +20260319 202600;211.868000;211.880000;211.867000;211.873000;0 +20260319 202700;211.873000;211.881000;211.840000;211.844000;0 +20260319 202800;211.842000;211.852000;211.823000;211.836000;0 +20260319 202900;211.836000;211.868000;211.834000;211.868000;0 +20260319 203000;211.865000;211.899000;211.865000;211.899000;0 +20260319 203100;211.895000;211.921000;211.883000;211.918000;0 +20260319 203200;211.917000;211.942000;211.906000;211.937000;0 +20260319 203300;211.937000;211.943000;211.931000;211.931000;0 +20260319 203400;211.934000;211.963000;211.920000;211.953000;0 +20260319 203500;211.959000;211.961000;211.921000;211.943000;0 +20260319 203600;211.941000;211.951000;211.932000;211.935000;0 +20260319 203700;211.938000;211.952000;211.930000;211.952000;0 +20260319 203800;211.952000;211.966000;211.945000;211.952000;0 +20260319 203900;211.955000;211.974000;211.954000;211.963000;0 +20260319 204000;211.965000;211.986000;211.963000;211.983000;0 +20260319 204100;211.983000;212.010000;211.980000;211.980000;0 +20260319 204200;211.982000;212.000000;211.981000;211.996000;0 +20260319 204300;212.003000;212.033000;211.995000;212.024000;0 +20260319 204400;212.025000;212.068000;212.024000;212.064000;0 +20260319 204500;212.065000;212.091000;212.065000;212.088000;0 +20260319 204600;212.087000;212.100000;212.076000;212.076000;0 +20260319 204700;212.076000;212.083000;212.059000;212.069000;0 +20260319 204800;212.070000;212.074000;212.040000;212.056000;0 +20260319 204900;212.056000;212.080000;212.055000;212.071000;0 +20260319 205000;212.070000;212.114000;212.070000;212.111000;0 +20260319 205100;212.110000;212.120000;212.095000;212.102000;0 +20260319 205200;212.111000;212.116000;212.098000;212.106000;0 +20260319 205300;212.107000;212.132000;212.107000;212.126000;0 +20260319 205400;212.124000;212.137000;212.123000;212.129000;0 +20260319 205500;212.128000;212.135000;212.112000;212.112000;0 +20260319 205600;212.112000;212.133000;212.106000;212.106000;0 +20260319 205700;212.105000;212.105000;212.069000;212.085000;0 +20260319 205800;212.079000;212.098000;212.077000;212.098000;0 +20260319 205900;212.098000;212.115000;212.097000;212.108000;0 +20260319 210000;212.110000;212.131000;212.110000;212.116000;0 +20260319 210100;212.119000;212.156000;212.116000;212.141000;0 +20260319 210200;212.136000;212.149000;212.117000;212.117000;0 +20260319 210300;212.118000;212.146000;212.117000;212.144000;0 +20260319 210400;212.145000;212.164000;212.138000;212.160000;0 +20260319 210500;212.160000;212.174000;212.150000;212.163000;0 +20260319 210600;212.164000;212.178000;212.157000;212.162000;0 +20260319 210700;212.162000;212.173000;212.154000;212.163000;0 +20260319 210800;212.171000;212.176000;212.166000;212.175000;0 +20260319 210900;212.172000;212.190000;212.163000;212.176000;0 +20260319 211000;212.178000;212.182000;212.148000;212.158000;0 +20260319 211100;212.158000;212.160000;212.147000;212.158000;0 +20260319 211200;212.157000;212.160000;212.139000;212.143000;0 +20260319 211300;212.143000;212.170000;212.141000;212.165000;0 +20260319 211400;212.164000;212.165000;212.151000;212.157000;0 +20260319 211500;212.158000;212.194000;212.158000;212.187000;0 +20260319 211600;212.187000;212.205000;212.166000;212.174000;0 +20260319 211700;212.173000;212.190000;212.167000;212.179000;0 +20260319 211800;212.176000;212.180000;212.163000;212.168000;0 +20260319 211900;212.170000;212.192000;212.167000;212.187000;0 +20260319 212000;212.188000;212.203000;212.175000;212.201000;0 +20260319 212100;212.201000;212.224000;212.200000;212.217000;0 +20260319 212200;212.216000;212.218000;212.196000;212.200000;0 +20260319 212300;212.200000;212.210000;212.185000;212.190000;0 +20260319 212400;212.190000;212.212000;212.189000;212.212000;0 +20260319 212500;212.213000;212.217000;212.205000;212.212000;0 +20260319 212600;212.213000;212.214000;212.212000;212.212000;0 +20260319 212700;212.212000;212.221000;212.212000;212.220000;0 +20260319 212800;212.216000;212.233000;212.216000;212.231000;0 +20260319 212900;212.229000;212.282000;212.227000;212.270000;0 +20260319 213000;212.271000;212.303000;212.269000;212.282000;0 +20260319 213100;212.282000;212.284000;212.261000;212.271000;0 +20260319 213200;212.269000;212.299000;212.269000;212.299000;0 +20260319 213300;212.298000;212.313000;212.297000;212.311000;0 +20260319 213400;212.311000;212.326000;212.303000;212.319000;0 +20260319 213500;212.318000;212.318000;212.289000;212.294000;0 +20260319 213600;212.296000;212.324000;212.289000;212.324000;0 +20260319 213700;212.319000;212.350000;212.285000;212.297000;0 +20260319 213800;212.304000;212.306000;212.275000;212.280000;0 +20260319 213900;212.280000;212.296000;212.279000;212.296000;0 +20260319 214000;212.298000;212.307000;212.268000;212.274000;0 +20260319 214100;212.274000;212.281000;212.266000;212.274000;0 +20260319 214200;212.275000;212.283000;212.270000;212.272000;0 +20260319 214300;212.273000;212.293000;212.272000;212.276000;0 +20260319 214400;212.278000;212.285000;212.268000;212.268000;0 +20260319 214500;212.268000;212.275000;212.247000;212.251000;0 +20260319 214600;212.254000;212.268000;212.252000;212.266000;0 +20260319 214700;212.267000;212.298000;212.265000;212.288000;0 +20260319 214800;212.290000;212.300000;212.280000;212.294000;0 +20260319 214900;212.295000;212.340000;212.295000;212.334000;0 +20260319 215000;212.333000;212.349000;212.298000;212.315000;0 +20260319 215100;212.312000;212.318000;212.303000;212.307000;0 +20260319 215200;212.308000;212.311000;212.292000;212.299000;0 +20260319 215300;212.299000;212.312000;212.293000;212.309000;0 +20260319 215400;212.300000;212.316000;212.296000;212.311000;0 +20260319 215500;212.311000;212.344000;212.307000;212.329000;0 +20260319 215600;212.327000;212.327000;212.291000;212.295000;0 +20260319 215700;212.295000;212.315000;212.295000;212.304000;0 +20260319 215800;212.305000;212.319000;212.293000;212.316000;0 +20260319 215900;212.317000;212.317000;212.298000;212.307000;0 +20260319 220000;212.306000;212.314000;212.279000;212.288000;0 +20260319 220100;212.287000;212.329000;212.284000;212.315000;0 +20260319 220200;212.316000;212.316000;212.274000;212.289000;0 +20260319 220300;212.289000;212.304000;212.285000;212.293000;0 +20260319 220400;212.297000;212.317000;212.287000;212.294000;0 +20260319 220500;212.293000;212.323000;212.293000;212.317000;0 +20260319 220600;212.317000;212.324000;212.308000;212.313000;0 +20260319 220700;212.319000;212.320000;212.299000;212.308000;0 +20260319 220800;212.312000;212.312000;212.281000;212.287000;0 +20260319 220900;212.287000;212.294000;212.281000;212.283000;0 +20260319 221000;212.281000;212.315000;212.279000;212.288000;0 +20260319 221100;212.288000;212.307000;212.283000;212.297000;0 +20260319 221200;212.292000;212.295000;212.276000;212.278000;0 +20260319 221300;212.278000;212.279000;212.242000;212.266000;0 +20260319 221400;212.265000;212.272000;212.245000;212.245000;0 +20260319 221500;212.245000;212.269000;212.245000;212.253000;0 +20260319 221600;212.262000;212.268000;212.235000;212.246000;0 +20260319 221700;212.245000;212.246000;212.232000;212.237000;0 +20260319 221800;212.234000;212.274000;212.234000;212.271000;0 +20260319 221900;212.271000;212.271000;212.246000;212.250000;0 +20260319 222000;212.247000;212.271000;212.240000;212.269000;0 +20260319 222100;212.269000;212.284000;212.266000;212.282000;0 +20260319 222200;212.280000;212.285000;212.264000;212.266000;0 +20260319 222300;212.266000;212.272000;212.253000;212.260000;0 +20260319 222400;212.260000;212.263000;212.243000;212.250000;0 +20260319 222500;212.250000;212.266000;212.248000;212.261000;0 +20260319 222600;212.261000;212.268000;212.246000;212.249000;0 +20260319 222700;212.250000;212.255000;212.249000;212.255000;0 +20260319 222800;212.255000;212.255000;212.240000;212.253000;0 +20260319 222900;212.252000;212.262000;212.249000;212.255000;0 +20260319 223000;212.254000;212.265000;212.248000;212.263000;0 +20260319 223100;212.264000;212.265000;212.251000;212.251000;0 +20260319 223200;212.253000;212.265000;212.247000;212.249000;0 +20260319 223300;212.249000;212.255000;212.240000;212.250000;0 +20260319 223400;212.250000;212.264000;212.230000;212.233000;0 +20260319 223500;212.235000;212.247000;212.229000;212.242000;0 +20260319 223600;212.242000;212.261000;212.242000;212.257000;0 +20260319 223700;212.259000;212.259000;212.234000;212.247000;0 +20260319 223800;212.248000;212.251000;212.228000;212.229000;0 +20260319 223900;212.227000;212.228000;212.220000;212.226000;0 +20260319 224000;212.228000;212.232000;212.220000;212.220000;0 +20260319 224100;212.220000;212.227000;212.220000;212.221000;0 +20260319 224200;212.220000;212.236000;212.220000;212.235000;0 +20260319 224300;212.233000;212.235000;212.225000;212.228000;0 +20260319 224400;212.224000;212.224000;212.220000;212.220000;0 +20260319 224500;212.220000;212.230000;212.220000;212.230000;0 +20260319 224600;212.229000;212.248000;212.227000;212.245000;0 +20260319 224700;212.246000;212.248000;212.234000;212.235000;0 +20260319 224800;212.230000;212.248000;212.230000;212.241000;0 +20260319 224900;212.243000;212.244000;212.234000;212.241000;0 +20260319 225000;212.243000;212.250000;212.230000;212.230000;0 +20260319 225100;212.233000;212.235000;212.210000;212.233000;0 +20260319 225200;212.235000;212.239000;212.222000;212.234000;0 +20260319 225300;212.234000;212.251000;212.234000;212.249000;0 +20260319 225400;212.250000;212.266000;212.241000;212.266000;0 +20260319 225500;212.265000;212.270000;212.262000;212.264000;0 +20260319 225600;212.266000;212.266000;212.234000;212.244000;0 +20260319 225700;212.247000;212.304000;212.246000;212.300000;0 +20260319 225800;212.301000;212.310000;212.300000;212.306000;0 +20260319 225900;212.308000;212.308000;212.295000;212.297000;0 +20260319 230000;212.295000;212.300000;212.270000;212.270000;0 +20260319 230100;212.270000;212.310000;212.262000;212.309000;0 +20260319 230200;212.309000;212.311000;212.292000;212.304000;0 +20260319 230300;212.309000;212.326000;212.300000;212.325000;0 +20260319 230400;212.318000;212.318000;212.305000;212.316000;0 +20260319 230500;212.314000;212.320000;212.301000;212.302000;0 +20260319 230600;212.302000;212.315000;212.302000;212.307000;0 +20260319 230700;212.307000;212.313000;212.304000;212.312000;0 +20260319 230800;212.312000;212.315000;212.309000;212.312000;0 +20260319 230900;212.308000;212.338000;212.308000;212.331000;0 +20260319 231000;212.330000;212.332000;212.317000;212.317000;0 +20260319 231100;212.318000;212.322000;212.301000;212.316000;0 +20260319 231200;212.315000;212.329000;212.315000;212.329000;0 +20260319 231300;212.328000;212.329000;212.303000;212.316000;0 +20260319 231400;212.315000;212.320000;212.313000;212.318000;0 +20260319 231500;212.313000;212.319000;212.305000;212.319000;0 +20260319 231600;212.319000;212.327000;212.300000;212.300000;0 +20260319 231700;212.300000;212.315000;212.300000;212.312000;0 +20260319 231800;212.311000;212.311000;212.287000;212.289000;0 +20260319 231900;212.290000;212.296000;212.280000;212.280000;0 +20260319 232000;212.280000;212.305000;212.280000;212.305000;0 +20260319 232100;212.310000;212.312000;212.286000;212.286000;0 +20260319 232200;212.286000;212.286000;212.270000;212.279000;0 +20260319 232300;212.280000;212.294000;212.279000;212.280000;0 +20260319 232400;212.280000;212.289000;212.280000;212.284000;0 +20260319 232500;212.285000;212.292000;212.280000;212.292000;0 +20260319 232600;212.291000;212.295000;212.282000;212.293000;0 +20260319 232700;212.292000;212.292000;212.283000;212.286000;0 +20260319 232800;212.286000;212.286000;212.279000;212.283000;0 +20260319 232900;212.282000;212.298000;212.278000;212.295000;0 +20260319 233000;212.297000;212.299000;212.281000;212.283000;0 +20260319 233100;212.283000;212.293000;212.279000;212.285000;0 +20260319 233200;212.282000;212.304000;212.282000;212.303000;0 +20260319 233300;212.300000;212.301000;212.290000;212.295000;0 +20260319 233400;212.295000;212.298000;212.283000;212.289000;0 +20260319 233500;212.287000;212.301000;212.285000;212.287000;0 +20260319 233600;212.288000;212.310000;212.287000;212.309000;0 +20260319 233700;212.310000;212.316000;212.307000;212.311000;0 +20260319 233800;212.312000;212.316000;212.301000;212.304000;0 +20260319 233900;212.304000;212.318000;212.300000;212.312000;0 +20260319 234000;212.312000;212.317000;212.293000;212.310000;0 +20260319 234100;212.313000;212.318000;212.309000;212.311000;0 +20260319 234200;212.313000;212.317000;212.297000;212.297000;0 +20260319 234300;212.295000;212.298000;212.284000;212.292000;0 +20260319 234400;212.291000;212.297000;212.284000;212.296000;0 +20260319 234500;212.293000;212.308000;212.293000;212.296000;0 +20260319 234600;212.297000;212.308000;212.295000;212.301000;0 +20260319 234700;212.300000;212.303000;212.285000;212.295000;0 +20260319 234800;212.291000;212.300000;212.287000;212.300000;0 +20260319 234900;212.310000;212.314000;212.300000;212.314000;0 +20260319 235000;212.313000;212.323000;212.301000;212.312000;0 +20260319 235100;212.314000;212.319000;212.308000;212.316000;0 +20260319 235200;212.318000;212.320000;212.304000;212.305000;0 +20260319 235300;212.302000;212.312000;212.298000;212.305000;0 +20260319 235400;212.304000;212.308000;212.300000;212.301000;0 +20260319 235500;212.303000;212.326000;212.298000;212.323000;0 +20260319 235600;212.325000;212.329000;212.301000;212.305000;0 +20260319 235700;212.309000;212.309000;212.288000;212.294000;0 +20260319 235800;212.295000;212.295000;212.273000;212.275000;0 +20260319 235900;212.276000;212.282000;212.268000;212.270000;0 +20260320 000000;212.270000;212.284000;212.268000;212.282000;0 +20260320 000100;212.282000;212.289000;212.273000;212.273000;0 +20260320 000200;212.270000;212.284000;212.266000;212.281000;0 +20260320 000300;212.282000;212.293000;212.282000;212.286000;0 +20260320 000400;212.286000;212.296000;212.279000;212.296000;0 +20260320 000500;212.295000;212.310000;212.284000;212.309000;0 +20260320 000600;212.310000;212.317000;212.308000;212.313000;0 +20260320 000700;212.312000;212.329000;212.309000;212.329000;0 +20260320 000800;212.329000;212.344000;212.322000;212.322000;0 +20260320 000900;212.323000;212.331000;212.314000;212.325000;0 +20260320 001000;212.325000;212.329000;212.300000;212.300000;0 +20260320 001100;212.300000;212.317000;212.300000;212.300000;0 +20260320 001200;212.300000;212.316000;212.300000;212.300000;0 +20260320 001300;212.300000;212.307000;212.296000;212.302000;0 +20260320 001400;212.302000;212.327000;212.301000;212.324000;0 +20260320 001500;212.323000;212.330000;212.322000;212.327000;0 +20260320 001600;212.327000;212.338000;212.318000;212.330000;0 +20260320 001700;212.331000;212.341000;212.327000;212.327000;0 +20260320 001800;212.328000;212.335000;212.314000;212.315000;0 +20260320 001900;212.314000;212.317000;212.305000;212.313000;0 +20260320 002000;212.310000;212.326000;212.309000;212.323000;0 +20260320 002100;212.323000;212.330000;212.312000;212.319000;0 +20260320 002200;212.322000;212.339000;212.322000;212.334000;0 +20260320 002300;212.332000;212.334000;212.328000;212.332000;0 +20260320 002400;212.336000;212.341000;212.330000;212.331000;0 +20260320 002500;212.332000;212.346000;212.317000;212.326000;0 +20260320 002600;212.327000;212.337000;212.327000;212.332000;0 +20260320 002700;212.332000;212.338000;212.325000;212.327000;0 +20260320 002800;212.327000;212.327000;212.307000;212.318000;0 +20260320 002900;212.318000;212.329000;212.318000;212.325000;0 +20260320 003000;212.316000;212.322000;212.305000;212.318000;0 +20260320 003100;212.315000;212.327000;212.298000;212.327000;0 +20260320 003200;212.320000;212.329000;212.308000;212.311000;0 +20260320 003300;212.312000;212.320000;212.303000;212.310000;0 +20260320 003400;212.310000;212.316000;212.295000;212.315000;0 +20260320 003500;212.316000;212.339000;212.308000;212.333000;0 +20260320 003600;212.333000;212.334000;212.313000;212.313000;0 +20260320 003700;212.313000;212.332000;212.313000;212.330000;0 +20260320 003800;212.331000;212.332000;212.316000;212.319000;0 +20260320 003900;212.319000;212.322000;212.314000;212.316000;0 +20260320 004000;212.320000;212.338000;212.318000;212.332000;0 +20260320 004100;212.332000;212.333000;212.314000;212.316000;0 +20260320 004200;212.315000;212.327000;212.308000;212.315000;0 +20260320 004300;212.313000;212.325000;212.313000;212.320000;0 +20260320 004400;212.322000;212.331000;212.315000;212.323000;0 +20260320 004500;212.321000;212.322000;212.316000;212.319000;0 +20260320 004600;212.315000;212.315000;212.300000;212.300000;0 +20260320 004700;212.300000;212.301000;212.258000;212.263000;0 +20260320 004800;212.267000;212.279000;212.265000;212.269000;0 +20260320 004900;212.269000;212.281000;212.263000;212.280000;0 +20260320 005000;212.280000;212.282000;212.269000;212.269000;0 +20260320 005100;212.269000;212.274000;212.263000;212.267000;0 +20260320 005200;212.266000;212.270000;212.253000;212.265000;0 +20260320 005300;212.264000;212.280000;212.264000;212.265000;0 +20260320 005400;212.271000;212.286000;212.269000;212.285000;0 +20260320 005500;212.286000;212.300000;212.283000;212.290000;0 +20260320 005600;212.294000;212.312000;212.291000;212.308000;0 +20260320 005700;212.307000;212.307000;212.297000;212.305000;0 +20260320 005800;212.308000;212.315000;212.294000;212.295000;0 +20260320 005900;212.296000;212.296000;212.286000;212.289000;0 +20260320 010000;212.290000;212.320000;212.289000;212.304000;0 +20260320 010100;212.304000;212.327000;212.304000;212.314000;0 +20260320 010200;212.314000;212.347000;212.314000;212.344000;0 +20260320 010300;212.346000;212.364000;212.346000;212.360000;0 +20260320 010400;212.360000;212.363000;212.349000;212.353000;0 +20260320 010500;212.353000;212.363000;212.353000;212.360000;0 +20260320 010600;212.359000;212.359000;212.327000;212.341000;0 +20260320 010700;212.336000;212.337000;212.311000;212.325000;0 +20260320 010800;212.323000;212.342000;212.323000;212.338000;0 +20260320 010900;212.339000;212.340000;212.322000;212.331000;0 +20260320 011000;212.348000;212.375000;212.348000;212.354000;0 +20260320 011100;212.354000;212.362000;212.345000;212.346000;0 +20260320 011200;212.347000;212.361000;212.344000;212.351000;0 +20260320 011300;212.349000;212.355000;212.343000;212.355000;0 +20260320 011400;212.353000;212.387000;212.353000;212.373000;0 +20260320 011500;212.373000;212.387000;212.363000;212.368000;0 +20260320 011600;212.368000;212.374000;212.358000;212.360000;0 +20260320 011700;212.359000;212.382000;212.353000;212.375000;0 +20260320 011800;212.377000;212.390000;212.374000;212.380000;0 +20260320 011900;212.378000;212.385000;212.362000;212.379000;0 +20260320 012000;212.376000;212.377000;212.362000;212.363000;0 +20260320 012100;212.362000;212.364000;212.334000;212.344000;0 +20260320 012200;212.345000;212.357000;212.344000;212.357000;0 +20260320 012300;212.361000;212.368000;212.358000;212.364000;0 +20260320 012400;212.364000;212.379000;212.360000;212.371000;0 +20260320 012500;212.371000;212.381000;212.370000;212.374000;0 +20260320 012600;212.374000;212.376000;212.366000;212.367000;0 +20260320 012700;212.367000;212.375000;212.353000;212.373000;0 +20260320 012800;212.374000;212.374000;212.356000;212.365000;0 +20260320 012900;212.366000;212.374000;212.358000;212.361000;0 +20260320 013000;212.355000;212.385000;212.355000;212.365000;0 +20260320 013100;212.367000;212.371000;212.357000;212.357000;0 +20260320 013200;212.360000;212.382000;212.323000;212.324000;0 +20260320 013300;212.320000;212.352000;212.305000;212.337000;0 +20260320 013400;212.337000;212.372000;212.334000;212.364000;0 +20260320 013500;212.366000;212.371000;212.348000;212.354000;0 +20260320 013600;212.353000;212.367000;212.353000;212.367000;0 +20260320 013700;212.367000;212.381000;212.367000;212.376000;0 +20260320 013800;212.375000;212.378000;212.321000;212.333000;0 +20260320 013900;212.333000;212.334000;212.303000;212.321000;0 +20260320 014000;212.321000;212.336000;212.315000;212.331000;0 +20260320 014100;212.330000;212.350000;212.328000;212.332000;0 +20260320 014200;212.332000;212.342000;212.312000;212.342000;0 +20260320 014300;212.342000;212.358000;212.320000;212.320000;0 +20260320 014400;212.320000;212.331000;212.316000;212.330000;0 +20260320 014500;212.329000;212.357000;212.329000;212.353000;0 +20260320 014600;212.352000;212.371000;212.347000;212.350000;0 +20260320 014700;212.349000;212.363000;212.347000;212.352000;0 +20260320 014800;212.355000;212.356000;212.330000;212.336000;0 +20260320 014900;212.334000;212.359000;212.333000;212.353000;0 +20260320 015000;212.355000;212.359000;212.345000;212.359000;0 +20260320 015100;212.358000;212.358000;212.309000;212.311000;0 +20260320 015200;212.311000;212.335000;212.311000;212.332000;0 +20260320 015300;212.336000;212.336000;212.302000;212.309000;0 +20260320 015400;212.309000;212.322000;212.307000;212.315000;0 +20260320 015500;212.315000;212.324000;212.289000;212.294000;0 +20260320 015600;212.293000;212.295000;212.274000;212.285000;0 +20260320 015700;212.286000;212.298000;212.272000;212.293000;0 +20260320 015800;212.296000;212.305000;212.280000;212.293000;0 +20260320 015900;212.293000;212.327000;212.293000;212.316000;0 +20260320 020000;212.316000;212.345000;212.286000;212.297000;0 +20260320 020100;212.294000;212.297000;212.272000;212.283000;0 +20260320 020200;212.283000;212.309000;212.280000;212.307000;0 +20260320 020300;212.309000;212.377000;212.305000;212.376000;0 +20260320 020400;212.376000;212.379000;212.360000;212.361000;0 +20260320 020500;212.366000;212.378000;212.345000;212.376000;0 +20260320 020600;212.378000;212.394000;212.374000;212.391000;0 +20260320 020700;212.383000;212.418000;212.382000;212.412000;0 +20260320 020800;212.414000;212.473000;212.394000;212.473000;0 +20260320 020900;212.471000;212.472000;212.427000;212.443000;0 +20260320 021000;212.442000;212.486000;212.426000;212.475000;0 +20260320 021100;212.475000;212.517000;212.475000;212.502000;0 +20260320 021200;212.501000;212.507000;212.455000;212.465000;0 +20260320 021300;212.466000;212.478000;212.454000;212.470000;0 +20260320 021400;212.471000;212.477000;212.457000;212.460000;0 +20260320 021500;212.460000;212.501000;212.456000;212.501000;0 +20260320 021600;212.504000;212.519000;212.488000;212.519000;0 +20260320 021700;212.514000;212.525000;212.503000;212.521000;0 +20260320 021800;212.528000;212.529000;212.490000;212.503000;0 +20260320 021900;212.502000;212.513000;212.495000;212.502000;0 +20260320 022000;212.503000;212.523000;212.497000;212.516000;0 +20260320 022100;212.518000;212.530000;212.496000;212.496000;0 +20260320 022200;212.493000;212.511000;212.483000;212.499000;0 +20260320 022300;212.498000;212.531000;212.495000;212.529000;0 +20260320 022400;212.531000;212.533000;212.483000;212.499000;0 +20260320 022500;212.500000;212.522000;212.490000;212.504000;0 +20260320 022600;212.503000;212.519000;212.494000;212.518000;0 +20260320 022700;212.519000;212.555000;212.519000;212.553000;0 +20260320 022800;212.558000;212.584000;212.557000;212.573000;0 +20260320 022900;212.571000;212.579000;212.558000;212.559000;0 +20260320 023000;212.557000;212.570000;212.535000;212.535000;0 +20260320 023100;212.536000;212.555000;212.528000;212.532000;0 +20260320 023200;212.535000;212.542000;212.514000;212.532000;0 +20260320 023300;212.530000;212.565000;212.520000;212.559000;0 +20260320 023400;212.560000;212.570000;212.525000;212.534000;0 +20260320 023500;212.533000;212.543000;212.515000;212.527000;0 +20260320 023600;212.527000;212.537000;212.519000;212.527000;0 +20260320 023700;212.529000;212.541000;212.513000;212.529000;0 +20260320 023800;212.529000;212.542000;212.516000;212.516000;0 +20260320 023900;212.516000;212.534000;212.505000;212.515000;0 +20260320 024000;212.512000;212.543000;212.512000;212.530000;0 +20260320 024100;212.531000;212.546000;212.519000;212.545000;0 +20260320 024200;212.544000;212.555000;212.528000;212.552000;0 +20260320 024300;212.549000;212.580000;212.549000;212.578000;0 +20260320 024400;212.580000;212.611000;212.579000;212.604000;0 +20260320 024500;212.604000;212.651000;212.591000;212.649000;0 +20260320 024600;212.652000;212.681000;212.637000;212.681000;0 +20260320 024700;212.672000;212.685000;212.636000;212.650000;0 +20260320 024800;212.648000;212.655000;212.641000;212.650000;0 +20260320 024900;212.651000;212.651000;212.598000;212.608000;0 +20260320 025000;212.607000;212.607000;212.575000;212.589000;0 +20260320 025100;212.593000;212.599000;212.573000;212.573000;0 +20260320 025200;212.575000;212.595000;212.553000;212.595000;0 +20260320 025300;212.591000;212.593000;212.571000;212.577000;0 +20260320 025400;212.578000;212.579000;212.547000;212.559000;0 +20260320 025500;212.561000;212.566000;212.547000;212.554000;0 +20260320 025600;212.554000;212.564000;212.528000;212.529000;0 +20260320 025700;212.529000;212.552000;212.524000;212.531000;0 +20260320 025800;212.532000;212.547000;212.508000;212.508000;0 +20260320 025900;212.509000;212.543000;212.494000;212.532000;0 +20260320 030000;212.538000;212.603000;212.533000;212.581000;0 +20260320 030100;212.581000;212.598000;212.551000;212.578000;0 +20260320 030200;212.574000;212.633000;212.563000;212.607000;0 +20260320 030300;212.609000;212.611000;212.583000;212.600000;0 +20260320 030400;212.599000;212.648000;212.585000;212.629000;0 +20260320 030500;212.629000;212.649000;212.609000;212.649000;0 +20260320 030600;212.652000;212.655000;212.624000;212.648000;0 +20260320 030700;212.647000;212.667000;212.635000;212.648000;0 +20260320 030800;212.649000;212.670000;212.641000;212.665000;0 +20260320 030900;212.662000;212.668000;212.645000;212.656000;0 +20260320 031000;212.657000;212.658000;212.624000;212.624000;0 +20260320 031100;212.625000;212.633000;212.611000;212.623000;0 +20260320 031200;212.623000;212.645000;212.614000;212.641000;0 +20260320 031300;212.635000;212.646000;212.612000;212.643000;0 +20260320 031400;212.643000;212.670000;212.628000;212.670000;0 +20260320 031500;212.663000;212.681000;212.661000;212.680000;0 +20260320 031600;212.677000;212.697000;212.656000;212.691000;0 +20260320 031700;212.690000;212.709000;212.668000;212.673000;0 +20260320 031800;212.671000;212.673000;212.653000;212.660000;0 +20260320 031900;212.664000;212.680000;212.647000;212.652000;0 +20260320 032000;212.651000;212.655000;212.607000;212.609000;0 +20260320 032100;212.607000;212.609000;212.585000;212.596000;0 +20260320 032200;212.596000;212.610000;212.575000;212.578000;0 +20260320 032300;212.580000;212.605000;212.580000;212.594000;0 +20260320 032400;212.595000;212.610000;212.586000;212.610000;0 +20260320 032500;212.608000;212.639000;212.608000;212.621000;0 +20260320 032600;212.621000;212.640000;212.615000;212.628000;0 +20260320 032700;212.629000;212.652000;212.619000;212.635000;0 +20260320 032800;212.635000;212.660000;212.635000;212.641000;0 +20260320 032900;212.641000;212.641000;212.614000;212.629000;0 +20260320 033000;212.626000;212.665000;212.608000;212.656000;0 +20260320 033100;212.658000;212.672000;212.657000;212.663000;0 +20260320 033200;212.664000;212.685000;212.652000;212.659000;0 +20260320 033300;212.660000;212.711000;212.658000;212.707000;0 +20260320 033400;212.706000;212.731000;212.674000;212.727000;0 +20260320 033500;212.728000;212.738000;212.709000;212.731000;0 +20260320 033600;212.731000;212.744000;212.725000;212.729000;0 +20260320 033700;212.728000;212.739000;212.706000;212.707000;0 +20260320 033800;212.707000;212.722000;212.696000;212.700000;0 +20260320 033900;212.696000;212.728000;212.695000;212.718000;0 +20260320 034000;212.719000;212.747000;212.705000;212.706000;0 +20260320 034100;212.703000;212.721000;212.700000;212.710000;0 +20260320 034200;212.707000;212.709000;212.686000;212.695000;0 +20260320 034300;212.694000;212.701000;212.681000;212.696000;0 +20260320 034400;212.696000;212.698000;212.665000;212.672000;0 +20260320 034500;212.669000;212.669000;212.626000;212.657000;0 +20260320 034600;212.655000;212.669000;212.649000;212.655000;0 +20260320 034700;212.656000;212.657000;212.635000;212.641000;0 +20260320 034800;212.642000;212.652000;212.631000;212.646000;0 +20260320 034900;212.646000;212.679000;212.645000;212.672000;0 +20260320 035000;212.671000;212.733000;212.671000;212.730000;0 +20260320 035100;212.729000;212.750000;212.711000;212.711000;0 +20260320 035200;212.711000;212.730000;212.702000;212.720000;0 +20260320 035300;212.720000;212.732000;212.691000;212.700000;0 +20260320 035400;212.703000;212.705000;212.687000;212.705000;0 +20260320 035500;212.706000;212.711000;212.687000;212.699000;0 +20260320 035600;212.697000;212.755000;212.697000;212.749000;0 +20260320 035700;212.743000;212.768000;212.671000;212.672000;0 +20260320 035800;212.668000;212.684000;212.662000;212.672000;0 +20260320 035900;212.670000;212.679000;212.636000;212.640000;0 +20260320 040000;212.639000;212.639000;212.576000;212.600000;0 +20260320 040100;212.598000;212.628000;212.598000;212.618000;0 +20260320 040200;212.618000;212.618000;212.599000;212.613000;0 +20260320 040300;212.613000;212.654000;212.607000;212.651000;0 +20260320 040400;212.650000;212.664000;212.589000;212.589000;0 +20260320 040500;212.591000;212.595000;212.563000;212.565000;0 +20260320 040600;212.565000;212.591000;212.536000;212.588000;0 +20260320 040700;212.588000;212.610000;212.585000;212.610000;0 +20260320 040800;212.608000;212.615000;212.570000;212.572000;0 +20260320 040900;212.572000;212.639000;212.571000;212.630000;0 +20260320 041000;212.631000;212.645000;212.621000;212.626000;0 +20260320 041100;212.626000;212.673000;212.621000;212.655000;0 +20260320 041200;212.654000;212.682000;212.639000;212.682000;0 +20260320 041300;212.678000;212.688000;212.653000;212.661000;0 +20260320 041400;212.663000;212.675000;212.639000;212.645000;0 +20260320 041500;212.644000;212.651000;212.619000;212.634000;0 +20260320 041600;212.633000;212.643000;212.616000;212.625000;0 +20260320 041700;212.623000;212.636000;212.619000;212.630000;0 +20260320 041800;212.629000;212.656000;212.627000;212.652000;0 +20260320 041900;212.657000;212.678000;212.628000;212.635000;0 +20260320 042000;212.636000;212.665000;212.628000;212.654000;0 +20260320 042100;212.654000;212.657000;212.604000;212.618000;0 +20260320 042200;212.623000;212.634000;212.606000;212.613000;0 +20260320 042300;212.616000;212.630000;212.607000;212.613000;0 +20260320 042400;212.615000;212.638000;212.610000;212.610000;0 +20260320 042500;212.608000;212.636000;212.605000;212.627000;0 +20260320 042600;212.629000;212.651000;212.615000;212.637000;0 +20260320 042700;212.634000;212.661000;212.625000;212.650000;0 +20260320 042800;212.651000;212.666000;212.627000;212.627000;0 +20260320 042900;212.628000;212.631000;212.588000;212.611000;0 +20260320 043000;212.621000;212.676000;212.621000;212.671000;0 +20260320 043100;212.668000;212.686000;212.661000;212.664000;0 +20260320 043200;212.664000;212.688000;212.664000;212.681000;0 +20260320 043300;212.681000;212.685000;212.630000;212.639000;0 +20260320 043400;212.642000;212.660000;212.618000;212.623000;0 +20260320 043500;212.621000;212.625000;212.593000;212.617000;0 +20260320 043600;212.616000;212.641000;212.616000;212.633000;0 +20260320 043700;212.633000;212.667000;212.630000;212.667000;0 +20260320 043800;212.667000;212.680000;212.630000;212.648000;0 +20260320 043900;212.643000;212.647000;212.620000;212.625000;0 +20260320 044000;212.628000;212.650000;212.577000;212.594000;0 +20260320 044100;212.599000;212.638000;212.599000;212.624000;0 +20260320 044200;212.622000;212.642000;212.603000;212.606000;0 +20260320 044300;212.608000;212.647000;212.608000;212.633000;0 +20260320 044400;212.636000;212.652000;212.615000;212.627000;0 +20260320 044500;212.631000;212.640000;212.596000;212.597000;0 +20260320 044600;212.598000;212.638000;212.597000;212.628000;0 +20260320 044700;212.632000;212.652000;212.572000;212.588000;0 +20260320 044800;212.595000;212.627000;212.569000;212.576000;0 +20260320 044900;212.577000;212.614000;212.577000;212.612000;0 +20260320 045000;212.610000;212.635000;212.605000;212.624000;0 +20260320 045100;212.621000;212.623000;212.588000;212.590000;0 +20260320 045200;212.588000;212.621000;212.576000;212.592000;0 +20260320 045300;212.596000;212.618000;212.542000;212.561000;0 +20260320 045400;212.562000;212.562000;212.499000;212.542000;0 +20260320 045500;212.543000;212.598000;212.539000;212.581000;0 +20260320 045600;212.577000;212.597000;212.555000;212.577000;0 +20260320 045700;212.580000;212.613000;212.572000;212.604000;0 +20260320 045800;212.609000;212.617000;212.583000;212.590000;0 +20260320 045900;212.592000;212.611000;212.544000;212.549000;0 +20260320 050000;212.550000;212.570000;212.471000;212.513000;0 +20260320 050100;212.512000;212.513000;212.435000;212.448000;0 +20260320 050200;212.441000;212.484000;212.441000;212.475000;0 +20260320 050300;212.474000;212.511000;212.449000;212.503000;0 +20260320 050400;212.502000;212.507000;212.475000;212.505000;0 +20260320 050500;212.504000;212.518000;212.459000;212.510000;0 +20260320 050600;212.514000;212.519000;212.458000;212.466000;0 +20260320 050700;212.467000;212.486000;212.422000;212.426000;0 +20260320 050800;212.428000;212.435000;212.370000;212.389000;0 +20260320 050900;212.388000;212.398000;212.332000;212.337000;0 +20260320 051000;212.337000;212.357000;212.305000;212.308000;0 +20260320 051100;212.305000;212.355000;212.303000;212.335000;0 +20260320 051200;212.335000;212.387000;212.328000;212.364000;0 +20260320 051300;212.365000;212.404000;212.365000;212.376000;0 +20260320 051400;212.380000;212.394000;212.357000;212.369000;0 +20260320 051500;212.369000;212.392000;212.359000;212.383000;0 +20260320 051600;212.387000;212.414000;212.373000;212.406000;0 +20260320 051700;212.406000;212.420000;212.395000;212.402000;0 +20260320 051800;212.405000;212.422000;212.387000;212.395000;0 +20260320 051900;212.398000;212.402000;212.380000;212.387000;0 +20260320 052000;212.392000;212.392000;212.353000;212.365000;0 +20260320 052100;212.364000;212.384000;212.354000;212.366000;0 +20260320 052200;212.368000;212.371000;212.329000;212.339000;0 +20260320 052300;212.340000;212.379000;212.339000;212.359000;0 +20260320 052400;212.362000;212.395000;212.361000;212.384000;0 +20260320 052500;212.385000;212.404000;212.384000;212.388000;0 +20260320 052600;212.392000;212.401000;212.374000;212.385000;0 +20260320 052700;212.387000;212.391000;212.356000;212.367000;0 +20260320 052800;212.368000;212.380000;212.362000;212.362000;0 +20260320 052900;212.362000;212.382000;212.358000;212.360000;0 +20260320 053000;212.359000;212.385000;212.333000;212.334000;0 +20260320 053100;212.342000;212.352000;212.323000;212.323000;0 +20260320 053200;212.325000;212.328000;212.267000;212.289000;0 +20260320 053300;212.291000;212.324000;212.291000;212.316000;0 +20260320 053400;212.317000;212.331000;212.267000;212.300000;0 +20260320 053500;212.297000;212.330000;212.282000;212.316000;0 +20260320 053600;212.323000;212.333000;212.307000;212.321000;0 +20260320 053700;212.323000;212.323000;212.303000;212.318000;0 +20260320 053800;212.317000;212.335000;212.292000;212.303000;0 +20260320 053900;212.302000;212.341000;212.302000;212.327000;0 +20260320 054000;212.323000;212.360000;212.323000;212.360000;0 +20260320 054100;212.360000;212.389000;212.354000;212.380000;0 +20260320 054200;212.382000;212.395000;212.357000;212.370000;0 +20260320 054300;212.370000;212.393000;212.363000;212.379000;0 +20260320 054400;212.380000;212.380000;212.338000;212.361000;0 +20260320 054500;212.360000;212.361000;212.324000;212.328000;0 +20260320 054600;212.329000;212.329000;212.311000;212.322000;0 +20260320 054700;212.322000;212.339000;212.314000;212.339000;0 +20260320 054800;212.338000;212.371000;212.322000;212.366000;0 +20260320 054900;212.369000;212.373000;212.350000;212.368000;0 +20260320 055000;212.366000;212.366000;212.334000;212.347000;0 +20260320 055100;212.344000;212.353000;212.284000;212.302000;0 +20260320 055200;212.302000;212.322000;212.271000;212.272000;0 +20260320 055300;212.281000;212.330000;212.272000;212.320000;0 +20260320 055400;212.320000;212.321000;212.294000;212.303000;0 +20260320 055500;212.302000;212.315000;212.297000;212.313000;0 +20260320 055600;212.314000;212.371000;212.311000;212.362000;0 +20260320 055700;212.364000;212.368000;212.319000;212.319000;0 +20260320 055800;212.323000;212.349000;212.311000;212.342000;0 +20260320 055900;212.342000;212.344000;212.330000;212.340000;0 +20260320 060000;212.336000;212.340000;212.295000;212.302000;0 +20260320 060100;212.302000;212.329000;212.293000;212.302000;0 +20260320 060200;212.302000;212.318000;212.287000;212.291000;0 +20260320 060300;212.289000;212.289000;212.265000;212.283000;0 +20260320 060400;212.282000;212.300000;212.268000;212.300000;0 +20260320 060500;212.297000;212.321000;212.292000;212.317000;0 +20260320 060600;212.321000;212.321000;212.281000;212.306000;0 +20260320 060700;212.302000;212.356000;212.301000;212.350000;0 +20260320 060800;212.359000;212.399000;212.356000;212.379000;0 +20260320 060900;212.377000;212.397000;212.377000;212.388000;0 +20260320 061000;212.389000;212.391000;212.369000;212.383000;0 +20260320 061100;212.379000;212.408000;212.371000;212.373000;0 +20260320 061200;212.375000;212.387000;212.354000;212.356000;0 +20260320 061300;212.355000;212.365000;212.339000;212.360000;0 +20260320 061400;212.354000;212.360000;212.313000;212.320000;0 +20260320 061500;212.317000;212.324000;212.289000;212.289000;0 +20260320 061600;212.285000;212.292000;212.259000;212.260000;0 +20260320 061700;212.256000;212.265000;212.225000;212.256000;0 +20260320 061800;212.256000;212.288000;212.252000;212.271000;0 +20260320 061900;212.269000;212.288000;212.254000;212.275000;0 +20260320 062000;212.278000;212.293000;212.274000;212.287000;0 +20260320 062100;212.285000;212.294000;212.277000;212.288000;0 +20260320 062200;212.288000;212.307000;212.253000;212.307000;0 +20260320 062300;212.305000;212.323000;212.290000;212.321000;0 +20260320 062400;212.320000;212.330000;212.300000;212.319000;0 +20260320 062500;212.314000;212.356000;212.295000;212.356000;0 +20260320 062600;212.360000;212.382000;212.348000;212.378000;0 +20260320 062700;212.378000;212.406000;212.376000;212.403000;0 +20260320 062800;212.399000;212.404000;212.379000;212.397000;0 +20260320 062900;212.400000;212.428000;212.385000;212.419000;0 +20260320 063000;212.421000;212.456000;212.409000;212.421000;0 +20260320 063100;212.422000;212.441000;212.397000;212.440000;0 +20260320 063200;212.440000;212.452000;212.431000;212.432000;0 +20260320 063300;212.431000;212.459000;212.429000;212.450000;0 +20260320 063400;212.446000;212.468000;212.446000;212.453000;0 +20260320 063500;212.456000;212.461000;212.426000;212.426000;0 +20260320 063600;212.426000;212.426000;212.381000;212.391000;0 +20260320 063700;212.392000;212.449000;212.388000;212.432000;0 +20260320 063800;212.430000;212.434000;212.393000;212.399000;0 +20260320 063900;212.400000;212.416000;212.391000;212.408000;0 +20260320 064000;212.409000;212.419000;212.394000;212.417000;0 +20260320 064100;212.417000;212.420000;212.381000;212.386000;0 +20260320 064200;212.395000;212.395000;212.364000;212.391000;0 +20260320 064300;212.390000;212.436000;212.386000;212.433000;0 +20260320 064400;212.432000;212.473000;212.415000;212.467000;0 +20260320 064500;212.470000;212.470000;212.433000;212.433000;0 +20260320 064600;212.430000;212.433000;212.420000;212.433000;0 +20260320 064700;212.433000;212.440000;212.393000;212.393000;0 +20260320 064800;212.391000;212.419000;212.379000;212.405000;0 +20260320 064900;212.402000;212.429000;212.397000;212.411000;0 +20260320 065000;212.411000;212.444000;212.383000;212.396000;0 +20260320 065100;212.392000;212.394000;212.324000;212.324000;0 +20260320 065200;212.323000;212.359000;212.320000;212.342000;0 +20260320 065300;212.342000;212.404000;212.342000;212.392000;0 +20260320 065400;212.392000;212.392000;212.359000;212.361000;0 +20260320 065500;212.361000;212.410000;212.360000;212.393000;0 +20260320 065600;212.404000;212.439000;212.395000;212.429000;0 +20260320 065700;212.432000;212.441000;212.397000;212.409000;0 +20260320 065800;212.408000;212.440000;212.399000;212.419000;0 +20260320 065900;212.419000;212.424000;212.399000;212.399000;0 +20260320 070000;212.400000;212.457000;212.400000;212.453000;0 +20260320 070100;212.454000;212.459000;212.413000;212.439000;0 +20260320 070200;212.439000;212.483000;212.429000;212.474000;0 +20260320 070300;212.471000;212.505000;212.471000;212.489000;0 +20260320 070400;212.483000;212.497000;212.463000;212.488000;0 +20260320 070500;212.487000;212.500000;212.472000;212.490000;0 +20260320 070600;212.493000;212.514000;212.481000;212.500000;0 +20260320 070700;212.497000;212.535000;212.493000;212.499000;0 +20260320 070800;212.497000;212.563000;212.490000;212.563000;0 +20260320 070900;212.562000;212.581000;212.548000;212.566000;0 +20260320 071000;212.567000;212.603000;212.559000;212.593000;0 +20260320 071100;212.590000;212.617000;212.583000;212.608000;0 +20260320 071200;212.609000;212.609000;212.581000;212.584000;0 +20260320 071300;212.587000;212.593000;212.569000;212.585000;0 +20260320 071400;212.583000;212.598000;212.564000;212.593000;0 +20260320 071500;212.599000;212.601000;212.583000;212.585000;0 +20260320 071600;212.583000;212.589000;212.515000;212.523000;0 +20260320 071700;212.524000;212.537000;212.485000;212.485000;0 +20260320 071800;212.486000;212.502000;212.477000;212.490000;0 +20260320 071900;212.490000;212.491000;212.464000;212.482000;0 +20260320 072000;212.483000;212.496000;212.463000;212.467000;0 +20260320 072100;212.467000;212.482000;212.460000;212.469000;0 +20260320 072200;212.467000;212.471000;212.441000;212.456000;0 +20260320 072300;212.456000;212.470000;212.448000;212.455000;0 +20260320 072400;212.453000;212.470000;212.442000;212.443000;0 +20260320 072500;212.444000;212.444000;212.425000;212.433000;0 +20260320 072600;212.435000;212.440000;212.406000;212.406000;0 +20260320 072700;212.408000;212.443000;212.408000;212.441000;0 +20260320 072800;212.440000;212.453000;212.433000;212.444000;0 +20260320 072900;212.445000;212.445000;212.415000;212.415000;0 +20260320 073000;212.412000;212.469000;212.405000;212.451000;0 +20260320 073100;212.451000;212.463000;212.438000;212.448000;0 +20260320 073200;212.446000;212.452000;212.418000;212.440000;0 +20260320 073300;212.438000;212.453000;212.408000;212.410000;0 +20260320 073400;212.408000;212.409000;212.375000;212.390000;0 +20260320 073500;212.388000;212.421000;212.386000;212.410000;0 +20260320 073600;212.409000;212.436000;212.398000;212.424000;0 +20260320 073700;212.423000;212.426000;212.384000;212.389000;0 +20260320 073800;212.389000;212.418000;212.362000;212.366000;0 +20260320 073900;212.368000;212.382000;212.341000;212.380000;0 +20260320 074000;212.380000;212.391000;212.354000;212.355000;0 +20260320 074100;212.355000;212.376000;212.341000;212.358000;0 +20260320 074200;212.357000;212.365000;212.329000;212.351000;0 +20260320 074300;212.349000;212.361000;212.341000;212.345000;0 +20260320 074400;212.342000;212.360000;212.330000;212.339000;0 +20260320 074500;212.342000;212.362000;212.334000;212.355000;0 +20260320 074600;212.356000;212.392000;212.340000;212.386000;0 +20260320 074700;212.383000;212.385000;212.339000;212.347000;0 +20260320 074800;212.345000;212.350000;212.318000;212.325000;0 +20260320 074900;212.325000;212.353000;212.324000;212.346000;0 +20260320 075000;212.339000;212.376000;212.327000;212.368000;0 +20260320 075100;212.373000;212.431000;212.368000;212.424000;0 +20260320 075200;212.424000;212.425000;212.385000;212.395000;0 +20260320 075300;212.387000;212.409000;212.377000;212.392000;0 +20260320 075400;212.394000;212.421000;212.376000;212.383000;0 +20260320 075500;212.382000;212.384000;212.319000;212.321000;0 +20260320 075600;212.319000;212.324000;212.283000;212.304000;0 +20260320 075700;212.306000;212.351000;212.294000;212.337000;0 +20260320 075800;212.335000;212.365000;212.324000;212.357000;0 +20260320 075900;212.356000;212.374000;212.349000;212.349000;0 +20260320 080000;212.349000;212.365000;212.328000;212.349000;0 +20260320 080100;212.347000;212.362000;212.301000;212.306000;0 +20260320 080200;212.306000;212.310000;212.270000;212.289000;0 +20260320 080300;212.289000;212.303000;212.267000;212.281000;0 +20260320 080400;212.280000;212.286000;212.243000;212.262000;0 +20260320 080500;212.264000;212.299000;212.251000;212.294000;0 +20260320 080600;212.295000;212.299000;212.274000;212.282000;0 +20260320 080700;212.285000;212.299000;212.245000;212.246000;0 +20260320 080800;212.246000;212.279000;212.244000;212.249000;0 +20260320 080900;212.250000;212.258000;212.234000;212.241000;0 +20260320 081000;212.239000;212.239000;212.202000;212.208000;0 +20260320 081100;212.202000;212.240000;212.180000;212.229000;0 +20260320 081200;212.229000;212.237000;212.204000;212.233000;0 +20260320 081300;212.235000;212.241000;212.214000;212.227000;0 +20260320 081400;212.227000;212.258000;212.221000;212.249000;0 +20260320 081500;212.250000;212.250000;212.203000;212.215000;0 +20260320 081600;212.214000;212.235000;212.200000;212.214000;0 +20260320 081700;212.215000;212.222000;212.192000;212.210000;0 +20260320 081800;212.213000;212.263000;212.197000;212.248000;0 +20260320 081900;212.248000;212.251000;212.221000;212.224000;0 +20260320 082000;212.225000;212.303000;212.224000;212.303000;0 +20260320 082100;212.301000;212.301000;212.251000;212.252000;0 +20260320 082200;212.252000;212.263000;212.229000;212.231000;0 +20260320 082300;212.231000;212.242000;212.220000;212.241000;0 +20260320 082400;212.237000;212.275000;212.237000;212.274000;0 +20260320 082500;212.274000;212.281000;212.252000;212.270000;0 +20260320 082600;212.274000;212.283000;212.244000;212.244000;0 +20260320 082700;212.246000;212.252000;212.211000;212.221000;0 +20260320 082800;212.218000;212.249000;212.214000;212.243000;0 +20260320 082900;212.244000;212.267000;212.233000;212.259000;0 +20260320 083000;212.260000;212.294000;212.248000;212.277000;0 +20260320 083100;212.279000;212.315000;212.262000;212.294000;0 +20260320 083200;212.291000;212.335000;212.286000;212.328000;0 +20260320 083300;212.332000;212.339000;212.287000;212.291000;0 +20260320 083400;212.289000;212.310000;212.284000;212.301000;0 +20260320 083500;212.300000;212.313000;212.269000;212.301000;0 +20260320 083600;212.301000;212.321000;212.284000;212.290000;0 +20260320 083700;212.290000;212.306000;212.271000;212.285000;0 +20260320 083800;212.286000;212.305000;212.245000;212.254000;0 +20260320 083900;212.252000;212.255000;212.177000;212.195000;0 +20260320 084000;212.191000;212.229000;212.188000;212.190000;0 +20260320 084100;212.192000;212.260000;212.183000;212.253000;0 +20260320 084200;212.254000;212.295000;212.236000;212.271000;0 +20260320 084300;212.271000;212.331000;212.270000;212.326000;0 +20260320 084400;212.326000;212.363000;212.302000;212.360000;0 +20260320 084500;212.358000;212.393000;212.352000;212.386000;0 +20260320 084600;212.385000;212.398000;212.319000;212.330000;0 +20260320 084700;212.325000;212.390000;212.325000;212.383000;0 +20260320 084800;212.382000;212.429000;212.379000;212.421000;0 +20260320 084900;212.420000;212.428000;212.393000;212.401000;0 +20260320 085000;212.396000;212.400000;212.324000;212.363000;0 +20260320 085100;212.361000;212.367000;212.279000;212.302000;0 +20260320 085200;212.302000;212.340000;212.297000;212.323000;0 +20260320 085300;212.320000;212.382000;212.311000;212.380000;0 +20260320 085400;212.382000;212.419000;212.380000;212.392000;0 +20260320 085500;212.392000;212.415000;212.334000;212.380000;0 +20260320 085600;212.378000;212.389000;212.345000;212.363000;0 +20260320 085700;212.359000;212.359000;212.308000;212.314000;0 +20260320 085800;212.317000;212.337000;212.271000;212.272000;0 +20260320 085900;212.275000;212.309000;212.236000;212.304000;0 +20260320 090000;212.306000;212.333000;212.278000;212.320000;0 +20260320 090100;212.323000;212.337000;212.235000;212.254000;0 +20260320 090200;212.253000;212.282000;212.232000;212.259000;0 +20260320 090300;212.255000;212.298000;212.240000;212.261000;0 +20260320 090400;212.263000;212.316000;212.255000;212.289000;0 +20260320 090500;212.291000;212.319000;212.259000;212.268000;0 +20260320 090600;212.267000;212.285000;212.205000;212.214000;0 +20260320 090700;212.223000;212.251000;212.172000;212.187000;0 +20260320 090800;212.187000;212.218000;212.164000;212.165000;0 +20260320 090900;212.163000;212.212000;212.156000;212.212000;0 +20260320 091000;212.211000;212.239000;212.169000;212.175000;0 +20260320 091100;212.177000;212.194000;212.161000;212.173000;0 +20260320 091200;212.174000;212.196000;212.107000;212.112000;0 +20260320 091300;212.114000;212.121000;212.048000;212.067000;0 +20260320 091400;212.067000;212.070000;212.001000;212.034000;0 +20260320 091500;212.032000;212.073000;212.011000;212.028000;0 +20260320 091600;212.027000;212.047000;211.986000;212.007000;0 +20260320 091700;212.004000;212.031000;211.996000;212.022000;0 +20260320 091800;212.025000;212.036000;211.975000;211.975000;0 +20260320 091900;211.977000;212.044000;211.969000;212.031000;0 +20260320 092000;212.031000;212.032000;211.950000;211.961000;0 +20260320 092100;211.960000;212.002000;211.900000;211.914000;0 +20260320 092200;211.909000;211.928000;211.818000;211.828000;0 +20260320 092300;211.830000;211.884000;211.829000;211.865000;0 +20260320 092400;211.866000;211.912000;211.853000;211.893000;0 +20260320 092500;211.894000;211.894000;211.814000;211.814000;0 +20260320 092600;211.816000;211.851000;211.796000;211.837000;0 +20260320 092700;211.843000;211.898000;211.792000;211.808000;0 +20260320 092800;211.808000;211.821000;211.772000;211.785000;0 +20260320 092900;211.788000;211.827000;211.781000;211.798000;0 +20260320 093000;211.798000;211.852000;211.789000;211.835000;0 +20260320 093100;211.837000;211.858000;211.783000;211.789000;0 +20260320 093200;211.789000;211.861000;211.786000;211.860000;0 +20260320 093300;211.872000;211.887000;211.846000;211.880000;0 +20260320 093400;211.883000;211.940000;211.872000;211.937000;0 +20260320 093500;211.934000;211.963000;211.889000;211.946000;0 +20260320 093600;211.941000;211.948000;211.913000;211.929000;0 +20260320 093700;211.931000;211.940000;211.858000;211.901000;0 +20260320 093800;211.899000;211.914000;211.853000;211.864000;0 +20260320 093900;211.865000;211.900000;211.823000;211.837000;0 +20260320 094000;211.837000;211.883000;211.831000;211.860000;0 +20260320 094100;211.858000;211.860000;211.806000;211.810000;0 +20260320 094200;211.809000;211.842000;211.801000;211.838000;0 +20260320 094300;211.837000;211.898000;211.819000;211.891000;0 +20260320 094400;211.891000;211.898000;211.871000;211.875000;0 +20260320 094500;211.874000;211.877000;211.842000;211.859000;0 +20260320 094600;211.858000;211.908000;211.837000;211.867000;0 +20260320 094700;211.865000;211.865000;211.824000;211.838000;0 +20260320 094800;211.838000;211.894000;211.833000;211.888000;0 +20260320 094900;211.887000;211.889000;211.850000;211.860000;0 +20260320 095000;211.860000;211.890000;211.849000;211.861000;0 +20260320 095100;211.861000;211.865000;211.829000;211.837000;0 +20260320 095200;211.836000;211.853000;211.813000;211.836000;0 +20260320 095300;211.840000;211.869000;211.825000;211.850000;0 +20260320 095400;211.852000;211.854000;211.768000;211.787000;0 +20260320 095500;211.788000;211.842000;211.787000;211.836000;0 +20260320 095600;211.833000;211.833000;211.794000;211.805000;0 +20260320 095700;211.803000;211.835000;211.773000;211.795000;0 +20260320 095800;211.793000;211.808000;211.775000;211.808000;0 +20260320 095900;211.808000;211.809000;211.753000;211.762000;0 +20260320 100000;211.762000;211.822000;211.753000;211.822000;0 +20260320 100100;211.818000;211.849000;211.806000;211.849000;0 +20260320 100200;211.850000;211.877000;211.778000;211.780000;0 +20260320 100300;211.780000;211.787000;211.754000;211.757000;0 +20260320 100400;211.758000;211.835000;211.750000;211.830000;0 +20260320 100500;211.833000;211.860000;211.816000;211.837000;0 +20260320 100600;211.838000;211.875000;211.812000;211.837000;0 +20260320 100700;211.839000;211.849000;211.824000;211.845000;0 +20260320 100800;211.842000;211.855000;211.792000;211.843000;0 +20260320 100900;211.844000;211.863000;211.833000;211.860000;0 +20260320 101000;211.857000;211.891000;211.849000;211.873000;0 +20260320 101100;211.874000;211.942000;211.870000;211.934000;0 +20260320 101200;211.933000;211.964000;211.892000;211.962000;0 +20260320 101300;211.962000;211.972000;211.938000;211.966000;0 +20260320 101400;211.968000;211.982000;211.938000;211.962000;0 +20260320 101500;211.959000;211.993000;211.959000;211.981000;0 +20260320 101600;211.980000;211.992000;211.949000;211.963000;0 +20260320 101700;211.961000;212.012000;211.958000;212.008000;0 +20260320 101800;212.011000;212.013000;211.980000;211.993000;0 +20260320 101900;211.994000;212.026000;211.979000;211.997000;0 +20260320 102000;211.995000;212.022000;211.989000;212.000000;0 +20260320 102100;212.000000;212.056000;212.000000;212.053000;0 +20260320 102200;212.049000;212.075000;212.043000;212.065000;0 +20260320 102300;212.065000;212.234000;212.065000;212.221000;0 +20260320 102400;212.219000;212.225000;212.072000;212.088000;0 +20260320 102500;212.083000;212.102000;212.035000;212.035000;0 +20260320 102600;212.035000;212.037000;211.963000;211.963000;0 +20260320 102700;211.960000;211.999000;211.960000;211.988000;0 +20260320 102800;211.991000;211.994000;211.952000;211.958000;0 +20260320 102900;211.957000;211.992000;211.954000;211.968000;0 +20260320 103000;211.967000;212.000000;211.955000;211.987000;0 +20260320 103100;211.990000;212.017000;211.983000;211.989000;0 +20260320 103200;211.985000;212.027000;211.976000;212.022000;0 +20260320 103300;212.021000;212.058000;211.981000;212.030000;0 +20260320 103400;212.033000;212.045000;211.992000;212.000000;0 +20260320 103500;211.999000;212.017000;211.968000;212.017000;0 +20260320 103600;212.020000;212.047000;211.984000;212.000000;0 +20260320 103700;211.999000;212.033000;211.972000;211.972000;0 +20260320 103800;211.975000;211.996000;211.966000;211.970000;0 +20260320 103900;211.969000;211.975000;211.933000;211.933000;0 +20260320 104000;211.931000;211.932000;211.855000;211.868000;0 +20260320 104100;211.871000;211.903000;211.862000;211.880000;0 +20260320 104200;211.882000;211.911000;211.874000;211.904000;0 +20260320 104300;211.906000;211.938000;211.895000;211.929000;0 +20260320 104400;211.926000;211.949000;211.909000;211.912000;0 +20260320 104500;211.911000;211.912000;211.881000;211.892000;0 +20260320 104600;211.892000;211.939000;211.876000;211.892000;0 +20260320 104700;211.897000;211.908000;211.876000;211.898000;0 +20260320 104800;211.896000;211.917000;211.849000;211.872000;0 +20260320 104900;211.872000;211.876000;211.808000;211.829000;0 +20260320 105000;211.824000;211.843000;211.799000;211.807000;0 +20260320 105100;211.807000;211.858000;211.804000;211.857000;0 +20260320 105200;211.855000;211.884000;211.797000;211.807000;0 +20260320 105300;211.807000;211.855000;211.797000;211.826000;0 +20260320 105400;211.827000;211.850000;211.781000;211.792000;0 +20260320 105500;211.793000;211.836000;211.773000;211.786000;0 +20260320 105600;211.785000;211.819000;211.758000;211.777000;0 +20260320 105700;211.780000;211.865000;211.763000;211.854000;0 +20260320 105800;211.856000;211.873000;211.813000;211.841000;0 +20260320 105900;211.838000;211.880000;211.826000;211.831000;0 +20260320 110000;211.830000;211.862000;211.821000;211.855000;0 +20260320 110100;211.855000;211.874000;211.845000;211.867000;0 +20260320 110200;211.865000;211.906000;211.847000;211.898000;0 +20260320 110300;211.898000;211.965000;211.894000;211.959000;0 +20260320 110400;211.960000;211.991000;211.944000;211.973000;0 +20260320 110500;211.972000;211.974000;211.933000;211.944000;0 +20260320 110600;211.943000;211.960000;211.913000;211.935000;0 +20260320 110700;211.938000;211.971000;211.934000;211.951000;0 +20260320 110800;211.951000;211.970000;211.938000;211.961000;0 +20260320 110900;211.961000;211.969000;211.941000;211.963000;0 +20260320 111000;211.964000;211.986000;211.957000;211.982000;0 +20260320 111100;211.983000;212.040000;211.963000;212.033000;0 +20260320 111200;212.032000;212.055000;212.025000;212.045000;0 +20260320 111300;212.046000;212.062000;212.021000;212.060000;0 +20260320 111400;212.059000;212.079000;212.048000;212.061000;0 +20260320 111500;212.061000;212.079000;212.055000;212.070000;0 +20260320 111600;212.072000;212.109000;212.055000;212.103000;0 +20260320 111700;212.104000;212.130000;212.091000;212.125000;0 +20260320 111800;212.127000;212.173000;212.125000;212.163000;0 +20260320 111900;212.162000;212.194000;212.158000;212.188000;0 +20260320 112000;212.183000;212.233000;212.182000;212.227000;0 +20260320 112100;212.223000;212.223000;212.187000;212.188000;0 +20260320 112200;212.188000;212.194000;212.158000;212.190000;0 +20260320 112300;212.190000;212.199000;212.174000;212.185000;0 +20260320 112400;212.181000;212.185000;212.146000;212.147000;0 +20260320 112500;212.149000;212.154000;212.093000;212.099000;0 +20260320 112600;212.099000;212.130000;212.091000;212.091000;0 +20260320 112700;212.090000;212.118000;212.072000;212.106000;0 +20260320 112800;212.104000;212.115000;212.077000;212.092000;0 +20260320 112900;212.095000;212.168000;212.092000;212.164000;0 +20260320 113000;212.161000;212.178000;212.097000;212.101000;0 +20260320 113100;212.103000;212.110000;212.066000;212.074000;0 +20260320 113200;212.074000;212.086000;212.050000;212.079000;0 +20260320 113300;212.083000;212.101000;212.072000;212.097000;0 +20260320 113400;212.097000;212.104000;212.054000;212.076000;0 +20260320 113500;212.077000;212.098000;212.070000;212.080000;0 +20260320 113600;212.079000;212.147000;212.079000;212.144000;0 +20260320 113700;212.147000;212.160000;212.134000;212.136000;0 +20260320 113800;212.135000;212.138000;212.106000;212.129000;0 +20260320 113900;212.132000;212.132000;212.109000;212.129000;0 +20260320 114000;212.128000;212.146000;212.120000;212.125000;0 +20260320 114100;212.125000;212.156000;212.120000;212.142000;0 +20260320 114200;212.145000;212.156000;212.129000;212.135000;0 +20260320 114300;212.138000;212.148000;212.115000;212.124000;0 +20260320 114400;212.124000;212.130000;212.114000;212.121000;0 +20260320 114500;212.121000;212.131000;212.105000;212.111000;0 +20260320 114600;212.111000;212.128000;212.103000;212.108000;0 +20260320 114700;212.109000;212.127000;212.094000;212.099000;0 +20260320 114800;212.097000;212.113000;212.083000;212.091000;0 +20260320 114900;212.089000;212.108000;212.082000;212.106000;0 +20260320 115000;212.104000;212.125000;212.101000;212.116000;0 +20260320 115100;212.112000;212.124000;212.098000;212.110000;0 +20260320 115200;212.113000;212.145000;212.083000;212.144000;0 +20260320 115300;212.146000;212.195000;212.144000;212.192000;0 +20260320 115400;212.191000;212.208000;212.176000;212.178000;0 +20260320 115500;212.176000;212.214000;212.171000;212.206000;0 +20260320 115600;212.206000;212.215000;212.189000;212.203000;0 +20260320 115700;212.200000;212.210000;212.181000;212.203000;0 +20260320 115800;212.201000;212.217000;212.191000;212.193000;0 +20260320 115900;212.191000;212.198000;212.161000;212.189000;0 +20260320 120000;212.185000;212.208000;212.181000;212.201000;0 +20260320 120100;212.202000;212.213000;212.180000;212.183000;0 +20260320 120200;212.182000;212.213000;212.182000;212.200000;0 +20260320 120300;212.197000;212.208000;212.191000;212.208000;0 +20260320 120400;212.208000;212.282000;212.206000;212.264000;0 +20260320 120500;212.268000;212.276000;212.200000;212.201000;0 +20260320 120600;212.201000;212.258000;212.186000;212.249000;0 +20260320 120700;212.249000;212.272000;212.238000;212.257000;0 +20260320 120800;212.258000;212.303000;212.230000;212.295000;0 +20260320 120900;212.295000;212.329000;212.259000;212.271000;0 +20260320 121000;212.268000;212.296000;212.245000;212.249000;0 +20260320 121100;212.249000;212.297000;212.231000;212.297000;0 +20260320 121200;212.296000;212.300000;212.255000;212.271000;0 +20260320 121300;212.268000;212.298000;212.235000;212.249000;0 +20260320 121400;212.250000;212.282000;212.250000;212.273000;0 +20260320 121500;212.272000;212.297000;212.248000;212.255000;0 +20260320 121600;212.254000;212.254000;212.218000;212.227000;0 +20260320 121700;212.228000;212.233000;212.204000;212.224000;0 +20260320 121800;212.225000;212.234000;212.212000;212.216000;0 +20260320 121900;212.216000;212.227000;212.192000;212.210000;0 +20260320 122000;212.210000;212.214000;212.194000;212.206000;0 +20260320 122100;212.210000;212.229000;212.196000;212.223000;0 +20260320 122200;212.227000;212.237000;212.209000;212.230000;0 +20260320 122300;212.231000;212.264000;212.225000;212.260000;0 +20260320 122400;212.258000;212.282000;212.253000;212.256000;0 +20260320 122500;212.254000;212.256000;212.226000;212.228000;0 +20260320 122600;212.229000;212.267000;212.225000;212.258000;0 +20260320 122700;212.259000;212.295000;212.252000;212.265000;0 +20260320 122800;212.266000;212.291000;212.263000;212.280000;0 +20260320 122900;212.283000;212.311000;212.278000;212.308000;0 +20260320 123000;212.309000;212.317000;212.290000;212.305000;0 +20260320 123100;212.302000;212.320000;212.288000;212.298000;0 +20260320 123200;212.296000;212.299000;212.261000;212.299000;0 +20260320 123300;212.298000;212.310000;212.271000;212.299000;0 +20260320 123400;212.301000;212.307000;212.281000;212.295000;0 +20260320 123500;212.293000;212.353000;212.285000;212.315000;0 +20260320 123600;212.313000;212.337000;212.290000;212.333000;0 +20260320 123700;212.335000;212.339000;212.299000;212.334000;0 +20260320 123800;212.332000;212.343000;212.312000;212.343000;0 +20260320 123900;212.340000;212.364000;212.333000;212.340000;0 +20260320 124000;212.338000;212.374000;212.325000;212.353000;0 +20260320 124100;212.354000;212.379000;212.343000;212.373000;0 +20260320 124200;212.371000;212.384000;212.355000;212.379000;0 +20260320 124300;212.379000;212.387000;212.364000;212.379000;0 +20260320 124400;212.379000;212.392000;212.366000;212.380000;0 +20260320 124500;212.382000;212.388000;212.360000;212.365000;0 +20260320 124600;212.368000;212.375000;212.344000;212.351000;0 +20260320 124700;212.351000;212.390000;212.351000;212.380000;0 +20260320 124800;212.380000;212.384000;212.358000;212.375000;0 +20260320 124900;212.375000;212.396000;212.365000;212.375000;0 +20260320 125000;212.376000;212.387000;212.362000;212.382000;0 +20260320 125100;212.383000;212.402000;212.378000;212.383000;0 +20260320 125200;212.384000;212.391000;212.368000;212.387000;0 +20260320 125300;212.388000;212.414000;212.384000;212.398000;0 +20260320 125400;212.397000;212.410000;212.380000;212.394000;0 +20260320 125500;212.394000;212.401000;212.376000;212.387000;0 +20260320 125600;212.385000;212.387000;212.365000;212.371000;0 +20260320 125700;212.377000;212.387000;212.361000;212.379000;0 +20260320 125800;212.380000;212.382000;212.358000;212.374000;0 +20260320 125900;212.371000;212.373000;212.338000;212.345000;0 +20260320 130000;212.345000;212.375000;212.338000;212.356000;0 +20260320 130100;212.356000;212.395000;212.350000;212.384000;0 +20260320 130200;212.383000;212.410000;212.376000;212.410000;0 +20260320 130300;212.408000;212.412000;212.385000;212.395000;0 +20260320 130400;212.392000;212.408000;212.390000;212.408000;0 +20260320 130500;212.407000;212.416000;212.395000;212.414000;0 +20260320 130600;212.413000;212.445000;212.409000;212.436000;0 +20260320 130700;212.436000;212.458000;212.423000;212.454000;0 +20260320 130800;212.454000;212.466000;212.434000;212.439000;0 +20260320 130900;212.439000;212.444000;212.425000;212.434000;0 +20260320 131000;212.441000;212.463000;212.416000;212.420000;0 +20260320 131100;212.421000;212.467000;212.416000;212.465000;0 +20260320 131200;212.467000;212.472000;212.455000;212.468000;0 +20260320 131300;212.470000;212.495000;212.470000;212.484000;0 +20260320 131400;212.482000;212.486000;212.470000;212.470000;0 +20260320 131500;212.475000;212.486000;212.444000;212.452000;0 +20260320 131600;212.452000;212.474000;212.444000;212.460000;0 +20260320 131700;212.460000;212.471000;212.448000;212.455000;0 +20260320 131800;212.450000;212.455000;212.431000;212.451000;0 +20260320 131900;212.449000;212.461000;212.444000;212.444000;0 +20260320 132000;212.454000;212.465000;212.438000;212.444000;0 +20260320 132100;212.445000;212.461000;212.439000;212.446000;0 +20260320 132200;212.447000;212.500000;212.394000;212.480000;0 +20260320 132300;212.478000;212.493000;212.407000;212.473000;0 +20260320 132400;212.474000;212.495000;212.461000;212.469000;0 +20260320 132500;212.468000;212.569000;212.468000;212.556000;0 +20260320 132600;212.556000;212.599000;212.536000;212.586000;0 +20260320 132700;212.588000;212.592000;212.542000;212.557000;0 +20260320 132800;212.565000;212.569000;212.521000;212.529000;0 +20260320 132900;212.531000;212.540000;212.471000;212.486000;0 +20260320 133000;212.486000;212.492000;212.461000;212.481000;0 +20260320 133100;212.482000;212.510000;212.464000;212.466000;0 +20260320 133200;212.470000;212.489000;212.454000;212.489000;0 +20260320 133300;212.489000;212.502000;212.472000;212.495000;0 +20260320 133400;212.497000;212.497000;212.468000;212.480000;0 +20260320 133500;212.480000;212.482000;212.458000;212.469000;0 +20260320 133600;212.469000;212.473000;212.415000;212.415000;0 +20260320 133700;212.415000;212.455000;212.389000;212.454000;0 +20260320 133800;212.456000;212.485000;212.443000;212.485000;0 +20260320 133900;212.484000;212.484000;212.414000;212.414000;0 +20260320 134000;212.417000;212.442000;212.401000;212.432000;0 +20260320 134100;212.434000;212.477000;212.430000;212.466000;0 +20260320 134200;212.464000;212.465000;212.406000;212.416000;0 +20260320 134300;212.417000;212.444000;212.414000;212.442000;0 +20260320 134400;212.442000;212.443000;212.386000;212.394000;0 +20260320 134500;212.396000;212.417000;212.391000;212.414000;0 +20260320 134600;212.416000;212.436000;212.414000;212.420000;0 +20260320 134700;212.419000;212.446000;212.414000;212.440000;0 +20260320 134800;212.441000;212.453000;212.422000;212.431000;0 +20260320 134900;212.432000;212.440000;212.421000;212.423000;0 +20260320 135000;212.419000;212.431000;212.400000;212.405000;0 +20260320 135100;212.406000;212.419000;212.387000;212.390000;0 +20260320 135200;212.390000;212.410000;212.371000;212.406000;0 +20260320 135300;212.409000;212.444000;212.409000;212.437000;0 +20260320 135400;212.435000;212.436000;212.416000;212.419000;0 +20260320 135500;212.418000;212.440000;212.412000;212.429000;0 +20260320 135600;212.425000;212.429000;212.404000;212.407000;0 +20260320 135700;212.407000;212.407000;212.366000;212.379000;0 +20260320 135800;212.381000;212.415000;212.372000;212.372000;0 +20260320 135900;212.375000;212.386000;212.351000;212.354000;0 +20260320 140000;212.352000;212.370000;212.321000;212.345000;0 +20260320 140100;212.343000;212.372000;212.306000;212.323000;0 +20260320 140200;212.321000;212.345000;212.312000;212.315000;0 +20260320 140300;212.313000;212.330000;212.308000;212.322000;0 +20260320 140400;212.318000;212.331000;212.309000;212.318000;0 +20260320 140500;212.318000;212.327000;212.293000;212.293000;0 +20260320 140600;212.293000;212.300000;212.264000;212.285000;0 +20260320 140700;212.285000;212.318000;212.285000;212.313000;0 +20260320 140800;212.316000;212.339000;212.316000;212.337000;0 +20260320 140900;212.337000;212.349000;212.329000;212.345000;0 +20260320 141000;212.343000;212.345000;212.294000;212.298000;0 +20260320 141100;212.298000;212.315000;212.291000;212.306000;0 +20260320 141200;212.307000;212.334000;212.299000;212.334000;0 +20260320 141300;212.332000;212.350000;212.326000;212.348000;0 +20260320 141400;212.347000;212.359000;212.339000;212.350000;0 +20260320 141500;212.348000;212.402000;212.346000;212.402000;0 +20260320 141600;212.402000;212.408000;212.378000;212.385000;0 +20260320 141700;212.385000;212.399000;212.367000;212.389000;0 +20260320 141800;212.391000;212.408000;212.382000;212.400000;0 +20260320 141900;212.401000;212.426000;212.397000;212.424000;0 +20260320 142000;212.425000;212.425000;212.410000;212.415000;0 +20260320 142100;212.415000;212.428000;212.398000;212.401000;0 +20260320 142200;212.403000;212.415000;212.397000;212.405000;0 +20260320 142300;212.403000;212.426000;212.399000;212.425000;0 +20260320 142400;212.425000;212.426000;212.389000;212.403000;0 +20260320 142500;212.403000;212.403000;212.385000;212.394000;0 +20260320 142600;212.392000;212.416000;212.392000;212.401000;0 +20260320 142700;212.406000;212.410000;212.401000;212.403000;0 +20260320 142800;212.405000;212.413000;212.397000;212.400000;0 +20260320 142900;212.403000;212.407000;212.352000;212.365000;0 +20260320 143000;212.368000;212.371000;212.339000;212.339000;0 +20260320 143100;212.337000;212.339000;212.320000;212.323000;0 +20260320 143200;212.325000;212.328000;212.304000;212.314000;0 +20260320 143300;212.313000;212.316000;212.294000;212.297000;0 +20260320 143400;212.297000;212.297000;212.259000;212.259000;0 +20260320 143500;212.264000;212.282000;212.242000;212.242000;0 +20260320 143600;212.241000;212.241000;212.217000;212.224000;0 +20260320 143700;212.225000;212.231000;212.217000;212.226000;0 +20260320 143800;212.228000;212.243000;212.218000;212.228000;0 +20260320 143900;212.230000;212.260000;212.224000;212.256000;0 +20260320 144000;212.255000;212.284000;212.249000;212.281000;0 +20260320 144100;212.281000;212.308000;212.277000;212.308000;0 +20260320 144200;212.311000;212.314000;212.297000;212.309000;0 +20260320 144300;212.308000;212.330000;212.304000;212.308000;0 +20260320 144400;212.308000;212.367000;212.308000;212.367000;0 +20260320 144500;212.367000;212.392000;212.355000;212.365000;0 +20260320 144600;212.361000;212.394000;212.361000;212.377000;0 +20260320 144700;212.371000;212.392000;212.361000;212.389000;0 +20260320 144800;212.389000;212.389000;212.367000;212.371000;0 +20260320 144900;212.375000;212.393000;212.341000;212.351000;0 +20260320 145000;212.357000;212.367000;212.342000;212.354000;0 +20260320 145100;212.355000;212.383000;212.355000;212.380000;0 +20260320 145200;212.383000;212.418000;212.383000;212.404000;0 +20260320 145300;212.406000;212.425000;212.395000;212.425000;0 +20260320 145400;212.430000;212.450000;212.417000;212.446000;0 +20260320 145500;212.448000;212.510000;212.447000;212.489000;0 +20260320 145600;212.493000;212.497000;212.449000;212.449000;0 +20260320 145700;212.446000;212.473000;212.424000;212.424000;0 +20260320 145800;212.425000;212.425000;212.393000;212.397000;0 +20260320 145900;212.400000;212.400000;212.380000;212.399000;0 +20260320 150000;212.400000;212.430000;212.379000;212.427000;0 +20260320 150100;212.427000;212.459000;212.424000;212.447000;0 +20260320 150200;212.449000;212.469000;212.431000;212.445000;0 +20260320 150300;212.443000;212.460000;212.424000;212.454000;0 +20260320 150400;212.451000;212.462000;212.445000;212.460000;0 +20260320 150500;212.459000;212.459000;212.445000;212.446000;0 +20260320 150600;212.451000;212.460000;212.433000;212.439000;0 +20260320 150700;212.440000;212.442000;212.431000;212.433000;0 +20260320 150800;212.439000;212.453000;212.433000;212.433000;0 +20260320 150900;212.438000;212.443000;212.425000;212.436000;0 +20260320 151000;212.433000;212.459000;212.418000;212.457000;0 +20260320 151100;212.458000;212.463000;212.454000;212.463000;0 +20260320 151200;212.462000;212.465000;212.456000;212.458000;0 +20260320 151300;212.457000;212.469000;212.456000;212.460000;0 +20260320 151400;212.460000;212.460000;212.424000;212.429000;0 +20260320 151500;212.429000;212.443000;212.416000;212.416000;0 +20260320 151600;212.415000;212.460000;212.413000;212.448000;0 +20260320 151700;212.452000;212.452000;212.439000;212.444000;0 +20260320 151800;212.445000;212.453000;212.436000;212.452000;0 +20260320 151900;212.453000;212.461000;212.451000;212.458000;0 +20260320 152000;212.458000;212.465000;212.453000;212.458000;0 +20260320 152100;212.467000;212.473000;212.455000;212.460000;0 +20260320 152200;212.459000;212.465000;212.454000;212.459000;0 +20260320 152300;212.459000;212.467000;212.448000;212.448000;0 +20260320 152400;212.448000;212.448000;212.427000;212.430000;0 +20260320 152500;212.429000;212.442000;212.428000;212.440000;0 +20260320 152600;212.441000;212.441000;212.427000;212.433000;0 +20260320 152700;212.436000;212.466000;212.433000;212.466000;0 +20260320 152800;212.464000;212.464000;212.439000;212.439000;0 +20260320 152900;212.441000;212.441000;212.425000;212.438000;0 +20260320 153000;212.436000;212.481000;212.430000;212.474000;0 +20260320 153100;212.473000;212.478000;212.463000;212.466000;0 +20260320 153200;212.466000;212.469000;212.456000;212.456000;0 +20260320 153300;212.454000;212.470000;212.454000;212.460000;0 +20260320 153400;212.464000;212.480000;212.442000;212.448000;0 +20260320 153500;212.449000;212.459000;212.446000;212.454000;0 +20260320 153600;212.457000;212.457000;212.443000;212.445000;0 +20260320 153700;212.444000;212.464000;212.443000;212.454000;0 +20260320 153800;212.450000;212.457000;212.439000;212.446000;0 +20260320 153900;212.441000;212.453000;212.437000;212.440000;0 +20260320 154000;212.440000;212.477000;212.434000;212.461000;0 +20260320 154100;212.462000;212.490000;212.444000;212.457000;0 +20260320 154200;212.455000;212.455000;212.435000;212.435000;0 +20260320 154300;212.440000;212.446000;212.435000;212.440000;0 +20260320 154400;212.435000;212.450000;212.426000;212.450000;0 +20260320 154500;212.452000;212.468000;212.445000;212.458000;0 +20260320 154600;212.445000;212.445000;212.422000;212.424000;0 +20260320 154700;212.425000;212.480000;212.424000;212.471000;0 +20260320 154800;212.468000;212.498000;212.458000;212.482000;0 +20260320 154900;212.476000;212.488000;212.464000;212.478000;0 +20260320 155000;212.486000;212.490000;212.452000;212.457000;0 +20260320 155100;212.450000;212.457000;212.431000;212.438000;0 +20260320 155200;212.443000;212.467000;212.427000;212.450000;0 +20260320 155300;212.452000;212.468000;212.435000;212.440000;0 +20260320 155400;212.443000;212.481000;212.418000;212.475000;0 +20260320 155500;212.472000;212.478000;212.432000;212.458000;0 +20260320 155600;212.454000;212.505000;212.450000;212.490000;0 +20260320 155700;212.504000;212.507000;212.352000;212.381000;0 +20260320 155800;212.381000;212.423000;212.355000;212.379000;0 +20260320 155900;212.376000;212.400000;212.376000;212.384000;0 +20260322 160800;211.892000;211.900000;211.892000;211.900000;0 +20260322 160900;211.899000;211.907000;211.899000;211.904000;0 +20260322 161000;211.908000;211.908000;211.888000;211.888000;0 +20260322 161100;211.888000;211.937000;211.884000;211.937000;0 +20260322 161200;211.936000;211.936000;211.918000;211.936000;0 +20260322 161300;211.936000;211.936000;211.936000;211.936000;0 +20260322 161400;211.936000;211.979000;211.936000;211.979000;0 +20260322 161500;211.978000;212.031000;211.920000;211.983000;0 +20260322 161600;211.993000;212.026000;211.993000;212.026000;0 +20260322 161700;212.026000;212.029000;212.026000;212.028000;0 +20260322 161800;212.011000;212.024000;212.004000;212.023000;0 +20260322 161900;212.058000;212.081000;212.049000;212.059000;0 +20260322 162000;212.054000;212.055000;212.054000;212.055000;0 +20260322 162100;212.060000;212.061000;212.060000;212.061000;0 +20260322 162200;212.073000;212.078000;212.066000;212.078000;0 +20260322 162300;212.071000;212.101000;212.066000;212.101000;0 +20260322 162400;212.101000;212.113000;211.918000;212.033000;0 +20260322 162500;212.039000;212.039000;212.017000;212.022000;0 +20260322 162600;212.023000;212.048000;212.023000;212.046000;0 +20260322 162700;212.045000;212.067000;212.045000;212.066000;0 +20260322 162800;212.066000;212.066000;212.028000;212.045000;0 +20260322 162900;212.046000;212.046000;212.000000;212.000000;0 +20260322 163000;212.000000;212.055000;211.981000;212.022000;0 +20260322 163100;212.022000;212.024000;211.940000;211.942000;0 +20260322 163200;211.941000;211.942000;211.941000;211.942000;0 +20260322 163300;211.941000;211.974000;211.939000;211.974000;0 +20260322 163400;211.972000;211.986000;211.969000;211.971000;0 +20260322 163500;211.965000;211.971000;211.965000;211.970000;0 +20260322 163600;211.971000;212.001000;211.968000;211.996000;0 +20260322 163700;211.997000;212.025000;211.908000;211.967000;0 +20260322 163800;211.967000;211.983000;211.932000;211.950000;0 +20260322 163900;211.920000;211.920000;211.875000;211.889000;0 +20260322 164000;211.889000;211.889000;211.822000;211.829000;0 +20260322 164100;211.834000;211.912000;211.818000;211.897000;0 +20260322 164200;211.898000;211.932000;211.669000;211.686000;0 +20260322 164300;211.705000;211.727000;211.635000;211.651000;0 +20260322 164400;211.658000;211.760000;211.630000;211.718000;0 +20260322 164500;211.717000;211.744000;211.712000;211.717000;0 +20260322 164600;211.717000;211.790000;211.717000;211.768000;0 +20260322 164700;211.767000;211.851000;211.767000;211.850000;0 +20260322 164800;211.850000;211.928000;211.850000;211.916000;0 +20260322 164900;211.917000;212.005000;211.917000;212.004000;0 +20260322 165000;212.004000;212.078000;212.004000;212.078000;0 +20260322 165100;212.107000;212.130000;212.089000;212.120000;0 +20260322 165200;212.121000;212.136000;212.023000;212.093000;0 +20260322 165300;212.103000;212.137000;212.090000;212.123000;0 +20260322 165400;212.130000;212.130000;212.130000;212.130000;0 +20260322 165500;212.115000;212.125000;212.115000;212.125000;0 +20260322 165600;212.135000;212.153000;212.127000;212.135000;0 +20260322 165700;212.137000;212.153000;212.126000;212.142000;0 +20260322 165800;212.081000;212.085000;212.069000;212.083000;0 +20260322 165900;212.077000;212.083000;212.012000;212.012000;0 +20260322 170000;211.894000;212.082000;211.888000;212.082000;0 +20260322 170100;212.082000;212.142000;212.061000;212.141000;0 +20260322 170200;212.137000;212.148000;212.120000;212.131000;0 +20260322 170300;212.136000;212.193000;212.136000;212.181000;0 +20260322 170400;212.187000;212.187000;212.160000;212.182000;0 +20260322 170500;212.182000;212.218000;212.177000;212.193000;0 +20260322 170600;212.193000;212.233000;212.188000;212.198000;0 +20260322 170700;212.192000;212.210000;212.177000;212.177000;0 +20260322 170800;212.198000;212.228000;212.163000;212.211000;0 +20260322 170900;212.212000;212.228000;212.211000;212.225000;0 +20260322 171000;212.222000;212.222000;212.181000;212.187000;0 +20260322 171100;212.179000;212.196000;212.159000;212.179000;0 +20260322 171200;212.183000;212.191000;212.144000;212.146000;0 +20260322 171300;212.146000;212.178000;212.133000;212.174000;0 +20260322 171400;212.177000;212.186000;212.157000;212.168000;0 +20260322 171500;212.177000;212.183000;212.150000;212.183000;0 +20260322 171600;212.183000;212.183000;212.151000;212.153000;0 +20260322 171700;212.154000;212.198000;212.154000;212.178000;0 +20260322 171800;212.181000;212.219000;212.168000;212.217000;0 +20260322 171900;212.218000;212.259000;212.195000;212.203000;0 +20260322 172000;212.203000;212.214000;212.182000;212.202000;0 +20260322 172100;212.204000;212.220000;212.186000;212.220000;0 +20260322 172200;212.218000;212.231000;212.212000;212.227000;0 +20260322 172300;212.227000;212.261000;212.220000;212.257000;0 +20260322 172400;212.259000;212.284000;212.237000;212.261000;0 +20260322 172500;212.259000;212.271000;212.240000;212.252000;0 +20260322 172600;212.252000;212.255000;212.212000;212.240000;0 +20260322 172700;212.240000;212.254000;212.232000;212.247000;0 +20260322 172800;212.249000;212.269000;212.234000;212.253000;0 +20260322 172900;212.252000;212.253000;212.213000;212.218000;0 +20260322 173000;212.218000;212.235000;212.199000;212.216000;0 +20260322 173100;212.213000;212.231000;212.186000;212.201000;0 +20260322 173200;212.200000;212.223000;212.189000;212.209000;0 +20260322 173300;212.207000;212.213000;212.179000;212.188000;0 +20260322 173400;212.187000;212.189000;212.145000;212.156000;0 +20260322 173500;212.152000;212.181000;212.149000;212.174000;0 +20260322 173600;212.170000;212.186000;212.167000;212.172000;0 +20260322 173700;212.176000;212.194000;212.166000;212.181000;0 +20260322 173800;212.191000;212.224000;212.191000;212.215000;0 +20260322 173900;212.221000;212.248000;212.219000;212.225000;0 +20260322 174000;212.220000;212.256000;212.220000;212.253000;0 +20260322 174100;212.249000;212.265000;212.246000;212.254000;0 +20260322 174200;212.252000;212.259000;212.224000;212.234000;0 +20260322 174300;212.236000;212.245000;212.213000;212.245000;0 +20260322 174400;212.248000;212.259000;212.242000;212.246000;0 +20260322 174500;212.244000;212.282000;212.241000;212.273000;0 +20260322 174600;212.272000;212.272000;212.238000;212.238000;0 +20260322 174700;212.241000;212.260000;212.235000;212.260000;0 +20260322 174800;212.256000;212.270000;212.253000;212.261000;0 +20260322 174900;212.264000;212.271000;212.259000;212.271000;0 +20260322 175000;212.272000;212.290000;212.262000;212.272000;0 +20260322 175100;212.269000;212.269000;212.250000;212.254000;0 +20260322 175200;212.255000;212.282000;212.255000;212.280000;0 +20260322 175300;212.274000;212.280000;212.259000;212.264000;0 +20260322 175400;212.264000;212.269000;212.240000;212.241000;0 +20260322 175500;212.243000;212.271000;212.243000;212.271000;0 +20260322 175600;212.270000;212.278000;212.251000;212.251000;0 +20260322 175700;212.252000;212.261000;212.239000;212.242000;0 +20260322 175800;212.240000;212.243000;212.228000;212.240000;0 +20260322 175900;212.238000;212.257000;212.233000;212.233000;0 +20260322 180000;212.234000;212.241000;212.199000;212.202000;0 +20260322 180100;212.201000;212.204000;212.174000;212.182000;0 +20260322 180200;212.180000;212.220000;212.161000;212.214000;0 +20260322 180300;212.212000;212.215000;212.195000;212.195000;0 +20260322 180400;212.194000;212.202000;212.131000;212.132000;0 +20260322 180500;212.132000;212.137000;212.115000;212.125000;0 +20260322 180600;212.125000;212.140000;212.092000;212.092000;0 +20260322 180700;212.093000;212.115000;212.091000;212.106000;0 +20260322 180800;212.110000;212.131000;212.110000;212.127000;0 +20260322 180900;212.126000;212.143000;212.099000;212.123000;0 +20260322 181000;212.123000;212.149000;212.107000;212.118000;0 +20260322 181100;212.122000;212.167000;212.122000;212.145000;0 +20260322 181200;212.142000;212.150000;212.129000;212.149000;0 +20260322 181300;212.148000;212.160000;212.146000;212.154000;0 +20260322 181400;212.155000;212.155000;212.115000;212.123000;0 +20260322 181500;212.119000;212.142000;212.119000;212.134000;0 +20260322 181600;212.131000;212.151000;212.129000;212.149000;0 +20260322 181700;212.149000;212.180000;212.142000;212.166000;0 +20260322 181800;212.166000;212.186000;212.161000;212.178000;0 +20260322 181900;212.178000;212.178000;212.148000;212.167000;0 +20260322 182000;212.168000;212.198000;212.159000;212.184000;0 +20260322 182100;212.190000;212.201000;212.188000;212.197000;0 +20260322 182200;212.199000;212.233000;212.192000;212.232000;0 +20260322 182300;212.230000;212.238000;212.220000;212.229000;0 +20260322 182400;212.233000;212.251000;212.219000;212.251000;0 +20260322 182500;212.254000;212.258000;212.229000;212.234000;0 +20260322 182600;212.235000;212.260000;212.230000;212.260000;0 +20260322 182700;212.261000;212.277000;212.261000;212.275000;0 +20260322 182800;212.276000;212.286000;212.254000;212.258000;0 +20260322 182900;212.255000;212.263000;212.233000;212.244000;0 +20260322 183000;212.245000;212.266000;212.240000;212.254000;0 +20260322 183100;212.254000;212.265000;212.237000;212.247000;0 +20260322 183200;212.247000;212.261000;212.236000;212.246000;0 +20260322 183300;212.246000;212.258000;212.218000;212.220000;0 +20260322 183400;212.222000;212.236000;212.221000;212.225000;0 +20260322 183500;212.227000;212.232000;212.209000;212.209000;0 +20260322 183600;212.211000;212.211000;212.178000;212.196000;0 +20260322 183700;212.195000;212.208000;212.180000;212.208000;0 +20260322 183800;212.209000;212.257000;212.208000;212.242000;0 +20260322 183900;212.245000;212.272000;212.242000;212.260000;0 +20260322 184000;212.258000;212.262000;212.244000;212.249000;0 +20260322 184100;212.248000;212.251000;212.242000;212.242000;0 +20260322 184200;212.247000;212.251000;212.236000;212.242000;0 +20260322 184300;212.238000;212.238000;212.210000;212.216000;0 +20260322 184400;212.219000;212.231000;212.212000;212.225000;0 +20260322 184500;212.223000;212.238000;212.188000;212.209000;0 +20260322 184600;212.199000;212.207000;212.169000;212.185000;0 +20260322 184700;212.189000;212.236000;212.162000;212.218000;0 +20260322 184800;212.219000;212.237000;212.191000;212.191000;0 +20260322 184900;212.195000;212.232000;212.187000;212.216000;0 +20260322 185000;212.215000;212.229000;212.189000;212.212000;0 +20260322 185100;212.212000;212.215000;212.183000;212.190000;0 +20260322 185200;212.190000;212.196000;212.187000;212.196000;0 +20260322 185300;212.195000;212.218000;212.190000;212.217000;0 +20260322 185400;212.214000;212.224000;212.175000;212.192000;0 +20260322 185500;212.198000;212.220000;212.198000;212.211000;0 +20260322 185600;212.220000;212.260000;212.210000;212.250000;0 +20260322 185700;212.249000;212.266000;212.242000;212.254000;0 +20260322 185800;212.254000;212.273000;212.246000;212.247000;0 +20260322 185900;212.247000;212.261000;212.208000;212.208000;0 +20260322 190000;212.209000;212.241000;212.192000;212.216000;0 +20260322 190100;212.218000;212.219000;212.180000;212.186000;0 +20260322 190200;212.185000;212.208000;212.142000;212.145000;0 +20260322 190300;212.150000;212.178000;212.123000;212.133000;0 +20260322 190400;212.131000;212.141000;212.116000;212.125000;0 +20260322 190500;212.125000;212.129000;212.047000;212.048000;0 +20260322 190600;212.052000;212.086000;212.041000;212.081000;0 +20260322 190700;212.083000;212.134000;212.082000;212.112000;0 +20260322 190800;212.112000;212.132000;212.101000;212.102000;0 +20260322 190900;212.103000;212.118000;212.067000;212.067000;0 +20260322 191000;212.071000;212.083000;212.059000;212.064000;0 +20260322 191100;212.082000;212.102000;212.076000;212.082000;0 +20260322 191200;212.083000;212.151000;212.077000;212.150000;0 +20260322 191300;212.150000;212.150000;212.116000;212.135000;0 +20260322 191400;212.132000;212.132000;212.099000;212.102000;0 +20260322 191500;212.101000;212.106000;212.014000;212.028000;0 +20260322 191600;212.031000;212.056000;212.018000;212.036000;0 +20260322 191700;212.040000;212.102000;212.021000;212.089000;0 +20260322 191800;212.086000;212.141000;212.086000;212.141000;0 +20260322 191900;212.146000;212.193000;212.140000;212.175000;0 +20260322 192000;212.179000;212.207000;212.174000;212.185000;0 +20260322 192100;212.185000;212.198000;212.152000;212.197000;0 +20260322 192200;212.189000;212.210000;212.170000;212.188000;0 +20260322 192300;212.184000;212.184000;212.153000;212.166000;0 +20260322 192400;212.166000;212.208000;212.158000;212.208000;0 +20260322 192500;212.209000;212.230000;212.190000;212.224000;0 +20260322 192600;212.228000;212.257000;212.222000;212.256000;0 +20260322 192700;212.256000;212.256000;212.212000;212.221000;0 +20260322 192800;212.225000;212.253000;212.225000;212.237000;0 +20260322 192900;212.242000;212.248000;212.226000;212.238000;0 +20260322 193000;212.236000;212.276000;212.236000;212.271000;0 +20260322 193100;212.269000;212.272000;212.240000;212.268000;0 +20260322 193200;212.268000;212.311000;212.253000;212.274000;0 +20260322 193300;212.271000;212.297000;212.259000;212.263000;0 +20260322 193400;212.263000;212.271000;212.251000;212.253000;0 +20260322 193500;212.252000;212.257000;212.197000;212.198000;0 +20260322 193600;212.197000;212.199000;212.124000;212.127000;0 +20260322 193700;212.128000;212.181000;212.127000;212.172000;0 +20260322 193800;212.173000;212.190000;212.152000;212.169000;0 +20260322 193900;212.172000;212.193000;212.164000;212.183000;0 +20260322 194000;212.182000;212.204000;212.135000;212.139000;0 +20260322 194100;212.135000;212.172000;212.132000;212.159000;0 +20260322 194200;212.159000;212.180000;212.146000;212.168000;0 +20260322 194300;212.172000;212.218000;212.172000;212.201000;0 +20260322 194400;212.203000;212.236000;212.182000;212.229000;0 +20260322 194500;212.227000;212.242000;212.182000;212.196000;0 +20260322 194600;212.194000;212.230000;212.179000;212.218000;0 +20260322 194700;212.222000;212.225000;212.196000;212.219000;0 +20260322 194800;212.220000;212.242000;212.199000;212.199000;0 +20260322 194900;212.199000;212.233000;212.193000;212.224000;0 +20260322 195000;212.224000;212.249000;212.218000;212.226000;0 +20260322 195100;212.231000;212.250000;212.211000;212.211000;0 +20260322 195200;212.209000;212.216000;212.123000;212.123000;0 +20260322 195300;212.123000;212.192000;212.120000;212.190000;0 +20260322 195400;212.192000;212.283000;212.184000;212.270000;0 +20260322 195500;212.268000;212.326000;212.244000;212.314000;0 +20260322 195600;212.314000;212.394000;212.313000;212.365000;0 +20260322 195700;212.356000;212.396000;212.315000;212.390000;0 +20260322 195800;212.391000;212.419000;212.380000;212.407000;0 +20260322 195900;212.405000;212.451000;212.361000;212.451000;0 +20260322 200000;212.446000;212.458000;212.413000;212.426000;0 +20260322 200100;212.430000;212.508000;212.418000;212.505000;0 +20260322 200200;212.507000;212.526000;212.469000;212.496000;0 +20260322 200300;212.494000;212.498000;212.437000;212.471000;0 +20260322 200400;212.469000;212.496000;212.467000;212.495000;0 +20260322 200500;212.494000;212.506000;212.457000;212.489000;0 +20260322 200600;212.489000;212.557000;212.489000;212.553000;0 +20260322 200700;212.556000;212.578000;212.534000;212.535000;0 +20260322 200800;212.537000;212.555000;212.527000;212.536000;0 +20260322 200900;212.537000;212.539000;212.486000;212.520000;0 +20260322 201000;212.525000;212.583000;212.507000;212.567000;0 +20260322 201100;212.566000;212.638000;212.565000;212.636000;0 +20260322 201200;212.637000;212.645000;212.617000;212.643000;0 +20260322 201300;212.645000;212.647000;212.602000;212.641000;0 +20260322 201400;212.643000;212.653000;212.623000;212.634000;0 +20260322 201500;212.635000;212.666000;212.633000;212.649000;0 +20260322 201600;212.652000;212.660000;212.625000;212.648000;0 +20260322 201700;212.647000;212.649000;212.617000;212.629000;0 +20260322 201800;212.625000;212.641000;212.594000;212.603000;0 +20260322 201900;212.601000;212.628000;212.592000;212.624000;0 +20260322 202000;212.619000;212.619000;212.580000;212.607000;0 +20260322 202100;212.615000;212.628000;212.608000;212.619000;0 +20260322 202200;212.617000;212.660000;212.616000;212.629000;0 +20260322 202300;212.630000;212.633000;212.587000;212.590000;0 +20260322 202400;212.590000;212.593000;212.556000;212.586000;0 +20260322 202500;212.585000;212.585000;212.546000;212.553000;0 +20260322 202600;212.550000;212.558000;212.531000;212.557000;0 +20260322 202700;212.560000;212.589000;212.549000;212.570000;0 +20260322 202800;212.572000;212.579000;212.561000;212.579000;0 +20260322 202900;212.580000;212.585000;212.554000;212.574000;0 +20260322 203000;212.569000;212.609000;212.561000;212.594000;0 +20260322 203100;212.595000;212.605000;212.566000;212.569000;0 +20260322 203200;212.569000;212.576000;212.530000;212.538000;0 +20260322 203300;212.542000;212.570000;212.533000;212.551000;0 +20260322 203400;212.552000;212.554000;212.514000;212.528000;0 +20260322 203500;212.528000;212.542000;212.512000;212.542000;0 +20260322 203600;212.544000;212.572000;212.530000;212.550000;0 +20260322 203700;212.552000;212.603000;212.548000;212.600000;0 +20260322 203800;212.601000;212.621000;212.600000;212.618000;0 +20260322 203900;212.620000;212.620000;212.572000;212.576000;0 +20260322 204000;212.577000;212.585000;212.544000;212.546000;0 +20260322 204100;212.546000;212.595000;212.542000;212.592000;0 +20260322 204200;212.591000;212.631000;212.578000;212.616000;0 +20260322 204300;212.616000;212.627000;212.605000;212.619000;0 +20260322 204400;212.616000;212.636000;212.593000;212.614000;0 +20260322 204500;212.614000;212.640000;212.589000;212.628000;0 +20260322 204600;212.625000;212.648000;212.618000;212.647000;0 +20260322 204700;212.653000;212.659000;212.641000;212.652000;0 +20260322 204800;212.651000;212.690000;212.638000;212.684000;0 +20260322 204900;212.682000;212.700000;212.677000;212.691000;0 +20260322 205000;212.690000;212.701000;212.666000;212.673000;0 +20260322 205100;212.675000;212.682000;212.665000;212.668000;0 +20260322 205200;212.667000;212.708000;212.667000;212.688000;0 +20260322 205300;212.687000;212.735000;212.678000;212.700000;0 +20260322 205400;212.702000;212.726000;212.699000;212.722000;0 +20260322 205500;212.723000;212.738000;212.716000;212.721000;0 +20260322 205600;212.724000;212.724000;212.693000;212.705000;0 +20260322 205700;212.705000;212.705000;212.645000;212.652000;0 +20260322 205800;212.652000;212.659000;212.634000;212.652000;0 +20260322 205900;212.652000;212.661000;212.613000;212.629000;0 +20260322 210000;212.629000;212.638000;212.601000;212.613000;0 +20260322 210100;212.612000;212.654000;212.612000;212.645000;0 +20260322 210200;212.645000;212.662000;212.631000;212.661000;0 +20260322 210300;212.660000;212.661000;212.633000;212.650000;0 +20260322 210400;212.650000;212.663000;212.639000;212.647000;0 +20260322 210500;212.645000;212.654000;212.633000;212.645000;0 +20260322 210600;212.645000;212.688000;212.645000;212.688000;0 +20260322 210700;212.686000;212.694000;212.670000;212.673000;0 +20260322 210800;212.672000;212.673000;212.643000;212.648000;0 +20260322 210900;212.648000;212.654000;212.629000;212.634000;0 +20260322 211000;212.639000;212.643000;212.609000;212.638000;0 +20260322 211100;212.637000;212.641000;212.593000;212.595000;0 +20260322 211200;212.594000;212.597000;212.538000;212.540000;0 +20260322 211300;212.541000;212.548000;212.512000;212.520000;0 +20260322 211400;212.514000;212.534000;212.489000;212.499000;0 +20260322 211500;212.503000;212.521000;212.497000;212.503000;0 +20260322 211600;212.505000;212.559000;212.497000;212.558000;0 +20260322 211700;212.557000;212.577000;212.544000;212.562000;0 +20260322 211800;212.561000;212.570000;212.541000;212.551000;0 +20260322 211900;212.552000;212.556000;212.542000;212.553000;0 +20260322 212000;212.553000;212.610000;212.550000;212.605000;0 +20260322 212100;212.602000;212.626000;212.588000;212.619000;0 +20260322 212200;212.617000;212.626000;212.605000;212.609000;0 +20260322 212300;212.607000;212.610000;212.589000;212.592000;0 +20260322 212400;212.591000;212.602000;212.588000;212.590000;0 +20260322 212500;212.587000;212.620000;212.587000;212.611000;0 +20260322 212600;212.615000;212.626000;212.603000;212.617000;0 +20260322 212700;212.619000;212.624000;212.578000;212.579000;0 +20260322 212800;212.580000;212.580000;212.500000;212.501000;0 +20260322 212900;212.500000;212.535000;212.500000;212.532000;0 +20260322 213000;212.534000;212.564000;212.530000;212.560000;0 +20260322 213100;212.561000;212.635000;212.561000;212.612000;0 +20260322 213200;212.610000;212.625000;212.552000;212.552000;0 +20260322 213300;212.554000;212.555000;212.512000;212.527000;0 +20260322 213400;212.521000;212.532000;212.494000;212.496000;0 +20260322 213500;212.498000;212.535000;212.494000;212.531000;0 +20260322 213600;212.527000;212.537000;212.511000;212.513000;0 +20260322 213700;212.513000;212.515000;212.479000;212.486000;0 +20260322 213800;212.488000;212.489000;212.452000;212.452000;0 +20260322 213900;212.454000;212.509000;212.432000;212.479000;0 +20260322 214000;212.480000;212.507000;212.476000;212.499000;0 +20260322 214100;212.499000;212.518000;212.491000;212.507000;0 +20260322 214200;212.510000;212.538000;212.505000;212.533000;0 +20260322 214300;212.532000;212.555000;212.532000;212.540000;0 +20260322 214400;212.540000;212.553000;212.536000;212.537000;0 +20260322 214500;212.536000;212.543000;212.520000;212.543000;0 +20260322 214600;212.543000;212.543000;212.530000;212.539000;0 +20260322 214700;212.544000;212.559000;212.524000;212.524000;0 +20260322 214800;212.522000;212.530000;212.468000;212.470000;0 +20260322 214900;212.471000;212.492000;212.455000;212.468000;0 +20260322 215000;212.463000;212.496000;212.463000;212.480000;0 +20260322 215100;212.483000;212.491000;212.478000;212.481000;0 +20260322 215200;212.485000;212.485000;212.447000;212.454000;0 +20260322 215300;212.452000;212.453000;212.412000;212.429000;0 +20260322 215400;212.434000;212.469000;212.429000;212.464000;0 +20260322 215500;212.466000;212.469000;212.457000;212.469000;0 +20260322 215600;212.471000;212.520000;212.471000;212.487000;0 +20260322 215700;212.484000;212.488000;212.458000;212.479000;0 +20260322 215800;212.478000;212.518000;212.470000;212.497000;0 +20260322 215900;212.498000;212.498000;212.476000;212.477000;0 +20260322 220000;212.476000;212.484000;212.460000;212.462000;0 +20260322 220100;212.460000;212.481000;212.442000;212.476000;0 +20260322 220200;212.477000;212.515000;212.472000;212.502000;0 +20260322 220300;212.504000;212.506000;212.492000;212.504000;0 +20260322 220400;212.506000;212.527000;212.499000;212.524000;0 +20260322 220500;212.528000;212.556000;212.520000;212.556000;0 +20260322 220600;212.559000;212.577000;212.558000;212.569000;0 +20260322 220700;212.570000;212.573000;212.542000;212.564000;0 +20260322 220800;212.565000;212.565000;212.540000;212.549000;0 +20260322 220900;212.548000;212.548000;212.520000;212.525000;0 +20260322 221000;212.520000;212.529000;212.516000;212.525000;0 +20260322 221100;212.525000;212.532000;212.514000;212.517000;0 +20260322 221200;212.517000;212.517000;212.480000;212.486000;0 +20260322 221300;212.486000;212.532000;212.485000;212.526000;0 +20260322 221400;212.525000;212.526000;212.493000;212.493000;0 +20260322 221500;212.498000;212.498000;212.480000;212.480000;0 +20260322 221600;212.481000;212.498000;212.464000;212.481000;0 +20260322 221700;212.481000;212.514000;212.470000;212.504000;0 +20260322 221800;212.504000;212.506000;212.488000;212.491000;0 +20260322 221900;212.494000;212.509000;212.494000;212.506000;0 +20260322 222000;212.509000;212.535000;212.502000;212.527000;0 +20260322 222100;212.524000;212.533000;212.515000;212.518000;0 +20260322 222200;212.520000;212.520000;212.500000;212.510000;0 +20260322 222300;212.513000;212.515000;212.501000;212.515000;0 +20260322 222400;212.513000;212.513000;212.490000;212.491000;0 +20260322 222500;212.490000;212.492000;212.490000;212.492000;0 +20260322 222600;212.495000;212.513000;212.493000;212.512000;0 +20260322 222700;212.512000;212.528000;212.502000;212.502000;0 +20260322 222800;212.505000;212.510000;212.492000;212.494000;0 +20260322 222900;212.500000;212.507000;212.475000;212.479000;0 +20260322 223000;212.479000;212.491000;212.441000;212.456000;0 +20260322 223100;212.448000;212.468000;212.447000;212.468000;0 +20260322 223200;212.466000;212.471000;212.437000;212.437000;0 +20260322 223300;212.437000;212.437000;212.377000;212.377000;0 +20260322 223400;212.378000;212.393000;212.371000;212.388000;0 +20260322 223500;212.382000;212.386000;212.365000;212.373000;0 +20260322 223600;212.374000;212.374000;212.350000;212.356000;0 +20260322 223700;212.354000;212.366000;212.346000;212.357000;0 +20260322 223800;212.355000;212.372000;212.338000;212.339000;0 +20260322 223900;212.342000;212.342000;212.288000;212.288000;0 +20260322 224000;212.285000;212.315000;212.256000;212.259000;0 +20260322 224100;212.259000;212.291000;212.256000;212.286000;0 +20260322 224200;212.286000;212.296000;212.258000;212.282000;0 +20260322 224300;212.282000;212.284000;212.255000;212.278000;0 +20260322 224400;212.278000;212.294000;212.273000;212.290000;0 +20260322 224500;212.289000;212.298000;212.279000;212.298000;0 +20260322 224600;212.302000;212.348000;212.302000;212.342000;0 +20260322 224700;212.346000;212.352000;212.319000;212.320000;0 +20260322 224800;212.320000;212.329000;212.319000;212.321000;0 +20260322 224900;212.322000;212.331000;212.312000;212.320000;0 +20260322 225000;212.319000;212.331000;212.304000;212.317000;0 +20260322 225100;212.319000;212.367000;212.319000;212.367000;0 +20260322 225200;212.367000;212.380000;212.362000;212.369000;0 +20260322 225300;212.371000;212.373000;212.359000;212.363000;0 +20260322 225400;212.362000;212.363000;212.359000;212.359000;0 +20260322 225500;212.362000;212.374000;212.358000;212.359000;0 +20260322 225600;212.360000;212.360000;212.334000;212.335000;0 +20260322 225700;212.332000;212.346000;212.317000;212.317000;0 +20260322 225800;212.317000;212.324000;212.285000;212.315000;0 +20260322 225900;212.316000;212.323000;212.292000;212.305000;0 +20260322 230000;212.306000;212.321000;212.286000;212.299000;0 +20260322 230100;212.299000;212.325000;212.288000;212.316000;0 +20260322 230200;212.315000;212.324000;212.285000;212.308000;0 +20260322 230300;212.308000;212.321000;212.295000;212.318000;0 +20260322 230400;212.317000;212.343000;212.312000;212.337000;0 +20260322 230500;212.334000;212.360000;212.333000;212.345000;0 +20260322 230600;212.343000;212.380000;212.342000;212.363000;0 +20260322 230700;212.359000;212.366000;212.347000;212.353000;0 +20260322 230800;212.351000;212.372000;212.345000;212.371000;0 +20260322 230900;212.368000;212.384000;212.367000;212.370000;0 +20260322 231000;212.373000;212.389000;212.373000;212.379000;0 +20260322 231100;212.378000;212.406000;212.378000;212.405000;0 +20260322 231200;212.401000;212.401000;212.365000;212.368000;0 +20260322 231300;212.370000;212.394000;212.369000;212.388000;0 +20260322 231400;212.387000;212.388000;212.364000;212.387000;0 +20260322 231500;212.387000;212.387000;212.359000;212.362000;0 +20260322 231600;212.362000;212.386000;212.358000;212.379000;0 +20260322 231700;212.379000;212.381000;212.368000;212.377000;0 +20260322 231800;212.377000;212.377000;212.330000;212.330000;0 +20260322 231900;212.335000;212.353000;212.329000;212.353000;0 +20260322 232000;212.354000;212.354000;212.320000;212.326000;0 +20260322 232100;212.324000;212.339000;212.306000;212.319000;0 +20260322 232200;212.319000;212.339000;212.314000;212.332000;0 +20260322 232300;212.329000;212.349000;212.325000;212.346000;0 +20260322 232400;212.345000;212.352000;212.337000;212.337000;0 +20260322 232500;212.341000;212.342000;212.330000;212.334000;0 +20260322 232600;212.336000;212.339000;212.336000;212.338000;0 +20260322 232700;212.348000;212.350000;212.311000;212.318000;0 +20260322 232800;212.317000;212.320000;212.308000;212.310000;0 +20260322 232900;212.310000;212.319000;212.302000;212.308000;0 +20260322 233000;212.305000;212.319000;212.288000;212.301000;0 +20260322 233100;212.304000;212.319000;212.303000;212.308000;0 +20260322 233200;212.306000;212.326000;212.306000;212.306000;0 +20260322 233300;212.306000;212.319000;212.256000;212.263000;0 +20260322 233400;212.263000;212.271000;212.246000;212.263000;0 +20260322 233500;212.263000;212.280000;212.257000;212.257000;0 +20260322 233600;212.257000;212.282000;212.248000;212.281000;0 +20260322 233700;212.280000;212.294000;212.276000;212.278000;0 +20260322 233800;212.277000;212.296000;212.273000;212.296000;0 +20260322 233900;212.295000;212.298000;212.285000;212.292000;0 +20260322 234000;212.292000;212.296000;212.275000;212.294000;0 +20260322 234100;212.294000;212.302000;212.282000;212.293000;0 +20260322 234200;212.292000;212.300000;212.269000;212.271000;0 +20260322 234300;212.270000;212.281000;212.266000;212.276000;0 +20260322 234400;212.280000;212.292000;212.266000;212.292000;0 +20260322 234500;212.291000;212.310000;212.280000;212.310000;0 +20260322 234600;212.312000;212.331000;212.297000;212.299000;0 +20260322 234700;212.300000;212.366000;212.300000;212.350000;0 +20260322 234800;212.351000;212.351000;212.331000;212.342000;0 +20260322 234900;212.344000;212.358000;212.344000;212.352000;0 +20260322 235000;212.350000;212.372000;212.338000;212.344000;0 +20260322 235100;212.345000;212.351000;212.322000;212.336000;0 +20260322 235200;212.337000;212.354000;212.318000;212.350000;0 +20260322 235300;212.350000;212.357000;212.347000;212.349000;0 +20260322 235400;212.348000;212.360000;212.334000;212.354000;0 +20260322 235500;212.355000;212.381000;212.352000;212.367000;0 +20260322 235600;212.368000;212.385000;212.365000;212.376000;0 +20260322 235700;212.376000;212.378000;212.361000;212.362000;0 +20260322 235800;212.362000;212.379000;212.356000;212.371000;0 +20260322 235900;212.372000;212.385000;212.372000;212.375000;0 +20260323 000000;212.374000;212.382000;212.361000;212.367000;0 +20260323 000100;212.368000;212.399000;212.363000;212.398000;0 +20260323 000200;212.399000;212.414000;212.386000;212.389000;0 +20260323 000300;212.388000;212.389000;212.357000;212.375000;0 +20260323 000400;212.374000;212.386000;212.341000;212.349000;0 +20260323 000500;212.350000;212.382000;212.349000;212.382000;0 +20260323 000600;212.381000;212.395000;212.375000;212.387000;0 +20260323 000700;212.387000;212.402000;212.378000;212.385000;0 +20260323 000800;212.385000;212.385000;212.368000;212.369000;0 +20260323 000900;212.369000;212.380000;212.369000;212.369000;0 +20260323 001000;212.371000;212.380000;212.366000;212.372000;0 +20260323 001100;212.374000;212.386000;212.363000;212.363000;0 +20260323 001200;212.365000;212.396000;212.358000;212.396000;0 +20260323 001300;212.395000;212.418000;212.387000;212.414000;0 +20260323 001400;212.413000;212.413000;212.392000;212.399000;0 +20260323 001500;212.395000;212.404000;212.383000;212.383000;0 +20260323 001600;212.382000;212.404000;212.382000;212.403000;0 +20260323 001700;212.404000;212.406000;212.381000;212.384000;0 +20260323 001800;212.386000;212.395000;212.368000;212.374000;0 +20260323 001900;212.371000;212.385000;212.358000;212.372000;0 +20260323 002000;212.371000;212.371000;212.346000;212.364000;0 +20260323 002100;212.364000;212.372000;212.343000;212.348000;0 +20260323 002200;212.348000;212.358000;212.337000;212.343000;0 +20260323 002300;212.342000;212.353000;212.320000;212.329000;0 +20260323 002400;212.333000;212.333000;212.314000;212.321000;0 +20260323 002500;212.324000;212.348000;212.319000;212.340000;0 +20260323 002600;212.338000;212.348000;212.331000;212.348000;0 +20260323 002700;212.349000;212.353000;212.313000;212.317000;0 +20260323 002800;212.320000;212.323000;212.316000;212.322000;0 +20260323 002900;212.322000;212.338000;212.318000;212.335000;0 +20260323 003000;212.332000;212.335000;212.281000;212.292000;0 +20260323 003100;212.293000;212.318000;212.292000;212.303000;0 +20260323 003200;212.304000;212.315000;212.271000;212.274000;0 +20260323 003300;212.274000;212.274000;212.248000;212.255000;0 +20260323 003400;212.255000;212.273000;212.254000;212.261000;0 +20260323 003500;212.266000;212.284000;212.262000;212.271000;0 +20260323 003600;212.270000;212.317000;212.270000;212.316000;0 +20260323 003700;212.316000;212.346000;212.308000;212.339000;0 +20260323 003800;212.339000;212.339000;212.297000;212.304000;0 +20260323 003900;212.302000;212.302000;212.282000;212.284000;0 +20260323 004000;212.283000;212.285000;212.261000;212.269000;0 +20260323 004100;212.272000;212.281000;212.257000;212.272000;0 +20260323 004200;212.270000;212.288000;212.269000;212.283000;0 +20260323 004300;212.281000;212.281000;212.269000;212.269000;0 +20260323 004400;212.275000;212.298000;212.275000;212.284000;0 +20260323 004500;212.283000;212.285000;212.256000;212.270000;0 +20260323 004600;212.269000;212.274000;212.239000;212.239000;0 +20260323 004700;212.237000;212.248000;212.227000;212.230000;0 +20260323 004800;212.228000;212.254000;212.224000;212.252000;0 +20260323 004900;212.253000;212.268000;212.251000;212.258000;0 +20260323 005000;212.260000;212.278000;212.259000;212.270000;0 +20260323 005100;212.271000;212.279000;212.259000;212.266000;0 +20260323 005200;212.266000;212.267000;212.242000;212.243000;0 +20260323 005300;212.238000;212.239000;212.221000;212.224000;0 +20260323 005400;212.224000;212.244000;212.221000;212.231000;0 +20260323 005500;212.230000;212.257000;212.214000;212.248000;0 +20260323 005600;212.250000;212.283000;212.250000;212.257000;0 +20260323 005700;212.261000;212.268000;212.252000;212.253000;0 +20260323 005800;212.266000;212.274000;212.255000;212.265000;0 +20260323 005900;212.267000;212.274000;212.239000;212.239000;0 +20260323 010000;212.239000;212.264000;212.230000;212.260000;0 +20260323 010100;212.259000;212.267000;212.202000;212.206000;0 +20260323 010200;212.207000;212.219000;212.181000;212.186000;0 +20260323 010300;212.183000;212.186000;212.171000;212.171000;0 +20260323 010400;212.172000;212.179000;212.138000;212.165000;0 +20260323 010500;212.165000;212.166000;212.131000;212.151000;0 +20260323 010600;212.148000;212.150000;212.087000;212.102000;0 +20260323 010700;212.100000;212.117000;212.090000;212.117000;0 +20260323 010800;212.114000;212.118000;212.071000;212.071000;0 +20260323 010900;212.076000;212.091000;212.064000;212.069000;0 +20260323 011000;212.070000;212.139000;212.070000;212.115000;0 +20260323 011100;212.115000;212.176000;212.110000;212.134000;0 +20260323 011200;212.134000;212.151000;212.111000;212.118000;0 +20260323 011300;212.124000;212.124000;212.082000;212.108000;0 +20260323 011400;212.108000;212.132000;212.091000;212.129000;0 +20260323 011500;212.126000;212.173000;212.120000;212.171000;0 +20260323 011600;212.175000;212.175000;212.141000;212.143000;0 +20260323 011700;212.151000;212.151000;212.116000;212.129000;0 +20260323 011800;212.129000;212.144000;212.119000;212.130000;0 +20260323 011900;212.130000;212.176000;212.126000;212.164000;0 +20260323 012000;212.164000;212.165000;212.082000;212.122000;0 +20260323 012100;212.119000;212.153000;212.119000;212.149000;0 +20260323 012200;212.150000;212.197000;212.145000;212.186000;0 +20260323 012300;212.186000;212.187000;212.151000;212.164000;0 +20260323 012400;212.165000;212.184000;212.139000;212.177000;0 +20260323 012500;212.181000;212.189000;212.141000;212.155000;0 +20260323 012600;212.156000;212.159000;212.133000;212.155000;0 +20260323 012700;212.160000;212.160000;212.120000;212.127000;0 +20260323 012800;212.128000;212.131000;212.077000;212.101000;0 +20260323 012900;212.104000;212.121000;212.079000;212.112000;0 +20260323 013000;212.116000;212.120000;212.066000;212.067000;0 +20260323 013100;212.068000;212.093000;212.062000;212.088000;0 +20260323 013200;212.089000;212.093000;212.023000;212.056000;0 +20260323 013300;212.057000;212.076000;212.049000;212.062000;0 +20260323 013400;212.063000;212.079000;212.038000;212.040000;0 +20260323 013500;212.039000;212.074000;212.039000;212.062000;0 +20260323 013600;212.065000;212.065000;212.038000;212.052000;0 +20260323 013700;212.057000;212.057000;212.025000;212.025000;0 +20260323 013800;212.028000;212.046000;212.021000;212.046000;0 +20260323 013900;212.047000;212.053000;212.013000;212.053000;0 +20260323 014000;212.052000;212.073000;212.034000;212.040000;0 +20260323 014100;212.039000;212.069000;212.032000;212.067000;0 +20260323 014200;212.069000;212.070000;212.028000;212.046000;0 +20260323 014300;212.041000;212.063000;212.015000;212.023000;0 +20260323 014400;212.024000;212.031000;211.999000;211.999000;0 +20260323 014500;211.996000;212.009000;211.992000;212.004000;0 +20260323 014600;212.003000;212.019000;211.990000;212.019000;0 +20260323 014700;212.017000;212.033000;212.012000;212.027000;0 +20260323 014800;212.025000;212.034000;212.007000;212.015000;0 +20260323 014900;212.013000;212.030000;212.002000;212.010000;0 +20260323 015000;212.011000;212.012000;211.972000;211.983000;0 +20260323 015100;211.988000;212.004000;211.958000;211.962000;0 +20260323 015200;211.961000;211.964000;211.916000;211.943000;0 +20260323 015300;211.945000;211.973000;211.934000;211.958000;0 +20260323 015400;211.965000;211.977000;211.949000;211.962000;0 +20260323 015500;211.962000;211.980000;211.942000;211.958000;0 +20260323 015600;211.958000;211.985000;211.957000;211.970000;0 +20260323 015700;211.969000;211.989000;211.945000;211.979000;0 +20260323 015800;211.977000;211.988000;211.956000;211.965000;0 +20260323 015900;211.964000;211.968000;211.916000;211.930000;0 +20260323 020000;211.928000;211.931000;211.863000;211.904000;0 +20260323 020100;211.906000;211.928000;211.888000;211.922000;0 +20260323 020200;211.924000;211.929000;211.886000;211.892000;0 +20260323 020300;211.891000;211.942000;211.888000;211.927000;0 +20260323 020400;211.926000;211.950000;211.916000;211.941000;0 +20260323 020500;211.941000;211.971000;211.936000;211.954000;0 +20260323 020600;211.953000;211.980000;211.945000;211.953000;0 +20260323 020700;211.954000;211.976000;211.942000;211.976000;0 +20260323 020800;211.975000;211.976000;211.907000;211.950000;0 +20260323 020900;211.952000;211.975000;211.934000;211.944000;0 +20260323 021000;211.944000;211.953000;211.913000;211.942000;0 +20260323 021100;211.941000;211.967000;211.933000;211.949000;0 +20260323 021200;211.946000;211.973000;211.935000;211.969000;0 +20260323 021300;211.968000;211.976000;211.940000;211.968000;0 +20260323 021400;211.969000;212.015000;211.968000;212.002000;0 +20260323 021500;212.001000;212.013000;211.968000;211.972000;0 +20260323 021600;211.971000;211.971000;211.933000;211.966000;0 +20260323 021700;211.970000;211.991000;211.950000;211.957000;0 +20260323 021800;211.958000;211.975000;211.911000;211.954000;0 +20260323 021900;211.957000;211.967000;211.933000;211.941000;0 +20260323 022000;211.939000;211.939000;211.891000;211.891000;0 +20260323 022100;211.894000;211.929000;211.885000;211.921000;0 +20260323 022200;211.918000;211.920000;211.882000;211.885000;0 +20260323 022300;211.886000;211.901000;211.865000;211.898000;0 +20260323 022400;211.901000;211.929000;211.893000;211.912000;0 +20260323 022500;211.915000;211.920000;211.887000;211.896000;0 +20260323 022600;211.901000;211.925000;211.884000;211.925000;0 +20260323 022700;211.924000;211.930000;211.875000;211.897000;0 +20260323 022800;211.899000;211.921000;211.852000;211.921000;0 +20260323 022900;211.922000;211.940000;211.906000;211.931000;0 +20260323 023000;211.933000;212.001000;211.915000;211.996000;0 +20260323 023100;211.996000;212.075000;211.996000;212.065000;0 +20260323 023200;212.065000;212.065000;212.035000;212.055000;0 +20260323 023300;212.052000;212.080000;212.052000;212.074000;0 +20260323 023400;212.071000;212.096000;212.057000;212.096000;0 +20260323 023500;212.097000;212.097000;212.037000;212.061000;0 +20260323 023600;212.061000;212.086000;212.046000;212.071000;0 +20260323 023700;212.073000;212.077000;212.037000;212.055000;0 +20260323 023800;212.052000;212.095000;212.049000;212.085000;0 +20260323 023900;212.085000;212.131000;212.070000;212.070000;0 +20260323 024000;212.068000;212.087000;212.054000;212.083000;0 +20260323 024100;212.084000;212.127000;212.084000;212.096000;0 +20260323 024200;212.099000;212.150000;212.097000;212.138000;0 +20260323 024300;212.139000;212.158000;212.129000;212.152000;0 +20260323 024400;212.152000;212.217000;212.152000;212.206000;0 +20260323 024500;212.203000;212.208000;212.175000;212.194000;0 +20260323 024600;212.197000;212.217000;212.166000;212.215000;0 +20260323 024700;212.214000;212.232000;212.175000;212.177000;0 +20260323 024800;212.179000;212.189000;212.165000;212.181000;0 +20260323 024900;212.177000;212.184000;212.158000;212.183000;0 +20260323 025000;212.182000;212.191000;212.132000;212.169000;0 +20260323 025100;212.171000;212.186000;212.150000;212.165000;0 +20260323 025200;212.168000;212.168000;212.128000;212.133000;0 +20260323 025300;212.136000;212.138000;212.040000;212.043000;0 +20260323 025400;212.043000;212.048000;212.002000;212.011000;0 +20260323 025500;212.008000;212.028000;211.988000;212.008000;0 +20260323 025600;212.012000;212.081000;212.011000;212.074000;0 +20260323 025700;212.086000;212.094000;212.009000;212.016000;0 +20260323 025800;212.014000;212.083000;212.014000;212.075000;0 +20260323 025900;212.079000;212.130000;212.077000;212.084000;0 +20260323 030000;212.082000;212.114000;212.069000;212.111000;0 +20260323 030100;212.111000;212.136000;212.099000;212.105000;0 +20260323 030200;212.105000;212.109000;212.073000;212.082000;0 +20260323 030300;212.084000;212.164000;212.074000;212.164000;0 +20260323 030400;212.155000;212.268000;212.155000;212.255000;0 +20260323 030500;212.255000;212.273000;212.234000;212.272000;0 +20260323 030600;212.273000;212.332000;212.272000;212.293000;0 +20260323 030700;212.293000;212.319000;212.283000;212.305000;0 +20260323 030800;212.304000;212.330000;212.247000;212.268000;0 +20260323 030900;212.270000;212.286000;212.243000;212.282000;0 +20260323 031000;212.282000;212.292000;212.238000;212.254000;0 +20260323 031100;212.253000;212.288000;212.222000;212.285000;0 +20260323 031200;212.288000;212.331000;212.249000;212.252000;0 +20260323 031300;212.253000;212.326000;212.247000;212.318000;0 +20260323 031400;212.318000;212.379000;212.318000;212.343000;0 +20260323 031500;212.342000;212.355000;212.301000;212.323000;0 +20260323 031600;212.323000;212.347000;212.303000;212.326000;0 +20260323 031700;212.334000;212.362000;212.319000;212.351000;0 +20260323 031800;212.352000;212.373000;212.328000;212.352000;0 +20260323 031900;212.354000;212.415000;212.351000;212.409000;0 +20260323 032000;212.409000;212.443000;212.400000;212.425000;0 +20260323 032100;212.425000;212.486000;212.418000;212.481000;0 +20260323 032200;212.484000;212.548000;212.433000;212.544000;0 +20260323 032300;212.546000;212.575000;212.544000;212.561000;0 +20260323 032400;212.557000;212.589000;212.522000;212.530000;0 +20260323 032500;212.531000;212.574000;212.520000;212.570000;0 +20260323 032600;212.570000;212.598000;212.551000;212.598000;0 +20260323 032700;212.597000;212.597000;212.513000;212.537000;0 +20260323 032800;212.537000;212.540000;212.489000;212.500000;0 +20260323 032900;212.501000;212.503000;212.471000;212.489000;0 +20260323 033000;212.488000;212.513000;212.432000;212.507000;0 +20260323 033100;212.508000;212.515000;212.475000;212.495000;0 +20260323 033200;212.496000;212.508000;212.480000;212.480000;0 +20260323 033300;212.485000;212.496000;212.452000;212.480000;0 +20260323 033400;212.480000;212.480000;212.439000;212.448000;0 +20260323 033500;212.447000;212.448000;212.405000;212.415000;0 +20260323 033600;212.413000;212.420000;212.352000;212.362000;0 +20260323 033700;212.361000;212.403000;212.361000;212.386000;0 +20260323 033800;212.385000;212.386000;212.351000;212.374000;0 +20260323 033900;212.378000;212.394000;212.361000;212.365000;0 +20260323 034000;212.365000;212.389000;212.358000;212.365000;0 +20260323 034100;212.365000;212.377000;212.344000;212.364000;0 +20260323 034200;212.364000;212.385000;212.327000;212.328000;0 +20260323 034300;212.325000;212.356000;212.315000;212.315000;0 +20260323 034400;212.310000;212.352000;212.310000;212.338000;0 +20260323 034500;212.337000;212.390000;212.333000;212.362000;0 +20260323 034600;212.365000;212.406000;212.359000;212.361000;0 +20260323 034700;212.364000;212.364000;212.318000;212.319000;0 +20260323 034800;212.318000;212.328000;212.204000;212.209000;0 +20260323 034900;212.215000;212.226000;212.172000;212.177000;0 +20260323 035000;212.176000;212.177000;212.136000;212.139000;0 +20260323 035100;212.139000;212.149000;212.110000;212.137000;0 +20260323 035200;212.138000;212.153000;212.112000;212.131000;0 +20260323 035300;212.130000;212.146000;212.098000;212.145000;0 +20260323 035400;212.142000;212.196000;212.137000;212.164000;0 +20260323 035500;212.167000;212.181000;212.126000;212.142000;0 +20260323 035600;212.143000;212.233000;212.140000;212.204000;0 +20260323 035700;212.201000;212.220000;212.171000;212.186000;0 +20260323 035800;212.183000;212.223000;212.180000;212.211000;0 +20260323 035900;212.212000;212.214000;212.175000;212.186000;0 +20260323 040000;212.191000;212.207000;212.141000;212.173000;0 +20260323 040100;212.173000;212.217000;212.161000;212.185000;0 +20260323 040200;212.183000;212.200000;212.164000;212.189000;0 +20260323 040300;212.189000;212.207000;212.179000;212.187000;0 +20260323 040400;212.185000;212.251000;212.178000;212.228000;0 +20260323 040500;212.225000;212.265000;212.222000;212.225000;0 +20260323 040600;212.227000;212.252000;212.202000;212.212000;0 +20260323 040700;212.214000;212.221000;212.150000;212.156000;0 +20260323 040800;212.156000;212.175000;212.129000;212.144000;0 +20260323 040900;212.144000;212.189000;212.144000;212.173000;0 +20260323 041000;212.173000;212.173000;212.144000;212.153000;0 +20260323 041100;212.149000;212.150000;212.123000;212.133000;0 +20260323 041200;212.136000;212.144000;212.117000;212.122000;0 +20260323 041300;212.121000;212.124000;212.111000;212.114000;0 +20260323 041400;212.111000;212.127000;212.088000;212.097000;0 +20260323 041500;212.096000;212.102000;212.071000;212.080000;0 +20260323 041600;212.080000;212.104000;212.070000;212.093000;0 +20260323 041700;212.093000;212.093000;212.045000;212.082000;0 +20260323 041800;212.083000;212.083000;212.047000;212.064000;0 +20260323 041900;212.065000;212.074000;212.045000;212.055000;0 +20260323 042000;212.048000;212.065000;212.032000;212.056000;0 +20260323 042100;212.058000;212.085000;212.040000;212.068000;0 +20260323 042200;212.064000;212.074000;212.033000;212.070000;0 +20260323 042300;212.067000;212.073000;212.033000;212.033000;0 +20260323 042400;212.033000;212.033000;211.971000;211.980000;0 +20260323 042500;211.980000;211.987000;211.933000;211.981000;0 +20260323 042600;211.981000;211.991000;211.957000;211.973000;0 +20260323 042700;211.973000;211.981000;211.949000;211.968000;0 +20260323 042800;211.967000;211.979000;211.962000;211.973000;0 +20260323 042900;211.976000;211.993000;211.970000;211.992000;0 +20260323 043000;211.994000;212.008000;211.977000;211.989000;0 +20260323 043100;211.987000;211.996000;211.956000;211.993000;0 +20260323 043200;211.996000;212.012000;211.964000;211.991000;0 +20260323 043300;211.990000;211.990000;211.947000;211.949000;0 +20260323 043400;211.951000;211.955000;211.909000;211.910000;0 +20260323 043500;211.910000;211.934000;211.884000;211.885000;0 +20260323 043600;211.885000;211.886000;211.850000;211.864000;0 +20260323 043700;211.867000;211.868000;211.842000;211.852000;0 +20260323 043800;211.852000;211.901000;211.852000;211.897000;0 +20260323 043900;211.897000;211.912000;211.881000;211.890000;0 +20260323 044000;211.890000;211.891000;211.842000;211.845000;0 +20260323 044100;211.844000;211.874000;211.839000;211.856000;0 +20260323 044200;211.857000;211.857000;211.801000;211.801000;0 +20260323 044300;211.802000;211.822000;211.792000;211.814000;0 +20260323 044400;211.812000;211.817000;211.762000;211.780000;0 +20260323 044500;211.782000;211.800000;211.782000;211.789000;0 +20260323 044600;211.792000;211.818000;211.770000;211.801000;0 +20260323 044700;211.802000;211.820000;211.795000;211.820000;0 +20260323 044800;211.822000;211.822000;211.787000;211.796000;0 +20260323 044900;211.792000;211.811000;211.770000;211.791000;0 +20260323 045000;211.792000;211.793000;211.727000;211.748000;0 +20260323 045100;211.747000;211.790000;211.738000;211.766000;0 +20260323 045200;211.766000;211.774000;211.714000;211.726000;0 +20260323 045300;211.727000;211.740000;211.710000;211.723000;0 +20260323 045400;211.721000;211.723000;211.685000;211.697000;0 +20260323 045500;211.694000;211.694000;211.659000;211.677000;0 +20260323 045600;211.676000;211.693000;211.662000;211.668000;0 +20260323 045700;211.677000;211.711000;211.671000;211.679000;0 +20260323 045800;211.685000;211.703000;211.679000;211.688000;0 +20260323 045900;211.684000;211.717000;211.665000;211.697000;0 +20260323 050000;211.702000;211.716000;211.675000;211.681000;0 +20260323 050100;211.678000;211.686000;211.654000;211.659000;0 +20260323 050200;211.662000;211.679000;211.636000;211.668000;0 +20260323 050300;211.669000;211.670000;211.590000;211.652000;0 +20260323 050400;211.653000;211.700000;211.649000;211.681000;0 +20260323 050500;211.682000;211.685000;211.644000;211.662000;0 +20260323 050600;211.663000;211.672000;211.638000;211.659000;0 +20260323 050700;211.659000;211.690000;211.640000;211.684000;0 +20260323 050800;211.685000;211.724000;211.678000;211.723000;0 +20260323 050900;211.723000;211.778000;211.723000;211.759000;0 +20260323 051000;211.759000;211.787000;211.755000;211.786000;0 +20260323 051100;211.787000;211.797000;211.746000;211.791000;0 +20260323 051200;211.789000;211.793000;211.747000;211.755000;0 +20260323 051300;211.753000;211.759000;211.716000;211.724000;0 +20260323 051400;211.726000;211.761000;211.719000;211.731000;0 +20260323 051500;211.733000;211.737000;211.690000;211.690000;0 +20260323 051600;211.691000;211.721000;211.669000;211.708000;0 +20260323 051700;211.710000;211.746000;211.702000;211.725000;0 +20260323 051800;211.721000;211.722000;211.669000;211.691000;0 +20260323 051900;211.690000;211.694000;211.661000;211.665000;0 +20260323 052000;211.665000;211.665000;211.638000;211.638000;0 +20260323 052100;211.638000;211.642000;211.620000;211.627000;0 +20260323 052200;211.632000;211.672000;211.628000;211.651000;0 +20260323 052300;211.648000;211.655000;211.627000;211.641000;0 +20260323 052400;211.641000;211.668000;211.622000;211.652000;0 +20260323 052500;211.657000;211.681000;211.635000;211.642000;0 +20260323 052600;211.642000;211.668000;211.609000;211.668000;0 +20260323 052700;211.667000;211.677000;211.649000;211.676000;0 +20260323 052800;211.677000;211.677000;211.618000;211.645000;0 +20260323 052900;211.647000;211.671000;211.643000;211.664000;0 +20260323 053000;211.662000;211.672000;211.647000;211.662000;0 +20260323 053100;211.656000;211.657000;211.635000;211.643000;0 +20260323 053200;211.646000;211.779000;211.645000;211.747000;0 +20260323 053300;211.745000;211.749000;211.695000;211.695000;0 +20260323 053400;211.695000;211.715000;211.688000;211.705000;0 +20260323 053500;211.706000;211.739000;211.685000;211.737000;0 +20260323 053600;211.740000;211.753000;211.713000;211.726000;0 +20260323 053700;211.724000;211.743000;211.704000;211.705000;0 +20260323 053800;211.709000;211.740000;211.680000;211.682000;0 +20260323 053900;211.681000;211.725000;211.663000;211.722000;0 +20260323 054000;211.724000;211.725000;211.628000;211.633000;0 +20260323 054100;211.634000;211.675000;211.633000;211.666000;0 +20260323 054200;211.663000;211.684000;211.648000;211.675000;0 +20260323 054300;211.676000;211.679000;211.648000;211.666000;0 +20260323 054400;211.666000;211.667000;211.631000;211.644000;0 +20260323 054500;211.640000;211.641000;211.574000;211.590000;0 +20260323 054600;211.589000;211.619000;211.581000;211.608000;0 +20260323 054700;211.608000;211.651000;211.599000;211.642000;0 +20260323 054800;211.638000;211.669000;211.633000;211.666000;0 +20260323 054900;211.667000;211.674000;211.647000;211.673000;0 +20260323 055000;211.674000;211.815000;211.672000;211.740000;0 +20260323 055100;211.743000;211.770000;211.710000;211.712000;0 +20260323 055200;211.712000;211.726000;211.666000;211.694000;0 +20260323 055300;211.696000;211.726000;211.690000;211.719000;0 +20260323 055400;211.723000;211.737000;211.670000;211.682000;0 +20260323 055500;211.682000;211.682000;211.633000;211.635000;0 +20260323 055600;211.638000;211.680000;211.619000;211.680000;0 +20260323 055700;211.680000;211.724000;211.677000;211.721000;0 +20260323 055800;211.721000;211.754000;211.693000;211.694000;0 +20260323 055900;211.693000;211.702000;211.682000;211.693000;0 +20260323 060000;211.693000;211.722000;211.664000;211.708000;0 +20260323 060100;211.708000;211.759000;211.699000;211.744000;0 +20260323 060200;211.740000;211.768000;211.735000;211.755000;0 +20260323 060300;211.755000;211.770000;211.739000;211.767000;0 +20260323 060400;211.770000;211.771000;211.745000;211.756000;0 +20260323 060500;211.752000;212.581000;211.750000;212.548000;0 +20260323 060600;212.557000;213.004000;212.514000;212.979000;0 +20260323 060700;212.968000;212.986000;212.727000;212.868000;0 +20260323 060800;212.856000;212.886000;212.494000;212.550000;0 +20260323 060900;212.548000;212.639000;212.382000;212.429000;0 +20260323 061000;212.437000;212.459000;212.243000;212.394000;0 +20260323 061100;212.398000;212.398000;212.065000;212.073000;0 +20260323 061200;212.076000;212.197000;211.908000;212.197000;0 +20260323 061300;212.198000;212.242000;211.946000;211.963000;0 +20260323 061400;211.969000;212.230000;211.869000;212.134000;0 +20260323 061500;212.138000;212.349000;212.042000;212.283000;0 +20260323 061600;212.280000;212.316000;212.196000;212.205000;0 +20260323 061700;212.207000;212.289000;212.131000;212.179000;0 +20260323 061800;212.179000;212.216000;212.067000;212.137000;0 +20260323 061900;212.137000;212.152000;211.910000;211.921000;0 +20260323 062000;211.920000;211.974000;211.619000;211.636000;0 +20260323 062100;211.642000;211.849000;211.628000;211.820000;0 +20260323 062200;211.820000;211.912000;211.703000;211.885000;0 +20260323 062300;211.878000;211.886000;211.745000;211.782000;0 +20260323 062400;211.782000;211.957000;211.726000;211.879000;0 +20260323 062500;211.880000;212.037000;211.832000;212.029000;0 +20260323 062600;212.036000;212.080000;211.999000;212.025000;0 +20260323 062700;212.025000;212.072000;211.950000;211.973000;0 +20260323 062800;211.974000;211.994000;211.873000;211.963000;0 +20260323 062900;211.967000;212.216000;211.941000;212.187000;0 +20260323 063000;212.175000;212.253000;212.130000;212.253000;0 +20260323 063100;212.251000;212.288000;212.203000;212.276000;0 +20260323 063200;212.278000;212.316000;212.211000;212.244000;0 +20260323 063300;212.244000;212.280000;212.188000;212.249000;0 +20260323 063400;212.258000;212.308000;212.215000;212.250000;0 +20260323 063500;212.245000;212.326000;212.211000;212.296000;0 +20260323 063600;212.298000;212.401000;212.274000;212.370000;0 +20260323 063700;212.369000;212.453000;212.338000;212.425000;0 +20260323 063800;212.425000;212.454000;212.315000;212.323000;0 +20260323 063900;212.322000;212.399000;212.267000;212.267000;0 +20260323 064000;212.264000;212.315000;212.219000;212.233000;0 +20260323 064100;212.229000;212.301000;212.217000;212.293000;0 +20260323 064200;212.295000;212.295000;212.202000;212.241000;0 +20260323 064300;212.242000;212.327000;212.227000;212.311000;0 +20260323 064400;212.311000;212.342000;212.285000;212.301000;0 +20260323 064500;212.298000;212.343000;212.244000;212.324000;0 +20260323 064600;212.325000;212.375000;212.221000;212.234000;0 +20260323 064700;212.237000;212.271000;212.149000;212.188000;0 +20260323 064800;212.189000;212.311000;212.139000;212.300000;0 +20260323 064900;212.300000;212.309000;212.216000;212.259000;0 +20260323 065000;212.262000;212.263000;212.140000;212.258000;0 +20260323 065100;212.265000;212.270000;212.149000;212.254000;0 +20260323 065200;212.261000;212.291000;212.187000;212.204000;0 +20260323 065300;212.203000;212.316000;212.186000;212.302000;0 +20260323 065400;212.305000;212.383000;212.305000;212.321000;0 +20260323 065500;212.318000;212.330000;212.201000;212.216000;0 +20260323 065600;212.213000;212.254000;212.143000;212.168000;0 +20260323 065700;212.167000;212.229000;212.131000;212.170000;0 +20260323 065800;212.171000;212.252000;212.165000;212.251000;0 +20260323 065900;212.251000;212.281000;212.223000;212.266000;0 +20260323 070000;212.266000;212.297000;212.175000;212.204000;0 +20260323 070100;212.208000;212.278000;212.173000;212.270000;0 +20260323 070200;212.267000;212.282000;212.225000;212.246000;0 +20260323 070300;212.251000;212.377000;212.245000;212.338000;0 +20260323 070400;212.337000;212.452000;212.327000;212.396000;0 +20260323 070500;212.400000;212.407000;212.238000;212.246000;0 +20260323 070600;212.245000;212.316000;212.215000;212.249000;0 +20260323 070700;212.248000;212.279000;212.198000;212.256000;0 +20260323 070800;212.256000;212.408000;212.233000;212.390000;0 +20260323 070900;212.390000;212.446000;212.332000;212.428000;0 +20260323 071000;212.429000;212.484000;212.391000;212.472000;0 +20260323 071100;212.473000;212.474000;212.381000;212.404000;0 +20260323 071200;212.404000;212.430000;212.360000;212.373000;0 +20260323 071300;212.375000;212.409000;212.333000;212.337000;0 +20260323 071400;212.337000;212.372000;212.315000;212.326000;0 +20260323 071500;212.326000;212.417000;212.323000;212.401000;0 +20260323 071600;212.403000;212.490000;212.391000;212.453000;0 +20260323 071700;212.456000;212.494000;212.413000;212.453000;0 +20260323 071800;212.455000;212.462000;212.418000;212.428000;0 +20260323 071900;212.431000;212.488000;212.419000;212.466000;0 +20260323 072000;212.470000;212.481000;212.408000;212.457000;0 +20260323 072100;212.458000;212.461000;212.397000;212.437000;0 +20260323 072200;212.435000;212.446000;212.383000;212.405000;0 +20260323 072300;212.406000;212.458000;212.403000;212.427000;0 +20260323 072400;212.427000;212.459000;212.405000;212.459000;0 +20260323 072500;212.445000;212.512000;212.442000;212.482000;0 +20260323 072600;212.476000;212.487000;212.431000;212.436000;0 +20260323 072700;212.435000;212.469000;212.427000;212.434000;0 +20260323 072800;212.430000;212.450000;212.407000;212.418000;0 +20260323 072900;212.418000;212.440000;212.401000;212.425000;0 +20260323 073000;212.427000;212.446000;212.359000;212.394000;0 +20260323 073100;212.388000;212.390000;212.311000;212.324000;0 +20260323 073200;212.326000;212.346000;212.290000;212.331000;0 +20260323 073300;212.341000;212.382000;212.331000;212.351000;0 +20260323 073400;212.351000;212.386000;212.337000;212.372000;0 +20260323 073500;212.373000;212.437000;212.362000;212.427000;0 +20260323 073600;212.428000;212.469000;212.428000;212.439000;0 +20260323 073700;212.437000;212.497000;212.407000;212.410000;0 +20260323 073800;212.413000;212.478000;212.358000;212.474000;0 +20260323 073900;212.476000;212.533000;212.411000;212.442000;0 +20260323 074000;212.439000;212.471000;212.435000;212.470000;0 +20260323 074100;212.475000;212.601000;212.460000;212.551000;0 +20260323 074200;212.551000;212.695000;212.507000;212.671000;0 +20260323 074300;212.668000;212.726000;212.657000;212.712000;0 +20260323 074400;212.713000;212.824000;212.698000;212.802000;0 +20260323 074500;212.795000;212.806000;212.664000;212.694000;0 +20260323 074600;212.698000;212.736000;212.650000;212.719000;0 +20260323 074700;212.719000;212.769000;212.693000;212.750000;0 +20260323 074800;212.752000;212.785000;212.718000;212.781000;0 +20260323 074900;212.781000;212.795000;212.710000;212.728000;0 +20260323 075000;212.726000;212.765000;212.670000;212.702000;0 +20260323 075100;212.702000;212.765000;212.693000;212.750000;0 +20260323 075200;212.751000;212.769000;212.715000;212.760000;0 +20260323 075300;212.764000;212.788000;212.708000;212.785000;0 +20260323 075400;212.784000;212.785000;212.724000;212.759000;0 +20260323 075500;212.760000;212.780000;212.739000;212.743000;0 +20260323 075600;212.744000;212.846000;212.707000;212.763000;0 +20260323 075700;212.765000;212.846000;212.745000;212.823000;0 +20260323 075800;212.825000;212.857000;212.786000;212.846000;0 +20260323 075900;212.839000;212.881000;212.817000;212.865000;0 +20260323 080000;212.863000;212.907000;212.746000;212.761000;0 +20260323 080100;212.760000;212.767000;212.636000;212.649000;0 +20260323 080200;212.645000;212.720000;212.628000;212.681000;0 +20260323 080300;212.684000;212.758000;212.658000;212.745000;0 +20260323 080400;212.747000;212.794000;212.730000;212.732000;0 +20260323 080500;212.728000;212.763000;212.695000;212.722000;0 +20260323 080600;212.727000;212.761000;212.702000;212.732000;0 +20260323 080700;212.733000;212.779000;212.708000;212.760000;0 +20260323 080800;212.758000;212.817000;212.731000;212.758000;0 +20260323 080900;212.759000;212.789000;212.727000;212.749000;0 +20260323 081000;212.736000;212.747000;212.697000;212.704000;0 +20260323 081100;212.706000;212.716000;212.663000;212.709000;0 +20260323 081200;212.712000;212.746000;212.700000;212.711000;0 +20260323 081300;212.711000;212.711000;212.658000;212.686000;0 +20260323 081400;212.689000;212.736000;212.653000;212.659000;0 +20260323 081500;212.667000;212.675000;212.619000;212.647000;0 +20260323 081600;212.646000;212.665000;212.610000;212.638000;0 +20260323 081700;212.638000;212.642000;212.606000;212.614000;0 +20260323 081800;212.615000;212.657000;212.613000;212.634000;0 +20260323 081900;212.634000;212.636000;212.577000;212.582000;0 +20260323 082000;212.583000;212.583000;212.525000;212.542000;0 +20260323 082100;212.544000;212.572000;212.529000;212.555000;0 +20260323 082200;212.556000;212.587000;212.550000;212.565000;0 +20260323 082300;212.563000;212.588000;212.536000;212.538000;0 +20260323 082400;212.536000;212.578000;212.526000;212.560000;0 +20260323 082500;212.554000;212.579000;212.536000;212.556000;0 +20260323 082600;212.555000;212.589000;212.542000;212.557000;0 +20260323 082700;212.559000;212.585000;212.542000;212.567000;0 +20260323 082800;212.576000;212.587000;212.538000;212.571000;0 +20260323 082900;212.570000;212.572000;212.473000;212.494000;0 +20260323 083000;212.501000;212.519000;212.450000;212.493000;0 +20260323 083100;212.494000;212.509000;212.447000;212.468000;0 +20260323 083200;212.475000;212.495000;212.424000;212.438000;0 +20260323 083300;212.433000;212.505000;212.433000;212.473000;0 +20260323 083400;212.465000;212.544000;212.440000;212.499000;0 +20260323 083500;212.501000;212.525000;212.486000;212.523000;0 +20260323 083600;212.523000;212.584000;212.521000;212.534000;0 +20260323 083700;212.533000;212.603000;212.533000;212.545000;0 +20260323 083800;212.545000;212.550000;212.494000;212.517000;0 +20260323 083900;212.520000;212.569000;212.513000;212.549000;0 +20260323 084000;212.546000;212.574000;212.513000;212.526000;0 +20260323 084100;212.527000;212.600000;212.488000;212.584000;0 +20260323 084200;212.583000;212.687000;212.568000;212.659000;0 +20260323 084300;212.662000;212.662000;212.607000;212.639000;0 +20260323 084400;212.642000;212.642000;212.545000;212.555000;0 +20260323 084500;212.558000;212.627000;212.534000;212.614000;0 +20260323 084600;212.615000;212.648000;212.585000;212.612000;0 +20260323 084700;212.615000;212.639000;212.552000;212.587000;0 +20260323 084800;212.587000;212.636000;212.577000;212.602000;0 +20260323 084900;212.608000;212.661000;212.578000;212.646000;0 +20260323 085000;212.647000;212.688000;212.612000;212.662000;0 +20260323 085100;212.656000;212.679000;212.580000;212.628000;0 +20260323 085200;212.625000;212.670000;212.607000;212.670000;0 +20260323 085300;212.674000;212.692000;212.640000;212.664000;0 +20260323 085400;212.663000;212.663000;212.571000;212.586000;0 +20260323 085500;212.588000;212.589000;212.511000;212.519000;0 +20260323 085600;212.514000;212.538000;212.505000;212.525000;0 +20260323 085700;212.519000;212.578000;212.499000;212.564000;0 +20260323 085800;212.565000;212.575000;212.514000;212.567000;0 +20260323 085900;212.567000;212.576000;212.532000;212.560000;0 +20260323 090000;212.577000;212.577000;212.422000;212.448000;0 +20260323 090100;212.454000;212.559000;212.432000;212.543000;0 +20260323 090200;212.545000;212.589000;212.514000;212.588000;0 +20260323 090300;212.586000;212.603000;212.486000;212.515000;0 +20260323 090400;212.516000;212.573000;212.492000;212.555000;0 +20260323 090500;212.553000;212.553000;212.499000;212.506000;0 +20260323 090600;212.507000;212.532000;212.481000;212.488000;0 +20260323 090700;212.497000;212.597000;212.494000;212.586000;0 +20260323 090800;212.588000;212.600000;212.537000;212.548000;0 +20260323 090900;212.550000;212.628000;212.526000;212.592000;0 +20260323 091000;212.595000;212.669000;212.574000;212.577000;0 +20260323 091100;212.577000;212.633000;212.553000;212.605000;0 +20260323 091200;212.604000;212.635000;212.575000;212.587000;0 +20260323 091300;212.585000;212.596000;212.554000;212.592000;0 +20260323 091400;212.592000;212.667000;212.571000;212.630000;0 +20260323 091500;212.630000;212.652000;212.599000;212.636000;0 +20260323 091600;212.634000;212.641000;212.577000;212.588000;0 +20260323 091700;212.588000;212.670000;212.566000;212.655000;0 +20260323 091800;212.657000;212.698000;212.633000;212.675000;0 +20260323 091900;212.676000;212.757000;212.676000;212.722000;0 +20260323 092000;212.721000;212.790000;212.714000;212.763000;0 +20260323 092100;212.763000;212.877000;212.758000;212.832000;0 +20260323 092200;212.833000;212.863000;212.793000;212.858000;0 +20260323 092300;212.856000;212.926000;212.853000;212.915000;0 +20260323 092400;212.913000;212.982000;212.899000;212.982000;0 +20260323 092500;212.982000;213.028000;212.967000;213.007000;0 +20260323 092600;213.006000;213.042000;212.986000;213.035000;0 +20260323 092700;213.044000;213.096000;213.012000;213.067000;0 +20260323 092800;213.073000;213.100000;213.057000;213.091000;0 +20260323 092900;213.092000;213.151000;213.091000;213.125000;0 +20260323 093000;213.125000;213.140000;213.089000;213.108000;0 +20260323 093100;213.109000;213.233000;213.109000;213.209000;0 +20260323 093200;213.210000;213.249000;213.166000;213.220000;0 +20260323 093300;213.225000;213.257000;213.221000;213.247000;0 +20260323 093400;213.247000;213.247000;213.190000;213.235000;0 +20260323 093500;213.237000;213.301000;213.219000;213.291000;0 +20260323 093600;213.289000;213.294000;213.252000;213.265000;0 +20260323 093700;213.267000;213.298000;213.222000;213.227000;0 +20260323 093800;213.235000;213.291000;213.225000;213.270000;0 +20260323 093900;213.267000;213.283000;213.244000;213.247000;0 +20260323 094000;213.250000;213.251000;213.162000;213.162000;0 +20260323 094100;213.165000;213.235000;213.165000;213.235000;0 +20260323 094200;213.233000;213.252000;213.205000;213.229000;0 +20260323 094300;213.233000;213.262000;213.169000;213.177000;0 +20260323 094400;213.179000;213.195000;213.132000;213.182000;0 +20260323 094500;213.181000;213.185000;213.111000;213.117000;0 +20260323 094600;213.116000;213.160000;213.061000;213.141000;0 +20260323 094700;213.141000;213.178000;213.126000;213.135000;0 +20260323 094800;213.136000;213.151000;213.091000;213.101000;0 +20260323 094900;213.101000;213.110000;213.045000;213.094000;0 +20260323 095000;213.093000;213.095000;213.041000;213.084000;0 +20260323 095100;213.080000;213.091000;212.982000;212.999000;0 +20260323 095200;213.001000;213.030000;212.999000;213.016000;0 +20260323 095300;213.018000;213.110000;213.016000;213.093000;0 +20260323 095400;213.090000;213.131000;213.038000;213.046000;0 +20260323 095500;213.048000;213.104000;213.036000;213.082000;0 +20260323 095600;213.082000;213.091000;213.027000;213.077000;0 +20260323 095700;213.079000;213.082000;213.024000;213.058000;0 +20260323 095800;213.057000;213.057000;212.985000;212.997000;0 +20260323 095900;213.001000;213.024000;212.971000;212.973000;0 +20260323 100000;212.971000;213.002000;212.938000;212.960000;0 +20260323 100100;212.962000;213.001000;212.953000;212.997000;0 +20260323 100200;212.999000;213.069000;212.985000;213.065000;0 +20260323 100300;213.064000;213.080000;213.031000;213.066000;0 +20260323 100400;213.069000;213.092000;213.038000;213.058000;0 +20260323 100500;213.059000;213.076000;213.022000;213.034000;0 +20260323 100600;213.034000;213.040000;212.929000;212.964000;0 +20260323 100700;212.962000;212.990000;212.937000;212.947000;0 +20260323 100800;212.949000;213.010000;212.944000;212.962000;0 +20260323 100900;212.961000;213.003000;212.944000;212.959000;0 +20260323 101000;212.958000;212.974000;212.924000;212.924000;0 +20260323 101100;212.928000;212.953000;212.885000;212.890000;0 +20260323 101200;212.882000;212.896000;212.832000;212.852000;0 +20260323 101300;212.847000;212.893000;212.847000;212.868000;0 +20260323 101400;212.869000;212.890000;212.837000;212.867000;0 +20260323 101500;212.869000;212.931000;212.859000;212.905000;0 +20260323 101600;212.906000;212.907000;212.823000;212.842000;0 +20260323 101700;212.840000;212.847000;212.791000;212.809000;0 +20260323 101800;212.808000;212.839000;212.808000;212.836000;0 +20260323 101900;212.834000;212.854000;212.821000;212.854000;0 +20260323 102000;212.854000;212.854000;212.808000;212.811000;0 +20260323 102100;212.813000;212.817000;212.763000;212.790000;0 +20260323 102200;212.797000;212.827000;212.775000;212.810000;0 +20260323 102300;212.812000;212.853000;212.806000;212.844000;0 +20260323 102400;212.845000;212.855000;212.787000;212.840000;0 +20260323 102500;212.838000;212.856000;212.811000;212.838000;0 +20260323 102600;212.839000;212.847000;212.807000;212.837000;0 +20260323 102700;212.835000;212.845000;212.808000;212.837000;0 +20260323 102800;212.838000;212.848000;212.780000;212.786000;0 +20260323 102900;212.789000;212.845000;212.762000;212.838000;0 +20260323 103000;212.839000;212.854000;212.806000;212.841000;0 +20260323 103100;212.844000;212.881000;212.838000;212.852000;0 +20260323 103200;212.852000;212.855000;212.802000;212.818000;0 +20260323 103300;212.823000;212.912000;212.819000;212.874000;0 +20260323 103400;212.872000;212.896000;212.827000;212.836000;0 +20260323 103500;212.835000;212.852000;212.810000;212.821000;0 +20260323 103600;212.825000;212.846000;212.796000;212.798000;0 +20260323 103700;212.797000;212.842000;212.796000;212.813000;0 +20260323 103800;212.809000;212.852000;212.801000;212.820000;0 +20260323 103900;212.824000;212.847000;212.787000;212.787000;0 +20260323 104000;212.789000;212.826000;212.779000;212.802000;0 +20260323 104100;212.810000;212.837000;212.773000;212.773000;0 +20260323 104200;212.773000;212.794000;212.739000;212.744000;0 +20260323 104300;212.744000;212.790000;212.733000;212.744000;0 +20260323 104400;212.746000;212.778000;212.735000;212.764000;0 +20260323 104500;212.763000;212.778000;212.708000;212.715000;0 +20260323 104600;212.714000;212.718000;212.638000;212.649000;0 +20260323 104700;212.649000;212.696000;212.624000;212.688000;0 +20260323 104800;212.689000;212.737000;212.683000;212.726000;0 +20260323 104900;212.725000;212.787000;212.725000;212.756000;0 +20260323 105000;212.753000;212.759000;212.704000;212.717000;0 +20260323 105100;212.717000;212.737000;212.644000;212.655000;0 +20260323 105200;212.657000;212.698000;212.568000;212.634000;0 +20260323 105300;212.633000;212.660000;212.568000;212.582000;0 +20260323 105400;212.585000;212.598000;212.527000;212.542000;0 +20260323 105500;212.545000;212.587000;212.481000;212.523000;0 +20260323 105600;212.521000;212.556000;212.424000;212.444000;0 +20260323 105700;212.442000;212.497000;212.438000;212.453000;0 +20260323 105800;212.451000;212.490000;212.447000;212.456000;0 +20260323 105900;212.457000;212.471000;212.406000;212.411000;0 +20260323 110000;212.411000;212.452000;212.408000;212.434000;0 +20260323 110100;212.435000;212.521000;212.431000;212.501000;0 +20260323 110200;212.501000;212.504000;212.426000;212.451000;0 +20260323 110300;212.451000;212.471000;212.370000;212.413000;0 +20260323 110400;212.415000;212.451000;212.402000;212.450000;0 +20260323 110500;212.454000;212.497000;212.425000;212.467000;0 +20260323 110600;212.468000;212.488000;212.446000;212.463000;0 +20260323 110700;212.463000;212.502000;212.462000;212.500000;0 +20260323 110800;212.500000;212.550000;212.482000;212.497000;0 +20260323 110900;212.494000;212.496000;212.441000;212.441000;0 +20260323 111000;212.441000;212.456000;212.399000;212.406000;0 +20260323 111100;212.402000;212.423000;212.372000;212.374000;0 +20260323 111200;212.375000;212.425000;212.372000;212.408000;0 +20260323 111300;212.409000;212.430000;212.393000;212.401000;0 +20260323 111400;212.401000;212.482000;212.390000;212.472000;0 +20260323 111500;212.472000;212.485000;212.442000;212.451000;0 +20260323 111600;212.449000;212.457000;212.406000;212.450000;0 +20260323 111700;212.446000;212.453000;212.398000;212.434000;0 +20260323 111800;212.432000;212.459000;212.410000;212.456000;0 +20260323 111900;212.457000;212.468000;212.442000;212.455000;0 +20260323 112000;212.453000;212.476000;212.422000;212.423000;0 +20260323 112100;212.423000;212.465000;212.412000;212.438000;0 +20260323 112200;212.440000;212.477000;212.411000;212.440000;0 +20260323 112300;212.440000;212.503000;212.435000;212.503000;0 +20260323 112400;212.503000;212.555000;212.496000;212.555000;0 +20260323 112500;212.551000;212.589000;212.508000;212.584000;0 +20260323 112600;212.586000;212.624000;212.557000;212.575000;0 +20260323 112700;212.581000;212.609000;212.570000;212.607000;0 +20260323 112800;212.608000;212.633000;212.593000;212.630000;0 +20260323 112900;212.631000;212.638000;212.608000;212.635000;0 +20260323 113000;212.638000;212.651000;212.578000;212.587000;0 +20260323 113100;212.587000;212.627000;212.579000;212.627000;0 +20260323 113200;212.623000;212.652000;212.594000;212.598000;0 +20260323 113300;212.598000;212.621000;212.586000;212.606000;0 +20260323 113400;212.608000;212.619000;212.574000;212.616000;0 +20260323 113500;212.620000;212.648000;212.611000;212.641000;0 +20260323 113600;212.642000;212.680000;212.623000;212.680000;0 +20260323 113700;212.681000;212.710000;212.646000;212.659000;0 +20260323 113800;212.657000;212.672000;212.635000;212.660000;0 +20260323 113900;212.659000;212.679000;212.650000;212.670000;0 +20260323 114000;212.672000;212.691000;212.655000;212.680000;0 +20260323 114100;212.678000;212.682000;212.645000;212.662000;0 +20260323 114200;212.663000;212.663000;212.577000;212.608000;0 +20260323 114300;212.607000;212.631000;212.589000;212.599000;0 +20260323 114400;212.602000;212.628000;212.564000;212.625000;0 +20260323 114500;212.622000;212.675000;212.604000;212.667000;0 +20260323 114600;212.667000;212.669000;212.615000;212.657000;0 +20260323 114700;212.658000;212.696000;212.650000;212.682000;0 +20260323 114800;212.685000;212.704000;212.672000;212.699000;0 +20260323 114900;212.699000;212.730000;212.687000;212.724000;0 +20260323 115000;212.724000;212.741000;212.715000;212.729000;0 +20260323 115100;212.724000;212.746000;212.692000;212.709000;0 +20260323 115200;212.709000;212.739000;212.704000;212.732000;0 +20260323 115300;212.732000;212.777000;212.729000;212.772000;0 +20260323 115400;212.769000;212.781000;212.740000;212.748000;0 +20260323 115500;212.752000;212.767000;212.725000;212.740000;0 +20260323 115600;212.740000;212.742000;212.661000;212.668000;0 +20260323 115700;212.667000;212.677000;212.557000;212.614000;0 +20260323 115800;212.619000;212.637000;212.612000;212.623000;0 +20260323 115900;212.626000;212.658000;212.616000;212.647000;0 +20260323 120000;212.649000;212.700000;212.649000;212.678000;0 +20260323 120100;212.677000;212.700000;212.652000;212.674000;0 +20260323 120200;212.674000;212.683000;212.601000;212.621000;0 +20260323 120300;212.623000;212.628000;212.594000;212.617000;0 +20260323 120400;212.616000;212.656000;212.612000;212.634000;0 +20260323 120500;212.638000;212.670000;212.615000;212.641000;0 +20260323 120600;212.643000;212.665000;212.624000;212.662000;0 +20260323 120700;212.661000;212.683000;212.613000;212.623000;0 +20260323 120800;212.626000;212.671000;212.600000;212.666000;0 +20260323 120900;212.663000;212.695000;212.658000;212.690000;0 +20260323 121000;212.687000;212.687000;212.647000;212.663000;0 +20260323 121100;212.658000;212.692000;212.654000;212.689000;0 +20260323 121200;212.686000;212.705000;212.676000;212.684000;0 +20260323 121300;212.683000;212.686000;212.664000;212.678000;0 +20260323 121400;212.679000;212.683000;212.641000;212.642000;0 +20260323 121500;212.649000;212.669000;212.640000;212.665000;0 +20260323 121600;212.659000;212.662000;212.600000;212.623000;0 +20260323 121700;212.619000;212.655000;212.606000;212.622000;0 +20260323 121800;212.629000;212.638000;212.613000;212.622000;0 +20260323 121900;212.626000;212.634000;212.602000;212.633000;0 +20260323 122000;212.634000;212.635000;212.590000;212.600000;0 +20260323 122100;212.603000;212.613000;212.589000;212.602000;0 +20260323 122200;212.604000;212.627000;212.585000;212.608000;0 +20260323 122300;212.608000;212.622000;212.600000;212.617000;0 +20260323 122400;212.615000;212.636000;212.593000;212.597000;0 +20260323 122500;212.599000;212.641000;212.590000;212.615000;0 +20260323 122600;212.614000;212.644000;212.604000;212.624000;0 +20260323 122700;212.624000;212.636000;212.601000;212.611000;0 +20260323 122800;212.611000;212.616000;212.593000;212.610000;0 +20260323 122900;212.612000;212.625000;212.592000;212.592000;0 +20260323 123000;212.588000;212.592000;212.560000;212.582000;0 +20260323 123100;212.583000;212.600000;212.577000;212.592000;0 +20260323 123200;212.591000;212.591000;212.554000;212.573000;0 +20260323 123300;212.571000;212.627000;212.559000;212.621000;0 +20260323 123400;212.622000;212.666000;212.615000;212.663000;0 +20260323 123500;212.665000;212.729000;212.663000;212.718000;0 +20260323 123600;212.718000;212.730000;212.702000;212.727000;0 +20260323 123700;212.727000;212.759000;212.721000;212.740000;0 +20260323 123800;212.730000;212.778000;212.729000;212.753000;0 +20260323 123900;212.754000;212.757000;212.724000;212.731000;0 +20260323 124000;212.722000;212.725000;212.694000;212.714000;0 +20260323 124100;212.712000;212.723000;212.686000;212.716000;0 +20260323 124200;212.716000;212.733000;212.707000;212.711000;0 +20260323 124300;212.718000;212.718000;212.669000;212.684000;0 +20260323 124400;212.685000;212.687000;212.654000;212.658000;0 +20260323 124500;212.659000;212.666000;212.636000;212.642000;0 +20260323 124600;212.644000;212.653000;212.600000;212.608000;0 +20260323 124700;212.609000;212.670000;212.587000;212.662000;0 +20260323 124800;212.661000;212.674000;212.622000;212.664000;0 +20260323 124900;212.663000;212.686000;212.646000;212.684000;0 +20260323 125000;212.683000;212.731000;212.676000;212.715000;0 +20260323 125100;212.714000;212.717000;212.657000;212.677000;0 +20260323 125200;212.677000;212.693000;212.659000;212.674000;0 +20260323 125300;212.676000;212.691000;212.661000;212.686000;0 +20260323 125400;212.687000;212.712000;212.670000;212.696000;0 +20260323 125500;212.695000;212.702000;212.660000;212.682000;0 +20260323 125600;212.683000;212.710000;212.680000;212.702000;0 +20260323 125700;212.698000;212.703000;212.665000;212.701000;0 +20260323 125800;212.700000;212.706000;212.679000;212.694000;0 +20260323 125900;212.694000;212.694000;212.671000;212.690000;0 +20260323 130000;212.691000;212.707000;212.682000;212.707000;0 +20260323 130100;212.707000;212.722000;212.663000;212.676000;0 +20260323 130200;212.674000;212.698000;212.666000;212.698000;0 +20260323 130300;212.696000;212.700000;212.675000;212.687000;0 +20260323 130400;212.690000;212.705000;212.685000;212.696000;0 +20260323 130500;212.698000;212.698000;212.664000;212.675000;0 +20260323 130600;212.675000;212.678000;212.614000;212.628000;0 +20260323 130700;212.625000;212.639000;212.566000;212.580000;0 +20260323 130800;212.579000;212.671000;212.575000;212.653000;0 +20260323 130900;212.654000;212.659000;212.627000;212.648000;0 +20260323 131000;212.646000;212.658000;212.619000;212.619000;0 +20260323 131100;212.618000;212.645000;212.612000;212.643000;0 +20260323 131200;212.645000;212.645000;212.615000;212.634000;0 +20260323 131300;212.634000;212.679000;212.625000;212.651000;0 +20260323 131400;212.650000;212.659000;212.604000;212.609000;0 +20260323 131500;212.607000;212.614000;212.584000;212.600000;0 +20260323 131600;212.598000;212.607000;212.548000;212.548000;0 +20260323 131700;212.551000;212.575000;212.545000;212.550000;0 +20260323 131800;212.551000;212.573000;212.542000;212.560000;0 +20260323 131900;212.561000;212.563000;212.534000;212.542000;0 +20260323 132000;212.539000;212.548000;212.521000;212.527000;0 +20260323 132100;212.529000;212.532000;212.494000;212.511000;0 +20260323 132200;212.508000;212.519000;212.491000;212.511000;0 +20260323 132300;212.508000;212.530000;212.500000;212.505000;0 +20260323 132400;212.506000;212.528000;212.501000;212.526000;0 +20260323 132500;212.525000;212.559000;212.514000;212.538000;0 +20260323 132600;212.537000;212.558000;212.530000;212.550000;0 +20260323 132700;212.555000;212.555000;212.524000;212.530000;0 +20260323 132800;212.530000;212.533000;212.508000;212.524000;0 +20260323 132900;212.523000;212.536000;212.515000;212.517000;0 +20260323 133000;212.519000;212.599000;212.519000;212.571000;0 +20260323 133100;212.573000;212.600000;212.570000;212.597000;0 +20260323 133200;212.596000;212.596000;212.574000;212.591000;0 +20260323 133300;212.591000;212.659000;212.581000;212.633000;0 +20260323 133400;212.633000;212.661000;212.595000;212.621000;0 +20260323 133500;212.621000;212.677000;212.621000;212.649000;0 +20260323 133600;212.648000;212.666000;212.630000;212.636000;0 +20260323 133700;212.639000;212.685000;212.638000;212.651000;0 +20260323 133800;212.652000;212.673000;212.647000;212.669000;0 +20260323 133900;212.670000;212.670000;212.588000;212.590000;0 +20260323 134000;212.591000;212.602000;212.564000;212.570000;0 +20260323 134100;212.569000;212.616000;212.565000;212.576000;0 +20260323 134200;212.578000;212.619000;212.566000;212.607000;0 +20260323 134300;212.608000;212.628000;212.601000;212.607000;0 +20260323 134400;212.605000;212.618000;212.572000;212.580000;0 +20260323 134500;212.577000;212.616000;212.563000;212.606000;0 +20260323 134600;212.606000;212.647000;212.589000;212.646000;0 +20260323 134700;212.647000;212.662000;212.632000;212.641000;0 +20260323 134800;212.642000;212.667000;212.635000;212.656000;0 +20260323 134900;212.653000;212.690000;212.645000;212.685000;0 +20260323 135000;212.686000;212.698000;212.649000;212.651000;0 +20260323 135100;212.654000;212.674000;212.648000;212.674000;0 +20260323 135200;212.672000;212.705000;212.655000;212.705000;0 +20260323 135300;212.704000;212.734000;212.693000;212.698000;0 +20260323 135400;212.697000;212.716000;212.683000;212.712000;0 +20260323 135500;212.710000;212.739000;212.701000;212.714000;0 +20260323 135600;212.718000;212.726000;212.696000;212.706000;0 +20260323 135700;212.706000;212.719000;212.686000;212.714000;0 +20260323 135800;212.714000;212.725000;212.678000;212.689000;0 +20260323 135900;212.690000;212.691000;212.650000;212.672000;0 +20260323 140000;212.668000;212.681000;212.648000;212.666000;0 +20260323 140100;212.667000;212.678000;212.647000;212.651000;0 +20260323 140200;212.651000;212.698000;212.651000;212.692000;0 +20260323 140300;212.691000;212.727000;212.691000;212.723000;0 +20260323 140400;212.723000;212.734000;212.693000;212.705000;0 +20260323 140500;212.702000;212.715000;212.695000;212.704000;0 +20260323 140600;212.704000;212.734000;212.704000;212.716000;0 +20260323 140700;212.722000;212.738000;212.712000;212.716000;0 +20260323 140800;212.716000;212.728000;212.699000;212.717000;0 +20260323 140900;212.717000;212.731000;212.701000;212.716000;0 +20260323 141000;212.718000;212.731000;212.711000;212.727000;0 +20260323 141100;212.730000;212.737000;212.704000;212.720000;0 +20260323 141200;212.712000;212.735000;212.697000;212.713000;0 +20260323 141300;212.713000;212.719000;212.686000;212.689000;0 +20260323 141400;212.689000;212.700000;212.668000;212.692000;0 +20260323 141500;212.692000;212.694000;212.662000;212.663000;0 +20260323 141600;212.665000;212.674000;212.641000;212.671000;0 +20260323 141700;212.671000;212.691000;212.662000;212.679000;0 +20260323 141800;212.680000;212.694000;212.674000;212.682000;0 +20260323 141900;212.684000;212.684000;212.663000;212.670000;0 +20260323 142000;212.668000;212.686000;212.656000;212.676000;0 +20260323 142100;212.677000;212.696000;212.670000;212.696000;0 +20260323 142200;212.699000;212.734000;212.699000;212.733000;0 +20260323 142300;212.730000;212.742000;212.704000;212.709000;0 +20260323 142400;212.706000;212.718000;212.694000;212.710000;0 +20260323 142500;212.708000;212.718000;212.665000;212.665000;0 +20260323 142600;212.665000;212.674000;212.623000;212.644000;0 +20260323 142700;212.645000;212.684000;212.645000;212.679000;0 +20260323 142800;212.681000;212.710000;212.674000;212.701000;0 +20260323 142900;212.704000;212.710000;212.684000;212.691000;0 +20260323 143000;212.686000;212.752000;212.686000;212.743000;0 +20260323 143100;212.744000;212.754000;212.714000;212.718000;0 +20260323 143200;212.713000;212.745000;212.712000;212.740000;0 +20260323 143300;212.742000;212.775000;212.741000;212.765000;0 +20260323 143400;212.765000;212.766000;212.729000;212.732000;0 +20260323 143500;212.734000;212.746000;212.711000;212.713000;0 +20260323 143600;212.711000;212.753000;212.709000;212.743000;0 +20260323 143700;212.745000;212.767000;212.735000;212.767000;0 +20260323 143800;212.767000;212.781000;212.758000;212.770000;0 +20260323 143900;212.770000;212.770000;212.757000;212.769000;0 +20260323 144000;212.767000;212.779000;212.755000;212.758000;0 +20260323 144100;212.757000;212.769000;212.734000;212.746000;0 +20260323 144200;212.746000;212.758000;212.729000;212.736000;0 +20260323 144300;212.736000;212.759000;212.729000;212.759000;0 +20260323 144400;212.758000;212.763000;212.735000;212.763000;0 +20260323 144500;212.763000;212.764000;212.745000;212.754000;0 +20260323 144600;212.755000;212.772000;212.751000;212.772000;0 +20260323 144700;212.771000;212.771000;212.744000;212.768000;0 +20260323 144800;212.769000;212.789000;212.758000;212.788000;0 +20260323 144900;212.788000;212.795000;212.774000;212.781000;0 +20260323 145000;212.782000;212.787000;212.764000;212.785000;0 +20260323 145100;212.791000;212.791000;212.761000;212.766000;0 +20260323 145200;212.767000;212.774000;212.754000;212.759000;0 +20260323 145300;212.758000;212.761000;212.721000;212.729000;0 +20260323 145400;212.727000;212.739000;212.720000;212.725000;0 +20260323 145500;212.727000;212.742000;212.723000;212.730000;0 +20260323 145600;212.733000;212.749000;212.719000;212.725000;0 +20260323 145700;212.726000;212.738000;212.699000;212.727000;0 +20260323 145800;212.728000;212.737000;212.716000;212.730000;0 +20260323 145900;212.734000;212.785000;212.731000;212.767000;0 +20260323 150000;212.766000;212.783000;212.748000;212.749000;0 +20260323 150100;212.752000;212.788000;212.737000;212.760000;0 +20260323 150200;212.759000;212.783000;212.741000;212.780000;0 +20260323 150300;212.778000;212.779000;212.744000;212.751000;0 +20260323 150400;212.753000;212.760000;212.744000;212.750000;0 +20260323 150500;212.750000;212.772000;212.748000;212.772000;0 +20260323 150600;212.772000;212.782000;212.760000;212.778000;0 +20260323 150700;212.778000;212.783000;212.774000;212.779000;0 +20260323 150800;212.776000;212.793000;212.776000;212.793000;0 +20260323 150900;212.794000;212.808000;212.784000;212.803000;0 +20260323 151000;212.806000;212.827000;212.803000;212.803000;0 +20260323 151100;212.805000;212.812000;212.768000;212.772000;0 +20260323 151200;212.773000;212.780000;212.767000;212.779000;0 +20260323 151300;212.781000;212.782000;212.769000;212.771000;0 +20260323 151400;212.773000;212.797000;212.771000;212.793000;0 +20260323 151500;212.793000;212.793000;212.772000;212.788000;0 +20260323 151600;212.782000;212.782000;212.761000;212.763000;0 +20260323 151700;212.766000;212.779000;212.762000;212.774000;0 +20260323 151800;212.773000;212.773000;212.759000;212.765000;0 +20260323 151900;212.765000;212.770000;212.759000;212.761000;0 +20260323 152000;212.763000;212.773000;212.763000;212.766000;0 +20260323 152100;212.767000;212.770000;212.766000;212.770000;0 +20260323 152200;212.775000;212.776000;212.757000;212.760000;0 +20260323 152300;212.759000;212.769000;212.759000;212.764000;0 +20260323 152400;212.760000;212.766000;212.747000;212.761000;0 +20260323 152500;212.762000;212.777000;212.761000;212.767000;0 +20260323 152600;212.779000;212.788000;212.774000;212.787000;0 +20260323 152700;212.784000;212.785000;212.766000;212.768000;0 +20260323 152800;212.768000;212.771000;212.754000;212.758000;0 +20260323 152900;212.760000;212.760000;212.749000;212.758000;0 +20260323 153000;212.761000;212.767000;212.731000;212.731000;0 +20260323 153100;212.730000;212.730000;212.704000;212.715000;0 +20260323 153200;212.714000;212.738000;212.714000;212.731000;0 +20260323 153300;212.733000;212.781000;212.733000;212.781000;0 +20260323 153400;212.779000;212.783000;212.760000;212.778000;0 +20260323 153500;212.779000;212.785000;212.748000;212.753000;0 +20260323 153600;212.754000;212.763000;212.750000;212.763000;0 +20260323 153700;212.769000;212.804000;212.767000;212.803000;0 +20260323 153800;212.800000;212.804000;212.797000;212.798000;0 +20260323 153900;212.806000;212.811000;212.797000;212.797000;0 +20260323 154000;212.797000;212.804000;212.796000;212.796000;0 +20260323 154100;212.796000;212.808000;212.789000;212.806000;0 +20260323 154200;212.804000;212.818000;212.804000;212.807000;0 +20260323 154300;212.806000;212.808000;212.799000;212.801000;0 +20260323 154400;212.801000;212.831000;212.797000;212.828000;0 +20260323 154500;212.832000;212.834000;212.806000;212.806000;0 +20260323 154600;212.790000;212.804000;212.788000;212.801000;0 +20260323 154700;212.801000;212.801000;212.791000;212.791000;0 +20260323 154800;212.791000;212.794000;212.759000;212.759000;0 +20260323 154900;212.759000;212.778000;212.747000;212.759000;0 +20260323 155000;212.756000;212.763000;212.732000;212.745000;0 +20260323 155100;212.743000;212.758000;212.724000;212.729000;0 +20260323 155200;212.727000;212.729000;212.706000;212.706000;0 +20260323 155300;212.708000;212.713000;212.673000;212.703000;0 +20260323 155400;212.700000;212.717000;212.698000;212.712000;0 +20260323 155500;212.712000;212.743000;212.703000;212.703000;0 +20260323 155600;212.695000;212.713000;212.680000;212.691000;0 +20260323 155700;212.689000;212.695000;212.674000;212.679000;0 +20260323 155800;212.677000;212.700000;212.641000;212.658000;0 +20260323 155900;212.659000;212.744000;212.659000;212.689000;0 +20260323 160400;212.607000;212.649000;212.607000;212.649000;0 +20260323 160500;212.740000;212.740000;212.630000;212.632000;0 +20260323 160600;212.630000;212.656000;212.630000;212.650000;0 +20260323 160700;212.653000;212.675000;212.648000;212.675000;0 +20260323 160800;212.681000;212.690000;212.628000;212.628000;0 +20260323 160900;212.630000;212.630000;212.594000;212.598000;0 +20260323 161000;212.586000;212.589000;212.584000;212.589000;0 +20260323 161100;212.588000;212.599000;212.587000;212.595000;0 +20260323 161200;212.594000;212.600000;212.586000;212.590000;0 +20260323 161300;212.590000;212.603000;212.582000;212.594000;0 +20260323 161400;212.616000;212.617000;212.599000;212.615000;0 +20260323 161500;212.614000;212.672000;212.614000;212.672000;0 +20260323 161600;212.655000;212.655000;212.616000;212.642000;0 +20260323 161700;212.641000;212.654000;212.617000;212.649000;0 +20260323 161800;212.648000;212.695000;212.585000;212.679000;0 +20260323 161900;212.687000;212.707000;212.613000;212.642000;0 +20260323 162000;212.612000;212.665000;212.612000;212.623000;0 +20260323 162100;212.660000;212.786000;212.660000;212.778000;0 +20260323 162200;212.779000;212.800000;212.732000;212.773000;0 +20260323 162300;212.775000;212.780000;212.762000;212.769000;0 +20260323 162400;212.769000;212.769000;212.762000;212.762000;0 +20260323 162500;212.762000;212.778000;212.753000;212.762000;0 +20260323 162600;212.762000;212.763000;212.750000;212.752000;0 +20260323 162700;212.737000;212.750000;212.737000;212.750000;0 +20260323 162800;212.752000;212.752000;212.744000;212.744000;0 +20260323 162900;212.744000;212.745000;212.744000;212.744000;0 +20260323 163000;212.753000;212.788000;212.747000;212.751000;0 +20260323 163100;212.751000;212.765000;212.748000;212.762000;0 +20260323 163200;212.756000;212.764000;212.748000;212.764000;0 +20260323 163300;212.764000;212.765000;212.728000;212.736000;0 +20260323 163400;212.737000;212.737000;212.728000;212.729000;0 +20260323 163500;212.730000;212.734000;212.728000;212.733000;0 +20260323 163600;212.734000;212.735000;212.710000;212.713000;0 +20260323 163700;212.713000;212.713000;212.710000;212.711000;0 +20260323 163800;212.711000;212.741000;212.513000;212.605000;0 +20260323 163900;212.601000;212.642000;212.588000;212.623000;0 +20260323 164000;212.623000;212.643000;212.612000;212.635000;0 +20260323 164100;212.634000;212.646000;212.632000;212.636000;0 +20260323 164200;212.636000;212.642000;212.609000;212.630000;0 +20260323 164300;212.632000;212.674000;212.611000;212.660000;0 +20260323 164400;212.663000;212.696000;212.656000;212.662000;0 +20260323 164500;212.662000;212.693000;212.660000;212.664000;0 +20260323 164600;212.664000;212.696000;212.653000;212.675000;0 +20260323 164700;212.678000;212.683000;212.666000;212.674000;0 +20260323 164800;212.677000;212.685000;212.671000;212.678000;0 +20260323 164900;212.679000;212.691000;212.666000;212.688000;0 +20260323 165000;212.688000;212.693000;212.680000;212.690000;0 +20260323 165100;212.689000;212.692000;212.684000;212.690000;0 +20260323 165200;212.692000;212.748000;212.687000;212.708000;0 +20260323 165300;212.707000;212.719000;212.704000;212.717000;0 +20260323 165400;212.718000;212.720000;212.712000;212.720000;0 +20260323 165500;212.717000;212.723000;212.712000;212.723000;0 +20260323 165600;212.718000;212.722000;212.707000;212.720000;0 +20260323 165700;212.720000;212.784000;212.671000;212.771000;0 +20260323 165800;212.768000;212.781000;212.713000;212.714000;0 +20260323 165900;212.718000;212.742000;212.714000;212.742000;0 +20260323 170000;212.704000;212.704000;212.632000;212.694000;0 +20260323 170100;212.699000;212.713000;212.680000;212.682000;0 +20260323 170200;212.682000;212.686000;212.677000;212.683000;0 +20260323 170300;212.686000;212.703000;212.659000;212.699000;0 +20260323 170400;212.700000;212.700000;212.668000;212.680000;0 +20260323 170500;212.680000;212.680000;212.616000;212.618000;0 +20260323 170600;212.619000;212.630000;212.609000;212.613000;0 +20260323 170700;212.613000;212.630000;212.606000;212.623000;0 +20260323 170800;212.645000;212.660000;212.633000;212.660000;0 +20260323 170900;212.661000;212.662000;212.624000;212.644000;0 +20260323 171000;212.650000;212.664000;212.645000;212.651000;0 +20260323 171100;212.653000;212.653000;212.623000;212.649000;0 +20260323 171200;212.650000;212.667000;212.648000;212.653000;0 +20260323 171300;212.656000;212.665000;212.654000;212.665000;0 +20260323 171400;212.666000;212.689000;212.666000;212.686000;0 +20260323 171500;212.687000;212.697000;212.673000;212.697000;0 +20260323 171600;212.696000;212.698000;212.670000;212.673000;0 +20260323 171700;212.674000;212.688000;212.671000;212.674000;0 +20260323 171800;212.674000;212.675000;212.649000;212.663000;0 +20260323 171900;212.661000;212.677000;212.659000;212.673000;0 +20260323 172000;212.673000;212.687000;212.670000;212.682000;0 +20260323 172100;212.683000;212.683000;212.668000;212.673000;0 +20260323 172200;212.674000;212.674000;212.660000;212.669000;0 +20260323 172300;212.670000;212.671000;212.643000;212.663000;0 +20260323 172400;212.662000;212.662000;212.638000;212.661000;0 +20260323 172500;212.660000;212.666000;212.653000;212.661000;0 +20260323 172600;212.660000;212.668000;212.657000;212.658000;0 +20260323 172700;212.657000;212.679000;212.655000;212.671000;0 +20260323 172800;212.670000;212.670000;212.662000;212.667000;0 +20260323 172900;212.663000;212.699000;212.663000;212.698000;0 +20260323 173000;212.698000;212.699000;212.661000;212.679000;0 +20260323 173100;212.679000;212.684000;212.669000;212.670000;0 +20260323 173200;212.670000;212.677000;212.669000;212.673000;0 +20260323 173300;212.673000;212.685000;212.670000;212.683000;0 +20260323 173400;212.683000;212.712000;212.681000;212.700000;0 +20260323 173500;212.700000;212.714000;212.689000;212.714000;0 +20260323 173600;212.714000;212.716000;212.689000;212.704000;0 +20260323 173700;212.702000;212.714000;212.699000;212.706000;0 +20260323 173800;212.703000;212.720000;212.701000;212.719000;0 +20260323 173900;212.720000;212.720000;212.701000;212.709000;0 +20260323 174000;212.708000;212.725000;212.705000;212.719000;0 +20260323 174100;212.717000;212.718000;212.705000;212.706000;0 +20260323 174200;212.709000;212.710000;212.699000;212.701000;0 +20260323 174300;212.699000;212.722000;212.699000;212.709000;0 +20260323 174400;212.710000;212.721000;212.699000;212.700000;0 +20260323 174500;212.702000;212.712000;212.700000;212.703000;0 +20260323 174600;212.704000;212.727000;212.704000;212.719000;0 +20260323 174700;212.717000;212.725000;212.714000;212.720000;0 +20260323 174800;212.721000;212.731000;212.693000;212.704000;0 +20260323 174900;212.704000;212.715000;212.696000;212.697000;0 +20260323 175000;212.695000;212.700000;212.679000;212.681000;0 +20260323 175100;212.681000;212.697000;212.680000;212.694000;0 +20260323 175200;212.693000;212.725000;212.693000;212.701000;0 +20260323 175300;212.701000;212.713000;212.687000;212.708000;0 +20260323 175400;212.706000;212.735000;212.704000;212.713000;0 +20260323 175500;212.713000;212.730000;212.703000;212.706000;0 +20260323 175600;212.706000;212.707000;212.691000;212.702000;0 +20260323 175700;212.702000;212.703000;212.688000;212.692000;0 +20260323 175800;212.692000;212.701000;212.689000;212.700000;0 +20260323 175900;212.701000;212.701000;212.664000;212.673000;0 +20260323 180000;212.672000;212.673000;212.620000;212.628000;0 +20260323 180100;212.636000;212.656000;212.615000;212.654000;0 +20260323 180200;212.653000;212.653000;212.638000;212.643000;0 +20260323 180300;212.640000;212.659000;212.632000;212.647000;0 +20260323 180400;212.645000;212.657000;212.627000;212.640000;0 +20260323 180500;212.642000;212.651000;212.622000;212.632000;0 +20260323 180600;212.632000;212.641000;212.628000;212.635000;0 +20260323 180700;212.641000;212.658000;212.637000;212.650000;0 +20260323 180800;212.641000;212.645000;212.629000;212.630000;0 +20260323 180900;212.633000;212.644000;212.630000;212.641000;0 +20260323 181000;212.637000;212.639000;212.622000;212.635000;0 +20260323 181100;212.633000;212.634000;212.611000;212.617000;0 +20260323 181200;212.613000;212.626000;212.604000;212.616000;0 +20260323 181300;212.612000;212.635000;212.607000;212.632000;0 +20260323 181400;212.629000;212.635000;212.619000;212.628000;0 +20260323 181500;212.621000;212.671000;212.621000;212.653000;0 +20260323 181600;212.650000;212.657000;212.637000;212.639000;0 +20260323 181700;212.639000;212.654000;212.638000;212.643000;0 +20260323 181800;212.644000;212.664000;212.643000;212.664000;0 +20260323 181900;212.663000;212.663000;212.645000;212.650000;0 +20260323 182000;212.650000;212.670000;212.645000;212.665000;0 +20260323 182100;212.667000;212.677000;212.662000;212.670000;0 +20260323 182200;212.671000;212.671000;212.657000;212.667000;0 +20260323 182300;212.668000;212.677000;212.667000;212.671000;0 +20260323 182400;212.671000;212.698000;212.652000;212.654000;0 +20260323 182500;212.653000;212.655000;212.609000;212.612000;0 +20260323 182600;212.613000;212.618000;212.604000;212.617000;0 +20260323 182700;212.615000;212.620000;212.605000;212.615000;0 +20260323 182800;212.615000;212.633000;212.604000;212.633000;0 +20260323 182900;212.627000;212.646000;212.615000;212.615000;0 +20260323 183000;212.620000;212.676000;212.615000;212.675000;0 +20260323 183100;212.675000;212.705000;212.663000;212.676000;0 +20260323 183200;212.677000;212.687000;212.661000;212.665000;0 +20260323 183300;212.665000;212.669000;212.645000;212.668000;0 +20260323 183400;212.668000;212.669000;212.652000;212.664000;0 +20260323 183500;212.664000;212.665000;212.629000;212.642000;0 +20260323 183600;212.643000;212.647000;212.640000;212.641000;0 +20260323 183700;212.641000;212.674000;212.633000;212.669000;0 +20260323 183800;212.668000;212.672000;212.656000;212.658000;0 +20260323 183900;212.658000;212.676000;212.655000;212.674000;0 +20260323 184000;212.675000;212.693000;212.670000;212.675000;0 +20260323 184100;212.676000;212.692000;212.669000;212.674000;0 +20260323 184200;212.675000;212.678000;212.659000;212.669000;0 +20260323 184300;212.671000;212.673000;212.666000;212.667000;0 +20260323 184400;212.667000;212.674000;212.656000;212.667000;0 +20260323 184500;212.669000;212.701000;212.662000;212.690000;0 +20260323 184600;212.690000;212.720000;212.689000;212.718000;0 +20260323 184700;212.718000;212.756000;212.718000;212.747000;0 +20260323 184800;212.747000;212.760000;212.738000;212.755000;0 +20260323 184900;212.753000;212.770000;212.737000;212.749000;0 +20260323 185000;212.749000;212.753000;212.735000;212.745000;0 +20260323 185100;212.745000;212.772000;212.744000;212.767000;0 +20260323 185200;212.764000;212.781000;212.746000;212.777000;0 +20260323 185300;212.776000;212.783000;212.763000;212.778000;0 +20260323 185400;212.774000;212.774000;212.735000;212.747000;0 +20260323 185500;212.747000;212.762000;212.738000;212.751000;0 +20260323 185600;212.755000;212.756000;212.734000;212.754000;0 +20260323 185700;212.749000;212.765000;212.735000;212.754000;0 +20260323 185800;212.748000;212.765000;212.739000;212.761000;0 +20260323 185900;212.762000;212.784000;212.750000;212.769000;0 +20260323 190000;212.768000;212.794000;212.754000;212.758000;0 +20260323 190100;212.754000;212.776000;212.694000;212.702000;0 +20260323 190200;212.702000;212.716000;212.649000;212.705000;0 +20260323 190300;212.708000;212.764000;212.708000;212.750000;0 +20260323 190400;212.750000;212.759000;212.718000;212.722000;0 +20260323 190500;212.720000;212.720000;212.687000;212.689000;0 +20260323 190600;212.690000;212.734000;212.690000;212.734000;0 +20260323 190700;212.734000;212.777000;212.731000;212.758000;0 +20260323 190800;212.762000;212.770000;212.755000;212.761000;0 +20260323 190900;212.759000;212.781000;212.754000;212.771000;0 +20260323 191000;212.775000;212.794000;212.758000;212.788000;0 +20260323 191100;212.790000;212.794000;212.769000;212.782000;0 +20260323 191200;212.782000;212.782000;212.738000;212.779000;0 +20260323 191300;212.782000;212.802000;212.774000;212.774000;0 +20260323 191400;212.784000;212.790000;212.763000;212.764000;0 +20260323 191500;212.765000;212.791000;212.744000;212.758000;0 +20260323 191600;212.754000;212.763000;212.733000;212.736000;0 +20260323 191700;212.736000;212.756000;212.729000;212.746000;0 +20260323 191800;212.747000;212.757000;212.710000;212.736000;0 +20260323 191900;212.738000;212.752000;212.703000;212.729000;0 +20260323 192000;212.728000;212.728000;212.683000;212.696000;0 +20260323 192100;212.703000;212.761000;212.701000;212.737000;0 +20260323 192200;212.740000;212.776000;212.732000;212.736000;0 +20260323 192300;212.738000;212.747000;212.713000;212.713000;0 +20260323 192400;212.713000;212.732000;212.706000;212.727000;0 +20260323 192500;212.727000;212.732000;212.712000;212.729000;0 +20260323 192600;212.725000;212.744000;212.711000;212.722000;0 +20260323 192700;212.727000;212.728000;212.707000;212.718000;0 +20260323 192800;212.720000;212.741000;212.718000;212.740000;0 +20260323 192900;212.739000;212.748000;212.707000;212.707000;0 +20260323 193000;212.710000;212.721000;212.676000;212.678000;0 +20260323 193100;212.675000;212.706000;212.653000;212.655000;0 +20260323 193200;212.656000;212.657000;212.583000;212.583000;0 +20260323 193300;212.582000;212.588000;212.554000;212.560000;0 +20260323 193400;212.561000;212.597000;212.544000;212.569000;0 +20260323 193500;212.570000;212.573000;212.536000;212.548000;0 +20260323 193600;212.548000;212.581000;212.548000;212.558000;0 +20260323 193700;212.557000;212.562000;212.534000;212.551000;0 +20260323 193800;212.554000;212.554000;212.462000;212.464000;0 +20260323 193900;212.468000;212.483000;212.374000;212.466000;0 +20260323 194000;212.469000;212.498000;212.433000;212.471000;0 +20260323 194100;212.473000;212.530000;212.466000;212.527000;0 +20260323 194200;212.525000;212.529000;212.471000;212.503000;0 +20260323 194300;212.501000;212.557000;212.499000;212.549000;0 +20260323 194400;212.549000;212.549000;212.502000;212.523000;0 +20260323 194500;212.521000;212.601000;212.521000;212.601000;0 +20260323 194600;212.598000;212.598000;212.552000;212.563000;0 +20260323 194700;212.561000;212.577000;212.533000;212.540000;0 +20260323 194800;212.542000;212.565000;212.518000;212.549000;0 +20260323 194900;212.548000;212.550000;212.504000;212.516000;0 +20260323 195000;212.530000;212.530000;212.459000;212.464000;0 +20260323 195100;212.462000;212.494000;212.460000;212.464000;0 +20260323 195200;212.463000;212.485000;212.408000;212.409000;0 +20260323 195300;212.406000;212.420000;212.364000;212.379000;0 +20260323 195400;212.378000;212.400000;212.353000;212.365000;0 +20260323 195500;212.384000;212.466000;212.384000;212.455000;0 +20260323 195600;212.459000;212.505000;212.453000;212.504000;0 +20260323 195700;212.504000;212.518000;212.494000;212.499000;0 +20260323 195800;212.499000;212.553000;212.492000;212.544000;0 +20260323 195900;212.544000;212.545000;212.481000;212.495000;0 +20260323 200000;212.493000;212.523000;212.447000;212.459000;0 +20260323 200100;212.459000;212.478000;212.433000;212.467000;0 +20260323 200200;212.467000;212.467000;212.419000;212.426000;0 +20260323 200300;212.426000;212.442000;212.418000;212.424000;0 +20260323 200400;212.425000;212.439000;212.377000;212.388000;0 +20260323 200500;212.385000;212.409000;212.363000;212.393000;0 +20260323 200600;212.395000;212.396000;212.355000;212.370000;0 +20260323 200700;212.364000;212.391000;212.357000;212.379000;0 +20260323 200800;212.388000;212.399000;212.338000;212.338000;0 +20260323 200900;212.338000;212.354000;212.316000;212.316000;0 +20260323 201000;212.317000;212.365000;212.317000;212.363000;0 +20260323 201100;212.359000;212.417000;212.359000;212.397000;0 +20260323 201200;212.396000;212.425000;212.381000;212.385000;0 +20260323 201300;212.387000;212.390000;212.366000;212.378000;0 +20260323 201400;212.380000;212.386000;212.338000;212.340000;0 +20260323 201500;212.337000;212.369000;212.329000;212.339000;0 +20260323 201600;212.337000;212.353000;212.317000;212.320000;0 +20260323 201700;212.325000;212.355000;212.314000;212.318000;0 +20260323 201800;212.319000;212.358000;212.319000;212.333000;0 +20260323 201900;212.336000;212.354000;212.326000;212.340000;0 +20260323 202000;212.337000;212.389000;212.337000;212.384000;0 +20260323 202100;212.384000;212.399000;212.369000;212.370000;0 +20260323 202200;212.360000;212.371000;212.347000;212.363000;0 +20260323 202300;212.359000;212.365000;212.331000;212.338000;0 +20260323 202400;212.338000;212.345000;212.318000;212.337000;0 +20260323 202500;212.338000;212.353000;212.306000;212.336000;0 +20260323 202600;212.336000;212.347000;212.312000;212.318000;0 +20260323 202700;212.319000;212.339000;212.319000;212.332000;0 +20260323 202800;212.330000;212.338000;212.320000;212.322000;0 +20260323 202900;212.325000;212.351000;212.322000;212.348000;0 +20260323 203000;212.347000;212.379000;212.333000;212.361000;0 +20260323 203100;212.362000;212.389000;212.342000;212.364000;0 +20260323 203200;212.361000;212.380000;212.353000;212.377000;0 +20260323 203300;212.378000;212.380000;212.353000;212.362000;0 +20260323 203400;212.364000;212.375000;212.339000;212.362000;0 +20260323 203500;212.364000;212.386000;212.359000;212.373000;0 +20260323 203600;212.372000;212.381000;212.359000;212.362000;0 +20260323 203700;212.362000;212.404000;212.362000;212.391000;0 +20260323 203800;212.391000;212.391000;212.360000;212.385000;0 +20260323 203900;212.386000;212.408000;212.378000;212.389000;0 +20260323 204000;212.388000;212.413000;212.381000;212.408000;0 +20260323 204100;212.408000;212.408000;212.360000;212.366000;0 +20260323 204200;212.366000;212.383000;212.343000;212.343000;0 +20260323 204300;212.343000;212.351000;212.314000;212.317000;0 +20260323 204400;212.319000;212.322000;212.284000;212.286000;0 +20260323 204500;212.283000;212.307000;212.281000;212.295000;0 +20260323 204600;212.296000;212.303000;212.286000;212.298000;0 +20260323 204700;212.298000;212.338000;212.289000;212.329000;0 +20260323 204800;212.333000;212.378000;212.333000;212.369000;0 +20260323 204900;212.370000;212.371000;212.326000;212.339000;0 +20260323 205000;212.338000;212.345000;212.325000;212.326000;0 +20260323 205100;212.324000;212.373000;212.317000;212.369000;0 +20260323 205200;212.367000;212.376000;212.356000;212.372000;0 +20260323 205300;212.372000;212.372000;212.343000;212.350000;0 +20260323 205400;212.346000;212.368000;212.333000;212.366000;0 +20260323 205500;212.366000;212.418000;212.364000;212.410000;0 +20260323 205600;212.412000;212.412000;212.375000;212.384000;0 +20260323 205700;212.382000;212.387000;212.364000;212.380000;0 +20260323 205800;212.382000;212.414000;212.377000;212.407000;0 +20260323 205900;212.406000;212.419000;212.396000;212.408000;0 +20260323 210000;212.407000;212.421000;212.384000;212.420000;0 +20260323 210100;212.418000;212.456000;212.417000;212.451000;0 +20260323 210200;212.451000;212.476000;212.444000;212.460000;0 +20260323 210300;212.460000;212.465000;212.445000;212.447000;0 +20260323 210400;212.446000;212.487000;212.431000;212.484000;0 +20260323 210500;212.485000;212.500000;212.461000;212.500000;0 +20260323 210600;212.497000;212.511000;212.489000;212.497000;0 +20260323 210700;212.498000;212.498000;212.473000;212.494000;0 +20260323 210800;212.492000;212.492000;212.400000;212.403000;0 +20260323 210900;212.402000;212.433000;212.394000;212.431000;0 +20260323 211000;212.430000;212.432000;212.402000;212.417000;0 +20260323 211100;212.414000;212.424000;212.390000;212.391000;0 +20260323 211200;212.395000;212.427000;212.395000;212.426000;0 +20260323 211300;212.426000;212.462000;212.409000;212.452000;0 +20260323 211400;212.457000;212.471000;212.447000;212.465000;0 +20260323 211500;212.460000;212.487000;212.454000;212.477000;0 +20260323 211600;212.477000;212.514000;212.477000;212.510000;0 +20260323 211700;212.508000;212.520000;212.489000;212.494000;0 +20260323 211800;212.494000;212.508000;212.486000;212.491000;0 +20260323 211900;212.491000;212.513000;212.485000;212.510000;0 +20260323 212000;212.511000;212.538000;212.506000;212.536000;0 +20260323 212100;212.536000;212.564000;212.524000;212.559000;0 +20260323 212200;212.559000;212.576000;212.530000;212.545000;0 +20260323 212300;212.546000;212.547000;212.518000;212.522000;0 +20260323 212400;212.522000;212.535000;212.515000;212.520000;0 +20260323 212500;212.521000;212.571000;212.512000;212.571000;0 +20260323 212600;212.566000;212.570000;212.528000;212.534000;0 +20260323 212700;212.533000;212.562000;212.531000;212.555000;0 +20260323 212800;212.555000;212.562000;212.533000;212.533000;0 +20260323 212900;212.535000;212.550000;212.527000;212.545000;0 +20260323 213000;212.545000;212.546000;212.493000;212.499000;0 +20260323 213100;212.504000;212.504000;212.464000;212.466000;0 +20260323 213200;212.468000;212.499000;212.467000;212.492000;0 +20260323 213300;212.490000;212.505000;212.477000;212.502000;0 +20260323 213400;212.501000;212.528000;212.499000;212.520000;0 +20260323 213500;212.521000;212.541000;212.510000;212.540000;0 +20260323 213600;212.541000;212.574000;212.539000;212.572000;0 +20260323 213700;212.571000;212.611000;212.568000;212.611000;0 +20260323 213800;212.614000;212.625000;212.600000;212.611000;0 +20260323 213900;212.611000;212.612000;212.569000;212.578000;0 +20260323 214000;212.579000;212.593000;212.575000;212.593000;0 +20260323 214100;212.591000;212.619000;212.591000;212.616000;0 +20260323 214200;212.614000;212.630000;212.607000;212.627000;0 +20260323 214300;212.625000;212.651000;212.622000;212.646000;0 +20260323 214400;212.643000;212.648000;212.630000;212.634000;0 +20260323 214500;212.626000;212.632000;212.617000;212.626000;0 +20260323 214600;212.629000;212.646000;212.625000;212.642000;0 +20260323 214700;212.644000;212.645000;212.635000;212.637000;0 +20260323 214800;212.639000;212.648000;212.632000;212.643000;0 +20260323 214900;212.641000;212.653000;212.628000;212.628000;0 +20260323 215000;212.627000;212.630000;212.587000;212.595000;0 +20260323 215100;212.596000;212.603000;212.577000;212.590000;0 +20260323 215200;212.589000;212.598000;212.567000;212.593000;0 +20260323 215300;212.590000;212.601000;212.584000;212.593000;0 +20260323 215400;212.590000;212.602000;212.578000;212.596000;0 +20260323 215500;212.595000;212.603000;212.589000;212.599000;0 +20260323 215600;212.603000;212.629000;212.599000;212.599000;0 +20260323 215700;212.597000;212.609000;212.578000;212.578000;0 +20260323 215800;212.580000;212.613000;212.572000;212.613000;0 +20260323 215900;212.614000;212.624000;212.604000;212.620000;0 +20260323 220000;212.621000;212.635000;212.614000;212.619000;0 +20260323 220100;212.618000;212.650000;212.618000;212.647000;0 +20260323 220200;212.646000;212.652000;212.625000;212.636000;0 +20260323 220300;212.639000;212.645000;212.630000;212.635000;0 +20260323 220400;212.631000;212.642000;212.623000;212.632000;0 +20260323 220500;212.634000;212.660000;212.620000;212.653000;0 +20260323 220600;212.658000;212.665000;212.642000;212.656000;0 +20260323 220700;212.658000;212.671000;212.635000;212.635000;0 +20260323 220800;212.631000;212.641000;212.613000;212.622000;0 +20260323 220900;212.624000;212.637000;212.613000;212.636000;0 +20260323 221000;212.635000;212.658000;212.630000;212.649000;0 +20260323 221100;212.653000;212.653000;212.616000;212.618000;0 +20260323 221200;212.624000;212.638000;212.609000;212.633000;0 +20260323 221300;212.633000;212.647000;212.623000;212.647000;0 +20260323 221400;212.648000;212.665000;212.644000;212.650000;0 +20260323 221500;212.648000;212.670000;212.644000;212.668000;0 +20260323 221600;212.666000;212.683000;212.666000;212.679000;0 +20260323 221700;212.678000;212.701000;212.678000;212.698000;0 +20260323 221800;212.700000;212.710000;212.688000;212.693000;0 +20260323 221900;212.694000;212.696000;212.676000;212.678000;0 +20260323 222000;212.680000;212.683000;212.648000;212.659000;0 +20260323 222100;212.659000;212.661000;212.624000;212.628000;0 +20260323 222200;212.628000;212.649000;212.624000;212.646000;0 +20260323 222300;212.647000;212.650000;212.622000;212.625000;0 +20260323 222400;212.623000;212.635000;212.621000;212.630000;0 +20260323 222500;212.629000;212.639000;212.616000;212.616000;0 +20260323 222600;212.616000;212.625000;212.606000;212.619000;0 +20260323 222700;212.617000;212.624000;212.613000;212.623000;0 +20260323 222800;212.625000;212.643000;212.618000;212.625000;0 +20260323 222900;212.628000;212.634000;212.618000;212.630000;0 +20260323 223000;212.631000;212.631000;212.567000;212.574000;0 +20260323 223100;212.573000;212.584000;212.564000;212.577000;0 +20260323 223200;212.580000;212.585000;212.557000;212.563000;0 +20260323 223300;212.563000;212.577000;212.556000;212.560000;0 +20260323 223400;212.557000;212.562000;212.525000;212.525000;0 +20260323 223500;212.528000;212.548000;212.526000;212.548000;0 +20260323 223600;212.550000;212.551000;212.532000;212.538000;0 +20260323 223700;212.541000;212.554000;212.540000;212.549000;0 +20260323 223800;212.549000;212.557000;212.536000;212.553000;0 +20260323 223900;212.550000;212.553000;212.529000;212.541000;0 +20260323 224000;212.546000;212.564000;212.534000;212.561000;0 +20260323 224100;212.564000;212.578000;212.561000;212.577000;0 +20260323 224200;212.575000;212.584000;212.565000;212.582000;0 +20260323 224300;212.578000;212.590000;212.571000;212.577000;0 +20260323 224400;212.577000;212.584000;212.569000;212.580000;0 +20260323 224500;212.578000;212.588000;212.546000;212.551000;0 +20260323 224600;212.552000;212.559000;212.528000;212.542000;0 +20260323 224700;212.542000;212.575000;212.540000;212.571000;0 +20260323 224800;212.572000;212.579000;212.551000;212.573000;0 +20260323 224900;212.572000;212.581000;212.568000;212.568000;0 +20260323 225000;212.568000;212.570000;212.559000;212.559000;0 +20260323 225100;212.558000;212.570000;212.550000;212.556000;0 +20260323 225200;212.556000;212.565000;212.550000;212.558000;0 +20260323 225300;212.557000;212.569000;212.555000;212.565000;0 +20260323 225400;212.563000;212.575000;212.562000;212.571000;0 +20260323 225500;212.572000;212.574000;212.554000;212.569000;0 +20260323 225600;212.570000;212.596000;212.570000;212.591000;0 +20260323 225700;212.592000;212.616000;212.586000;212.616000;0 +20260323 225800;212.618000;212.658000;212.617000;212.655000;0 +20260323 225900;212.660000;212.672000;212.641000;212.666000;0 +20260323 230000;212.670000;212.685000;212.659000;212.668000;0 +20260323 230100;212.668000;212.677000;212.656000;212.661000;0 +20260323 230200;212.662000;212.666000;212.636000;212.643000;0 +20260323 230300;212.643000;212.643000;212.622000;212.632000;0 +20260323 230400;212.632000;212.662000;212.629000;212.655000;0 +20260323 230500;212.656000;212.693000;212.656000;212.670000;0 +20260323 230600;212.664000;212.664000;212.625000;212.639000;0 +20260323 230700;212.641000;212.680000;212.631000;212.662000;0 +20260323 230800;212.661000;212.667000;212.650000;212.652000;0 +20260323 230900;212.653000;212.659000;212.634000;212.635000;0 +20260323 231000;212.634000;212.648000;212.626000;212.642000;0 +20260323 231100;212.634000;212.645000;212.628000;212.639000;0 +20260323 231200;212.639000;212.639000;212.600000;212.600000;0 +20260323 231300;212.601000;212.616000;212.594000;212.615000;0 +20260323 231400;212.619000;212.626000;212.616000;212.622000;0 +20260323 231500;212.623000;212.627000;212.591000;212.610000;0 +20260323 231600;212.610000;212.611000;212.573000;212.593000;0 +20260323 231700;212.593000;212.593000;212.575000;212.584000;0 +20260323 231800;212.585000;212.591000;212.562000;212.564000;0 +20260323 231900;212.566000;212.572000;212.555000;212.558000;0 +20260323 232000;212.559000;212.566000;212.548000;212.564000;0 +20260323 232100;212.563000;212.565000;212.539000;212.548000;0 +20260323 232200;212.557000;212.557000;212.537000;212.542000;0 +20260323 232300;212.546000;212.566000;212.545000;212.566000;0 +20260323 232400;212.567000;212.567000;212.543000;212.550000;0 +20260323 232500;212.548000;212.558000;212.548000;212.551000;0 +20260323 232600;212.554000;212.564000;212.546000;212.552000;0 +20260323 232700;212.551000;212.556000;212.538000;212.547000;0 +20260323 232800;212.549000;212.572000;212.546000;212.562000;0 +20260323 232900;212.563000;212.575000;212.552000;212.552000;0 +20260323 233000;212.551000;212.566000;212.544000;212.558000;0 +20260323 233100;212.558000;212.559000;212.530000;212.536000;0 +20260323 233200;212.537000;212.555000;212.534000;212.543000;0 +20260323 233300;212.544000;212.548000;212.539000;212.544000;0 +20260323 233400;212.545000;212.548000;212.529000;212.529000;0 +20260323 233500;212.530000;212.539000;212.529000;212.539000;0 +20260323 233600;212.536000;212.542000;212.523000;212.536000;0 +20260323 233700;212.536000;212.547000;212.533000;212.540000;0 +20260323 233800;212.538000;212.549000;212.531000;212.538000;0 +20260323 233900;212.537000;212.554000;212.533000;212.541000;0 +20260323 234000;212.542000;212.548000;212.540000;212.542000;0 +20260323 234100;212.544000;212.553000;212.528000;212.530000;0 +20260323 234200;212.530000;212.533000;212.519000;212.529000;0 +20260323 234300;212.530000;212.533000;212.524000;212.530000;0 +20260323 234400;212.530000;212.534000;212.524000;212.528000;0 +20260323 234500;212.528000;212.544000;212.518000;212.541000;0 +20260323 234600;212.540000;212.548000;212.534000;212.538000;0 +20260323 234700;212.538000;212.563000;212.538000;212.557000;0 +20260323 234800;212.557000;212.578000;212.556000;212.571000;0 +20260323 234900;212.570000;212.579000;212.558000;212.573000;0 +20260323 235000;212.575000;212.582000;212.568000;212.580000;0 +20260323 235100;212.581000;212.611000;212.579000;212.611000;0 +20260323 235200;212.610000;212.619000;212.606000;212.614000;0 +20260323 235300;212.615000;212.629000;212.594000;212.598000;0 +20260323 235400;212.599000;212.611000;212.591000;212.610000;0 +20260323 235500;212.608000;212.613000;212.595000;212.606000;0 +20260323 235600;212.605000;212.609000;212.588000;212.600000;0 +20260323 235700;212.598000;212.618000;212.594000;212.609000;0 +20260323 235800;212.610000;212.613000;212.605000;212.608000;0 +20260323 235900;212.611000;212.639000;212.606000;212.632000;0 +20260324 000000;212.633000;212.652000;212.605000;212.618000;0 +20260324 000100;212.619000;212.619000;212.582000;212.582000;0 +20260324 000200;212.579000;212.581000;212.562000;212.573000;0 +20260324 000300;212.570000;212.573000;212.545000;212.549000;0 +20260324 000400;212.547000;212.558000;212.543000;212.546000;0 +20260324 000500;212.548000;212.558000;212.529000;212.532000;0 +20260324 000600;212.535000;212.555000;212.530000;212.543000;0 +20260324 000700;212.542000;212.555000;212.533000;212.551000;0 +20260324 000800;212.553000;212.566000;212.539000;212.555000;0 +20260324 000900;212.554000;212.554000;212.495000;212.516000;0 +20260324 001000;212.518000;212.522000;212.503000;212.519000;0 +20260324 001100;212.520000;212.533000;212.516000;212.528000;0 +20260324 001200;212.528000;212.534000;212.500000;212.529000;0 +20260324 001300;212.528000;212.531000;212.511000;212.512000;0 +20260324 001400;212.512000;212.541000;212.503000;212.505000;0 +20260324 001500;212.510000;212.534000;212.504000;212.531000;0 +20260324 001600;212.533000;212.542000;212.523000;212.526000;0 +20260324 001700;212.528000;212.533000;212.523000;212.532000;0 +20260324 001800;212.530000;212.621000;212.525000;212.617000;0 +20260324 001900;212.616000;212.619000;212.557000;212.565000;0 +20260324 002000;212.563000;212.620000;212.560000;212.594000;0 +20260324 002100;212.596000;212.602000;212.537000;212.539000;0 +20260324 002200;212.540000;212.557000;212.529000;212.546000;0 +20260324 002300;212.542000;212.569000;212.541000;212.560000;0 +20260324 002400;212.560000;212.560000;212.506000;212.509000;0 +20260324 002500;212.508000;212.516000;212.502000;212.507000;0 +20260324 002600;212.506000;212.526000;212.493000;212.526000;0 +20260324 002700;212.524000;212.535000;212.501000;212.509000;0 +20260324 002800;212.502000;212.511000;212.472000;212.486000;0 +20260324 002900;212.486000;212.502000;212.473000;212.486000;0 +20260324 003000;212.487000;212.509000;212.470000;212.481000;0 +20260324 003100;212.482000;212.507000;212.475000;212.506000;0 +20260324 003200;212.507000;212.507000;212.485000;212.492000;0 +20260324 003300;212.488000;212.501000;212.482000;212.482000;0 +20260324 003400;212.480000;212.493000;212.474000;212.484000;0 +20260324 003500;212.491000;212.505000;212.479000;212.501000;0 +20260324 003600;212.500000;212.504000;212.462000;212.489000;0 +20260324 003700;212.489000;212.511000;212.489000;212.500000;0 +20260324 003800;212.509000;212.520000;212.500000;212.509000;0 +20260324 003900;212.508000;212.509000;212.473000;212.479000;0 +20260324 004000;212.484000;212.517000;212.482000;212.515000;0 +20260324 004100;212.517000;212.559000;212.517000;212.551000;0 +20260324 004200;212.553000;212.588000;212.550000;212.588000;0 +20260324 004300;212.585000;212.590000;212.495000;212.508000;0 +20260324 004400;212.510000;212.515000;212.474000;212.487000;0 +20260324 004500;212.489000;212.503000;212.472000;212.499000;0 +20260324 004600;212.501000;212.521000;212.494000;212.498000;0 +20260324 004700;212.497000;212.505000;212.486000;212.501000;0 +20260324 004800;212.502000;212.530000;212.490000;212.514000;0 +20260324 004900;212.515000;212.525000;212.504000;212.511000;0 +20260324 005000;212.512000;212.533000;212.511000;212.532000;0 +20260324 005100;212.531000;212.546000;212.516000;212.530000;0 +20260324 005200;212.532000;212.539000;212.493000;212.499000;0 +20260324 005300;212.495000;212.519000;212.490000;212.518000;0 +20260324 005400;212.518000;212.528000;212.513000;212.519000;0 +20260324 005500;212.518000;212.533000;212.503000;212.532000;0 +20260324 005600;212.531000;212.534000;212.521000;212.521000;0 +20260324 005700;212.518000;212.533000;212.512000;212.533000;0 +20260324 005800;212.530000;212.558000;212.530000;212.538000;0 +20260324 005900;212.537000;212.546000;212.525000;212.534000;0 +20260324 010000;212.533000;212.595000;212.525000;212.594000;0 +20260324 010100;212.596000;212.663000;212.596000;212.653000;0 +20260324 010200;212.655000;212.676000;212.653000;212.662000;0 +20260324 010300;212.661000;212.692000;212.658000;212.682000;0 +20260324 010400;212.679000;212.719000;212.669000;212.719000;0 +20260324 010500;212.720000;212.760000;212.714000;212.757000;0 +20260324 010600;212.757000;212.757000;212.695000;212.701000;0 +20260324 010700;212.701000;212.702000;212.671000;212.699000;0 +20260324 010800;212.701000;212.707000;212.663000;212.667000;0 +20260324 010900;212.667000;212.706000;212.662000;212.702000;0 +20260324 011000;212.698000;212.714000;212.665000;212.665000;0 +20260324 011100;212.669000;212.703000;212.652000;212.658000;0 +20260324 011200;212.656000;212.661000;212.644000;212.644000;0 +20260324 011300;212.640000;212.646000;212.600000;212.600000;0 +20260324 011400;212.598000;212.609000;212.578000;212.578000;0 +20260324 011500;212.578000;212.610000;212.578000;212.601000;0 +20260324 011600;212.602000;212.612000;212.574000;212.598000;0 +20260324 011700;212.597000;212.606000;212.583000;212.602000;0 +20260324 011800;212.599000;212.600000;212.565000;212.588000;0 +20260324 011900;212.586000;212.618000;212.584000;212.613000;0 +20260324 012000;212.607000;212.633000;212.600000;212.618000;0 +20260324 012100;212.619000;212.624000;212.596000;212.603000;0 +20260324 012200;212.604000;212.635000;212.594000;212.628000;0 +20260324 012300;212.630000;212.644000;212.612000;212.642000;0 +20260324 012400;212.643000;212.643000;212.599000;212.601000;0 +20260324 012500;212.601000;212.662000;212.599000;212.661000;0 +20260324 012600;212.662000;212.662000;212.611000;212.623000;0 +20260324 012700;212.624000;212.649000;212.616000;212.638000;0 +20260324 012800;212.639000;212.678000;212.636000;212.677000;0 +20260324 012900;212.677000;212.689000;212.660000;212.678000;0 +20260324 013000;212.678000;212.722000;212.675000;212.712000;0 +20260324 013100;212.712000;212.723000;212.696000;212.711000;0 +20260324 013200;212.714000;212.722000;212.691000;212.700000;0 +20260324 013300;212.700000;212.700000;212.679000;212.687000;0 +20260324 013400;212.687000;212.707000;212.666000;212.696000;0 +20260324 013500;212.699000;212.712000;212.695000;212.701000;0 +20260324 013600;212.700000;212.705000;212.671000;212.681000;0 +20260324 013700;212.677000;212.697000;212.672000;212.685000;0 +20260324 013800;212.686000;212.686000;212.653000;212.664000;0 +20260324 013900;212.664000;212.692000;212.658000;212.672000;0 +20260324 014000;212.672000;212.695000;212.650000;212.660000;0 +20260324 014100;212.660000;212.692000;212.659000;212.682000;0 +20260324 014200;212.680000;212.707000;212.672000;212.694000;0 +20260324 014300;212.693000;212.710000;212.665000;212.701000;0 +20260324 014400;212.701000;212.723000;212.700000;212.707000;0 +20260324 014500;212.707000;212.714000;212.602000;212.606000;0 +20260324 014600;212.608000;212.687000;212.608000;212.668000;0 +20260324 014700;212.668000;212.673000;212.650000;212.655000;0 +20260324 014800;212.656000;212.679000;212.649000;212.666000;0 +20260324 014900;212.666000;212.672000;212.658000;212.665000;0 +20260324 015000;212.668000;212.675000;212.657000;212.672000;0 +20260324 015100;212.666000;212.687000;212.664000;212.674000;0 +20260324 015200;212.670000;212.697000;212.667000;212.696000;0 +20260324 015300;212.694000;212.712000;212.687000;212.703000;0 +20260324 015400;212.703000;212.734000;212.696000;212.706000;0 +20260324 015500;212.709000;212.726000;212.663000;212.686000;0 +20260324 015600;212.689000;212.714000;212.675000;212.706000;0 +20260324 015700;212.708000;212.757000;212.698000;212.745000;0 +20260324 015800;212.744000;212.745000;212.707000;212.712000;0 +20260324 015900;212.714000;212.727000;212.708000;212.711000;0 +20260324 020000;212.708000;212.739000;212.704000;212.719000;0 +20260324 020100;212.724000;212.754000;212.715000;212.753000;0 +20260324 020200;212.752000;212.802000;212.743000;212.787000;0 +20260324 020300;212.787000;212.858000;212.787000;212.817000;0 +20260324 020400;212.816000;212.866000;212.816000;212.863000;0 +20260324 020500;212.858000;212.888000;212.855000;212.868000;0 +20260324 020600;212.873000;212.877000;212.780000;212.784000;0 +20260324 020700;212.784000;212.843000;212.781000;212.821000;0 +20260324 020800;212.823000;212.831000;212.803000;212.828000;0 +20260324 020900;212.830000;212.888000;212.822000;212.888000;0 +20260324 021000;212.891000;212.937000;212.878000;212.924000;0 +20260324 021100;212.923000;212.927000;212.885000;212.891000;0 +20260324 021200;212.890000;212.939000;212.840000;212.937000;0 +20260324 021300;212.938000;212.974000;212.910000;212.920000;0 +20260324 021400;212.920000;212.948000;212.914000;212.946000;0 +20260324 021500;212.946000;212.946000;212.905000;212.929000;0 +20260324 021600;212.926000;212.959000;212.912000;212.948000;0 +20260324 021700;212.946000;212.971000;212.917000;212.925000;0 +20260324 021800;212.925000;212.926000;212.830000;212.846000;0 +20260324 021900;212.851000;212.856000;212.829000;212.842000;0 +20260324 022000;212.847000;212.880000;212.846000;212.875000;0 +20260324 022100;212.876000;212.922000;212.875000;212.892000;0 +20260324 022200;212.892000;212.937000;212.889000;212.908000;0 +20260324 022300;212.909000;212.977000;212.909000;212.953000;0 +20260324 022400;212.952000;212.956000;212.923000;212.936000;0 +20260324 022500;212.938000;212.945000;212.890000;212.894000;0 +20260324 022600;212.894000;212.895000;212.873000;212.873000;0 +20260324 022700;212.873000;212.909000;212.872000;212.888000;0 +20260324 022800;212.891000;212.923000;212.877000;212.877000;0 +20260324 022900;212.877000;212.890000;212.849000;212.860000;0 +20260324 023000;212.862000;212.900000;212.841000;212.857000;0 +20260324 023100;212.857000;212.876000;212.838000;212.845000;0 +20260324 023200;212.847000;212.875000;212.820000;212.846000;0 +20260324 023300;212.848000;212.857000;212.784000;212.789000;0 +20260324 023400;212.791000;212.839000;212.791000;212.814000;0 +20260324 023500;212.817000;212.874000;212.802000;212.868000;0 +20260324 023600;212.869000;212.912000;212.864000;212.911000;0 +20260324 023700;212.911000;212.947000;212.900000;212.911000;0 +20260324 023800;212.913000;212.919000;212.869000;212.887000;0 +20260324 023900;212.887000;212.931000;212.876000;212.903000;0 +20260324 024000;212.904000;212.926000;212.857000;212.857000;0 +20260324 024100;212.858000;212.890000;212.857000;212.887000;0 +20260324 024200;212.888000;212.906000;212.875000;212.888000;0 +20260324 024300;212.889000;212.937000;212.877000;212.932000;0 +20260324 024400;212.937000;212.963000;212.929000;212.938000;0 +20260324 024500;212.937000;212.942000;212.921000;212.934000;0 +20260324 024600;212.934000;212.934000;212.889000;212.889000;0 +20260324 024700;212.886000;212.897000;212.865000;212.886000;0 +20260324 024800;212.894000;212.917000;212.893000;212.898000;0 +20260324 024900;212.899000;212.905000;212.871000;212.880000;0 +20260324 025000;212.877000;212.908000;212.874000;212.891000;0 +20260324 025100;212.891000;212.896000;212.858000;212.864000;0 +20260324 025200;212.862000;212.883000;212.851000;212.876000;0 +20260324 025300;212.868000;212.868000;212.820000;212.841000;0 +20260324 025400;212.845000;212.845000;212.815000;212.832000;0 +20260324 025500;212.829000;212.866000;212.809000;212.856000;0 +20260324 025600;212.858000;212.875000;212.808000;212.808000;0 +20260324 025700;212.808000;212.862000;212.803000;212.842000;0 +20260324 025800;212.844000;212.897000;212.840000;212.885000;0 +20260324 025900;212.885000;212.901000;212.854000;212.864000;0 +20260324 030000;212.862000;212.864000;212.782000;212.822000;0 +20260324 030100;212.816000;212.820000;212.747000;212.758000;0 +20260324 030200;212.762000;212.772000;212.712000;212.736000;0 +20260324 030300;212.733000;212.739000;212.695000;212.695000;0 +20260324 030400;212.694000;212.728000;212.691000;212.709000;0 +20260324 030500;212.708000;212.734000;212.663000;212.692000;0 +20260324 030600;212.690000;212.721000;212.659000;212.711000;0 +20260324 030700;212.711000;212.724000;212.658000;212.677000;0 +20260324 030800;212.672000;212.695000;212.658000;212.658000;0 +20260324 030900;212.657000;212.674000;212.632000;212.661000;0 +20260324 031000;212.662000;212.662000;212.611000;212.637000;0 +20260324 031100;212.636000;212.663000;212.629000;212.648000;0 +20260324 031200;212.645000;212.700000;212.643000;212.700000;0 +20260324 031300;212.695000;212.712000;212.671000;212.683000;0 +20260324 031400;212.687000;212.703000;212.662000;212.695000;0 +20260324 031500;212.702000;212.745000;212.675000;212.733000;0 +20260324 031600;212.732000;212.758000;212.702000;212.742000;0 +20260324 031700;212.741000;212.770000;212.726000;212.744000;0 +20260324 031800;212.743000;212.752000;212.690000;212.701000;0 +20260324 031900;212.700000;212.702000;212.650000;212.655000;0 +20260324 032000;212.656000;212.656000;212.607000;212.620000;0 +20260324 032100;212.615000;212.616000;212.582000;212.614000;0 +20260324 032200;212.615000;212.635000;212.604000;212.630000;0 +20260324 032300;212.630000;212.640000;212.599000;212.608000;0 +20260324 032400;212.605000;212.615000;212.577000;212.577000;0 +20260324 032500;212.580000;212.584000;212.551000;212.561000;0 +20260324 032600;212.560000;212.587000;212.560000;212.572000;0 +20260324 032700;212.576000;212.577000;212.548000;212.562000;0 +20260324 032800;212.564000;212.593000;212.554000;212.583000;0 +20260324 032900;212.581000;212.589000;212.524000;212.534000;0 +20260324 033000;212.534000;212.565000;212.485000;212.507000;0 +20260324 033100;212.506000;212.524000;212.494000;212.500000;0 +20260324 033200;212.501000;212.516000;212.488000;212.490000;0 +20260324 033300;212.489000;212.516000;212.479000;212.482000;0 +20260324 033400;212.483000;212.506000;212.453000;212.461000;0 +20260324 033500;212.460000;212.507000;212.437000;212.506000;0 +20260324 033600;212.505000;212.537000;212.498000;212.528000;0 +20260324 033700;212.528000;212.539000;212.515000;212.522000;0 +20260324 033800;212.522000;212.531000;212.485000;212.492000;0 +20260324 033900;212.492000;212.508000;212.475000;212.485000;0 +20260324 034000;212.486000;212.520000;212.476000;212.515000;0 +20260324 034100;212.517000;212.517000;212.488000;212.503000;0 +20260324 034200;212.500000;212.522000;212.469000;212.469000;0 +20260324 034300;212.473000;212.487000;212.451000;212.483000;0 +20260324 034400;212.483000;212.524000;212.460000;212.511000;0 +20260324 034500;212.512000;212.526000;212.497000;212.499000;0 +20260324 034600;212.505000;212.547000;212.502000;212.509000;0 +20260324 034700;212.513000;212.535000;212.505000;212.523000;0 +20260324 034800;212.520000;212.528000;212.470000;212.485000;0 +20260324 034900;212.482000;212.486000;212.435000;212.440000;0 +20260324 035000;212.439000;212.442000;212.253000;212.317000;0 +20260324 035100;212.316000;212.476000;212.301000;212.453000;0 +20260324 035200;212.452000;212.538000;212.452000;212.536000;0 +20260324 035300;212.533000;212.541000;212.506000;212.525000;0 +20260324 035400;212.525000;212.540000;212.471000;212.473000;0 +20260324 035500;212.475000;212.510000;212.465000;212.466000;0 +20260324 035600;212.461000;212.461000;212.399000;212.427000;0 +20260324 035700;212.427000;212.460000;212.424000;212.430000;0 +20260324 035800;212.428000;212.462000;212.407000;212.452000;0 +20260324 035900;212.451000;212.458000;212.427000;212.430000;0 +20260324 040000;212.436000;212.457000;212.421000;212.440000;0 +20260324 040100;212.443000;212.483000;212.438000;212.449000;0 +20260324 040200;212.448000;212.460000;212.437000;212.445000;0 +20260324 040300;212.440000;212.444000;212.379000;212.394000;0 +20260324 040400;212.394000;212.474000;212.394000;212.473000;0 +20260324 040500;212.482000;212.498000;212.454000;212.467000;0 +20260324 040600;212.468000;212.470000;212.405000;212.451000;0 +20260324 040700;212.451000;212.467000;212.414000;212.443000;0 +20260324 040800;212.448000;212.502000;212.441000;212.488000;0 +20260324 040900;212.485000;212.485000;212.449000;212.478000;0 +20260324 041000;212.477000;212.486000;212.461000;212.476000;0 +20260324 041100;212.477000;212.504000;212.466000;212.469000;0 +20260324 041200;212.467000;212.470000;212.452000;212.461000;0 +20260324 041300;212.459000;212.510000;212.456000;212.469000;0 +20260324 041400;212.469000;212.479000;212.443000;212.456000;0 +20260324 041500;212.456000;212.479000;212.417000;212.434000;0 +20260324 041600;212.434000;212.464000;212.413000;212.464000;0 +20260324 041700;212.467000;212.477000;212.447000;212.477000;0 +20260324 041800;212.480000;212.520000;212.454000;212.518000;0 +20260324 041900;212.519000;212.529000;212.489000;212.508000;0 +20260324 042000;212.501000;212.505000;212.472000;212.479000;0 +20260324 042100;212.480000;212.514000;212.478000;212.493000;0 +20260324 042200;212.493000;212.515000;212.473000;212.496000;0 +20260324 042300;212.500000;212.514000;212.480000;212.494000;0 +20260324 042400;212.500000;212.572000;212.498000;212.562000;0 +20260324 042500;212.565000;212.578000;212.546000;212.555000;0 +20260324 042600;212.553000;212.566000;212.498000;212.513000;0 +20260324 042700;212.513000;212.542000;212.513000;212.542000;0 +20260324 042800;212.544000;212.564000;212.530000;212.545000;0 +20260324 042900;212.541000;212.554000;212.530000;212.530000;0 +20260324 043000;212.532000;212.532000;212.420000;212.461000;0 +20260324 043100;212.470000;212.554000;212.469000;212.542000;0 +20260324 043200;212.544000;212.560000;212.524000;212.538000;0 +20260324 043300;212.535000;212.544000;212.514000;212.524000;0 +20260324 043400;212.528000;212.545000;212.507000;212.508000;0 +20260324 043500;212.510000;212.535000;212.497000;212.506000;0 +20260324 043600;212.508000;212.515000;212.461000;212.486000;0 +20260324 043700;212.482000;212.488000;212.468000;212.472000;0 +20260324 043800;212.472000;212.474000;212.445000;212.460000;0 +20260324 043900;212.462000;212.481000;212.459000;212.469000;0 +20260324 044000;212.469000;212.505000;212.464000;212.497000;0 +20260324 044100;212.495000;212.510000;212.482000;212.489000;0 +20260324 044200;212.488000;212.511000;212.481000;212.511000;0 +20260324 044300;212.514000;212.539000;212.513000;212.532000;0 +20260324 044400;212.532000;212.562000;212.528000;212.544000;0 +20260324 044500;212.541000;212.549000;212.534000;212.539000;0 +20260324 044600;212.542000;212.542000;212.492000;212.520000;0 +20260324 044700;212.523000;212.530000;212.510000;212.514000;0 +20260324 044800;212.517000;212.519000;212.501000;212.512000;0 +20260324 044900;212.508000;212.540000;212.499000;212.536000;0 +20260324 045000;212.534000;212.538000;212.511000;212.518000;0 +20260324 045100;212.521000;212.521000;212.486000;212.505000;0 +20260324 045200;212.505000;212.510000;212.486000;212.494000;0 +20260324 045300;212.494000;212.508000;212.489000;212.494000;0 +20260324 045400;212.495000;212.542000;212.495000;212.542000;0 +20260324 045500;212.541000;212.572000;212.541000;212.553000;0 +20260324 045600;212.553000;212.595000;212.553000;212.587000;0 +20260324 045700;212.589000;212.621000;212.586000;212.621000;0 +20260324 045800;212.621000;212.621000;212.601000;212.602000;0 +20260324 045900;212.601000;212.619000;212.596000;212.601000;0 +20260324 050000;212.602000;212.642000;212.596000;212.638000;0 +20260324 050100;212.641000;212.642000;212.600000;212.622000;0 +20260324 050200;212.623000;212.628000;212.581000;212.598000;0 +20260324 050300;212.603000;212.637000;212.579000;212.630000;0 +20260324 050400;212.631000;212.661000;212.631000;212.660000;0 +20260324 050500;212.657000;212.691000;212.657000;212.679000;0 +20260324 050600;212.680000;212.696000;212.667000;212.686000;0 +20260324 050700;212.686000;212.694000;212.667000;212.690000;0 +20260324 050800;212.689000;212.693000;212.676000;212.686000;0 +20260324 050900;212.687000;212.723000;212.671000;212.710000;0 +20260324 051000;212.708000;212.716000;212.696000;212.714000;0 +20260324 051100;212.712000;212.722000;212.672000;212.676000;0 +20260324 051200;212.676000;212.677000;212.638000;212.646000;0 +20260324 051300;212.644000;212.664000;212.644000;212.651000;0 +20260324 051400;212.643000;212.659000;212.636000;212.642000;0 +20260324 051500;212.641000;212.649000;212.627000;212.641000;0 +20260324 051600;212.643000;212.666000;212.643000;212.645000;0 +20260324 051700;212.645000;212.647000;212.627000;212.631000;0 +20260324 051800;212.634000;212.679000;212.630000;212.662000;0 +20260324 051900;212.664000;212.679000;212.644000;212.661000;0 +20260324 052000;212.660000;212.662000;212.641000;212.646000;0 +20260324 052100;212.647000;212.671000;212.641000;212.668000;0 +20260324 052200;212.668000;212.695000;212.647000;212.695000;0 +20260324 052300;212.692000;212.692000;212.650000;212.661000;0 +20260324 052400;212.662000;212.667000;212.641000;212.652000;0 +20260324 052500;212.658000;212.663000;212.631000;212.638000;0 +20260324 052600;212.638000;212.639000;212.619000;212.635000;0 +20260324 052700;212.635000;212.653000;212.621000;212.642000;0 +20260324 052800;212.641000;212.646000;212.613000;212.625000;0 +20260324 052900;212.627000;212.630000;212.604000;212.616000;0 +20260324 053000;212.615000;212.638000;212.611000;212.625000;0 +20260324 053100;212.621000;212.664000;212.615000;212.644000;0 +20260324 053200;212.647000;212.665000;212.644000;212.663000;0 +20260324 053300;212.657000;212.657000;212.611000;212.636000;0 +20260324 053400;212.638000;212.639000;212.598000;212.608000;0 +20260324 053500;212.606000;212.620000;212.602000;212.608000;0 +20260324 053600;212.605000;212.640000;212.605000;212.633000;0 +20260324 053700;212.633000;212.692000;212.624000;212.691000;0 +20260324 053800;212.686000;212.686000;212.665000;212.672000;0 +20260324 053900;212.673000;212.693000;212.661000;212.691000;0 +20260324 054000;212.692000;212.699000;212.655000;212.677000;0 +20260324 054100;212.675000;212.687000;212.660000;212.686000;0 +20260324 054200;212.687000;212.695000;212.667000;212.676000;0 +20260324 054300;212.675000;212.698000;212.662000;212.687000;0 +20260324 054400;212.685000;212.717000;212.678000;212.712000;0 +20260324 054500;212.713000;212.745000;212.709000;212.745000;0 +20260324 054600;212.741000;212.741000;212.711000;212.713000;0 +20260324 054700;212.714000;212.718000;212.664000;212.673000;0 +20260324 054800;212.675000;212.677000;212.644000;212.677000;0 +20260324 054900;212.678000;212.681000;212.657000;212.660000;0 +20260324 055000;212.657000;212.713000;212.656000;212.713000;0 +20260324 055100;212.714000;212.714000;212.695000;212.707000;0 +20260324 055200;212.705000;212.727000;212.684000;212.692000;0 +20260324 055300;212.692000;212.755000;212.692000;212.708000;0 +20260324 055400;212.709000;212.722000;212.672000;212.681000;0 +20260324 055500;212.680000;212.680000;212.644000;212.679000;0 +20260324 055600;212.677000;212.677000;212.652000;212.662000;0 +20260324 055700;212.660000;212.682000;212.651000;212.672000;0 +20260324 055800;212.670000;212.722000;212.638000;212.714000;0 +20260324 055900;212.713000;212.738000;212.708000;212.729000;0 +20260324 060000;212.727000;212.753000;212.708000;212.753000;0 +20260324 060100;212.751000;212.751000;212.679000;212.685000;0 +20260324 060200;212.687000;212.697000;212.665000;212.689000;0 +20260324 060300;212.689000;212.717000;212.673000;212.717000;0 +20260324 060400;212.718000;212.720000;212.694000;212.703000;0 +20260324 060500;212.702000;212.712000;212.683000;212.695000;0 +20260324 060600;212.697000;212.724000;212.695000;212.709000;0 +20260324 060700;212.708000;212.748000;212.682000;212.748000;0 +20260324 060800;212.747000;212.756000;212.733000;212.747000;0 +20260324 060900;212.746000;212.772000;212.742000;212.757000;0 +20260324 061000;212.756000;212.777000;212.753000;212.767000;0 +20260324 061100;212.767000;212.790000;212.762000;212.782000;0 +20260324 061200;212.787000;212.794000;212.768000;212.783000;0 +20260324 061300;212.781000;212.781000;212.735000;212.760000;0 +20260324 061400;212.765000;212.787000;212.761000;212.774000;0 +20260324 061500;212.775000;212.777000;212.735000;212.744000;0 +20260324 061600;212.741000;212.757000;212.705000;212.713000;0 +20260324 061700;212.711000;212.721000;212.682000;212.687000;0 +20260324 061800;212.688000;212.722000;212.683000;212.702000;0 +20260324 061900;212.702000;212.733000;212.700000;212.730000;0 +20260324 062000;212.732000;212.741000;212.704000;212.705000;0 +20260324 062100;212.705000;212.739000;212.705000;212.724000;0 +20260324 062200;212.724000;212.733000;212.718000;212.727000;0 +20260324 062300;212.726000;212.741000;212.713000;212.734000;0 +20260324 062400;212.732000;212.746000;212.727000;212.735000;0 +20260324 062500;212.735000;212.737000;212.716000;212.725000;0 +20260324 062600;212.724000;212.742000;212.724000;212.729000;0 +20260324 062700;212.728000;212.751000;212.718000;212.745000;0 +20260324 062800;212.746000;212.789000;212.746000;212.781000;0 +20260324 062900;212.781000;212.797000;212.748000;212.760000;0 +20260324 063000;212.756000;212.777000;212.749000;212.762000;0 +20260324 063100;212.762000;212.808000;212.761000;212.798000;0 +20260324 063200;212.796000;212.816000;212.781000;212.806000;0 +20260324 063300;212.808000;212.840000;212.803000;212.840000;0 +20260324 063400;212.838000;212.840000;212.792000;212.812000;0 +20260324 063500;212.810000;212.822000;212.771000;212.771000;0 +20260324 063600;212.772000;212.809000;212.772000;212.795000;0 +20260324 063700;212.791000;212.802000;212.780000;212.792000;0 +20260324 063800;212.791000;212.810000;212.785000;212.798000;0 +20260324 063900;212.802000;212.803000;212.752000;212.752000;0 +20260324 064000;212.751000;212.767000;212.741000;212.757000;0 +20260324 064100;212.756000;212.791000;212.749000;212.786000;0 +20260324 064200;212.785000;212.812000;212.779000;212.797000;0 +20260324 064300;212.797000;212.805000;212.781000;212.783000;0 +20260324 064400;212.782000;212.800000;212.764000;212.781000;0 +20260324 064500;212.783000;212.813000;212.770000;212.804000;0 +20260324 064600;212.805000;212.817000;212.794000;212.804000;0 +20260324 064700;212.803000;212.818000;212.762000;212.770000;0 +20260324 064800;212.768000;212.777000;212.761000;212.761000;0 +20260324 064900;212.763000;212.813000;212.754000;212.784000;0 +20260324 065000;212.783000;212.786000;212.735000;212.737000;0 +20260324 065100;212.737000;212.739000;212.677000;212.689000;0 +20260324 065200;212.688000;212.692000;212.641000;212.644000;0 +20260324 065300;212.645000;212.658000;212.556000;212.617000;0 +20260324 065400;212.614000;212.710000;212.598000;212.674000;0 +20260324 065500;212.676000;212.722000;212.668000;212.670000;0 +20260324 065600;212.671000;212.698000;212.659000;212.672000;0 +20260324 065700;212.670000;212.689000;212.647000;212.657000;0 +20260324 065800;212.656000;212.695000;212.656000;212.669000;0 +20260324 065900;212.672000;212.704000;212.669000;212.691000;0 +20260324 070000;212.691000;212.736000;212.666000;212.680000;0 +20260324 070100;212.679000;212.690000;212.651000;212.652000;0 +20260324 070200;212.655000;212.655000;212.608000;212.619000;0 +20260324 070300;212.621000;212.629000;212.608000;212.626000;0 +20260324 070400;212.626000;212.630000;212.602000;212.613000;0 +20260324 070500;212.610000;212.613000;212.579000;212.604000;0 +20260324 070600;212.600000;212.616000;212.589000;212.606000;0 +20260324 070700;212.605000;212.621000;212.605000;212.612000;0 +20260324 070800;212.610000;212.613000;212.586000;212.608000;0 +20260324 070900;212.605000;212.612000;212.594000;212.599000;0 +20260324 071000;212.598000;212.613000;212.567000;212.570000;0 +20260324 071100;212.566000;212.602000;212.561000;212.599000;0 +20260324 071200;212.601000;212.622000;212.599000;212.599000;0 +20260324 071300;212.601000;212.618000;212.594000;212.610000;0 +20260324 071400;212.609000;212.619000;212.575000;212.593000;0 +20260324 071500;212.593000;212.600000;212.567000;212.586000;0 +20260324 071600;212.587000;212.609000;212.581000;212.604000;0 +20260324 071700;212.606000;212.607000;212.568000;212.578000;0 +20260324 071800;212.577000;212.609000;212.575000;212.598000;0 +20260324 071900;212.602000;212.612000;212.593000;212.595000;0 +20260324 072000;212.596000;212.619000;212.596000;212.616000;0 +20260324 072100;212.618000;212.626000;212.578000;212.578000;0 +20260324 072200;212.581000;212.596000;212.579000;212.594000;0 +20260324 072300;212.594000;212.614000;212.583000;212.597000;0 +20260324 072400;212.599000;212.617000;212.594000;212.615000;0 +20260324 072500;212.616000;212.650000;212.600000;212.647000;0 +20260324 072600;212.647000;212.693000;212.647000;212.686000;0 +20260324 072700;212.691000;212.709000;212.686000;212.691000;0 +20260324 072800;212.694000;212.713000;212.682000;212.702000;0 +20260324 072900;212.702000;212.719000;212.695000;212.708000;0 +20260324 073000;212.709000;212.733000;212.674000;212.730000;0 +20260324 073100;212.739000;212.739000;212.714000;212.731000;0 +20260324 073200;212.733000;212.749000;212.709000;212.730000;0 +20260324 073300;212.727000;212.731000;212.677000;212.686000;0 +20260324 073400;212.686000;212.691000;212.649000;212.686000;0 +20260324 073500;212.683000;212.734000;212.681000;212.732000;0 +20260324 073600;212.730000;212.755000;212.730000;212.733000;0 +20260324 073700;212.733000;212.740000;212.700000;212.703000;0 +20260324 073800;212.706000;212.740000;212.682000;212.716000;0 +20260324 073900;212.714000;212.736000;212.702000;212.714000;0 +20260324 074000;212.716000;212.755000;212.710000;212.744000;0 +20260324 074100;212.741000;212.760000;212.721000;212.731000;0 +20260324 074200;212.731000;212.766000;212.730000;212.755000;0 +20260324 074300;212.755000;212.779000;212.747000;212.752000;0 +20260324 074400;212.755000;212.772000;212.731000;212.763000;0 +20260324 074500;212.766000;212.803000;212.764000;212.778000;0 +20260324 074600;212.776000;212.792000;212.757000;212.765000;0 +20260324 074700;212.760000;212.790000;212.745000;212.770000;0 +20260324 074800;212.763000;212.772000;212.727000;212.727000;0 +20260324 074900;212.728000;212.740000;212.697000;212.705000;0 +20260324 075000;212.708000;212.723000;212.666000;212.671000;0 +20260324 075100;212.670000;212.709000;212.670000;212.690000;0 +20260324 075200;212.689000;212.772000;212.685000;212.757000;0 +20260324 075300;212.757000;212.764000;212.688000;212.697000;0 +20260324 075400;212.698000;212.701000;212.672000;212.701000;0 +20260324 075500;212.700000;212.706000;212.669000;212.691000;0 +20260324 075600;212.692000;212.693000;212.666000;212.690000;0 +20260324 075700;212.693000;212.703000;212.675000;212.692000;0 +20260324 075800;212.692000;212.697000;212.677000;212.684000;0 +20260324 075900;212.683000;212.695000;212.679000;212.692000;0 +20260324 080000;212.693000;212.700000;212.642000;212.654000;0 +20260324 080100;212.655000;212.672000;212.646000;212.646000;0 +20260324 080200;212.646000;212.684000;212.642000;212.669000;0 +20260324 080300;212.672000;212.679000;212.649000;212.651000;0 +20260324 080400;212.650000;212.656000;212.621000;212.625000;0 +20260324 080500;212.626000;212.637000;212.615000;212.626000;0 +20260324 080600;212.621000;212.658000;212.615000;212.657000;0 +20260324 080700;212.655000;212.658000;212.588000;212.592000;0 +20260324 080800;212.601000;212.607000;212.476000;212.500000;0 +20260324 080900;212.499000;212.509000;212.417000;212.486000;0 +20260324 081000;212.484000;212.518000;212.464000;212.504000;0 +20260324 081100;212.503000;212.556000;212.491000;212.509000;0 +20260324 081200;212.507000;212.546000;212.503000;212.537000;0 +20260324 081300;212.537000;212.563000;212.530000;212.545000;0 +20260324 081400;212.540000;212.543000;212.516000;212.529000;0 +20260324 081500;212.530000;212.567000;212.518000;212.519000;0 +20260324 081600;212.520000;212.558000;212.516000;212.542000;0 +20260324 081700;212.542000;212.546000;212.500000;212.512000;0 +20260324 081800;212.511000;212.519000;212.496000;212.498000;0 +20260324 081900;212.501000;212.512000;212.475000;212.506000;0 +20260324 082000;212.506000;212.514000;212.493000;212.501000;0 +20260324 082100;212.498000;212.512000;212.489000;212.505000;0 +20260324 082200;212.502000;212.543000;212.499000;212.532000;0 +20260324 082300;212.529000;212.555000;212.512000;212.554000;0 +20260324 082400;212.555000;212.567000;212.532000;212.538000;0 +20260324 082500;212.534000;212.545000;212.511000;212.543000;0 +20260324 082600;212.544000;212.544000;212.482000;212.499000;0 +20260324 082700;212.499000;212.512000;212.487000;212.502000;0 +20260324 082800;212.502000;212.508000;212.456000;212.474000;0 +20260324 082900;212.476000;212.498000;212.455000;212.457000;0 +20260324 083000;212.454000;212.477000;212.423000;212.467000;0 +20260324 083100;212.465000;212.535000;212.434000;212.524000;0 +20260324 083200;212.524000;212.558000;212.516000;212.529000;0 +20260324 083300;212.533000;212.586000;212.533000;212.559000;0 +20260324 083400;212.558000;212.562000;212.505000;212.534000;0 +20260324 083500;212.537000;212.553000;212.495000;212.511000;0 +20260324 083600;212.512000;212.523000;212.462000;212.486000;0 +20260324 083700;212.488000;212.547000;212.476000;212.516000;0 +20260324 083800;212.515000;212.531000;212.476000;212.510000;0 +20260324 083900;212.511000;212.527000;212.481000;212.505000;0 +20260324 084000;212.505000;212.530000;212.483000;212.487000;0 +20260324 084100;212.492000;212.496000;212.428000;212.433000;0 +20260324 084200;212.432000;212.501000;212.432000;212.493000;0 +20260324 084300;212.491000;212.491000;212.455000;212.455000;0 +20260324 084400;212.455000;212.481000;212.441000;212.444000;0 +20260324 084500;212.443000;212.475000;212.410000;212.465000;0 +20260324 084600;212.464000;212.488000;212.450000;212.475000;0 +20260324 084700;212.473000;212.499000;212.458000;212.496000;0 +20260324 084800;212.496000;212.498000;212.454000;212.473000;0 +20260324 084900;212.474000;212.489000;212.444000;212.453000;0 +20260324 085000;212.459000;212.478000;212.425000;212.425000;0 +20260324 085100;212.428000;212.453000;212.413000;212.413000;0 +20260324 085200;212.413000;212.466000;212.401000;212.462000;0 +20260324 085300;212.462000;212.474000;212.443000;212.462000;0 +20260324 085400;212.463000;212.485000;212.451000;212.464000;0 +20260324 085500;212.465000;212.502000;212.465000;212.499000;0 +20260324 085600;212.500000;212.526000;212.493000;212.501000;0 +20260324 085700;212.502000;212.542000;212.420000;212.432000;0 +20260324 085800;212.432000;212.452000;212.415000;212.441000;0 +20260324 085900;212.438000;212.455000;212.413000;212.428000;0 +20260324 090000;212.431000;212.514000;212.430000;212.476000;0 +20260324 090100;212.478000;212.478000;212.421000;212.427000;0 +20260324 090200;212.426000;212.499000;212.415000;212.492000;0 +20260324 090300;212.494000;212.528000;212.472000;212.520000;0 +20260324 090400;212.523000;212.533000;212.498000;212.529000;0 +20260324 090500;212.529000;212.533000;212.485000;212.488000;0 +20260324 090600;212.487000;212.520000;212.467000;212.520000;0 +20260324 090700;212.520000;212.578000;212.513000;212.569000;0 +20260324 090800;212.567000;212.567000;212.532000;212.562000;0 +20260324 090900;212.560000;212.600000;212.552000;212.591000;0 +20260324 091000;212.593000;212.640000;212.583000;212.618000;0 +20260324 091100;212.618000;212.627000;212.594000;212.610000;0 +20260324 091200;212.615000;212.622000;212.581000;212.595000;0 +20260324 091300;212.595000;212.622000;212.582000;212.619000;0 +20260324 091400;212.616000;212.637000;212.597000;212.612000;0 +20260324 091500;212.612000;212.650000;212.608000;212.633000;0 +20260324 091600;212.635000;212.645000;212.619000;212.638000;0 +20260324 091700;212.634000;212.657000;212.631000;212.648000;0 +20260324 091800;212.647000;212.665000;212.627000;212.645000;0 +20260324 091900;212.646000;212.678000;212.643000;212.673000;0 +20260324 092000;212.675000;212.678000;212.637000;212.650000;0 +20260324 092100;212.650000;212.651000;212.598000;212.603000;0 +20260324 092200;212.601000;212.615000;212.573000;212.579000;0 +20260324 092300;212.580000;212.624000;212.580000;212.614000;0 +20260324 092400;212.616000;212.640000;212.610000;212.627000;0 +20260324 092500;212.628000;212.629000;212.596000;212.619000;0 +20260324 092600;212.619000;212.678000;212.613000;212.658000;0 +20260324 092700;212.659000;212.681000;212.641000;212.667000;0 +20260324 092800;212.665000;212.672000;212.640000;212.645000;0 +20260324 092900;212.651000;212.657000;212.623000;212.649000;0 +20260324 093000;212.650000;212.659000;212.620000;212.620000;0 +20260324 093100;212.620000;212.633000;212.604000;212.612000;0 +20260324 093200;212.610000;212.619000;212.599000;212.607000;0 +20260324 093300;212.606000;212.642000;212.592000;212.592000;0 +20260324 093400;212.592000;212.625000;212.589000;212.625000;0 +20260324 093500;212.622000;212.634000;212.592000;212.625000;0 +20260324 093600;212.626000;212.628000;212.584000;212.586000;0 +20260324 093700;212.583000;212.613000;212.583000;212.593000;0 +20260324 093800;212.588000;212.605000;212.578000;212.593000;0 +20260324 093900;212.591000;212.630000;212.579000;212.622000;0 +20260324 094000;212.623000;212.686000;212.613000;212.678000;0 +20260324 094100;212.678000;212.709000;212.657000;212.682000;0 +20260324 094200;212.683000;212.722000;212.667000;212.716000;0 +20260324 094300;212.715000;212.730000;212.706000;212.716000;0 +20260324 094400;212.718000;212.746000;212.693000;212.745000;0 +20260324 094500;212.743000;212.747000;212.646000;212.647000;0 +20260324 094600;212.646000;212.734000;212.645000;212.721000;0 +20260324 094700;212.721000;212.723000;212.676000;212.702000;0 +20260324 094800;212.708000;212.722000;212.695000;212.707000;0 +20260324 094900;212.708000;212.709000;212.652000;212.662000;0 +20260324 095000;212.663000;212.663000;212.634000;212.644000;0 +20260324 095100;212.641000;212.745000;212.641000;212.741000;0 +20260324 095200;212.742000;212.869000;212.712000;212.805000;0 +20260324 095300;212.797000;212.825000;212.747000;212.782000;0 +20260324 095400;212.779000;212.779000;212.687000;212.690000;0 +20260324 095500;212.693000;212.712000;212.655000;212.698000;0 +20260324 095600;212.700000;212.712000;212.670000;212.690000;0 +20260324 095700;212.690000;212.729000;212.678000;212.699000;0 +20260324 095800;212.700000;212.703000;212.673000;212.686000;0 +20260324 095900;212.686000;212.694000;212.558000;212.671000;0 +20260324 100000;212.671000;212.712000;212.651000;212.651000;0 +20260324 100100;212.651000;212.686000;212.642000;212.670000;0 +20260324 100200;212.664000;212.673000;212.578000;212.602000;0 +20260324 100300;212.601000;212.636000;212.597000;212.601000;0 +20260324 100400;212.603000;212.614000;212.583000;212.585000;0 +20260324 100500;212.584000;212.594000;212.562000;212.567000;0 +20260324 100600;212.566000;212.604000;212.557000;212.604000;0 +20260324 100700;212.602000;212.623000;212.592000;212.611000;0 +20260324 100800;212.606000;212.617000;212.549000;212.591000;0 +20260324 100900;212.592000;212.625000;212.584000;212.603000;0 +20260324 101000;212.604000;212.610000;212.577000;212.596000;0 +20260324 101100;212.598000;212.656000;212.594000;212.602000;0 +20260324 101200;212.604000;212.621000;212.582000;212.590000;0 +20260324 101300;212.592000;212.610000;212.575000;212.589000;0 +20260324 101400;212.594000;212.602000;212.574000;212.595000;0 +20260324 101500;212.600000;212.613000;212.571000;212.603000;0 +20260324 101600;212.602000;212.611000;212.567000;212.610000;0 +20260324 101700;212.609000;212.609000;212.564000;212.587000;0 +20260324 101800;212.590000;212.620000;212.589000;212.600000;0 +20260324 101900;212.601000;212.603000;212.574000;212.585000;0 +20260324 102000;212.580000;212.599000;212.564000;212.597000;0 +20260324 102100;212.598000;212.607000;212.573000;212.600000;0 +20260324 102200;212.597000;212.625000;212.583000;212.608000;0 +20260324 102300;212.604000;212.613000;212.583000;212.608000;0 +20260324 102400;212.608000;212.636000;212.600000;212.628000;0 +20260324 102500;212.633000;212.654000;212.624000;212.649000;0 +20260324 102600;212.650000;212.651000;212.622000;212.624000;0 +20260324 102700;212.623000;212.636000;212.610000;212.632000;0 +20260324 102800;212.633000;212.637000;212.583000;212.589000;0 +20260324 102900;212.589000;212.614000;212.577000;212.590000;0 +20260324 103000;212.593000;212.640000;212.593000;212.622000;0 +20260324 103100;212.622000;212.655000;212.615000;212.623000;0 +20260324 103200;212.624000;212.629000;212.587000;212.601000;0 +20260324 103300;212.599000;212.608000;212.566000;212.568000;0 +20260324 103400;212.567000;212.591000;212.565000;212.591000;0 +20260324 103500;212.588000;212.592000;212.551000;212.551000;0 +20260324 103600;212.548000;212.564000;212.543000;212.559000;0 +20260324 103700;212.563000;212.598000;212.552000;212.582000;0 +20260324 103800;212.581000;212.587000;212.554000;212.570000;0 +20260324 103900;212.570000;212.576000;212.553000;212.573000;0 +20260324 104000;212.572000;212.572000;212.545000;212.550000;0 +20260324 104100;212.546000;212.591000;212.545000;212.585000;0 +20260324 104200;212.585000;212.619000;212.575000;212.607000;0 +20260324 104300;212.606000;212.613000;212.566000;212.567000;0 +20260324 104400;212.568000;212.608000;212.564000;212.588000;0 +20260324 104500;212.591000;212.599000;212.561000;212.561000;0 +20260324 104600;212.558000;212.597000;212.549000;212.583000;0 +20260324 104700;212.585000;212.605000;212.576000;212.576000;0 +20260324 104800;212.576000;212.600000;212.563000;212.598000;0 +20260324 104900;212.599000;212.604000;212.554000;212.561000;0 +20260324 105000;212.559000;212.563000;212.531000;212.535000;0 +20260324 105100;212.535000;212.555000;212.520000;212.533000;0 +20260324 105200;212.534000;212.583000;212.534000;212.579000;0 +20260324 105300;212.579000;212.582000;212.528000;212.547000;0 +20260324 105400;212.546000;212.560000;212.503000;212.511000;0 +20260324 105500;212.510000;212.577000;212.482000;212.574000;0 +20260324 105600;212.575000;212.635000;212.568000;212.615000;0 +20260324 105700;212.614000;212.673000;212.583000;212.583000;0 +20260324 105800;212.583000;212.618000;212.581000;212.613000;0 +20260324 105900;212.615000;212.623000;212.604000;212.621000;0 +20260324 110000;212.619000;212.621000;212.583000;212.599000;0 +20260324 110100;212.599000;212.606000;212.582000;212.585000;0 +20260324 110200;212.585000;212.589000;212.558000;212.580000;0 +20260324 110300;212.580000;212.626000;212.569000;212.613000;0 +20260324 110400;212.620000;212.625000;212.597000;212.608000;0 +20260324 110500;212.610000;212.643000;212.608000;212.631000;0 +20260324 110600;212.632000;212.640000;212.612000;212.635000;0 +20260324 110700;212.639000;212.659000;212.631000;212.631000;0 +20260324 110800;212.631000;212.631000;212.588000;212.593000;0 +20260324 110900;212.596000;212.616000;212.590000;212.602000;0 +20260324 111000;212.603000;212.617000;212.581000;212.598000;0 +20260324 111100;212.599000;212.656000;212.595000;212.655000;0 +20260324 111200;212.656000;212.656000;212.618000;212.623000;0 +20260324 111300;212.623000;212.624000;212.597000;212.606000;0 +20260324 111400;212.606000;212.623000;212.593000;212.593000;0 +20260324 111500;212.595000;212.615000;212.587000;212.611000;0 +20260324 111600;212.609000;212.647000;212.608000;212.647000;0 +20260324 111700;212.647000;212.659000;212.626000;212.631000;0 +20260324 111800;212.638000;212.638000;212.621000;212.625000;0 +20260324 111900;212.628000;212.643000;212.628000;212.628000;0 +20260324 112000;212.627000;212.645000;212.610000;212.622000;0 +20260324 112100;212.622000;212.632000;212.604000;212.619000;0 +20260324 112200;212.617000;212.646000;212.617000;212.629000;0 +20260324 112300;212.629000;212.629000;212.602000;212.602000;0 +20260324 112400;212.603000;212.629000;212.603000;212.619000;0 +20260324 112500;212.621000;212.622000;212.602000;212.604000;0 +20260324 112600;212.609000;212.662000;212.609000;212.657000;0 +20260324 112700;212.656000;212.712000;212.653000;212.712000;0 +20260324 112800;212.705000;212.709000;212.687000;212.699000;0 +20260324 112900;212.699000;212.710000;212.688000;212.704000;0 +20260324 113000;212.707000;212.717000;212.649000;212.654000;0 +20260324 113100;212.652000;212.692000;212.652000;212.677000;0 +20260324 113200;212.676000;212.695000;212.657000;212.692000;0 +20260324 113300;212.688000;212.688000;212.650000;212.668000;0 +20260324 113400;212.665000;212.681000;212.652000;212.669000;0 +20260324 113500;212.670000;212.676000;212.617000;212.639000;0 +20260324 113600;212.641000;212.645000;212.630000;212.634000;0 +20260324 113700;212.637000;212.642000;212.615000;212.621000;0 +20260324 113800;212.619000;212.636000;212.615000;212.618000;0 +20260324 113900;212.615000;212.622000;212.572000;212.574000;0 +20260324 114000;212.574000;212.609000;212.572000;212.597000;0 +20260324 114100;212.598000;212.625000;212.598000;212.618000;0 +20260324 114200;212.618000;212.631000;212.608000;212.621000;0 +20260324 114300;212.619000;212.632000;212.618000;212.623000;0 +20260324 114400;212.622000;212.658000;212.618000;212.656000;0 +20260324 114500;212.656000;212.704000;212.652000;212.698000;0 +20260324 114600;212.696000;212.718000;212.684000;212.688000;0 +20260324 114700;212.693000;212.714000;212.684000;212.707000;0 +20260324 114800;212.707000;212.708000;212.668000;212.673000;0 +20260324 114900;212.675000;212.696000;212.672000;212.692000;0 +20260324 115000;212.692000;212.709000;212.688000;212.703000;0 +20260324 115100;212.703000;212.720000;212.701000;212.710000;0 +20260324 115200;212.707000;212.726000;212.705000;212.705000;0 +20260324 115300;212.706000;212.709000;212.688000;212.698000;0 +20260324 115400;212.698000;212.714000;212.697000;212.700000;0 +20260324 115500;212.701000;212.707000;212.671000;212.683000;0 +20260324 115600;212.687000;212.715000;212.681000;212.696000;0 +20260324 115700;212.698000;212.704000;212.685000;212.689000;0 +20260324 115800;212.690000;212.709000;212.690000;212.690000;0 +20260324 115900;212.689000;212.704000;212.674000;212.674000;0 +20260324 120000;212.675000;212.719000;212.673000;212.701000;0 +20260324 120100;212.700000;212.712000;212.684000;212.706000;0 +20260324 120200;212.704000;212.720000;212.669000;212.681000;0 +20260324 120300;212.681000;212.694000;212.649000;212.660000;0 +20260324 120400;212.663000;212.670000;212.612000;212.626000;0 +20260324 120500;212.625000;212.625000;212.483000;212.532000;0 +20260324 120600;212.528000;212.622000;212.520000;212.576000;0 +20260324 120700;212.577000;212.615000;212.558000;212.574000;0 +20260324 120800;212.575000;212.593000;212.549000;212.555000;0 +20260324 120900;212.553000;212.578000;212.517000;212.527000;0 +20260324 121000;212.536000;212.585000;212.524000;212.561000;0 +20260324 121100;212.566000;212.590000;212.558000;212.567000;0 +20260324 121200;212.568000;212.576000;212.528000;212.539000;0 +20260324 121300;212.534000;212.595000;212.534000;212.584000;0 +20260324 121400;212.585000;212.607000;212.567000;212.591000;0 +20260324 121500;212.592000;212.631000;212.587000;212.590000;0 +20260324 121600;212.591000;212.619000;212.574000;212.611000;0 +20260324 121700;212.612000;212.634000;212.590000;212.606000;0 +20260324 121800;212.605000;212.646000;212.604000;212.624000;0 +20260324 121900;212.624000;212.645000;212.612000;212.624000;0 +20260324 122000;212.624000;212.640000;212.617000;212.632000;0 +20260324 122100;212.633000;212.668000;212.632000;212.661000;0 +20260324 122200;212.657000;212.675000;212.634000;212.643000;0 +20260324 122300;212.643000;212.683000;212.643000;212.675000;0 +20260324 122400;212.678000;212.687000;212.653000;212.665000;0 +20260324 122500;212.665000;212.675000;212.647000;212.667000;0 +20260324 122600;212.667000;212.701000;212.656000;212.664000;0 +20260324 122700;212.661000;212.699000;212.659000;212.674000;0 +20260324 122800;212.674000;212.695000;212.668000;212.689000;0 +20260324 122900;212.690000;212.702000;212.679000;212.700000;0 +20260324 123000;212.696000;212.770000;212.692000;212.764000;0 +20260324 123100;212.765000;212.765000;212.740000;212.757000;0 +20260324 123200;212.758000;212.758000;212.719000;212.730000;0 +20260324 123300;212.730000;212.735000;212.695000;212.695000;0 +20260324 123400;212.695000;212.727000;212.695000;212.712000;0 +20260324 123500;212.711000;212.723000;212.691000;212.700000;0 +20260324 123600;212.701000;212.720000;212.691000;212.712000;0 +20260324 123700;212.711000;212.742000;212.704000;212.738000;0 +20260324 123800;212.740000;212.750000;212.721000;212.725000;0 +20260324 123900;212.725000;212.737000;212.721000;212.732000;0 +20260324 124000;212.735000;212.756000;212.729000;212.749000;0 +20260324 124100;212.749000;212.749000;212.721000;212.739000;0 +20260324 124200;212.737000;212.740000;212.674000;212.697000;0 +20260324 124300;212.699000;212.709000;212.693000;212.696000;0 +20260324 124400;212.696000;212.705000;212.681000;212.696000;0 +20260324 124500;212.696000;212.703000;212.680000;212.702000;0 +20260324 124600;212.705000;212.717000;212.697000;212.716000;0 +20260324 124700;212.712000;212.713000;212.669000;212.669000;0 +20260324 124800;212.667000;212.685000;212.664000;212.680000;0 +20260324 124900;212.681000;212.701000;212.678000;212.691000;0 +20260324 125000;212.690000;212.691000;212.667000;212.676000;0 +20260324 125100;212.681000;212.690000;212.672000;212.681000;0 +20260324 125200;212.681000;212.734000;212.676000;212.698000;0 +20260324 125300;212.701000;212.713000;212.695000;212.703000;0 +20260324 125400;212.700000;212.732000;212.692000;212.725000;0 +20260324 125500;212.720000;212.786000;212.699000;212.731000;0 +20260324 125600;212.724000;212.803000;212.721000;212.783000;0 +20260324 125700;212.786000;212.798000;212.759000;212.781000;0 +20260324 125800;212.779000;212.795000;212.769000;212.790000;0 +20260324 125900;212.788000;212.800000;212.760000;212.797000;0 +20260324 130000;212.801000;212.830000;212.790000;212.792000;0 +20260324 130100;212.791000;212.802000;212.770000;212.786000;0 +20260324 130200;212.782000;212.786000;212.719000;212.734000;0 +20260324 130300;212.732000;212.745000;212.725000;212.728000;0 +20260324 130400;212.730000;212.756000;212.723000;212.741000;0 +20260324 130500;212.741000;212.763000;212.734000;212.760000;0 +20260324 130600;212.761000;212.765000;212.738000;212.745000;0 +20260324 130700;212.747000;212.757000;212.720000;212.750000;0 +20260324 130800;212.748000;212.752000;212.723000;212.730000;0 +20260324 130900;212.730000;212.732000;212.700000;212.705000;0 +20260324 131000;212.703000;212.726000;212.702000;212.717000;0 +20260324 131100;212.718000;212.724000;212.687000;212.704000;0 +20260324 131200;212.703000;212.713000;212.692000;212.710000;0 +20260324 131300;212.708000;212.715000;212.681000;212.689000;0 +20260324 131400;212.688000;212.699000;212.673000;212.689000;0 +20260324 131500;212.691000;212.701000;212.667000;212.677000;0 +20260324 131600;212.677000;212.683000;212.662000;212.663000;0 +20260324 131700;212.663000;212.674000;212.650000;212.660000;0 +20260324 131800;212.661000;212.673000;212.653000;212.668000;0 +20260324 131900;212.670000;212.692000;212.661000;212.661000;0 +20260324 132000;212.663000;212.688000;212.646000;212.668000;0 +20260324 132100;212.675000;212.680000;212.655000;212.660000;0 +20260324 132200;212.660000;212.670000;212.639000;212.661000;0 +20260324 132300;212.661000;212.676000;212.651000;212.655000;0 +20260324 132400;212.656000;212.668000;212.648000;212.657000;0 +20260324 132500;212.656000;212.665000;212.634000;212.639000;0 +20260324 132600;212.641000;212.684000;212.636000;212.683000;0 +20260324 132700;212.685000;212.714000;212.679000;212.699000;0 +20260324 132800;212.698000;212.717000;212.673000;212.695000;0 +20260324 132900;212.694000;212.713000;212.684000;212.693000;0 +20260324 133000;212.694000;212.702000;212.681000;212.688000;0 +20260324 133100;212.688000;212.740000;212.685000;212.739000;0 +20260324 133200;212.737000;212.768000;212.733000;212.758000;0 +20260324 133300;212.758000;212.763000;212.736000;212.763000;0 +20260324 133400;212.763000;212.767000;212.742000;212.755000;0 +20260324 133500;212.754000;212.791000;212.753000;212.778000;0 +20260324 133600;212.777000;212.780000;212.760000;212.774000;0 +20260324 133700;212.773000;212.775000;212.751000;212.765000;0 +20260324 133800;212.765000;212.791000;212.744000;212.787000;0 +20260324 133900;212.783000;212.801000;212.764000;212.777000;0 +20260324 134000;212.776000;212.785000;212.752000;212.771000;0 +20260324 134100;212.771000;212.772000;212.736000;212.749000;0 +20260324 134200;212.748000;212.755000;212.721000;212.728000;0 +20260324 134300;212.730000;212.743000;212.705000;212.718000;0 +20260324 134400;212.719000;212.733000;212.713000;212.718000;0 +20260324 134500;212.722000;212.732000;212.709000;212.718000;0 +20260324 134600;212.721000;212.737000;212.710000;212.730000;0 +20260324 134700;212.727000;212.729000;212.687000;212.689000;0 +20260324 134800;212.689000;212.700000;212.679000;212.697000;0 +20260324 134900;212.698000;212.711000;212.691000;212.709000;0 +20260324 135000;212.704000;212.730000;212.702000;212.726000;0 +20260324 135100;212.725000;212.738000;212.719000;212.727000;0 +20260324 135200;212.728000;212.733000;212.713000;212.731000;0 +20260324 135300;212.730000;212.744000;212.712000;212.720000;0 +20260324 135400;212.728000;212.738000;212.714000;212.738000;0 +20260324 135500;212.735000;212.735000;212.701000;212.717000;0 +20260324 135600;212.719000;212.720000;212.702000;212.708000;0 +20260324 135700;212.723000;212.736000;212.709000;212.729000;0 +20260324 135800;212.730000;212.754000;212.721000;212.749000;0 +20260324 135900;212.748000;212.764000;212.737000;212.751000;0 +20260324 140000;212.751000;212.773000;212.745000;212.768000;0 +20260324 140100;212.768000;212.779000;212.753000;212.765000;0 +20260324 140200;212.768000;212.769000;212.736000;212.739000;0 +20260324 140300;212.738000;212.746000;212.719000;212.719000;0 +20260324 140400;212.721000;212.731000;212.699000;212.701000;0 +20260324 140500;212.700000;212.701000;212.684000;212.697000;0 +20260324 140600;212.694000;212.698000;212.684000;212.696000;0 +20260324 140700;212.696000;212.707000;212.691000;212.694000;0 +20260324 140800;212.695000;212.695000;212.680000;212.681000;0 +20260324 140900;212.683000;212.711000;212.681000;212.700000;0 +20260324 141000;212.700000;212.712000;212.692000;212.711000;0 +20260324 141100;212.707000;212.741000;212.707000;212.720000;0 +20260324 141200;212.722000;212.731000;212.716000;212.731000;0 +20260324 141300;212.730000;212.746000;212.728000;212.738000;0 +20260324 141400;212.738000;212.751000;212.720000;212.745000;0 +20260324 141500;212.741000;212.748000;212.732000;212.747000;0 +20260324 141600;212.746000;212.754000;212.730000;212.754000;0 +20260324 141700;212.757000;212.760000;212.738000;212.750000;0 +20260324 141800;212.749000;212.752000;212.729000;212.732000;0 +20260324 141900;212.731000;212.760000;212.731000;212.757000;0 +20260324 142000;212.757000;212.766000;212.745000;212.766000;0 +20260324 142100;212.762000;212.772000;212.757000;212.768000;0 +20260324 142200;212.768000;212.782000;212.768000;212.774000;0 +20260324 142300;212.777000;212.791000;212.768000;212.788000;0 +20260324 142400;212.789000;212.809000;212.778000;212.805000;0 +20260324 142500;212.801000;212.809000;212.791000;212.801000;0 +20260324 142600;212.800000;212.803000;212.783000;212.799000;0 +20260324 142700;212.797000;212.804000;212.784000;212.791000;0 +20260324 142800;212.791000;212.793000;212.770000;212.773000;0 +20260324 142900;212.774000;212.787000;212.774000;212.783000;0 +20260324 143000;212.779000;212.783000;212.734000;212.768000;0 +20260324 143100;212.768000;212.777000;212.750000;212.757000;0 +20260324 143200;212.761000;212.767000;212.733000;212.740000;0 +20260324 143300;212.742000;212.754000;212.740000;212.747000;0 +20260324 143400;212.747000;212.747000;212.721000;212.722000;0 +20260324 143500;212.727000;212.731000;212.697000;212.729000;0 +20260324 143600;212.727000;212.756000;212.723000;212.750000;0 +20260324 143700;212.749000;212.757000;212.742000;212.747000;0 +20260324 143800;212.748000;212.753000;212.731000;212.731000;0 +20260324 143900;212.736000;212.738000;212.727000;212.730000;0 +20260324 144000;212.732000;212.736000;212.715000;212.732000;0 +20260324 144100;212.735000;212.744000;212.725000;212.728000;0 +20260324 144200;212.730000;212.743000;212.719000;212.739000;0 +20260324 144300;212.737000;212.741000;212.732000;212.740000;0 +20260324 144400;212.741000;212.742000;212.713000;212.729000;0 +20260324 144500;212.728000;212.735000;212.717000;212.734000;0 +20260324 144600;212.735000;212.738000;212.722000;212.724000;0 +20260324 144700;212.727000;212.736000;212.713000;212.725000;0 +20260324 144800;212.725000;212.766000;212.721000;212.749000;0 +20260324 144900;212.752000;212.764000;212.745000;212.755000;0 +20260324 145000;212.755000;212.764000;212.743000;212.760000;0 +20260324 145100;212.759000;212.760000;212.744000;212.754000;0 +20260324 145200;212.753000;212.754000;212.735000;212.740000;0 +20260324 145300;212.738000;212.754000;212.736000;212.740000;0 +20260324 145400;212.738000;212.742000;212.733000;212.737000;0 +20260324 145500;212.752000;212.754000;212.734000;212.744000;0 +20260324 145600;212.746000;212.747000;212.728000;212.744000;0 +20260324 145700;212.746000;212.753000;212.731000;212.737000;0 +20260324 145800;212.745000;212.764000;212.741000;212.762000;0 +20260324 145900;212.762000;212.764000;212.744000;212.758000;0 +20260324 150000;212.761000;212.774000;212.755000;212.758000;0 +20260324 150100;212.758000;212.780000;212.754000;212.776000;0 +20260324 150200;212.776000;212.788000;212.773000;212.787000;0 +20260324 150300;212.788000;212.788000;212.775000;212.775000;0 +20260324 150400;212.775000;212.792000;212.775000;212.778000;0 +20260324 150500;212.779000;212.787000;212.768000;212.786000;0 +20260324 150600;212.784000;212.787000;212.777000;212.777000;0 +20260324 150700;212.779000;212.786000;212.779000;212.782000;0 +20260324 150800;212.782000;212.786000;212.782000;212.783000;0 +20260324 150900;212.783000;212.786000;212.782000;212.786000;0 +20260324 151000;212.782000;212.786000;212.777000;212.785000;0 +20260324 151100;212.784000;212.789000;212.779000;212.783000;0 +20260324 151200;212.782000;212.798000;212.779000;212.793000;0 +20260324 151300;212.792000;212.796000;212.775000;212.784000;0 +20260324 151400;212.783000;212.795000;212.779000;212.791000;0 +20260324 151500;212.790000;212.798000;212.787000;212.792000;0 +20260324 151600;212.791000;212.792000;212.786000;212.790000;0 +20260324 151700;212.796000;212.812000;212.795000;212.801000;0 +20260324 151800;212.801000;212.818000;212.789000;212.803000;0 +20260324 151900;212.802000;212.836000;212.794000;212.824000;0 +20260324 152000;212.822000;212.880000;212.800000;212.855000;0 +20260324 152100;212.854000;212.887000;212.827000;212.843000;0 +20260324 152200;212.850000;212.901000;212.830000;212.877000;0 +20260324 152300;212.870000;212.877000;212.798000;212.849000;0 +20260324 152400;212.850000;212.872000;212.821000;212.831000;0 +20260324 152500;212.831000;212.853000;212.755000;212.760000;0 +20260324 152600;212.763000;212.781000;212.689000;212.720000;0 +20260324 152700;212.723000;212.800000;212.723000;212.751000;0 +20260324 152800;212.753000;212.753000;212.654000;212.699000;0 +20260324 152900;212.701000;212.739000;212.692000;212.722000;0 +20260324 153000;212.716000;212.753000;212.682000;212.731000;0 +20260324 153100;212.732000;212.752000;212.709000;212.727000;0 +20260324 153200;212.725000;212.727000;212.688000;212.724000;0 +20260324 153300;212.728000;212.746000;212.698000;212.741000;0 +20260324 153400;212.738000;212.794000;212.738000;212.790000;0 +20260324 153500;212.787000;212.817000;212.774000;212.800000;0 +20260324 153600;212.802000;212.821000;212.780000;212.808000;0 +20260324 153700;212.812000;212.822000;212.784000;212.807000;0 +20260324 153800;212.807000;212.818000;212.778000;212.807000;0 +20260324 153900;212.808000;212.829000;212.770000;212.825000;0 +20260324 154000;212.828000;212.830000;212.774000;212.795000;0 +20260324 154100;212.792000;212.794000;212.734000;212.771000;0 +20260324 154200;212.772000;212.793000;212.759000;212.788000;0 +20260324 154300;212.789000;212.789000;212.760000;212.779000;0 +20260324 154400;212.779000;212.813000;212.776000;212.801000;0 +20260324 154500;212.804000;212.846000;212.800000;212.836000;0 +20260324 154600;212.838000;212.863000;212.797000;212.830000;0 +20260324 154700;212.825000;212.836000;212.803000;212.825000;0 +20260324 154800;212.823000;212.871000;212.820000;212.852000;0 +20260324 154900;212.851000;212.888000;212.839000;212.878000;0 +20260324 155000;212.881000;212.895000;212.849000;212.884000;0 +20260324 155100;212.881000;212.900000;212.869000;212.893000;0 +20260324 155200;212.896000;212.921000;212.887000;212.891000;0 +20260324 155300;212.892000;212.893000;212.848000;212.854000;0 +20260324 155400;212.854000;212.863000;212.839000;212.855000;0 +20260324 155500;212.862000;212.894000;212.861000;212.877000;0 +20260324 155600;212.873000;212.881000;212.856000;212.870000;0 +20260324 155700;212.868000;212.880000;212.818000;212.867000;0 +20260324 155800;212.870000;212.878000;212.805000;212.805000;0 +20260324 155900;212.805000;212.819000;212.770000;212.780000;0 +20260324 160000;212.780000;212.780000;212.779000;212.779000;0 +20260324 160400;212.681000;212.691000;212.636000;212.690000;0 +20260324 160500;212.690000;212.690000;212.665000;212.676000;0 +20260324 160600;212.678000;212.761000;212.677000;212.682000;0 +20260324 160700;212.682000;212.682000;212.682000;212.682000;0 +20260324 160800;212.695000;212.695000;212.695000;212.695000;0 +20260324 160900;212.696000;212.696000;212.695000;212.695000;0 +20260324 161000;212.687000;212.687000;212.673000;212.683000;0 +20260324 161100;212.683000;212.689000;212.675000;212.688000;0 +20260324 161200;212.688000;212.702000;212.657000;212.672000;0 +20260324 161300;212.671000;212.696000;212.671000;212.696000;0 +20260324 161400;212.692000;212.692000;212.676000;212.676000;0 +20260324 161500;212.677000;212.677000;212.652000;212.653000;0 +20260324 161600;212.650000;212.650000;212.636000;212.636000;0 +20260324 161700;212.642000;212.699000;212.641000;212.699000;0 +20260324 161800;212.700000;212.706000;212.638000;212.638000;0 +20260324 161900;212.639000;212.641000;212.534000;212.557000;0 +20260324 162000;212.555000;212.555000;212.552000;212.555000;0 +20260324 162100;212.553000;212.557000;212.519000;212.519000;0 +20260324 162200;212.519000;212.550000;212.519000;212.545000;0 +20260324 162300;212.551000;212.556000;212.520000;212.526000;0 +20260324 162400;212.528000;212.532000;212.517000;212.531000;0 +20260324 162500;212.534000;212.546000;212.513000;212.530000;0 +20260324 162600;212.539000;212.539000;212.512000;212.535000;0 +20260324 162700;212.538000;212.555000;212.519000;212.535000;0 +20260324 162800;212.535000;212.539000;212.531000;212.534000;0 +20260324 162900;212.538000;212.554000;212.534000;212.534000;0 +20260324 163000;212.520000;212.645000;212.519000;212.611000;0 +20260324 163100;212.611000;212.673000;212.611000;212.638000;0 +20260324 163200;212.672000;212.687000;212.638000;212.673000;0 +20260324 163300;212.675000;212.692000;212.663000;212.688000;0 +20260324 163400;212.688000;212.689000;212.682000;212.688000;0 +20260324 163500;212.689000;212.771000;212.651000;212.751000;0 +20260324 163600;212.752000;212.782000;212.713000;212.729000;0 +20260324 163700;212.729000;212.751000;212.710000;212.724000;0 +20260324 163800;212.726000;212.754000;212.719000;212.746000;0 +20260324 163900;212.746000;212.746000;212.725000;212.735000;0 +20260324 164000;212.735000;212.748000;212.728000;212.732000;0 +20260324 164100;212.734000;212.743000;212.728000;212.734000;0 +20260324 164200;212.737000;212.739000;212.731000;212.735000;0 +20260324 164300;212.735000;212.767000;212.735000;212.761000;0 +20260324 164400;212.760000;212.760000;212.742000;212.759000;0 +20260324 164500;212.759000;212.760000;212.732000;212.734000;0 +20260324 164600;212.730000;212.785000;212.729000;212.783000;0 +20260324 164700;212.790000;212.796000;212.755000;212.762000;0 +20260324 164800;212.762000;212.800000;212.759000;212.763000;0 +20260324 164900;212.763000;212.775000;212.762000;212.773000;0 +20260324 165000;212.772000;212.778000;212.748000;212.766000;0 +20260324 165100;212.766000;212.775000;212.760000;212.774000;0 +20260324 165200;212.780000;212.783000;212.765000;212.770000;0 +20260324 165300;212.771000;212.784000;212.759000;212.768000;0 +20260324 165400;212.785000;212.798000;212.765000;212.786000;0 +20260324 165500;212.798000;212.798000;212.758000;212.764000;0 +20260324 165600;212.764000;212.798000;212.757000;212.771000;0 +20260324 165700;212.771000;212.797000;212.758000;212.780000;0 +20260324 165800;212.778000;212.795000;212.758000;212.770000;0 +20260324 165900;212.776000;212.793000;212.756000;212.793000;0 +20260324 170000;212.906000;212.906000;212.764000;212.770000;0 +20260324 170100;212.767000;212.799000;212.757000;212.764000;0 +20260324 170200;212.763000;212.780000;212.740000;212.742000;0 +20260324 170300;212.742000;212.778000;212.739000;212.768000;0 +20260324 170400;212.766000;212.776000;212.748000;212.754000;0 +20260324 170500;212.762000;212.793000;212.761000;212.793000;0 +20260324 170600;212.803000;212.820000;212.796000;212.803000;0 +20260324 170700;212.809000;212.838000;212.795000;212.838000;0 +20260324 170800;212.836000;212.867000;212.831000;212.858000;0 +20260324 170900;212.863000;212.863000;212.794000;212.794000;0 +20260324 171000;212.793000;212.824000;212.785000;212.824000;0 +20260324 171100;212.823000;212.848000;212.817000;212.827000;0 +20260324 171200;212.824000;212.847000;212.808000;212.818000;0 +20260324 171300;212.818000;212.834000;212.815000;212.834000;0 +20260324 171400;212.833000;212.835000;212.796000;212.810000;0 +20260324 171500;212.808000;212.812000;212.785000;212.801000;0 +20260324 171600;212.802000;212.822000;212.788000;212.822000;0 +20260324 171700;212.823000;212.850000;212.773000;212.835000;0 +20260324 171800;212.835000;212.857000;212.827000;212.850000;0 +20260324 171900;212.852000;212.859000;212.837000;212.845000;0 +20260324 172000;212.842000;212.843000;212.793000;212.830000;0 +20260324 172100;212.830000;212.834000;212.807000;212.817000;0 +20260324 172200;212.816000;212.824000;212.803000;212.824000;0 +20260324 172300;212.824000;212.844000;212.824000;212.829000;0 +20260324 172400;212.831000;212.834000;212.812000;212.815000;0 +20260324 172500;212.816000;212.836000;212.792000;212.827000;0 +20260324 172600;212.826000;212.852000;212.817000;212.846000;0 +20260324 172700;212.843000;212.845000;212.832000;212.837000;0 +20260324 172800;212.837000;212.844000;212.831000;212.836000;0 +20260324 172900;212.834000;212.851000;212.828000;212.828000;0 +20260324 173000;212.831000;212.864000;212.816000;212.854000;0 +20260324 173100;212.853000;212.865000;212.845000;212.852000;0 +20260324 173200;212.859000;212.859000;212.822000;212.826000;0 +20260324 173300;212.826000;212.847000;212.824000;212.843000;0 +20260324 173400;212.843000;212.851000;212.830000;212.833000;0 +20260324 173500;212.833000;212.840000;212.825000;212.840000;0 +20260324 173600;212.839000;212.841000;212.822000;212.823000;0 +20260324 173700;212.824000;212.836000;212.819000;212.827000;0 +20260324 173800;212.829000;212.847000;212.828000;212.835000;0 +20260324 173900;212.834000;212.842000;212.833000;212.839000;0 +20260324 174000;212.839000;212.850000;212.831000;212.848000;0 +20260324 174100;212.848000;212.859000;212.830000;212.858000;0 +20260324 174200;212.859000;212.873000;212.844000;212.873000;0 +20260324 174300;212.872000;212.874000;212.859000;212.863000;0 +20260324 174400;212.862000;212.878000;212.861000;212.875000;0 +20260324 174500;212.876000;212.902000;212.873000;212.880000;0 +20260324 174600;212.881000;212.912000;212.881000;212.911000;0 +20260324 174700;212.904000;212.919000;212.901000;212.913000;0 +20260324 174800;212.911000;212.915000;212.889000;212.892000;0 +20260324 174900;212.889000;212.897000;212.881000;212.884000;0 +20260324 175000;212.884000;212.898000;212.883000;212.898000;0 +20260324 175100;212.901000;212.909000;212.889000;212.908000;0 +20260324 175200;212.908000;212.912000;212.885000;212.886000;0 +20260324 175300;212.884000;212.898000;212.880000;212.892000;0 +20260324 175400;212.892000;212.917000;212.891000;212.912000;0 +20260324 175500;212.908000;212.916000;212.899000;212.906000;0 +20260324 175600;212.908000;212.911000;212.886000;212.892000;0 +20260324 175700;212.894000;212.920000;212.887000;212.908000;0 +20260324 175800;212.909000;212.918000;212.903000;212.914000;0 +20260324 175900;212.919000;212.923000;212.902000;212.910000;0 +20260324 180000;212.908000;212.926000;212.897000;212.923000;0 +20260324 180100;212.923000;212.923000;212.908000;212.914000;0 +20260324 180200;212.916000;212.927000;212.909000;212.921000;0 +20260324 180300;212.915000;212.930000;212.893000;212.919000;0 +20260324 180400;212.917000;212.922000;212.901000;212.908000;0 +20260324 180500;212.905000;212.928000;212.905000;212.922000;0 +20260324 180600;212.920000;212.943000;212.920000;212.936000;0 +20260324 180700;212.938000;212.938000;212.898000;212.901000;0 +20260324 180800;212.902000;212.915000;212.895000;212.899000;0 +20260324 180900;212.897000;212.898000;212.888000;212.893000;0 +20260324 181000;212.898000;212.905000;212.887000;212.904000;0 +20260324 181100;212.899000;212.916000;212.896000;212.906000;0 +20260324 181200;212.908000;212.908000;212.888000;212.896000;0 +20260324 181300;212.898000;212.901000;212.882000;212.882000;0 +20260324 181400;212.886000;212.906000;212.886000;212.888000;0 +20260324 181500;212.892000;212.896000;212.886000;212.894000;0 +20260324 181600;212.895000;212.915000;212.886000;212.907000;0 +20260324 181700;212.905000;212.914000;212.887000;212.910000;0 +20260324 181800;212.906000;212.907000;212.890000;212.894000;0 +20260324 181900;212.893000;212.900000;212.885000;212.892000;0 +20260324 182000;212.890000;212.903000;212.889000;212.897000;0 +20260324 182100;212.895000;212.897000;212.885000;212.895000;0 +20260324 182200;212.893000;212.925000;212.884000;212.914000;0 +20260324 182300;212.910000;212.916000;212.905000;212.910000;0 +20260324 182400;212.923000;212.945000;212.919000;212.931000;0 +20260324 182500;212.931000;212.932000;212.912000;212.915000;0 +20260324 182600;212.914000;212.936000;212.913000;212.916000;0 +20260324 182700;212.916000;212.924000;212.910000;212.920000;0 +20260324 182800;212.919000;212.946000;212.919000;212.937000;0 +20260324 182900;212.936000;212.938000;212.923000;212.936000;0 +20260324 183000;212.938000;212.971000;212.938000;212.968000;0 +20260324 183100;212.968000;212.968000;212.949000;212.962000;0 +20260324 183200;212.963000;212.981000;212.957000;212.965000;0 +20260324 183300;212.971000;212.980000;212.951000;212.974000;0 +20260324 183400;212.973000;212.977000;212.922000;212.922000;0 +20260324 183500;212.920000;212.925000;212.904000;212.910000;0 +20260324 183600;212.908000;212.927000;212.896000;212.921000;0 +20260324 183700;212.921000;212.926000;212.898000;212.913000;0 +20260324 183800;212.914000;212.919000;212.910000;212.916000;0 +20260324 183900;212.914000;212.937000;212.914000;212.933000;0 +20260324 184000;212.932000;212.932000;212.891000;212.900000;0 +20260324 184100;212.897000;212.900000;212.873000;212.883000;0 +20260324 184200;212.884000;212.888000;212.871000;212.879000;0 +20260324 184300;212.879000;212.888000;212.874000;212.888000;0 +20260324 184400;212.887000;212.896000;212.881000;212.894000;0 +20260324 184500;212.899000;212.911000;212.887000;212.911000;0 +20260324 184600;212.908000;212.911000;212.889000;212.893000;0 +20260324 184700;212.893000;212.895000;212.887000;212.887000;0 +20260324 184800;212.894000;212.919000;212.890000;212.913000;0 +20260324 184900;212.909000;212.919000;212.903000;212.907000;0 +20260324 185000;212.910000;212.915000;212.903000;212.905000;0 +20260324 185100;212.905000;212.913000;212.880000;212.888000;0 +20260324 185200;212.889000;212.891000;212.874000;212.884000;0 +20260324 185300;212.884000;212.896000;212.882000;212.896000;0 +20260324 185400;212.906000;212.915000;212.901000;212.915000;0 +20260324 185500;212.911000;212.911000;212.902000;212.910000;0 +20260324 185600;212.908000;212.908000;212.897000;212.900000;0 +20260324 185700;212.901000;212.916000;212.901000;212.916000;0 +20260324 185800;212.915000;212.924000;212.907000;212.911000;0 +20260324 185900;212.911000;212.914000;212.898000;212.898000;0 +20260324 190000;212.899000;212.899000;212.872000;212.891000;0 +20260324 190100;212.890000;212.919000;212.884000;212.892000;0 +20260324 190200;212.892000;212.907000;212.865000;212.891000;0 +20260324 190300;212.892000;212.944000;212.887000;212.940000;0 +20260324 190400;212.937000;212.973000;212.924000;212.969000;0 +20260324 190500;212.969000;213.004000;212.964000;212.969000;0 +20260324 190600;212.969000;213.001000;212.960000;213.001000;0 +20260324 190700;213.000000;213.013000;212.983000;212.984000;0 +20260324 190800;212.983000;213.001000;212.942000;212.960000;0 +20260324 190900;212.958000;212.984000;212.948000;212.984000;0 +20260324 191000;212.983000;213.033000;212.971000;213.004000;0 +20260324 191100;213.005000;213.053000;213.004000;213.036000;0 +20260324 191200;213.036000;213.056000;213.029000;213.045000;0 +20260324 191300;213.050000;213.094000;213.046000;213.088000;0 +20260324 191400;213.089000;213.139000;213.085000;213.123000;0 +20260324 191500;213.120000;213.146000;213.103000;213.143000;0 +20260324 191600;213.143000;213.144000;213.121000;213.136000;0 +20260324 191700;213.132000;213.181000;213.115000;213.137000;0 +20260324 191800;213.137000;213.143000;213.093000;213.095000;0 +20260324 191900;213.094000;213.122000;213.092000;213.110000;0 +20260324 192000;213.110000;213.148000;213.098000;213.117000;0 +20260324 192100;213.115000;213.151000;213.113000;213.143000;0 +20260324 192200;213.140000;213.168000;213.136000;213.165000;0 +20260324 192300;213.162000;213.188000;213.143000;213.177000;0 +20260324 192400;213.171000;213.177000;213.141000;213.143000;0 +20260324 192500;213.146000;213.153000;213.127000;213.136000;0 +20260324 192600;213.137000;213.144000;213.108000;213.112000;0 +20260324 192700;213.112000;213.119000;213.088000;213.118000;0 +20260324 192800;213.114000;213.121000;213.107000;213.117000;0 +20260324 192900;213.119000;213.128000;213.110000;213.114000;0 +20260324 193000;213.116000;213.119000;213.044000;213.117000;0 +20260324 193100;213.116000;213.169000;213.108000;213.164000;0 +20260324 193200;213.166000;213.170000;213.140000;213.169000;0 +20260324 193300;213.170000;213.175000;213.153000;213.168000;0 +20260324 193400;213.165000;213.170000;213.147000;213.165000;0 +20260324 193500;213.163000;213.165000;213.124000;213.140000;0 +20260324 193600;213.138000;213.146000;213.116000;213.122000;0 +20260324 193700;213.121000;213.146000;213.117000;213.138000;0 +20260324 193800;213.133000;213.142000;213.114000;213.129000;0 +20260324 193900;213.129000;213.163000;213.127000;213.153000;0 +20260324 194000;213.149000;213.176000;213.129000;213.158000;0 +20260324 194100;213.158000;213.164000;213.124000;213.130000;0 +20260324 194200;213.132000;213.137000;213.119000;213.130000;0 +20260324 194300;213.128000;213.159000;213.128000;213.157000;0 +20260324 194400;213.157000;213.173000;213.143000;213.149000;0 +20260324 194500;213.147000;213.168000;213.147000;213.160000;0 +20260324 194600;213.159000;213.165000;213.147000;213.157000;0 +20260324 194700;213.161000;213.162000;213.119000;213.143000;0 +20260324 194800;213.141000;213.146000;213.120000;213.145000;0 +20260324 194900;213.146000;213.146000;213.109000;213.120000;0 +20260324 195000;213.122000;213.147000;213.110000;213.142000;0 +20260324 195100;213.146000;213.149000;213.097000;213.115000;0 +20260324 195200;213.109000;213.139000;213.091000;213.139000;0 +20260324 195300;213.154000;213.168000;213.073000;213.104000;0 +20260324 195400;213.107000;213.107000;213.026000;213.076000;0 +20260324 195500;213.079000;213.088000;213.026000;213.080000;0 +20260324 195600;213.080000;213.081000;213.058000;213.062000;0 +20260324 195700;213.062000;213.092000;213.051000;213.092000;0 +20260324 195800;213.091000;213.093000;213.060000;213.071000;0 +20260324 195900;213.073000;213.076000;213.022000;213.035000;0 +20260324 200000;213.043000;213.056000;212.992000;213.012000;0 +20260324 200100;213.011000;213.059000;213.011000;213.059000;0 +20260324 200200;213.057000;213.084000;213.050000;213.062000;0 +20260324 200300;213.060000;213.064000;213.032000;213.064000;0 +20260324 200400;213.064000;213.074000;213.028000;213.064000;0 +20260324 200500;213.070000;213.076000;213.041000;213.045000;0 +20260324 200600;213.048000;213.064000;213.034000;213.043000;0 +20260324 200700;213.043000;213.044000;212.995000;213.002000;0 +20260324 200800;212.998000;213.061000;212.986000;213.061000;0 +20260324 200900;213.056000;213.094000;213.036000;213.086000;0 +20260324 201000;213.087000;213.094000;213.059000;213.071000;0 +20260324 201100;213.078000;213.110000;213.073000;213.097000;0 +20260324 201200;213.099000;213.104000;213.081000;213.090000;0 +20260324 201300;213.092000;213.107000;213.083000;213.097000;0 +20260324 201400;213.094000;213.096000;213.034000;213.034000;0 +20260324 201500;213.032000;213.065000;213.032000;213.051000;0 +20260324 201600;213.055000;213.070000;213.042000;213.046000;0 +20260324 201700;213.044000;213.069000;213.042000;213.043000;0 +20260324 201800;213.042000;213.064000;213.035000;213.045000;0 +20260324 201900;213.049000;213.079000;213.043000;213.078000;0 +20260324 202000;213.081000;213.094000;213.065000;213.094000;0 +20260324 202100;213.095000;213.097000;213.048000;213.079000;0 +20260324 202200;213.078000;213.085000;213.056000;213.079000;0 +20260324 202300;213.080000;213.091000;213.075000;213.089000;0 +20260324 202400;213.090000;213.091000;213.058000;213.058000;0 +20260324 202500;213.061000;213.076000;213.054000;213.061000;0 +20260324 202600;213.062000;213.084000;213.062000;213.073000;0 +20260324 202700;213.074000;213.076000;213.055000;213.071000;0 +20260324 202800;213.070000;213.094000;213.063000;213.064000;0 +20260324 202900;213.062000;213.069000;213.054000;213.067000;0 +20260324 203000;213.066000;213.066000;213.036000;213.041000;0 +20260324 203100;213.040000;213.062000;213.040000;213.058000;0 +20260324 203200;213.059000;213.059000;213.027000;213.028000;0 +20260324 203300;213.027000;213.027000;212.995000;213.002000;0 +20260324 203400;213.002000;213.012000;212.985000;213.002000;0 +20260324 203500;213.005000;213.020000;212.997000;213.017000;0 +20260324 203600;213.011000;213.030000;213.009000;213.016000;0 +20260324 203700;213.014000;213.021000;213.002000;213.007000;0 +20260324 203800;213.005000;213.014000;212.999000;213.012000;0 +20260324 203900;213.020000;213.034000;213.015000;213.023000;0 +20260324 204000;213.025000;213.031000;213.018000;213.031000;0 +20260324 204100;213.029000;213.049000;213.009000;213.047000;0 +20260324 204200;213.051000;213.084000;213.051000;213.074000;0 +20260324 204300;213.078000;213.098000;213.071000;213.089000;0 +20260324 204400;213.086000;213.089000;213.054000;213.070000;0 +20260324 204500;213.073000;213.077000;213.048000;213.069000;0 +20260324 204600;213.070000;213.071000;213.032000;213.039000;0 +20260324 204700;213.041000;213.058000;213.031000;213.050000;0 +20260324 204800;213.052000;213.055000;213.040000;213.046000;0 +20260324 204900;213.045000;213.048000;213.033000;213.039000;0 +20260324 205000;213.040000;213.053000;213.025000;213.031000;0 +20260324 205100;213.030000;213.033000;212.994000;213.022000;0 +20260324 205200;213.020000;213.047000;213.020000;213.034000;0 +20260324 205300;213.037000;213.042000;212.997000;212.998000;0 +20260324 205400;213.000000;213.000000;212.936000;212.945000;0 +20260324 205500;212.942000;212.953000;212.928000;212.934000;0 +20260324 205600;212.935000;212.944000;212.929000;212.934000;0 +20260324 205700;212.936000;212.953000;212.930000;212.945000;0 +20260324 205800;212.948000;212.959000;212.933000;212.945000;0 +20260324 205900;212.943000;212.946000;212.892000;212.904000;0 +20260324 210000;212.906000;212.946000;212.856000;212.880000;0 +20260324 210100;212.880000;212.894000;212.868000;212.872000;0 +20260324 210200;212.871000;212.885000;212.868000;212.880000;0 +20260324 210300;212.881000;212.883000;212.861000;212.868000;0 +20260324 210400;212.866000;212.869000;212.847000;212.848000;0 +20260324 210500;212.844000;212.844000;212.826000;212.830000;0 +20260324 210600;212.834000;212.858000;212.831000;212.854000;0 +20260324 210700;212.856000;212.862000;212.840000;212.860000;0 +20260324 210800;212.859000;212.860000;212.831000;212.833000;0 +20260324 210900;212.832000;212.863000;212.830000;212.842000;0 +20260324 211000;212.842000;212.855000;212.832000;212.836000;0 +20260324 211100;212.836000;212.858000;212.823000;212.825000;0 +20260324 211200;212.825000;212.843000;212.797000;212.807000;0 +20260324 211300;212.811000;212.823000;212.800000;212.821000;0 +20260324 211400;212.824000;212.827000;212.808000;212.824000;0 +20260324 211500;212.824000;212.829000;212.804000;212.804000;0 +20260324 211600;212.807000;212.841000;212.807000;212.838000;0 +20260324 211700;212.840000;212.846000;212.825000;212.842000;0 +20260324 211800;212.844000;212.853000;212.838000;212.843000;0 +20260324 211900;212.843000;212.870000;212.836000;212.866000;0 +20260324 212000;212.864000;212.865000;212.843000;212.849000;0 +20260324 212100;212.847000;212.879000;212.846000;212.873000;0 +20260324 212200;212.874000;212.881000;212.855000;212.858000;0 +20260324 212300;212.860000;212.865000;212.833000;212.854000;0 +20260324 212400;212.855000;212.855000;212.832000;212.833000;0 +20260324 212500;212.833000;212.854000;212.833000;212.853000;0 +20260324 212600;212.852000;212.853000;212.830000;212.832000;0 +20260324 212700;212.834000;212.836000;212.822000;212.829000;0 +20260324 212800;212.827000;212.834000;212.821000;212.823000;0 +20260324 212900;212.827000;212.842000;212.814000;212.827000;0 +20260324 213000;212.828000;212.844000;212.813000;212.822000;0 +20260324 213100;212.822000;212.833000;212.808000;212.828000;0 +20260324 213200;212.826000;212.839000;212.826000;212.833000;0 +20260324 213300;212.833000;212.846000;212.823000;212.841000;0 +20260324 213400;212.840000;212.883000;212.838000;212.862000;0 +20260324 213500;212.863000;212.873000;212.842000;212.842000;0 +20260324 213600;212.848000;212.853000;212.842000;212.850000;0 +20260324 213700;212.850000;212.859000;212.848000;212.851000;0 +20260324 213800;212.850000;212.863000;212.841000;212.850000;0 +20260324 213900;212.849000;212.856000;212.842000;212.844000;0 +20260324 214000;212.846000;212.866000;212.845000;212.860000;0 +20260324 214100;212.860000;212.865000;212.847000;212.858000;0 +20260324 214200;212.857000;212.876000;212.857000;212.870000;0 +20260324 214300;212.865000;212.867000;212.847000;212.861000;0 +20260324 214400;212.861000;212.884000;212.855000;212.873000;0 +20260324 214500;212.875000;212.919000;212.874000;212.915000;0 +20260324 214600;212.917000;212.922000;212.904000;212.904000;0 +20260324 214700;212.907000;212.907000;212.888000;212.896000;0 +20260324 214800;212.894000;212.901000;212.873000;212.875000;0 +20260324 214900;212.874000;212.875000;212.844000;212.856000;0 +20260324 215000;212.856000;212.870000;212.845000;212.847000;0 +20260324 215100;212.850000;212.853000;212.823000;212.823000;0 +20260324 215200;212.821000;212.826000;212.809000;212.809000;0 +20260324 215300;212.810000;212.822000;212.804000;212.820000;0 +20260324 215400;212.819000;212.824000;212.813000;212.821000;0 +20260324 215500;212.821000;212.824000;212.796000;212.800000;0 +20260324 215600;212.799000;212.862000;212.799000;212.860000;0 +20260324 215700;212.861000;212.899000;212.860000;212.870000;0 +20260324 215800;212.866000;212.867000;212.838000;212.844000;0 +20260324 215900;212.841000;212.852000;212.832000;212.835000;0 +20260324 220000;212.844000;212.867000;212.844000;212.858000;0 +20260324 220100;212.856000;212.860000;212.843000;212.854000;0 +20260324 220200;212.853000;212.856000;212.820000;212.820000;0 +20260324 220300;212.821000;212.821000;212.794000;212.799000;0 +20260324 220400;212.800000;212.802000;212.781000;212.791000;0 +20260324 220500;212.789000;212.801000;212.783000;212.794000;0 +20260324 220600;212.797000;212.810000;212.788000;212.804000;0 +20260324 220700;212.798000;212.811000;212.789000;212.798000;0 +20260324 220800;212.795000;212.804000;212.780000;212.787000;0 +20260324 220900;212.783000;212.789000;212.769000;212.778000;0 +20260324 221000;212.777000;212.865000;212.775000;212.851000;0 +20260324 221100;212.851000;212.858000;212.834000;212.834000;0 +20260324 221200;212.834000;212.835000;212.788000;212.790000;0 +20260324 221300;212.790000;212.809000;212.785000;212.805000;0 +20260324 221400;212.806000;212.812000;212.803000;212.808000;0 +20260324 221500;212.809000;212.827000;212.804000;212.824000;0 +20260324 221600;212.826000;212.826000;212.811000;212.818000;0 +20260324 221700;212.817000;212.834000;212.816000;212.831000;0 +20260324 221800;212.829000;212.853000;212.828000;212.842000;0 +20260324 221900;212.842000;212.842000;212.823000;212.824000;0 +20260324 222000;212.826000;212.850000;212.821000;212.841000;0 +20260324 222100;212.837000;212.845000;212.831000;212.839000;0 +20260324 222200;212.838000;212.843000;212.825000;212.839000;0 +20260324 222300;212.839000;212.840000;212.823000;212.826000;0 +20260324 222400;212.826000;212.838000;212.809000;212.838000;0 +20260324 222500;212.837000;212.837000;212.822000;212.825000;0 +20260324 222600;212.824000;212.828000;212.811000;212.811000;0 +20260324 222700;212.812000;212.812000;212.795000;212.801000;0 +20260324 222800;212.802000;212.824000;212.802000;212.818000;0 +20260324 222900;212.818000;212.823000;212.814000;212.814000;0 +20260324 223000;212.812000;212.821000;212.802000;212.821000;0 +20260324 223100;212.821000;212.826000;212.811000;212.820000;0 +20260324 223200;212.819000;212.824000;212.815000;212.824000;0 +20260324 223300;212.825000;212.825000;212.799000;212.801000;0 +20260324 223400;212.798000;212.810000;212.795000;212.801000;0 +20260324 223500;212.806000;212.833000;212.806000;212.822000;0 +20260324 223600;212.822000;212.832000;212.808000;212.808000;0 +20260324 223700;212.808000;212.808000;212.789000;212.798000;0 +20260324 223800;212.793000;212.802000;212.783000;212.784000;0 +20260324 223900;212.788000;212.803000;212.788000;212.801000;0 +20260324 224000;212.800000;212.802000;212.791000;212.791000;0 +20260324 224100;212.793000;212.795000;212.772000;212.772000;0 +20260324 224200;212.773000;212.803000;212.773000;212.800000;0 +20260324 224300;212.801000;212.804000;212.782000;212.803000;0 +20260324 224400;212.804000;212.806000;212.790000;212.792000;0 +20260324 224500;212.792000;212.806000;212.792000;212.800000;0 +20260324 224600;212.801000;212.806000;212.793000;212.798000;0 +20260324 224700;212.798000;212.816000;212.797000;212.804000;0 +20260324 224800;212.804000;212.807000;212.793000;212.797000;0 +20260324 224900;212.797000;212.798000;212.791000;212.793000;0 +20260324 225000;212.791000;212.804000;212.791000;212.803000;0 +20260324 225100;212.803000;212.810000;212.803000;212.810000;0 +20260324 225200;212.809000;212.813000;212.791000;212.793000;0 +20260324 225300;212.793000;212.812000;212.780000;212.810000;0 +20260324 225400;212.810000;212.815000;212.800000;212.808000;0 +20260324 225500;212.809000;212.822000;212.782000;212.782000;0 +20260324 225600;212.779000;212.787000;212.772000;212.774000;0 +20260324 225700;212.777000;212.804000;212.763000;212.775000;0 +20260324 225800;212.774000;212.774000;212.752000;212.766000;0 +20260324 225900;212.766000;212.774000;212.757000;212.770000;0 +20260324 230000;212.770000;212.773000;212.745000;212.761000;0 +20260324 230100;212.761000;212.768000;212.755000;212.767000;0 +20260324 230200;212.767000;212.768000;212.732000;212.749000;0 +20260324 230300;212.763000;212.781000;212.754000;212.770000;0 +20260324 230400;212.770000;212.786000;212.770000;212.783000;0 +20260324 230500;212.784000;212.792000;212.778000;212.779000;0 +20260324 230600;212.778000;212.785000;212.765000;212.768000;0 +20260324 230700;212.767000;212.823000;212.755000;212.823000;0 +20260324 230800;212.821000;212.825000;212.791000;212.798000;0 +20260324 230900;212.796000;212.823000;212.795000;212.822000;0 +20260324 231000;212.819000;212.834000;212.817000;212.831000;0 +20260324 231100;212.829000;212.840000;212.829000;212.838000;0 +20260324 231200;212.839000;212.839000;212.820000;212.823000;0 +20260324 231300;212.823000;212.827000;212.819000;212.823000;0 +20260324 231400;212.821000;212.858000;212.821000;212.858000;0 +20260324 231500;212.856000;212.873000;212.856000;212.868000;0 +20260324 231600;212.867000;212.868000;212.840000;212.842000;0 +20260324 231700;212.840000;212.862000;212.838000;212.855000;0 +20260324 231800;212.858000;212.872000;212.854000;212.857000;0 +20260324 231900;212.858000;212.874000;212.856000;212.859000;0 +20260324 232000;212.861000;212.877000;212.855000;212.862000;0 +20260324 232100;212.860000;212.862000;212.853000;212.854000;0 +20260324 232200;212.858000;212.900000;212.856000;212.900000;0 +20260324 232300;212.900000;212.903000;212.887000;212.888000;0 +20260324 232400;212.902000;212.930000;212.892000;212.923000;0 +20260324 232500;212.922000;212.927000;212.907000;212.907000;0 +20260324 232600;212.907000;212.907000;212.879000;212.892000;0 +20260324 232700;212.892000;212.896000;212.886000;212.896000;0 +20260324 232800;212.897000;212.899000;212.887000;212.894000;0 +20260324 232900;212.893000;212.893000;212.873000;212.876000;0 +20260324 233000;212.875000;212.891000;212.836000;212.848000;0 +20260324 233100;212.847000;212.873000;212.847000;212.862000;0 +20260324 233200;212.862000;212.862000;212.842000;212.842000;0 +20260324 233300;212.845000;212.850000;212.836000;212.844000;0 +20260324 233400;212.844000;212.862000;212.842000;212.845000;0 +20260324 233500;212.845000;212.845000;212.832000;212.840000;0 +20260324 233600;212.840000;212.858000;212.839000;212.858000;0 +20260324 233700;212.858000;212.858000;212.831000;212.850000;0 +20260324 233800;212.852000;212.860000;212.850000;212.859000;0 +20260324 233900;212.866000;212.885000;212.863000;212.880000;0 +20260324 234000;212.880000;212.896000;212.879000;212.887000;0 +20260324 234100;212.884000;212.900000;212.884000;212.897000;0 +20260324 234200;212.894000;212.899000;212.891000;212.892000;0 +20260324 234300;212.893000;212.895000;212.876000;212.889000;0 +20260324 234400;212.889000;212.904000;212.873000;212.896000;0 +20260324 234500;212.891000;212.896000;212.874000;212.880000;0 +20260324 234600;212.880000;212.889000;212.869000;212.869000;0 +20260324 234700;212.863000;212.870000;212.851000;212.851000;0 +20260324 234800;212.851000;212.859000;212.803000;212.810000;0 +20260324 234900;212.813000;212.820000;212.801000;212.808000;0 +20260324 235000;212.808000;212.815000;212.797000;212.800000;0 +20260324 235100;212.805000;212.812000;212.799000;212.810000;0 +20260324 235200;212.809000;212.813000;212.806000;212.811000;0 +20260324 235300;212.810000;212.810000;212.801000;212.804000;0 +20260324 235400;212.806000;212.813000;212.801000;212.810000;0 +20260324 235500;212.805000;212.807000;212.783000;212.788000;0 +20260324 235600;212.792000;212.801000;212.783000;212.788000;0 +20260324 235700;212.787000;212.792000;212.767000;212.778000;0 +20260324 235800;212.778000;212.796000;212.777000;212.777000;0 +20260324 235900;212.777000;212.777000;212.767000;212.767000;0 +20260325 000000;212.767000;212.803000;212.767000;212.794000;0 +20260325 000100;212.794000;212.802000;212.771000;212.782000;0 +20260325 000200;212.776000;212.792000;212.764000;212.792000;0 +20260325 000300;212.792000;212.812000;212.792000;212.796000;0 +20260325 000400;212.796000;212.803000;212.791000;212.791000;0 +20260325 000500;212.791000;212.791000;212.771000;212.771000;0 +20260325 000600;212.771000;212.781000;212.762000;212.780000;0 +20260325 000700;212.780000;212.780000;212.758000;212.769000;0 +20260325 000800;212.768000;212.794000;212.768000;212.780000;0 +20260325 000900;212.784000;212.797000;212.780000;212.784000;0 +20260325 001000;212.783000;212.812000;212.775000;212.811000;0 +20260325 001100;212.811000;212.827000;212.797000;212.797000;0 +20260325 001200;212.797000;212.798000;212.786000;212.789000;0 +20260325 001300;212.791000;212.792000;212.776000;212.779000;0 +20260325 001400;212.778000;212.780000;212.774000;212.778000;0 +20260325 001500;212.778000;212.780000;212.768000;212.772000;0 +20260325 001600;212.773000;212.773000;212.755000;212.763000;0 +20260325 001700;212.763000;212.774000;212.735000;212.739000;0 +20260325 001800;212.739000;212.746000;212.732000;212.736000;0 +20260325 001900;212.741000;212.744000;212.720000;212.722000;0 +20260325 002000;212.723000;212.732000;212.718000;212.721000;0 +20260325 002100;212.715000;212.739000;212.715000;212.738000;0 +20260325 002200;212.736000;212.736000;212.721000;212.726000;0 +20260325 002300;212.725000;212.725000;212.702000;212.704000;0 +20260325 002400;212.709000;212.714000;212.700000;212.702000;0 +20260325 002500;212.700000;212.701000;212.670000;212.683000;0 +20260325 002600;212.679000;212.709000;212.669000;212.695000;0 +20260325 002700;212.696000;212.705000;212.685000;212.699000;0 +20260325 002800;212.699000;212.708000;212.688000;212.696000;0 +20260325 002900;212.694000;212.713000;212.690000;212.710000;0 +20260325 003000;212.714000;212.737000;212.709000;212.729000;0 +20260325 003100;212.729000;212.734000;212.718000;212.730000;0 +20260325 003200;212.730000;212.731000;212.714000;212.723000;0 +20260325 003300;212.723000;212.727000;212.704000;212.708000;0 +20260325 003400;212.703000;212.744000;212.703000;212.740000;0 +20260325 003500;212.740000;212.763000;212.739000;212.762000;0 +20260325 003600;212.766000;212.781000;212.761000;212.769000;0 +20260325 003700;212.771000;212.777000;212.771000;212.774000;0 +20260325 003800;212.777000;212.785000;212.761000;212.776000;0 +20260325 003900;212.776000;212.776000;212.757000;212.767000;0 +20260325 004000;212.766000;212.766000;212.756000;212.764000;0 +20260325 004100;212.764000;212.766000;212.740000;212.740000;0 +20260325 004200;212.740000;212.759000;212.723000;212.756000;0 +20260325 004300;212.757000;212.778000;212.754000;212.760000;0 +20260325 004400;212.761000;212.776000;212.740000;212.746000;0 +20260325 004500;212.744000;212.748000;212.733000;212.733000;0 +20260325 004600;212.734000;212.745000;212.728000;212.736000;0 +20260325 004700;212.739000;212.743000;212.726000;212.726000;0 +20260325 004800;212.726000;212.727000;212.701000;212.703000;0 +20260325 004900;212.701000;212.716000;212.700000;212.712000;0 +20260325 005000;212.715000;212.719000;212.688000;212.693000;0 +20260325 005100;212.693000;212.705000;212.678000;212.705000;0 +20260325 005200;212.704000;212.705000;212.694000;212.695000;0 +20260325 005300;212.699000;212.699000;212.685000;212.685000;0 +20260325 005400;212.689000;212.689000;212.666000;212.671000;0 +20260325 005500;212.671000;212.672000;212.638000;212.663000;0 +20260325 005600;212.667000;212.681000;212.635000;212.643000;0 +20260325 005700;212.649000;212.682000;212.649000;212.657000;0 +20260325 005800;212.656000;212.700000;212.656000;212.695000;0 +20260325 005900;212.696000;212.698000;212.642000;212.652000;0 +20260325 010000;212.654000;212.674000;212.645000;212.652000;0 +20260325 010100;212.661000;212.666000;212.629000;212.629000;0 +20260325 010200;212.633000;212.682000;212.632000;212.677000;0 +20260325 010300;212.681000;212.702000;212.669000;212.676000;0 +20260325 010400;212.678000;212.701000;212.678000;212.689000;0 +20260325 010500;212.691000;212.694000;212.674000;212.677000;0 +20260325 010600;212.678000;212.699000;212.677000;212.699000;0 +20260325 010700;212.699000;212.716000;212.698000;212.708000;0 +20260325 010800;212.713000;212.720000;212.704000;212.711000;0 +20260325 010900;212.708000;212.708000;212.668000;212.676000;0 +20260325 011000;212.684000;212.721000;212.680000;212.721000;0 +20260325 011100;212.721000;212.756000;212.721000;212.754000;0 +20260325 011200;212.755000;212.758000;212.734000;212.735000;0 +20260325 011300;212.735000;212.736000;212.707000;212.707000;0 +20260325 011400;212.708000;212.716000;212.700000;212.711000;0 +20260325 011500;212.710000;212.730000;212.705000;212.716000;0 +20260325 011600;212.712000;212.726000;212.696000;212.700000;0 +20260325 011700;212.704000;212.727000;212.700000;212.723000;0 +20260325 011800;212.721000;212.763000;212.721000;212.757000;0 +20260325 011900;212.757000;212.766000;212.747000;212.755000;0 +20260325 012000;212.755000;212.782000;212.749000;212.775000;0 +20260325 012100;212.779000;212.816000;212.779000;212.804000;0 +20260325 012200;212.806000;212.879000;212.800000;212.862000;0 +20260325 012300;212.861000;212.872000;212.859000;212.860000;0 +20260325 012400;212.859000;212.875000;212.849000;212.870000;0 +20260325 012500;212.868000;212.881000;212.856000;212.857000;0 +20260325 012600;212.860000;212.873000;212.849000;212.868000;0 +20260325 012700;212.868000;212.869000;212.831000;212.831000;0 +20260325 012800;212.829000;212.829000;212.791000;212.797000;0 +20260325 012900;212.797000;212.802000;212.748000;212.764000;0 +20260325 013000;212.767000;212.796000;212.753000;212.792000;0 +20260325 013100;212.791000;212.816000;212.789000;212.807000;0 +20260325 013200;212.807000;212.807000;212.771000;212.774000;0 +20260325 013300;212.777000;212.819000;212.777000;212.819000;0 +20260325 013400;212.820000;212.831000;212.812000;212.822000;0 +20260325 013500;212.821000;212.834000;212.811000;212.813000;0 +20260325 013600;212.806000;212.806000;212.778000;212.798000;0 +20260325 013700;212.798000;212.801000;212.790000;212.800000;0 +20260325 013800;212.799000;212.799000;212.773000;212.778000;0 +20260325 013900;212.778000;212.778000;212.749000;212.759000;0 +20260325 014000;212.760000;212.760000;212.737000;212.747000;0 +20260325 014100;212.747000;212.761000;212.733000;212.760000;0 +20260325 014200;212.760000;212.780000;212.758000;212.769000;0 +20260325 014300;212.771000;212.785000;212.758000;212.759000;0 +20260325 014400;212.759000;212.776000;212.759000;212.765000;0 +20260325 014500;212.764000;212.804000;212.760000;212.775000;0 +20260325 014600;212.777000;212.781000;212.765000;212.781000;0 +20260325 014700;212.780000;212.799000;212.764000;212.796000;0 +20260325 014800;212.792000;212.804000;212.785000;212.803000;0 +20260325 014900;212.805000;212.808000;212.794000;212.798000;0 +20260325 015000;212.796000;212.801000;212.784000;212.787000;0 +20260325 015100;212.784000;212.818000;212.783000;212.814000;0 +20260325 015200;212.817000;212.823000;212.774000;212.774000;0 +20260325 015300;212.774000;212.781000;212.759000;212.762000;0 +20260325 015400;212.760000;212.768000;212.745000;212.755000;0 +20260325 015500;212.752000;212.752000;212.733000;212.734000;0 +20260325 015600;212.735000;212.749000;212.731000;212.739000;0 +20260325 015700;212.740000;212.775000;212.737000;212.770000;0 +20260325 015800;212.768000;212.813000;212.768000;212.806000;0 +20260325 015900;212.806000;212.815000;212.779000;212.779000;0 +20260325 020000;212.783000;212.887000;212.740000;212.884000;0 +20260325 020100;212.883000;212.899000;212.854000;212.867000;0 +20260325 020200;212.865000;212.901000;212.856000;212.892000;0 +20260325 020300;212.890000;212.925000;212.879000;212.898000;0 +20260325 020400;212.897000;212.920000;212.884000;212.892000;0 +20260325 020500;212.900000;212.921000;212.890000;212.903000;0 +20260325 020600;212.898000;212.905000;212.849000;212.868000;0 +20260325 020700;212.866000;212.886000;212.853000;212.886000;0 +20260325 020800;212.887000;212.889000;212.849000;212.851000;0 +20260325 020900;212.847000;212.850000;212.808000;212.809000;0 +20260325 021000;212.811000;212.847000;212.810000;212.838000;0 +20260325 021100;212.839000;212.856000;212.821000;212.830000;0 +20260325 021200;212.832000;212.849000;212.830000;212.845000;0 +20260325 021300;212.844000;212.876000;212.831000;212.876000;0 +20260325 021400;212.876000;212.888000;212.860000;212.880000;0 +20260325 021500;212.881000;212.882000;212.867000;212.872000;0 +20260325 021600;212.867000;212.882000;212.851000;212.864000;0 +20260325 021700;212.871000;212.880000;212.860000;212.862000;0 +20260325 021800;212.864000;212.898000;212.864000;212.883000;0 +20260325 021900;212.884000;212.913000;212.877000;212.906000;0 +20260325 022000;212.905000;212.938000;212.892000;212.938000;0 +20260325 022100;212.938000;212.939000;212.903000;212.907000;0 +20260325 022200;212.903000;212.903000;212.874000;212.878000;0 +20260325 022300;212.879000;212.916000;212.874000;212.915000;0 +20260325 022400;212.917000;212.918000;212.847000;212.849000;0 +20260325 022500;212.846000;212.871000;212.844000;212.857000;0 +20260325 022600;212.858000;212.870000;212.809000;212.826000;0 +20260325 022700;212.829000;212.855000;212.824000;212.839000;0 +20260325 022800;212.840000;212.858000;212.827000;212.831000;0 +20260325 022900;212.831000;212.841000;212.820000;212.833000;0 +20260325 023000;212.831000;212.850000;212.823000;212.826000;0 +20260325 023100;212.828000;212.847000;212.787000;212.809000;0 +20260325 023200;212.808000;212.817000;212.786000;212.813000;0 +20260325 023300;212.814000;212.830000;212.795000;212.803000;0 +20260325 023400;212.797000;212.821000;212.767000;212.777000;0 +20260325 023500;212.778000;212.785000;212.752000;212.771000;0 +20260325 023600;212.771000;212.809000;212.758000;212.795000;0 +20260325 023700;212.794000;212.795000;212.770000;212.789000;0 +20260325 023800;212.792000;212.818000;212.792000;212.805000;0 +20260325 023900;212.805000;212.824000;212.793000;212.799000;0 +20260325 024000;212.801000;212.837000;212.793000;212.837000;0 +20260325 024100;212.837000;212.873000;212.826000;212.873000;0 +20260325 024200;212.868000;212.915000;212.860000;212.900000;0 +20260325 024300;212.905000;212.908000;212.892000;212.905000;0 +20260325 024400;212.906000;212.910000;212.888000;212.903000;0 +20260325 024500;212.909000;212.940000;212.905000;212.933000;0 +20260325 024600;212.933000;212.952000;212.921000;212.940000;0 +20260325 024700;212.940000;212.943000;212.930000;212.935000;0 +20260325 024800;212.938000;212.954000;212.936000;212.938000;0 +20260325 024900;212.939000;212.970000;212.937000;212.956000;0 +20260325 025000;212.955000;212.957000;212.922000;212.940000;0 +20260325 025100;212.940000;212.978000;212.928000;212.967000;0 +20260325 025200;212.964000;213.002000;212.952000;213.002000;0 +20260325 025300;213.004000;213.028000;212.985000;213.015000;0 +20260325 025400;213.015000;213.024000;212.999000;213.020000;0 +20260325 025500;213.018000;213.062000;213.018000;213.051000;0 +20260325 025600;213.050000;213.107000;213.050000;213.091000;0 +20260325 025700;213.090000;213.126000;213.087000;213.109000;0 +20260325 025800;213.108000;213.108000;213.044000;213.062000;0 +20260325 025900;213.058000;213.090000;213.041000;213.087000;0 +20260325 030000;213.091000;213.114000;213.072000;213.093000;0 +20260325 030100;213.094000;213.122000;213.086000;213.114000;0 +20260325 030200;213.117000;213.165000;213.094000;213.143000;0 +20260325 030300;213.142000;213.176000;213.131000;213.158000;0 +20260325 030400;213.152000;213.188000;213.149000;213.159000;0 +20260325 030500;213.158000;213.172000;213.114000;213.124000;0 +20260325 030600;213.122000;213.143000;213.085000;213.126000;0 +20260325 030700;213.130000;213.171000;213.110000;213.157000;0 +20260325 030800;213.159000;213.173000;213.139000;213.163000;0 +20260325 030900;213.168000;213.187000;213.153000;213.175000;0 +20260325 031000;213.177000;213.202000;213.157000;213.162000;0 +20260325 031100;213.165000;213.173000;213.126000;213.162000;0 +20260325 031200;213.161000;213.173000;213.123000;213.155000;0 +20260325 031300;213.158000;213.174000;213.132000;213.155000;0 +20260325 031400;213.151000;213.161000;213.134000;213.136000;0 +20260325 031500;213.135000;213.195000;213.123000;213.175000;0 +20260325 031600;213.171000;213.209000;213.109000;213.190000;0 +20260325 031700;213.187000;213.197000;213.118000;213.140000;0 +20260325 031800;213.141000;213.165000;213.129000;213.134000;0 +20260325 031900;213.134000;213.148000;213.109000;213.109000;0 +20260325 032000;213.112000;213.143000;213.110000;213.123000;0 +20260325 032100;213.123000;213.139000;213.112000;213.121000;0 +20260325 032200;213.119000;213.150000;213.110000;213.125000;0 +20260325 032300;213.126000;213.157000;213.091000;213.108000;0 +20260325 032400;213.108000;213.141000;213.106000;213.141000;0 +20260325 032500;213.140000;213.153000;213.110000;213.134000;0 +20260325 032600;213.134000;213.160000;213.112000;213.148000;0 +20260325 032700;213.149000;213.164000;213.131000;213.131000;0 +20260325 032800;213.129000;213.143000;213.101000;213.102000;0 +20260325 032900;213.103000;213.131000;213.093000;213.095000;0 +20260325 033000;213.096000;213.115000;213.079000;213.079000;0 +20260325 033100;213.081000;213.116000;213.076000;213.114000;0 +20260325 033200;213.114000;213.114000;213.075000;213.101000;0 +20260325 033300;213.094000;213.094000;213.061000;213.062000;0 +20260325 033400;213.064000;213.064000;213.009000;213.019000;0 +20260325 033500;213.018000;213.088000;213.007000;213.080000;0 +20260325 033600;213.082000;213.093000;212.972000;213.009000;0 +20260325 033700;213.008000;213.061000;213.004000;213.052000;0 +20260325 033800;213.058000;213.073000;213.037000;213.069000;0 +20260325 033900;213.065000;213.090000;213.055000;213.064000;0 +20260325 034000;213.064000;213.099000;213.059000;213.068000;0 +20260325 034100;213.066000;213.103000;213.066000;213.089000;0 +20260325 034200;213.085000;213.108000;213.075000;213.093000;0 +20260325 034300;213.099000;213.120000;213.083000;213.112000;0 +20260325 034400;213.113000;213.122000;213.106000;213.112000;0 +20260325 034500;213.112000;213.128000;213.085000;213.085000;0 +20260325 034600;213.088000;213.089000;212.977000;212.981000;0 +20260325 034700;212.979000;212.995000;212.944000;212.988000;0 +20260325 034800;212.990000;213.003000;212.967000;212.975000;0 +20260325 034900;212.977000;212.998000;212.971000;212.983000;0 +20260325 035000;212.981000;212.988000;212.957000;212.966000;0 +20260325 035100;212.966000;212.991000;212.964000;212.977000;0 +20260325 035200;212.978000;212.988000;212.951000;212.963000;0 +20260325 035300;212.963000;212.963000;212.907000;212.924000;0 +20260325 035400;212.921000;212.921000;212.888000;212.908000;0 +20260325 035500;212.907000;212.913000;212.888000;212.910000;0 +20260325 035600;212.909000;212.954000;212.909000;212.913000;0 +20260325 035700;212.915000;212.915000;212.858000;212.859000;0 +20260325 035800;212.861000;212.903000;212.845000;212.901000;0 +20260325 035900;212.899000;212.900000;212.841000;212.868000;0 +20260325 040000;212.868000;212.888000;212.820000;212.839000;0 +20260325 040100;212.845000;212.863000;212.833000;212.849000;0 +20260325 040200;212.851000;212.878000;212.851000;212.858000;0 +20260325 040300;212.857000;212.896000;212.855000;212.877000;0 +20260325 040400;212.877000;212.900000;212.866000;212.884000;0 +20260325 040500;212.885000;212.905000;212.874000;212.892000;0 +20260325 040600;212.892000;212.896000;212.868000;212.869000;0 +20260325 040700;212.869000;212.893000;212.858000;212.880000;0 +20260325 040800;212.882000;212.887000;212.866000;212.876000;0 +20260325 040900;212.874000;212.884000;212.848000;212.853000;0 +20260325 041000;212.851000;212.868000;212.846000;212.868000;0 +20260325 041100;212.867000;212.888000;212.860000;212.873000;0 +20260325 041200;212.872000;212.904000;212.869000;212.895000;0 +20260325 041300;212.893000;212.946000;212.892000;212.939000;0 +20260325 041400;212.936000;212.963000;212.916000;212.937000;0 +20260325 041500;212.937000;212.947000;212.909000;212.924000;0 +20260325 041600;212.919000;212.935000;212.889000;212.900000;0 +20260325 041700;212.896000;212.904000;212.878000;212.881000;0 +20260325 041800;212.881000;212.916000;212.876000;212.916000;0 +20260325 041900;212.916000;212.928000;212.899000;212.912000;0 +20260325 042000;212.912000;212.915000;212.871000;212.871000;0 +20260325 042100;212.868000;212.884000;212.855000;212.860000;0 +20260325 042200;212.860000;212.872000;212.844000;212.853000;0 +20260325 042300;212.849000;212.856000;212.816000;212.829000;0 +20260325 042400;212.829000;212.855000;212.825000;212.843000;0 +20260325 042500;212.843000;212.846000;212.776000;212.814000;0 +20260325 042600;212.813000;212.854000;212.807000;212.817000;0 +20260325 042700;212.819000;212.858000;212.818000;212.853000;0 +20260325 042800;212.852000;212.878000;212.852000;212.855000;0 +20260325 042900;212.859000;212.866000;212.843000;212.859000;0 +20260325 043000;212.857000;212.866000;212.820000;212.837000;0 +20260325 043100;212.837000;212.849000;212.831000;212.839000;0 +20260325 043200;212.834000;212.835000;212.807000;212.808000;0 +20260325 043300;212.803000;212.812000;212.788000;212.789000;0 +20260325 043400;212.790000;212.800000;212.765000;212.774000;0 +20260325 043500;212.774000;212.806000;212.769000;212.799000;0 +20260325 043600;212.797000;212.814000;212.792000;212.801000;0 +20260325 043700;212.801000;212.837000;212.801000;212.837000;0 +20260325 043800;212.836000;212.837000;212.818000;212.831000;0 +20260325 043900;212.835000;212.836000;212.809000;212.817000;0 +20260325 044000;212.818000;212.868000;212.815000;212.865000;0 +20260325 044100;212.873000;212.884000;212.852000;212.882000;0 +20260325 044200;212.881000;212.881000;212.850000;212.853000;0 +20260325 044300;212.856000;212.874000;212.849000;212.854000;0 +20260325 044400;212.858000;212.861000;212.845000;212.856000;0 +20260325 044500;212.860000;212.860000;212.842000;212.844000;0 +20260325 044600;212.844000;212.875000;212.839000;212.866000;0 +20260325 044700;212.865000;212.872000;212.836000;212.836000;0 +20260325 044800;212.835000;212.854000;212.829000;212.842000;0 +20260325 044900;212.842000;212.849000;212.831000;212.832000;0 +20260325 045000;212.832000;212.868000;212.824000;212.868000;0 +20260325 045100;212.878000;212.879000;212.864000;212.873000;0 +20260325 045200;212.874000;212.882000;212.857000;212.877000;0 +20260325 045300;212.877000;212.880000;212.860000;212.872000;0 +20260325 045400;212.871000;212.879000;212.863000;212.873000;0 +20260325 045500;212.873000;212.875000;212.847000;212.854000;0 +20260325 045600;212.853000;212.862000;212.832000;212.837000;0 +20260325 045700;212.837000;212.867000;212.837000;212.854000;0 +20260325 045800;212.855000;212.875000;212.840000;212.857000;0 +20260325 045900;212.855000;212.906000;212.846000;212.848000;0 +20260325 050000;212.850000;212.910000;212.850000;212.908000;0 +20260325 050100;212.908000;212.926000;212.897000;212.920000;0 +20260325 050200;212.919000;212.923000;212.869000;212.876000;0 +20260325 050300;212.876000;212.881000;212.855000;212.874000;0 +20260325 050400;212.877000;212.926000;212.856000;212.901000;0 +20260325 050500;212.902000;212.945000;212.879000;212.937000;0 +20260325 050600;212.933000;212.946000;212.930000;212.935000;0 +20260325 050700;212.937000;212.940000;212.915000;212.923000;0 +20260325 050800;212.926000;212.953000;212.911000;212.950000;0 +20260325 050900;212.948000;212.950000;212.925000;212.935000;0 +20260325 051000;212.937000;212.937000;212.905000;212.919000;0 +20260325 051100;212.919000;212.943000;212.918000;212.936000;0 +20260325 051200;212.935000;212.957000;212.927000;212.946000;0 +20260325 051300;212.948000;212.975000;212.942000;212.957000;0 +20260325 051400;212.956000;212.964000;212.920000;212.939000;0 +20260325 051500;212.940000;212.974000;212.933000;212.969000;0 +20260325 051600;212.970000;212.992000;212.970000;212.978000;0 +20260325 051700;212.978000;213.004000;212.974000;212.998000;0 +20260325 051800;212.997000;213.013000;212.991000;212.998000;0 +20260325 051900;212.998000;213.020000;212.995000;213.020000;0 +20260325 052000;213.021000;213.030000;213.009000;213.027000;0 +20260325 052100;213.028000;213.040000;212.995000;213.005000;0 +20260325 052200;213.000000;213.031000;213.000000;213.007000;0 +20260325 052300;213.013000;213.024000;213.005000;213.008000;0 +20260325 052400;213.007000;213.014000;212.979000;212.992000;0 +20260325 052500;212.995000;213.020000;212.988000;212.994000;0 +20260325 052600;212.992000;213.014000;212.992000;213.010000;0 +20260325 052700;213.010000;213.010000;212.981000;212.981000;0 +20260325 052800;212.980000;212.997000;212.980000;212.983000;0 +20260325 052900;212.982000;212.982000;212.966000;212.978000;0 +20260325 053000;212.975000;212.983000;212.965000;212.978000;0 +20260325 053100;212.977000;212.999000;212.968000;212.983000;0 +20260325 053200;212.984000;213.019000;212.984000;213.017000;0 +20260325 053300;213.016000;213.039000;213.000000;213.032000;0 +20260325 053400;213.032000;213.040000;213.019000;213.020000;0 +20260325 053500;213.023000;213.047000;213.019000;213.044000;0 +20260325 053600;213.044000;213.048000;213.029000;213.031000;0 +20260325 053700;213.033000;213.047000;213.033000;213.043000;0 +20260325 053800;213.040000;213.054000;213.040000;213.045000;0 +20260325 053900;213.046000;213.048000;213.015000;213.022000;0 +20260325 054000;213.020000;213.040000;213.016000;213.034000;0 +20260325 054100;213.034000;213.058000;213.033000;213.039000;0 +20260325 054200;213.039000;213.041000;213.013000;213.018000;0 +20260325 054300;213.021000;213.026000;213.014000;213.017000;0 +20260325 054400;213.018000;213.029000;213.008000;213.020000;0 +20260325 054500;213.018000;213.033000;213.016000;213.028000;0 +20260325 054600;213.029000;213.055000;213.019000;213.052000;0 +20260325 054700;213.054000;213.086000;213.035000;213.086000;0 +20260325 054800;213.085000;213.095000;213.074000;213.077000;0 +20260325 054900;213.075000;213.112000;213.075000;213.103000;0 +20260325 055000;213.103000;213.111000;213.094000;213.108000;0 +20260325 055100;213.108000;213.117000;213.079000;213.080000;0 +20260325 055200;213.084000;213.091000;213.066000;213.069000;0 +20260325 055300;213.071000;213.078000;213.045000;213.052000;0 +20260325 055400;213.049000;213.058000;213.035000;213.046000;0 +20260325 055500;213.048000;213.056000;213.039000;213.049000;0 +20260325 055600;213.050000;213.062000;213.035000;213.056000;0 +20260325 055700;213.057000;213.073000;213.054000;213.062000;0 +20260325 055800;213.062000;213.078000;213.058000;213.068000;0 +20260325 055900;213.067000;213.071000;213.055000;213.067000;0 +20260325 060000;213.067000;213.087000;213.058000;213.083000;0 +20260325 060100;213.085000;213.097000;213.076000;213.079000;0 +20260325 060200;213.081000;213.100000;213.071000;213.089000;0 +20260325 060300;213.091000;213.100000;213.077000;213.077000;0 +20260325 060400;213.079000;213.102000;213.077000;213.102000;0 +20260325 060500;213.104000;213.139000;213.102000;213.138000;0 +20260325 060600;213.138000;213.149000;213.127000;213.137000;0 +20260325 060700;213.132000;213.142000;213.125000;213.128000;0 +20260325 060800;213.125000;213.166000;213.122000;213.143000;0 +20260325 060900;213.144000;213.147000;213.115000;213.124000;0 +20260325 061000;213.119000;213.126000;213.097000;213.121000;0 +20260325 061100;213.118000;213.122000;213.082000;213.088000;0 +20260325 061200;213.089000;213.102000;213.077000;213.087000;0 +20260325 061300;213.087000;213.103000;213.068000;213.069000;0 +20260325 061400;213.066000;213.081000;213.050000;213.064000;0 +20260325 061500;213.065000;213.071000;213.048000;213.049000;0 +20260325 061600;213.047000;213.097000;213.045000;213.089000;0 +20260325 061700;213.091000;213.095000;213.078000;213.080000;0 +20260325 061800;213.079000;213.096000;213.075000;213.090000;0 +20260325 061900;213.093000;213.097000;213.085000;213.086000;0 +20260325 062000;213.090000;213.105000;213.087000;213.105000;0 +20260325 062100;213.104000;213.110000;213.098000;213.099000;0 +20260325 062200;213.101000;213.122000;213.097000;213.110000;0 +20260325 062300;213.111000;213.131000;213.110000;213.117000;0 +20260325 062400;213.118000;213.129000;213.115000;213.129000;0 +20260325 062500;213.131000;213.142000;213.127000;213.136000;0 +20260325 062600;213.136000;213.136000;213.114000;213.120000;0 +20260325 062700;213.122000;213.122000;213.086000;213.086000;0 +20260325 062800;213.086000;213.093000;213.072000;213.083000;0 +20260325 062900;213.086000;213.102000;213.080000;213.083000;0 +20260325 063000;213.082000;213.119000;213.078000;213.112000;0 +20260325 063100;213.110000;213.113000;213.101000;213.110000;0 +20260325 063200;213.112000;213.124000;213.090000;213.097000;0 +20260325 063300;213.099000;213.105000;213.076000;213.090000;0 +20260325 063400;213.087000;213.088000;213.063000;213.073000;0 +20260325 063500;213.072000;213.090000;213.072000;213.087000;0 +20260325 063600;213.087000;213.091000;213.058000;213.058000;0 +20260325 063700;213.058000;213.080000;213.056000;213.077000;0 +20260325 063800;213.075000;213.093000;213.075000;213.090000;0 +20260325 063900;213.089000;213.099000;213.080000;213.090000;0 +20260325 064000;213.087000;213.091000;213.076000;213.090000;0 +20260325 064100;213.091000;213.122000;213.091000;213.102000;0 +20260325 064200;213.101000;213.144000;213.101000;213.111000;0 +20260325 064300;213.114000;213.135000;213.114000;213.129000;0 +20260325 064400;213.131000;213.149000;213.129000;213.133000;0 +20260325 064500;213.130000;213.130000;213.114000;213.121000;0 +20260325 064600;213.114000;213.124000;213.104000;213.109000;0 +20260325 064700;213.106000;213.113000;213.050000;213.055000;0 +20260325 064800;213.059000;213.097000;213.050000;213.073000;0 +20260325 064900;213.077000;213.124000;213.064000;213.110000;0 +20260325 065000;213.108000;213.141000;213.088000;213.094000;0 +20260325 065100;213.095000;213.115000;213.088000;213.115000;0 +20260325 065200;213.115000;213.131000;213.105000;213.107000;0 +20260325 065300;213.107000;213.139000;213.106000;213.139000;0 +20260325 065400;213.140000;213.161000;213.131000;213.160000;0 +20260325 065500;213.157000;213.164000;213.137000;213.147000;0 +20260325 065600;213.143000;213.154000;213.114000;213.120000;0 +20260325 065700;213.124000;213.136000;213.099000;213.100000;0 +20260325 065800;213.099000;213.099000;213.074000;213.090000;0 +20260325 065900;213.089000;213.103000;213.078000;213.095000;0 +20260325 070000;213.091000;213.121000;213.090000;213.121000;0 +20260325 070100;213.120000;213.134000;213.101000;213.112000;0 +20260325 070200;213.112000;213.146000;213.093000;213.145000;0 +20260325 070300;213.147000;213.149000;213.119000;213.120000;0 +20260325 070400;213.120000;213.120000;213.100000;213.109000;0 +20260325 070500;213.109000;213.132000;213.106000;213.126000;0 +20260325 070600;213.131000;213.179000;213.128000;213.163000;0 +20260325 070700;213.163000;213.206000;213.146000;213.201000;0 +20260325 070800;213.204000;213.207000;213.156000;213.163000;0 +20260325 070900;213.159000;213.178000;213.153000;213.159000;0 +20260325 071000;213.155000;213.162000;213.143000;213.162000;0 +20260325 071100;213.162000;213.169000;213.148000;213.150000;0 +20260325 071200;213.149000;213.151000;213.123000;213.133000;0 +20260325 071300;213.132000;213.142000;213.099000;213.111000;0 +20260325 071400;213.111000;213.111000;213.076000;213.081000;0 +20260325 071500;213.081000;213.092000;213.069000;213.077000;0 +20260325 071600;213.078000;213.098000;213.044000;213.045000;0 +20260325 071700;213.042000;213.062000;212.945000;212.952000;0 +20260325 071800;212.952000;212.972000;212.905000;212.919000;0 +20260325 071900;212.921000;212.980000;212.920000;212.965000;0 +20260325 072000;212.979000;213.028000;212.970000;212.998000;0 +20260325 072100;213.002000;213.065000;212.999000;213.032000;0 +20260325 072200;213.034000;213.068000;213.030000;213.035000;0 +20260325 072300;213.032000;213.058000;212.939000;213.049000;0 +20260325 072400;213.049000;213.083000;213.030000;213.078000;0 +20260325 072500;213.078000;213.114000;213.072000;213.086000;0 +20260325 072600;213.087000;213.096000;213.046000;213.057000;0 +20260325 072700;213.056000;213.062000;213.024000;213.043000;0 +20260325 072800;213.043000;213.063000;213.036000;213.055000;0 +20260325 072900;213.054000;213.055000;213.020000;213.034000;0 +20260325 073000;213.036000;213.060000;213.029000;213.041000;0 +20260325 073100;213.041000;213.073000;213.028000;213.047000;0 +20260325 073200;213.046000;213.055000;213.012000;213.012000;0 +20260325 073300;213.014000;213.056000;213.011000;213.051000;0 +20260325 073400;213.052000;213.100000;213.048000;213.075000;0 +20260325 073500;213.083000;213.086000;213.055000;213.077000;0 +20260325 073600;213.078000;213.084000;213.054000;213.070000;0 +20260325 073700;213.066000;213.076000;213.026000;213.031000;0 +20260325 073800;213.028000;213.033000;213.010000;213.024000;0 +20260325 073900;213.021000;213.035000;213.009000;213.027000;0 +20260325 074000;213.027000;213.028000;213.004000;213.017000;0 +20260325 074100;213.021000;213.037000;213.001000;213.035000;0 +20260325 074200;213.033000;213.056000;213.012000;213.047000;0 +20260325 074300;213.041000;213.047000;213.014000;213.040000;0 +20260325 074400;213.040000;213.045000;213.028000;213.033000;0 +20260325 074500;213.040000;213.058000;213.018000;213.054000;0 +20260325 074600;213.054000;213.068000;213.048000;213.048000;0 +20260325 074700;213.045000;213.055000;213.025000;213.037000;0 +20260325 074800;213.038000;213.066000;213.037000;213.042000;0 +20260325 074900;213.040000;213.043000;213.010000;213.019000;0 +20260325 075000;213.021000;213.026000;212.986000;212.998000;0 +20260325 075100;213.000000;213.025000;212.993000;213.005000;0 +20260325 075200;213.005000;213.015000;212.984000;212.987000;0 +20260325 075300;212.986000;212.997000;212.947000;212.969000;0 +20260325 075400;212.969000;212.985000;212.960000;212.984000;0 +20260325 075500;212.984000;212.988000;212.944000;212.944000;0 +20260325 075600;212.946000;212.958000;212.936000;212.937000;0 +20260325 075700;212.938000;212.989000;212.917000;212.964000;0 +20260325 075800;212.962000;212.994000;212.962000;212.988000;0 +20260325 075900;212.986000;213.002000;212.975000;212.986000;0 +20260325 080000;212.987000;213.011000;212.962000;212.999000;0 +20260325 080100;213.000000;213.032000;212.998000;213.023000;0 +20260325 080200;213.022000;213.042000;213.019000;213.020000;0 +20260325 080300;213.022000;213.037000;213.006000;213.017000;0 +20260325 080400;213.016000;213.020000;212.981000;212.990000;0 +20260325 080500;212.991000;213.007000;212.981000;213.001000;0 +20260325 080600;213.000000;213.003000;212.947000;212.947000;0 +20260325 080700;212.945000;212.958000;212.937000;212.945000;0 +20260325 080800;212.946000;212.949000;212.895000;212.907000;0 +20260325 080900;212.905000;212.922000;212.881000;212.881000;0 +20260325 081000;212.879000;212.906000;212.869000;212.905000;0 +20260325 081100;212.905000;212.919000;212.898000;212.905000;0 +20260325 081200;212.903000;212.950000;212.903000;212.933000;0 +20260325 081300;212.935000;212.950000;212.925000;212.944000;0 +20260325 081400;212.944000;212.944000;212.908000;212.932000;0 +20260325 081500;212.933000;212.933000;212.892000;212.896000;0 +20260325 081600;212.896000;212.898000;212.867000;212.878000;0 +20260325 081700;212.887000;212.910000;212.873000;212.874000;0 +20260325 081800;212.874000;212.893000;212.868000;212.886000;0 +20260325 081900;212.887000;212.938000;212.882000;212.937000;0 +20260325 082000;212.936000;212.964000;212.936000;212.963000;0 +20260325 082100;212.965000;212.988000;212.965000;212.977000;0 +20260325 082200;212.975000;212.975000;212.932000;212.939000;0 +20260325 082300;212.940000;212.970000;212.914000;212.969000;0 +20260325 082400;212.968000;212.980000;212.965000;212.971000;0 +20260325 082500;212.976000;212.977000;212.951000;212.951000;0 +20260325 082600;212.949000;212.965000;212.946000;212.957000;0 +20260325 082700;212.958000;212.958000;212.897000;212.945000;0 +20260325 082800;212.944000;212.955000;212.934000;212.937000;0 +20260325 082900;212.933000;212.952000;212.899000;212.902000;0 +20260325 083000;212.905000;212.945000;212.900000;212.929000;0 +20260325 083100;212.930000;212.944000;212.902000;212.915000;0 +20260325 083200;212.916000;212.923000;212.899000;212.900000;0 +20260325 083300;212.900000;212.923000;212.884000;212.897000;0 +20260325 083400;212.898000;212.921000;212.894000;212.906000;0 +20260325 083500;212.903000;212.909000;212.886000;212.908000;0 +20260325 083600;212.910000;212.915000;212.890000;212.906000;0 +20260325 083700;212.905000;212.922000;212.884000;212.884000;0 +20260325 083800;212.884000;212.910000;212.883000;212.900000;0 +20260325 083900;212.901000;212.905000;212.868000;212.869000;0 +20260325 084000;212.871000;212.909000;212.869000;212.900000;0 +20260325 084100;212.903000;212.907000;212.863000;212.880000;0 +20260325 084200;212.881000;212.906000;212.864000;212.906000;0 +20260325 084300;212.904000;212.904000;212.865000;212.875000;0 +20260325 084400;212.875000;212.882000;212.853000;212.876000;0 +20260325 084500;212.876000;212.884000;212.859000;212.868000;0 +20260325 084600;212.870000;212.874000;212.822000;212.830000;0 +20260325 084700;212.832000;212.876000;212.825000;212.858000;0 +20260325 084800;212.857000;212.881000;212.847000;212.853000;0 +20260325 084900;212.852000;212.878000;212.813000;212.813000;0 +20260325 085000;212.813000;212.814000;212.759000;212.765000;0 +20260325 085100;212.767000;212.837000;212.764000;212.826000;0 +20260325 085200;212.828000;212.837000;212.808000;212.817000;0 +20260325 085300;212.818000;212.836000;212.791000;212.812000;0 +20260325 085400;212.815000;212.821000;212.797000;212.797000;0 +20260325 085500;212.793000;212.799000;212.767000;212.779000;0 +20260325 085600;212.775000;212.794000;212.765000;212.778000;0 +20260325 085700;212.778000;212.799000;212.759000;212.771000;0 +20260325 085800;212.771000;212.790000;212.769000;212.780000;0 +20260325 085900;212.782000;212.814000;212.769000;212.804000;0 +20260325 090000;212.804000;212.813000;212.720000;212.743000;0 +20260325 090100;212.743000;212.777000;212.741000;212.749000;0 +20260325 090200;212.746000;212.780000;212.739000;212.751000;0 +20260325 090300;212.754000;212.754000;212.726000;212.737000;0 +20260325 090400;212.721000;212.738000;212.692000;212.693000;0 +20260325 090500;212.692000;212.726000;212.670000;212.716000;0 +20260325 090600;212.716000;212.729000;212.643000;212.643000;0 +20260325 090700;212.646000;212.699000;212.646000;212.665000;0 +20260325 090800;212.670000;212.707000;212.668000;212.685000;0 +20260325 090900;212.684000;212.724000;212.672000;212.714000;0 +20260325 091000;212.718000;212.741000;212.708000;212.739000;0 +20260325 091100;212.737000;212.764000;212.721000;212.752000;0 +20260325 091200;212.752000;212.760000;212.731000;212.742000;0 +20260325 091300;212.744000;212.762000;212.728000;212.762000;0 +20260325 091400;212.760000;212.802000;212.753000;212.794000;0 +20260325 091500;212.793000;212.840000;212.793000;212.838000;0 +20260325 091600;212.838000;212.868000;212.829000;212.857000;0 +20260325 091700;212.861000;212.871000;212.847000;212.854000;0 +20260325 091800;212.855000;212.861000;212.841000;212.842000;0 +20260325 091900;212.842000;212.852000;212.773000;212.799000;0 +20260325 092000;212.800000;212.844000;212.795000;212.842000;0 +20260325 092100;212.845000;212.853000;212.822000;212.848000;0 +20260325 092200;212.847000;212.867000;212.831000;212.837000;0 +20260325 092300;212.836000;212.836000;212.742000;212.777000;0 +20260325 092400;212.769000;212.774000;212.655000;212.665000;0 +20260325 092500;212.669000;212.747000;212.664000;212.740000;0 +20260325 092600;212.737000;212.742000;212.701000;212.721000;0 +20260325 092700;212.722000;212.775000;212.710000;212.771000;0 +20260325 092800;212.773000;212.794000;212.761000;212.782000;0 +20260325 092900;212.782000;212.789000;212.766000;212.780000;0 +20260325 093000;212.781000;212.790000;212.750000;212.775000;0 +20260325 093100;212.770000;212.790000;212.732000;212.732000;0 +20260325 093200;212.731000;212.736000;212.694000;212.694000;0 +20260325 093300;212.693000;212.752000;212.691000;212.752000;0 +20260325 093400;212.754000;212.766000;212.734000;212.739000;0 +20260325 093500;212.733000;212.747000;212.722000;212.729000;0 +20260325 093600;212.730000;212.746000;212.716000;212.725000;0 +20260325 093700;212.719000;212.751000;212.716000;212.723000;0 +20260325 093800;212.726000;212.763000;212.702000;212.727000;0 +20260325 093900;212.730000;212.732000;212.699000;212.708000;0 +20260325 094000;212.709000;212.717000;212.686000;212.701000;0 +20260325 094100;212.701000;212.775000;212.701000;212.775000;0 +20260325 094200;212.773000;212.801000;212.768000;212.781000;0 +20260325 094300;212.784000;212.788000;212.732000;212.744000;0 +20260325 094400;212.746000;212.755000;212.719000;212.726000;0 +20260325 094500;212.727000;212.773000;212.724000;212.772000;0 +20260325 094600;212.773000;212.814000;212.767000;212.811000;0 +20260325 094700;212.813000;212.858000;212.807000;212.858000;0 +20260325 094800;212.861000;212.879000;212.829000;212.861000;0 +20260325 094900;212.861000;212.887000;212.850000;212.859000;0 +20260325 095000;212.860000;212.909000;212.860000;212.862000;0 +20260325 095100;212.860000;212.872000;212.813000;212.832000;0 +20260325 095200;212.829000;212.869000;212.826000;212.839000;0 +20260325 095300;212.838000;212.864000;212.817000;212.864000;0 +20260325 095400;212.861000;212.889000;212.856000;212.880000;0 +20260325 095500;212.881000;212.915000;212.881000;212.912000;0 +20260325 095600;212.911000;212.932000;212.899000;212.929000;0 +20260325 095700;212.929000;212.948000;212.895000;212.924000;0 +20260325 095800;212.923000;212.927000;212.894000;212.908000;0 +20260325 095900;212.909000;212.909000;212.869000;212.882000;0 +20260325 100000;212.878000;212.925000;212.861000;212.921000;0 +20260325 100100;212.918000;212.965000;212.907000;212.948000;0 +20260325 100200;212.954000;212.971000;212.935000;212.936000;0 +20260325 100300;212.936000;212.973000;212.936000;212.959000;0 +20260325 100400;212.958000;212.972000;212.949000;212.967000;0 +20260325 100500;212.968000;212.981000;212.962000;212.979000;0 +20260325 100600;212.977000;212.980000;212.950000;212.955000;0 +20260325 100700;212.957000;212.988000;212.956000;212.978000;0 +20260325 100800;212.979000;212.996000;212.942000;212.947000;0 +20260325 100900;212.946000;212.949000;212.902000;212.905000;0 +20260325 101000;212.900000;212.920000;212.866000;212.869000;0 +20260325 101100;212.871000;212.895000;212.847000;212.858000;0 +20260325 101200;212.856000;212.874000;212.851000;212.870000;0 +20260325 101300;212.870000;212.880000;212.844000;212.859000;0 +20260325 101400;212.858000;212.869000;212.839000;212.848000;0 +20260325 101500;212.847000;212.850000;212.824000;212.829000;0 +20260325 101600;212.829000;212.840000;212.721000;212.731000;0 +20260325 101700;212.730000;212.758000;212.712000;212.726000;0 +20260325 101800;212.721000;212.759000;212.701000;212.745000;0 +20260325 101900;212.745000;212.774000;212.725000;212.738000;0 +20260325 102000;212.739000;212.783000;212.739000;212.758000;0 +20260325 102100;212.755000;212.811000;212.751000;212.795000;0 +20260325 102200;212.797000;212.824000;212.795000;212.813000;0 +20260325 102300;212.809000;212.815000;212.793000;212.814000;0 +20260325 102400;212.811000;212.834000;212.788000;212.802000;0 +20260325 102500;212.796000;212.832000;212.786000;212.821000;0 +20260325 102600;212.818000;212.823000;212.802000;212.823000;0 +20260325 102700;212.821000;212.827000;212.785000;212.785000;0 +20260325 102800;212.784000;212.804000;212.775000;212.790000;0 +20260325 102900;212.790000;212.808000;212.778000;212.808000;0 +20260325 103000;212.806000;212.810000;212.781000;212.798000;0 +20260325 103100;212.802000;212.814000;212.786000;212.805000;0 +20260325 103200;212.804000;212.818000;212.785000;212.799000;0 +20260325 103300;212.803000;212.803000;212.779000;212.791000;0 +20260325 103400;212.788000;212.794000;212.777000;212.780000;0 +20260325 103500;212.779000;212.781000;212.751000;212.758000;0 +20260325 103600;212.756000;212.771000;212.750000;212.753000;0 +20260325 103700;212.753000;212.761000;212.719000;212.728000;0 +20260325 103800;212.727000;212.729000;212.693000;212.701000;0 +20260325 103900;212.700000;212.721000;212.685000;212.697000;0 +20260325 104000;212.697000;212.720000;212.694000;212.700000;0 +20260325 104100;212.700000;212.705000;212.684000;212.687000;0 +20260325 104200;212.689000;212.697000;212.671000;212.679000;0 +20260325 104300;212.677000;212.684000;212.665000;212.673000;0 +20260325 104400;212.674000;212.702000;212.672000;212.696000;0 +20260325 104500;212.698000;212.717000;212.690000;212.713000;0 +20260325 104600;212.711000;212.748000;212.707000;212.744000;0 +20260325 104700;212.744000;212.754000;212.731000;212.736000;0 +20260325 104800;212.736000;212.761000;212.724000;212.756000;0 +20260325 104900;212.757000;212.765000;212.744000;212.759000;0 +20260325 105000;212.759000;212.787000;212.756000;212.766000;0 +20260325 105100;212.766000;212.790000;212.762000;212.774000;0 +20260325 105200;212.774000;212.807000;212.774000;212.794000;0 +20260325 105300;212.797000;212.811000;212.785000;212.806000;0 +20260325 105400;212.806000;212.819000;212.768000;212.798000;0 +20260325 105500;212.805000;212.864000;212.805000;212.857000;0 +20260325 105600;212.858000;212.874000;212.838000;212.871000;0 +20260325 105700;212.870000;212.920000;212.847000;212.887000;0 +20260325 105800;212.886000;212.919000;212.873000;212.919000;0 +20260325 105900;212.922000;212.922000;212.867000;212.876000;0 +20260325 110000;212.875000;212.877000;212.841000;212.850000;0 +20260325 110100;212.848000;212.855000;212.825000;212.830000;0 +20260325 110200;212.832000;212.834000;212.760000;212.780000;0 +20260325 110300;212.781000;212.782000;212.754000;212.756000;0 +20260325 110400;212.755000;212.790000;212.750000;212.781000;0 +20260325 110500;212.785000;212.805000;212.762000;212.792000;0 +20260325 110600;212.795000;212.821000;212.793000;212.817000;0 +20260325 110700;212.821000;212.825000;212.801000;212.803000;0 +20260325 110800;212.803000;212.820000;212.790000;212.816000;0 +20260325 110900;212.820000;212.839000;212.801000;212.802000;0 +20260325 111000;212.802000;212.826000;212.802000;212.816000;0 +20260325 111100;212.815000;212.827000;212.809000;212.826000;0 +20260325 111200;212.824000;212.831000;212.809000;212.822000;0 +20260325 111300;212.821000;212.851000;212.813000;212.845000;0 +20260325 111400;212.844000;212.880000;212.844000;212.879000;0 +20260325 111500;212.881000;212.903000;212.842000;212.851000;0 +20260325 111600;212.849000;212.879000;212.846000;212.870000;0 +20260325 111700;212.872000;212.878000;212.853000;212.871000;0 +20260325 111800;212.870000;212.879000;212.856000;212.862000;0 +20260325 111900;212.865000;212.876000;212.855000;212.872000;0 +20260325 112000;212.868000;212.902000;212.868000;212.869000;0 +20260325 112100;212.868000;212.898000;212.868000;212.881000;0 +20260325 112200;212.880000;212.928000;212.879000;212.927000;0 +20260325 112300;212.928000;212.929000;212.887000;212.887000;0 +20260325 112400;212.888000;212.912000;212.881000;212.907000;0 +20260325 112500;212.910000;212.982000;212.899000;212.968000;0 +20260325 112600;212.968000;212.968000;212.909000;212.946000;0 +20260325 112700;212.946000;212.957000;212.927000;212.945000;0 +20260325 112800;212.946000;212.965000;212.925000;212.958000;0 +20260325 112900;212.962000;212.978000;212.946000;212.967000;0 +20260325 113000;212.965000;212.977000;212.941000;212.971000;0 +20260325 113100;212.971000;212.984000;212.959000;212.972000;0 +20260325 113200;212.973000;212.992000;212.967000;212.990000;0 +20260325 113300;212.987000;212.997000;212.968000;212.991000;0 +20260325 113400;212.990000;213.022000;212.988000;213.016000;0 +20260325 113500;213.018000;213.046000;213.005000;213.035000;0 +20260325 113600;213.030000;213.055000;213.005000;213.005000;0 +20260325 113700;213.003000;213.007000;212.977000;212.982000;0 +20260325 113800;212.979000;212.985000;212.948000;212.976000;0 +20260325 113900;212.976000;212.992000;212.975000;212.991000;0 +20260325 114000;212.993000;212.995000;212.960000;212.967000;0 +20260325 114100;212.967000;212.968000;212.929000;212.929000;0 +20260325 114200;212.929000;212.957000;212.927000;212.945000;0 +20260325 114300;212.942000;212.992000;212.936000;212.989000;0 +20260325 114400;212.990000;213.002000;212.980000;212.996000;0 +20260325 114500;212.992000;213.001000;212.986000;212.994000;0 +20260325 114600;212.991000;213.012000;212.982000;212.998000;0 +20260325 114700;212.998000;213.000000;212.968000;212.968000;0 +20260325 114800;212.973000;213.001000;212.973000;212.991000;0 +20260325 114900;212.993000;213.016000;212.993000;213.016000;0 +20260325 115000;213.014000;213.024000;212.991000;213.001000;0 +20260325 115100;213.002000;213.033000;213.000000;213.017000;0 +20260325 115200;213.014000;213.057000;213.010000;213.049000;0 +20260325 115300;213.050000;213.064000;213.050000;213.056000;0 +20260325 115400;213.059000;213.061000;213.039000;213.046000;0 +20260325 115500;213.049000;213.063000;213.041000;213.061000;0 +20260325 115600;213.056000;213.063000;213.041000;213.051000;0 +20260325 115700;213.052000;213.066000;213.032000;213.064000;0 +20260325 115800;213.061000;213.075000;213.054000;213.067000;0 +20260325 115900;213.071000;213.074000;213.045000;213.046000;0 +20260325 120000;213.047000;213.078000;213.040000;213.065000;0 +20260325 120100;213.067000;213.067000;213.039000;213.051000;0 +20260325 120200;213.053000;213.078000;213.044000;213.069000;0 +20260325 120300;213.070000;213.075000;213.032000;213.038000;0 +20260325 120400;213.041000;213.043000;213.023000;213.025000;0 +20260325 120500;213.024000;213.032000;213.005000;213.023000;0 +20260325 120600;213.025000;213.048000;213.019000;213.036000;0 +20260325 120700;213.035000;213.038000;213.022000;213.030000;0 +20260325 120800;213.032000;213.034000;213.023000;213.024000;0 +20260325 120900;213.028000;213.039000;213.021000;213.024000;0 +20260325 121000;213.025000;213.031000;213.016000;213.027000;0 +20260325 121100;213.027000;213.035000;213.014000;213.034000;0 +20260325 121200;213.035000;213.057000;213.024000;213.055000;0 +20260325 121300;213.054000;213.067000;213.041000;213.065000;0 +20260325 121400;213.063000;213.065000;213.039000;213.042000;0 +20260325 121500;213.042000;213.043000;213.019000;213.030000;0 +20260325 121600;213.030000;213.050000;213.024000;213.030000;0 +20260325 121700;213.027000;213.046000;213.027000;213.035000;0 +20260325 121800;213.031000;213.046000;213.023000;213.033000;0 +20260325 121900;213.031000;213.049000;213.019000;213.028000;0 +20260325 122000;213.027000;213.034000;213.018000;213.027000;0 +20260325 122100;213.026000;213.048000;213.014000;213.035000;0 +20260325 122200;213.035000;213.058000;213.032000;213.043000;0 +20260325 122300;213.041000;213.071000;213.041000;213.049000;0 +20260325 122400;213.048000;213.048000;213.033000;213.042000;0 +20260325 122500;213.044000;213.051000;213.040000;213.045000;0 +20260325 122600;213.048000;213.066000;213.045000;213.061000;0 +20260325 122700;213.061000;213.075000;213.057000;213.069000;0 +20260325 122800;213.069000;213.079000;213.060000;213.075000;0 +20260325 122900;213.072000;213.076000;213.064000;213.068000;0 +20260325 123000;213.070000;213.090000;213.066000;213.067000;0 +20260325 123100;213.068000;213.075000;213.057000;213.057000;0 +20260325 123200;213.053000;213.094000;213.053000;213.094000;0 +20260325 123300;213.094000;213.116000;213.094000;213.114000;0 +20260325 123400;213.113000;213.143000;213.111000;213.134000;0 +20260325 123500;213.132000;213.143000;213.132000;213.140000;0 +20260325 123600;213.140000;213.146000;213.129000;213.138000;0 +20260325 123700;213.137000;213.149000;213.131000;213.137000;0 +20260325 123800;213.136000;213.152000;213.128000;213.152000;0 +20260325 123900;213.148000;213.167000;213.144000;213.156000;0 +20260325 124000;213.156000;213.167000;213.148000;213.167000;0 +20260325 124100;213.170000;213.170000;213.139000;213.142000;0 +20260325 124200;213.140000;213.159000;213.120000;213.136000;0 +20260325 124300;213.137000;213.148000;213.122000;213.141000;0 +20260325 124400;213.141000;213.158000;213.129000;213.153000;0 +20260325 124500;213.152000;213.155000;213.135000;213.146000;0 +20260325 124600;213.144000;213.165000;213.144000;213.151000;0 +20260325 124700;213.154000;213.165000;213.146000;213.163000;0 +20260325 124800;213.163000;213.176000;213.158000;213.175000;0 +20260325 124900;213.175000;213.183000;213.169000;213.172000;0 +20260325 125000;213.173000;213.188000;213.167000;213.182000;0 +20260325 125100;213.183000;213.191000;213.172000;213.182000;0 +20260325 125200;213.186000;213.195000;213.153000;213.159000;0 +20260325 125300;213.158000;213.169000;213.131000;213.165000;0 +20260325 125400;213.159000;213.168000;213.130000;213.142000;0 +20260325 125500;213.139000;213.144000;213.117000;213.122000;0 +20260325 125600;213.124000;213.126000;213.109000;213.119000;0 +20260325 125700;213.121000;213.148000;213.121000;213.145000;0 +20260325 125800;213.147000;213.171000;213.138000;213.146000;0 +20260325 125900;213.146000;213.150000;213.135000;213.148000;0 +20260325 130000;213.144000;213.151000;213.130000;213.145000;0 +20260325 130100;213.146000;213.159000;213.139000;213.142000;0 +20260325 130200;213.142000;213.147000;213.132000;213.138000;0 +20260325 130300;213.141000;213.160000;213.113000;213.123000;0 +20260325 130400;213.123000;213.137000;213.120000;213.134000;0 +20260325 130500;213.134000;213.163000;213.133000;213.161000;0 +20260325 130600;213.162000;213.162000;213.130000;213.132000;0 +20260325 130700;213.132000;213.137000;213.122000;213.128000;0 +20260325 130800;213.129000;213.130000;213.111000;213.114000;0 +20260325 130900;213.117000;213.126000;213.104000;213.105000;0 +20260325 131000;213.102000;213.120000;213.101000;213.114000;0 +20260325 131100;213.115000;213.139000;213.109000;213.118000;0 +20260325 131200;213.117000;213.121000;213.109000;213.109000;0 +20260325 131300;213.114000;213.122000;213.107000;213.107000;0 +20260325 131400;213.109000;213.117000;213.104000;213.107000;0 +20260325 131500;213.113000;213.133000;213.108000;213.120000;0 +20260325 131600;213.123000;213.139000;213.119000;213.138000;0 +20260325 131700;213.137000;213.162000;213.133000;213.145000;0 +20260325 131800;213.146000;213.157000;213.134000;213.150000;0 +20260325 131900;213.147000;213.149000;213.132000;213.138000;0 +20260325 132000;213.138000;213.150000;213.132000;213.145000;0 +20260325 132100;213.147000;213.153000;213.138000;213.153000;0 +20260325 132200;213.153000;213.169000;213.150000;213.159000;0 +20260325 132300;213.159000;213.169000;213.159000;213.163000;0 +20260325 132400;213.162000;213.163000;213.150000;213.159000;0 +20260325 132500;213.160000;213.162000;213.152000;213.160000;0 +20260325 132600;213.157000;213.157000;213.147000;213.150000;0 +20260325 132700;213.152000;213.173000;213.148000;213.150000;0 +20260325 132800;213.148000;213.151000;213.130000;213.140000;0 +20260325 132900;213.140000;213.145000;213.131000;213.134000;0 +20260325 133000;213.133000;213.153000;213.133000;213.151000;0 +20260325 133100;213.147000;213.152000;213.137000;213.148000;0 +20260325 133200;213.146000;213.151000;213.145000;213.148000;0 +20260325 133300;213.148000;213.153000;213.138000;213.143000;0 +20260325 133400;213.144000;213.144000;213.111000;213.120000;0 +20260325 133500;213.119000;213.128000;213.086000;213.090000;0 +20260325 133600;213.091000;213.099000;213.072000;213.088000;0 +20260325 133700;213.089000;213.092000;213.070000;213.071000;0 +20260325 133800;213.071000;213.081000;213.067000;213.079000;0 +20260325 133900;213.078000;213.080000;213.062000;213.065000;0 +20260325 134000;213.067000;213.084000;213.066000;213.071000;0 +20260325 134100;213.070000;213.092000;213.066000;213.089000;0 +20260325 134200;213.091000;213.094000;213.043000;213.045000;0 +20260325 134300;213.045000;213.058000;213.041000;213.056000;0 +20260325 134400;213.062000;213.072000;213.041000;213.068000;0 +20260325 134500;213.069000;213.069000;213.054000;213.055000;0 +20260325 134600;213.054000;213.060000;213.041000;213.044000;0 +20260325 134700;213.045000;213.064000;213.044000;213.061000;0 +20260325 134800;213.062000;213.076000;213.053000;213.066000;0 +20260325 134900;213.067000;213.072000;213.059000;213.069000;0 +20260325 135000;213.070000;213.072000;213.050000;213.060000;0 +20260325 135100;213.056000;213.061000;213.042000;213.047000;0 +20260325 135200;213.046000;213.059000;213.042000;213.058000;0 +20260325 135300;213.058000;213.078000;213.058000;213.077000;0 +20260325 135400;213.077000;213.089000;213.077000;213.087000;0 +20260325 135500;213.087000;213.095000;213.002000;213.008000;0 +20260325 135600;213.006000;213.062000;213.006000;213.056000;0 +20260325 135700;213.056000;213.093000;213.055000;213.076000;0 +20260325 135800;213.077000;213.092000;213.068000;213.074000;0 +20260325 135900;213.075000;213.077000;213.051000;213.073000;0 +20260325 140000;213.073000;213.084000;213.062000;213.077000;0 +20260325 140100;213.079000;213.086000;213.053000;213.063000;0 +20260325 140200;213.066000;213.073000;213.057000;213.072000;0 +20260325 140300;213.071000;213.078000;213.056000;213.059000;0 +20260325 140400;213.060000;213.088000;213.060000;213.076000;0 +20260325 140500;213.076000;213.083000;213.067000;213.067000;0 +20260325 140600;213.068000;213.078000;213.060000;213.061000;0 +20260325 140700;213.063000;213.079000;213.063000;213.070000;0 +20260325 140800;213.071000;213.081000;213.063000;213.068000;0 +20260325 140900;213.068000;213.080000;213.065000;213.075000;0 +20260325 141000;213.080000;213.082000;213.066000;213.071000;0 +20260325 141100;213.071000;213.081000;213.059000;213.060000;0 +20260325 141200;213.062000;213.076000;213.057000;213.064000;0 +20260325 141300;213.064000;213.099000;213.064000;213.095000;0 +20260325 141400;213.095000;213.106000;213.083000;213.092000;0 +20260325 141500;213.093000;213.108000;213.083000;213.105000;0 +20260325 141600;213.105000;213.109000;213.091000;213.098000;0 +20260325 141700;213.096000;213.103000;213.089000;213.100000;0 +20260325 141800;213.097000;213.114000;213.089000;213.108000;0 +20260325 141900;213.105000;213.118000;213.084000;213.087000;0 +20260325 142000;213.085000;213.115000;213.085000;213.114000;0 +20260325 142100;213.112000;213.114000;213.100000;213.105000;0 +20260325 142200;213.105000;213.107000;213.090000;213.097000;0 +20260325 142300;213.098000;213.105000;213.093000;213.101000;0 +20260325 142400;213.099000;213.111000;213.097000;213.105000;0 +20260325 142500;213.105000;213.116000;213.098000;213.098000;0 +20260325 142600;213.099000;213.112000;213.098000;213.106000;0 +20260325 142700;213.105000;213.126000;213.103000;213.119000;0 +20260325 142800;213.120000;213.125000;213.111000;213.117000;0 +20260325 142900;213.118000;213.122000;213.104000;213.111000;0 +20260325 143000;213.112000;213.116000;213.092000;213.110000;0 +20260325 143100;213.109000;213.117000;213.104000;213.111000;0 +20260325 143200;213.111000;213.115000;213.100000;213.103000;0 +20260325 143300;213.102000;213.110000;213.099000;213.099000;0 +20260325 143400;213.101000;213.113000;213.097000;213.113000;0 +20260325 143500;213.112000;213.118000;213.104000;213.111000;0 +20260325 143600;213.110000;213.115000;213.105000;213.112000;0 +20260325 143700;213.113000;213.120000;213.100000;213.100000;0 +20260325 143800;213.099000;213.123000;213.097000;213.119000;0 +20260325 143900;213.115000;213.127000;213.091000;213.091000;0 +20260325 144000;213.094000;213.117000;213.090000;213.110000;0 +20260325 144100;213.109000;213.109000;213.093000;213.099000;0 +20260325 144200;213.103000;213.124000;213.101000;213.121000;0 +20260325 144300;213.121000;213.128000;213.111000;213.128000;0 +20260325 144400;213.130000;213.134000;213.118000;213.122000;0 +20260325 144500;213.121000;213.149000;213.119000;213.148000;0 +20260325 144600;213.148000;213.149000;213.122000;213.131000;0 +20260325 144700;213.128000;213.129000;213.110000;213.115000;0 +20260325 144800;213.116000;213.118000;213.106000;213.107000;0 +20260325 144900;213.108000;213.125000;213.108000;213.117000;0 +20260325 145000;213.119000;213.147000;213.114000;213.147000;0 +20260325 145100;213.146000;213.147000;213.124000;213.124000;0 +20260325 145200;213.124000;213.136000;213.122000;213.136000;0 +20260325 145300;213.136000;213.152000;213.134000;213.143000;0 +20260325 145400;213.146000;213.151000;213.139000;213.149000;0 +20260325 145500;213.150000;213.157000;213.127000;213.135000;0 +20260325 145600;213.134000;213.135000;213.095000;213.100000;0 +20260325 145700;213.102000;213.144000;213.101000;213.144000;0 +20260325 145800;213.145000;213.155000;213.134000;213.150000;0 +20260325 145900;213.150000;213.152000;213.125000;213.134000;0 +20260325 150000;213.135000;213.148000;213.120000;213.148000;0 +20260325 150100;213.143000;213.149000;213.133000;213.143000;0 +20260325 150200;213.142000;213.154000;213.132000;213.137000;0 +20260325 150300;213.137000;213.138000;213.122000;213.123000;0 +20260325 150400;213.124000;213.130000;213.116000;213.119000;0 +20260325 150500;213.118000;213.118000;213.100000;213.111000;0 +20260325 150600;213.109000;213.128000;213.108000;213.116000;0 +20260325 150700;213.116000;213.118000;213.101000;213.101000;0 +20260325 150800;213.103000;213.118000;213.103000;213.110000;0 +20260325 150900;213.107000;213.111000;213.094000;213.109000;0 +20260325 151000;213.109000;213.112000;213.103000;213.103000;0 +20260325 151100;213.104000;213.105000;213.088000;213.096000;0 +20260325 151200;213.097000;213.098000;213.095000;213.098000;0 +20260325 151300;213.102000;213.102000;213.097000;213.097000;0 +20260325 151400;213.097000;213.100000;213.091000;213.094000;0 +20260325 151500;213.096000;213.098000;213.091000;213.092000;0 +20260325 151600;213.093000;213.099000;213.089000;213.089000;0 +20260325 151700;213.090000;213.094000;213.090000;213.093000;0 +20260325 151800;213.092000;213.095000;213.085000;213.089000;0 +20260325 151900;213.089000;213.097000;213.086000;213.095000;0 +20260325 152000;213.095000;213.096000;213.085000;213.086000;0 +20260325 152100;213.088000;213.092000;213.087000;213.090000;0 +20260325 152200;213.087000;213.087000;213.081000;213.085000;0 +20260325 152300;213.085000;213.085000;213.082000;213.082000;0 +20260325 152400;213.081000;213.085000;213.072000;213.078000;0 +20260325 152500;213.078000;213.079000;213.067000;213.070000;0 +20260325 152600;213.065000;213.070000;213.047000;213.052000;0 +20260325 152700;213.054000;213.058000;213.053000;213.058000;0 +20260325 152800;213.057000;213.057000;213.051000;213.055000;0 +20260325 152900;213.055000;213.061000;213.051000;213.059000;0 +20260325 153000;213.060000;213.060000;213.046000;213.048000;0 +20260325 153100;213.048000;213.048000;213.038000;213.046000;0 +20260325 153200;213.043000;213.044000;213.038000;213.043000;0 +20260325 153300;213.044000;213.048000;213.042000;213.048000;0 +20260325 153400;213.051000;213.053000;213.041000;213.047000;0 +20260325 153500;213.048000;213.068000;213.046000;213.068000;0 +20260325 153600;213.068000;213.068000;213.045000;213.047000;0 +20260325 153700;213.046000;213.061000;213.041000;213.058000;0 +20260325 153800;213.060000;213.060000;213.040000;213.046000;0 +20260325 153900;213.049000;213.049000;213.040000;213.042000;0 +20260325 154000;213.042000;213.054000;213.037000;213.047000;0 +20260325 154100;213.048000;213.068000;213.047000;213.064000;0 +20260325 154200;213.066000;213.067000;213.065000;213.066000;0 +20260325 154300;213.066000;213.067000;213.064000;213.067000;0 +20260325 154400;213.067000;213.067000;213.046000;213.053000;0 +20260325 154500;213.050000;213.050000;213.035000;213.041000;0 +20260325 154600;213.036000;213.063000;213.036000;213.060000;0 +20260325 154700;213.064000;213.080000;213.061000;213.080000;0 +20260325 154800;213.079000;213.079000;213.067000;213.067000;0 +20260325 154900;213.065000;213.071000;213.036000;213.042000;0 +20260325 155000;213.046000;213.046000;213.040000;213.046000;0 +20260325 155100;213.049000;213.070000;213.049000;213.070000;0 +20260325 155200;213.067000;213.068000;213.063000;213.063000;0 +20260325 155300;213.065000;213.078000;213.062000;213.078000;0 +20260325 155400;213.067000;213.079000;213.050000;213.072000;0 +20260325 155500;213.068000;213.111000;213.068000;213.105000;0 +20260325 155600;213.110000;213.110000;213.100000;213.102000;0 +20260325 155700;213.099000;213.117000;213.099000;213.106000;0 +20260325 155800;213.106000;213.141000;213.104000;213.112000;0 +20260325 155900;213.109000;213.127000;213.094000;213.097000;0 +20260325 160400;213.069000;213.069000;213.010000;213.066000;0 +20260325 160500;213.043000;213.059000;213.043000;213.059000;0 +20260325 160700;213.059000;213.059000;213.058000;213.058000;0 +20260325 160800;213.046000;213.046000;213.046000;213.046000;0 +20260325 160900;213.046000;213.046000;212.968000;212.968000;0 +20260325 161000;212.892000;212.968000;212.892000;212.968000;0 +20260325 161100;212.971000;212.974000;212.971000;212.974000;0 +20260325 161200;212.974000;212.974000;212.963000;212.963000;0 +20260325 161300;212.963000;212.964000;212.929000;212.929000;0 +20260325 161400;212.930000;212.930000;212.923000;212.923000;0 +20260325 161500;212.923000;212.999000;212.923000;212.992000;0 +20260325 161600;212.990000;212.993000;212.908000;212.978000;0 +20260325 161700;212.978000;212.979000;212.909000;212.969000;0 +20260325 161800;212.968000;212.982000;212.968000;212.976000;0 +20260325 161900;212.975000;212.980000;212.962000;212.964000;0 +20260325 162000;212.962000;212.967000;212.962000;212.966000;0 +20260325 162100;212.960000;212.968000;212.960000;212.968000;0 +20260325 162200;212.965000;212.965000;212.890000;212.929000;0 +20260325 162300;212.928000;212.963000;212.928000;212.963000;0 +20260325 162400;212.974000;212.974000;212.932000;212.971000;0 +20260325 162500;212.971000;213.015000;212.946000;213.010000;0 +20260325 162600;212.950000;213.020000;212.950000;213.000000;0 +20260325 162700;213.005000;213.020000;212.962000;212.963000;0 +20260325 162800;212.963000;212.967000;212.963000;212.967000;0 +20260325 162900;212.967000;212.968000;212.944000;212.944000;0 +20260325 163000;212.967000;212.989000;212.960000;212.984000;0 +20260325 163100;212.985000;212.987000;212.971000;212.971000;0 +20260325 163200;212.971000;212.992000;212.969000;212.982000;0 +20260325 163300;212.986000;212.991000;212.974000;212.982000;0 +20260325 163400;212.981000;212.985000;212.980000;212.980000;0 +20260325 163500;212.984000;213.029000;212.980000;213.029000;0 +20260325 163600;213.027000;213.035000;213.013000;213.017000;0 +20260325 163700;213.016000;213.019000;213.006000;213.017000;0 +20260325 163800;213.018000;213.026000;213.006000;213.006000;0 +20260325 163900;213.008000;213.021000;213.005000;213.018000;0 +20260325 164000;213.018000;213.023000;213.010000;213.018000;0 +20260325 164100;213.022000;213.023000;213.010000;213.018000;0 +20260325 164200;213.017000;213.042000;213.012000;213.042000;0 +20260325 164300;213.042000;213.044000;213.018000;213.033000;0 +20260325 164400;213.035000;213.044000;213.006000;213.023000;0 +20260325 164500;213.024000;213.024000;213.004000;213.017000;0 +20260325 164600;213.019000;213.024000;213.003000;213.017000;0 +20260325 164700;213.018000;213.025000;213.006000;213.009000;0 +20260325 164800;213.009000;213.017000;212.933000;212.990000;0 +20260325 164900;212.991000;213.013000;212.968000;213.006000;0 +20260325 165000;213.006000;213.011000;212.960000;212.994000;0 +20260325 165100;212.997000;213.025000;212.994000;213.018000;0 +20260325 165200;213.018000;213.059000;213.018000;213.042000;0 +20260325 165300;213.050000;213.080000;213.050000;213.080000;0 +20260325 165400;213.077000;213.101000;213.077000;213.100000;0 +20260325 165500;213.100000;213.109000;213.096000;213.105000;0 +20260325 165600;213.106000;213.109000;213.094000;213.102000;0 +20260325 165700;213.095000;213.103000;213.006000;213.017000;0 +20260325 165800;213.017000;213.017000;212.976000;212.982000;0 +20260325 165900;212.982000;212.994000;212.968000;212.982000;0 +20260325 170000;213.013000;213.112000;212.976000;213.039000;0 +20260325 170100;213.047000;213.059000;213.031000;213.039000;0 +20260325 170200;213.040000;213.040000;213.030000;213.030000;0 +20260325 170300;213.034000;213.051000;213.033000;213.050000;0 +20260325 170400;213.048000;213.048000;213.036000;213.043000;0 +20260325 170500;213.041000;213.054000;213.036000;213.054000;0 +20260325 170600;213.050000;213.066000;213.026000;213.026000;0 +20260325 170700;213.028000;213.033000;213.020000;213.026000;0 +20260325 170800;213.026000;213.026000;213.008000;213.017000;0 +20260325 170900;213.012000;213.024000;213.010000;213.020000;0 +20260325 171000;213.023000;213.027000;213.018000;213.024000;0 +20260325 171100;213.021000;213.033000;213.014000;213.020000;0 +20260325 171200;213.018000;213.024000;213.011000;213.014000;0 +20260325 171300;213.011000;213.034000;213.011000;213.022000;0 +20260325 171400;213.018000;213.023000;213.018000;213.021000;0 +20260325 171500;213.022000;213.029000;213.010000;213.010000;0 +20260325 171600;213.013000;213.021000;213.009000;213.016000;0 +20260325 171700;213.016000;213.028000;213.009000;213.024000;0 +20260325 171800;213.026000;213.038000;213.023000;213.030000;0 +20260325 171900;213.033000;213.035000;213.028000;213.032000;0 +20260325 172000;213.035000;213.037000;213.016000;213.017000;0 +20260325 172100;213.029000;213.029000;213.017000;213.019000;0 +20260325 172200;213.020000;213.038000;213.018000;213.033000;0 +20260325 172300;213.031000;213.041000;213.028000;213.041000;0 +20260325 172400;213.038000;213.038000;213.024000;213.025000;0 +20260325 172500;213.028000;213.044000;213.024000;213.041000;0 +20260325 172600;213.038000;213.045000;213.031000;213.039000;0 +20260325 172700;213.042000;213.049000;213.042000;213.049000;0 +20260325 172800;213.047000;213.049000;213.042000;213.048000;0 +20260325 172900;213.044000;213.044000;213.028000;213.033000;0 +20260325 173000;213.035000;213.046000;213.027000;213.033000;0 +20260325 173100;213.033000;213.044000;213.029000;213.044000;0 +20260325 173200;213.045000;213.045000;213.033000;213.042000;0 +20260325 173300;213.043000;213.046000;213.043000;213.044000;0 +20260325 173400;213.044000;213.046000;213.040000;213.044000;0 +20260325 173500;213.045000;213.047000;213.039000;213.043000;0 +20260325 173600;213.043000;213.045000;213.035000;213.038000;0 +20260325 173700;213.038000;213.039000;213.035000;213.036000;0 +20260325 173800;213.037000;213.039000;213.034000;213.038000;0 +20260325 173900;213.038000;213.040000;213.036000;213.037000;0 +20260325 174000;213.037000;213.046000;213.029000;213.030000;0 +20260325 174100;213.029000;213.033000;213.027000;213.029000;0 +20260325 174200;213.030000;213.036000;213.013000;213.016000;0 +20260325 174300;213.016000;213.017000;212.997000;213.002000;0 +20260325 174400;213.001000;213.025000;213.000000;213.018000;0 +20260325 174500;213.019000;213.026000;213.013000;213.014000;0 +20260325 174600;213.016000;213.023000;213.012000;213.019000;0 +20260325 174700;213.020000;213.027000;213.019000;213.027000;0 +20260325 174800;213.026000;213.028000;213.020000;213.023000;0 +20260325 174900;213.026000;213.030000;213.016000;213.018000;0 +20260325 175000;213.019000;213.021000;213.012000;213.015000;0 +20260325 175100;213.015000;213.030000;212.997000;213.030000;0 +20260325 175200;213.028000;213.029000;212.994000;212.996000;0 +20260325 175300;212.995000;212.998000;212.982000;212.984000;0 +20260325 175400;212.985000;213.003000;212.984000;212.993000;0 +20260325 175500;212.992000;212.998000;212.990000;212.995000;0 +20260325 175600;212.996000;213.002000;212.995000;213.000000;0 +20260325 175700;213.001000;213.009000;212.990000;212.998000;0 +20260325 175800;212.999000;213.000000;212.995000;212.995000;0 +20260325 175900;212.993000;212.997000;212.983000;212.984000;0 +20260325 180000;212.984000;212.993000;212.967000;212.988000;0 +20260325 180100;212.987000;213.002000;212.978000;213.000000;0 +20260325 180200;212.998000;213.015000;212.992000;213.014000;0 +20260325 180300;213.018000;213.018000;213.003000;213.012000;0 +20260325 180400;213.014000;213.015000;212.994000;212.996000;0 +20260325 180500;212.994000;213.014000;212.992000;213.012000;0 +20260325 180600;213.011000;213.016000;213.010000;213.015000;0 +20260325 180700;213.016000;213.031000;213.009000;213.009000;0 +20260325 180800;213.006000;213.008000;212.984000;212.989000;0 +20260325 180900;212.987000;213.000000;212.985000;213.000000;0 +20260325 181000;212.997000;213.000000;212.994000;212.994000;0 +20260325 181100;212.993000;212.993000;212.988000;212.989000;0 +20260325 181200;212.988000;212.991000;212.986000;212.987000;0 +20260325 181300;212.986000;212.989000;212.986000;212.987000;0 +20260325 181400;212.988000;213.016000;212.986000;213.014000;0 +20260325 181500;213.013000;213.015000;213.012000;213.015000;0 +20260325 181600;213.010000;213.010000;212.981000;212.984000;0 +20260325 181700;212.986000;212.986000;212.971000;212.976000;0 +20260325 181800;212.972000;212.985000;212.972000;212.985000;0 +20260325 181900;212.985000;212.985000;212.972000;212.977000;0 +20260325 182000;212.979000;212.979000;212.972000;212.973000;0 +20260325 182100;212.977000;212.982000;212.974000;212.975000;0 +20260325 182200;212.975000;212.984000;212.967000;212.984000;0 +20260325 182300;212.981000;212.981000;212.963000;212.969000;0 +20260325 182400;212.967000;212.976000;212.954000;212.956000;0 +20260325 182500;212.961000;212.961000;212.953000;212.953000;0 +20260325 182600;212.954000;212.957000;212.953000;212.957000;0 +20260325 182700;212.958000;212.967000;212.957000;212.957000;0 +20260325 182800;212.963000;212.967000;212.954000;212.956000;0 +20260325 182900;212.955000;212.967000;212.955000;212.956000;0 +20260325 183000;212.958000;212.978000;212.958000;212.971000;0 +20260325 183100;212.968000;212.987000;212.961000;212.987000;0 +20260325 183200;212.987000;212.987000;212.978000;212.983000;0 +20260325 183300;212.983000;212.987000;212.976000;212.986000;0 +20260325 183400;212.986000;212.998000;212.980000;212.986000;0 +20260325 183500;212.987000;212.997000;212.980000;212.983000;0 +20260325 183600;212.985000;212.987000;212.985000;212.987000;0 +20260325 183700;212.985000;212.991000;212.982000;212.983000;0 +20260325 183800;212.984000;212.985000;212.977000;212.985000;0 +20260325 183900;212.986000;212.986000;212.976000;212.977000;0 +20260325 184000;212.975000;212.992000;212.972000;212.991000;0 +20260325 184100;212.988000;212.988000;212.980000;212.985000;0 +20260325 184200;212.985000;213.001000;212.982000;213.000000;0 +20260325 184300;212.994000;213.003000;212.991000;212.992000;0 +20260325 184400;212.990000;212.992000;212.988000;212.992000;0 +20260325 184500;212.993000;212.993000;212.945000;212.947000;0 +20260325 184600;212.946000;212.958000;212.938000;212.956000;0 +20260325 184700;212.956000;212.973000;212.956000;212.969000;0 +20260325 184800;212.969000;212.991000;212.966000;212.981000;0 +20260325 184900;212.980000;212.981000;212.960000;212.966000;0 +20260325 185000;212.966000;212.968000;212.954000;212.954000;0 +20260325 185100;212.954000;212.962000;212.950000;212.955000;0 +20260325 185200;212.954000;212.966000;212.952000;212.961000;0 +20260325 185300;212.962000;212.968000;212.957000;212.968000;0 +20260325 185400;212.968000;212.984000;212.968000;212.984000;0 +20260325 185500;212.981000;212.990000;212.973000;212.974000;0 +20260325 185600;212.973000;212.985000;212.971000;212.971000;0 +20260325 185700;212.972000;212.990000;212.970000;212.985000;0 +20260325 185800;212.991000;212.997000;212.986000;212.988000;0 +20260325 185900;212.988000;212.994000;212.988000;212.990000;0 +20260325 190000;212.993000;213.029000;212.953000;212.954000;0 +20260325 190100;212.958000;212.958000;212.922000;212.933000;0 +20260325 190200;212.933000;212.967000;212.933000;212.967000;0 +20260325 190300;212.967000;212.985000;212.957000;212.982000;0 +20260325 190400;212.979000;212.980000;212.964000;212.964000;0 +20260325 190500;212.965000;212.979000;212.956000;212.963000;0 +20260325 190600;212.963000;212.989000;212.957000;212.969000;0 +20260325 190700;212.971000;212.987000;212.916000;212.928000;0 +20260325 190800;212.931000;212.939000;212.925000;212.927000;0 +20260325 190900;212.931000;212.937000;212.930000;212.930000;0 +20260325 191000;212.930000;212.937000;212.903000;212.907000;0 +20260325 191100;212.910000;212.933000;212.906000;212.924000;0 +20260325 191200;212.927000;212.927000;212.916000;212.924000;0 +20260325 191300;212.927000;212.943000;212.927000;212.934000;0 +20260325 191400;212.936000;212.967000;212.934000;212.963000;0 +20260325 191500;212.963000;212.994000;212.963000;212.993000;0 +20260325 191600;212.994000;213.016000;212.980000;213.015000;0 +20260325 191700;213.017000;213.049000;213.003000;213.048000;0 +20260325 191800;213.044000;213.064000;213.041000;213.048000;0 +20260325 191900;213.048000;213.053000;213.025000;213.029000;0 +20260325 192000;213.034000;213.035000;213.006000;213.019000;0 +20260325 192100;213.017000;213.025000;213.012000;213.024000;0 +20260325 192200;213.022000;213.022000;212.997000;213.010000;0 +20260325 192300;213.010000;213.018000;213.000000;213.017000;0 +20260325 192400;213.021000;213.048000;213.017000;213.044000;0 +20260325 192500;213.047000;213.047000;213.023000;213.040000;0 +20260325 192600;213.046000;213.063000;213.038000;213.054000;0 +20260325 192700;213.052000;213.052000;213.028000;213.040000;0 +20260325 192800;213.042000;213.061000;213.036000;213.056000;0 +20260325 192900;213.059000;213.074000;213.054000;213.058000;0 +20260325 193000;213.060000;213.060000;213.033000;213.033000;0 +20260325 193100;213.033000;213.056000;213.024000;213.043000;0 +20260325 193200;213.042000;213.052000;213.037000;213.045000;0 +20260325 193300;213.046000;213.050000;213.029000;213.029000;0 +20260325 193400;213.030000;213.032000;213.014000;213.016000;0 +20260325 193500;213.015000;213.015000;212.987000;212.993000;0 +20260325 193600;212.992000;212.995000;212.984000;212.990000;0 +20260325 193700;212.990000;212.994000;212.979000;212.984000;0 +20260325 193800;212.981000;212.988000;212.972000;212.975000;0 +20260325 193900;212.974000;212.985000;212.963000;212.985000;0 +20260325 194000;212.984000;212.995000;212.979000;212.989000;0 +20260325 194100;212.989000;212.989000;212.964000;212.975000;0 +20260325 194200;212.975000;212.975000;212.957000;212.959000;0 +20260325 194300;212.960000;212.972000;212.957000;212.963000;0 +20260325 194400;212.966000;212.989000;212.965000;212.974000;0 +20260325 194500;212.979000;212.979000;212.946000;212.964000;0 +20260325 194600;212.965000;212.971000;212.952000;212.970000;0 +20260325 194700;212.973000;212.973000;212.952000;212.952000;0 +20260325 194800;212.954000;212.960000;212.949000;212.949000;0 +20260325 194900;212.952000;212.956000;212.936000;212.939000;0 +20260325 195000;212.940000;212.953000;212.934000;212.937000;0 +20260325 195100;212.946000;212.969000;212.935000;212.964000;0 +20260325 195200;212.964000;212.989000;212.962000;212.974000;0 +20260325 195300;212.980000;212.982000;212.943000;212.944000;0 +20260325 195400;212.944000;212.978000;212.919000;212.970000;0 +20260325 195500;212.967000;213.042000;212.967000;212.994000;0 +20260325 195600;212.992000;213.021000;212.992000;213.017000;0 +20260325 195700;213.017000;213.025000;212.987000;213.015000;0 +20260325 195800;213.015000;213.015000;212.993000;213.006000;0 +20260325 195900;213.005000;213.033000;213.004000;213.028000;0 +20260325 200000;213.027000;213.049000;213.017000;213.037000;0 +20260325 200100;213.036000;213.053000;213.012000;213.044000;0 +20260325 200200;213.043000;213.081000;213.033000;213.080000;0 +20260325 200300;213.077000;213.089000;213.048000;213.048000;0 +20260325 200400;213.052000;213.057000;213.035000;213.045000;0 +20260325 200500;213.047000;213.069000;213.040000;213.056000;0 +20260325 200600;213.056000;213.070000;213.051000;213.056000;0 +20260325 200700;213.052000;213.054000;213.037000;213.043000;0 +20260325 200800;213.043000;213.054000;213.020000;213.022000;0 +20260325 200900;213.018000;213.040000;213.009000;213.038000;0 +20260325 201000;213.036000;213.052000;213.033000;213.033000;0 +20260325 201100;213.038000;213.039000;213.022000;213.022000;0 +20260325 201200;213.023000;213.047000;213.021000;213.044000;0 +20260325 201300;213.045000;213.079000;213.044000;213.068000;0 +20260325 201400;213.068000;213.095000;213.048000;213.060000;0 +20260325 201500;213.065000;213.068000;213.032000;213.038000;0 +20260325 201600;213.036000;213.047000;213.019000;213.026000;0 +20260325 201700;213.029000;213.034000;213.019000;213.025000;0 +20260325 201800;213.024000;213.031000;213.012000;213.016000;0 +20260325 201900;213.014000;213.025000;213.004000;213.007000;0 +20260325 202000;213.006000;213.029000;213.005000;213.008000;0 +20260325 202100;213.009000;213.048000;213.004000;213.047000;0 +20260325 202200;213.044000;213.069000;213.039000;213.061000;0 +20260325 202300;213.058000;213.067000;213.036000;213.036000;0 +20260325 202400;213.035000;213.039000;213.001000;213.004000;0 +20260325 202500;213.006000;213.016000;212.987000;213.013000;0 +20260325 202600;213.016000;213.039000;213.011000;213.013000;0 +20260325 202700;213.014000;213.022000;213.007000;213.013000;0 +20260325 202800;213.013000;213.016000;213.003000;213.015000;0 +20260325 202900;213.014000;213.027000;213.008000;213.026000;0 +20260325 203000;213.025000;213.060000;213.023000;213.054000;0 +20260325 203100;213.055000;213.055000;213.038000;213.055000;0 +20260325 203200;213.052000;213.052000;213.039000;213.046000;0 +20260325 203300;213.046000;213.079000;213.043000;213.075000;0 +20260325 203400;213.072000;213.089000;213.063000;213.082000;0 +20260325 203500;213.091000;213.102000;213.075000;213.088000;0 +20260325 203600;213.086000;213.090000;213.072000;213.090000;0 +20260325 203700;213.088000;213.104000;213.088000;213.089000;0 +20260325 203800;213.091000;213.110000;213.090000;213.104000;0 +20260325 203900;213.102000;213.106000;213.092000;213.100000;0 +20260325 204000;213.101000;213.111000;213.094000;213.094000;0 +20260325 204100;213.096000;213.107000;213.082000;213.106000;0 +20260325 204200;213.103000;213.107000;213.086000;213.086000;0 +20260325 204300;213.089000;213.097000;213.077000;213.083000;0 +20260325 204400;213.083000;213.088000;213.057000;213.061000;0 +20260325 204500;213.059000;213.075000;213.054000;213.070000;0 +20260325 204600;213.071000;213.081000;213.063000;213.065000;0 +20260325 204700;213.064000;213.088000;213.064000;213.069000;0 +20260325 204800;213.068000;213.076000;213.060000;213.076000;0 +20260325 204900;213.073000;213.079000;213.065000;213.074000;0 +20260325 205000;213.075000;213.086000;213.072000;213.081000;0 +20260325 205100;213.080000;213.084000;213.070000;213.075000;0 +20260325 205200;213.073000;213.082000;213.066000;213.081000;0 +20260325 205300;213.084000;213.088000;213.081000;213.081000;0 +20260325 205400;213.085000;213.086000;213.062000;213.080000;0 +20260325 205500;213.082000;213.086000;213.068000;213.077000;0 +20260325 205600;213.073000;213.082000;213.065000;213.071000;0 +20260325 205700;213.070000;213.085000;213.070000;213.078000;0 +20260325 205800;213.078000;213.078000;213.058000;213.062000;0 +20260325 205900;213.063000;213.095000;213.061000;213.093000;0 +20260325 210000;213.092000;213.098000;213.079000;213.082000;0 +20260325 210100;213.081000;213.088000;213.072000;213.086000;0 +20260325 210200;213.086000;213.105000;213.082000;213.082000;0 +20260325 210300;213.084000;213.089000;213.054000;213.057000;0 +20260325 210400;213.055000;213.070000;213.054000;213.061000;0 +20260325 210500;213.065000;213.080000;213.061000;213.071000;0 +20260325 210600;213.070000;213.071000;213.058000;213.065000;0 +20260325 210700;213.067000;213.069000;213.057000;213.059000;0 +20260325 210800;213.059000;213.062000;213.043000;213.043000;0 +20260325 210900;213.044000;213.044000;213.036000;213.042000;0 +20260325 211000;213.046000;213.056000;213.036000;213.040000;0 +20260325 211100;213.039000;213.041000;213.025000;213.040000;0 +20260325 211200;213.037000;213.058000;213.037000;213.058000;0 +20260325 211300;213.058000;213.058000;213.044000;213.044000;0 +20260325 211400;213.048000;213.049000;213.042000;213.044000;0 +20260325 211500;213.043000;213.043000;213.031000;213.032000;0 +20260325 211600;213.034000;213.039000;213.023000;213.033000;0 +20260325 211700;213.032000;213.039000;213.010000;213.013000;0 +20260325 211800;213.013000;213.023000;213.000000;213.022000;0 +20260325 211900;213.024000;213.027000;213.015000;213.018000;0 +20260325 212000;213.021000;213.037000;213.012000;213.034000;0 +20260325 212100;213.036000;213.047000;213.029000;213.039000;0 +20260325 212200;213.038000;213.041000;213.021000;213.024000;0 +20260325 212300;213.030000;213.031000;213.021000;213.027000;0 +20260325 212400;213.027000;213.033000;213.013000;213.013000;0 +20260325 212500;213.018000;213.018000;213.013000;213.015000;0 +20260325 212600;213.021000;213.022000;213.010000;213.017000;0 +20260325 212700;213.015000;213.042000;213.013000;213.042000;0 +20260325 212800;213.041000;213.042000;213.011000;213.016000;0 +20260325 212900;213.016000;213.027000;213.016000;213.021000;0 +20260325 213000;213.022000;213.030000;213.013000;213.016000;0 +20260325 213100;213.015000;213.019000;212.988000;212.988000;0 +20260325 213200;212.985000;212.987000;212.964000;212.964000;0 +20260325 213300;212.964000;212.968000;212.953000;212.958000;0 +20260325 213400;212.957000;212.968000;212.950000;212.959000;0 +20260325 213500;212.960000;212.968000;212.943000;212.943000;0 +20260325 213600;212.947000;212.962000;212.946000;212.960000;0 +20260325 213700;212.955000;212.957000;212.933000;212.947000;0 +20260325 213800;212.946000;212.959000;212.938000;212.941000;0 +20260325 213900;212.941000;212.948000;212.920000;212.935000;0 +20260325 214000;212.932000;212.950000;212.932000;212.944000;0 +20260325 214100;212.945000;212.956000;212.944000;212.948000;0 +20260325 214200;212.948000;212.954000;212.934000;212.946000;0 +20260325 214300;212.947000;212.949000;212.931000;212.940000;0 +20260325 214400;212.941000;212.962000;212.940000;212.956000;0 +20260325 214500;212.958000;212.980000;212.952000;212.962000;0 +20260325 214600;212.964000;212.983000;212.962000;212.968000;0 +20260325 214700;212.969000;212.969000;212.954000;212.962000;0 +20260325 214800;212.962000;212.971000;212.958000;212.966000;0 +20260325 214900;212.967000;212.971000;212.961000;212.968000;0 +20260325 215000;212.970000;212.978000;212.967000;212.977000;0 +20260325 215100;212.978000;212.995000;212.978000;212.993000;0 +20260325 215200;212.993000;212.995000;212.974000;212.987000;0 +20260325 215300;212.986000;212.986000;212.977000;212.979000;0 +20260325 215400;212.978000;212.990000;212.974000;212.981000;0 +20260325 215500;212.979000;212.981000;212.957000;212.962000;0 +20260325 215600;212.959000;212.960000;212.950000;212.953000;0 +20260325 215700;212.951000;212.973000;212.951000;212.967000;0 +20260325 215800;212.968000;212.974000;212.952000;212.963000;0 +20260325 215900;212.965000;212.983000;212.965000;212.976000;0 +20260325 220000;212.981000;212.983000;212.966000;212.974000;0 +20260325 220100;212.975000;212.994000;212.974000;212.985000;0 +20260325 220200;212.986000;212.995000;212.985000;212.990000;0 +20260325 220300;212.987000;212.990000;212.974000;212.980000;0 +20260325 220400;212.983000;212.988000;212.972000;212.977000;0 +20260325 220500;212.978000;212.981000;212.967000;212.971000;0 +20260325 220600;212.969000;212.976000;212.959000;212.965000;0 +20260325 220700;212.967000;212.975000;212.961000;212.961000;0 +20260325 220800;212.961000;212.979000;212.959000;212.979000;0 +20260325 220900;212.979000;212.980000;212.957000;212.965000;0 +20260325 221000;212.967000;212.990000;212.964000;212.982000;0 +20260325 221100;212.982000;212.989000;212.980000;212.987000;0 +20260325 221200;212.987000;212.989000;212.965000;212.965000;0 +20260325 221300;212.966000;212.984000;212.944000;212.983000;0 +20260325 221400;212.983000;212.989000;212.968000;212.980000;0 +20260325 221500;212.977000;212.979000;212.955000;212.957000;0 +20260325 221600;212.960000;212.960000;212.926000;212.945000;0 +20260325 221700;212.944000;212.959000;212.927000;212.928000;0 +20260325 221800;212.927000;212.936000;212.920000;212.930000;0 +20260325 221900;212.932000;212.959000;212.930000;212.946000;0 +20260325 222000;212.947000;212.956000;212.941000;212.946000;0 +20260325 222100;212.947000;212.973000;212.944000;212.972000;0 +20260325 222200;212.975000;212.989000;212.975000;212.977000;0 +20260325 222300;212.979000;212.991000;212.979000;212.991000;0 +20260325 222400;212.991000;213.013000;212.990000;213.005000;0 +20260325 222500;213.007000;213.014000;212.997000;213.014000;0 +20260325 222600;213.015000;213.024000;213.006000;213.024000;0 +20260325 222700;213.023000;213.036000;213.019000;213.031000;0 +20260325 222800;213.030000;213.035000;213.021000;213.032000;0 +20260325 222900;213.037000;213.039000;213.025000;213.032000;0 +20260325 223000;213.029000;213.064000;213.024000;213.060000;0 +20260325 223100;213.060000;213.071000;213.057000;213.065000;0 +20260325 223200;213.064000;213.089000;213.064000;213.089000;0 +20260325 223300;213.085000;213.085000;213.053000;213.059000;0 +20260325 223400;213.058000;213.066000;213.058000;213.059000;0 +20260325 223500;213.059000;213.059000;213.049000;213.055000;0 +20260325 223600;213.055000;213.066000;213.051000;213.054000;0 +20260325 223700;213.054000;213.076000;213.054000;213.066000;0 +20260325 223800;213.062000;213.074000;213.062000;213.073000;0 +20260325 223900;213.074000;213.091000;213.068000;213.091000;0 +20260325 224000;213.090000;213.106000;213.087000;213.102000;0 +20260325 224100;213.102000;213.104000;213.078000;213.094000;0 +20260325 224200;213.099000;213.104000;213.088000;213.097000;0 +20260325 224300;213.094000;213.094000;213.074000;213.082000;0 +20260325 224400;213.079000;213.085000;213.078000;213.082000;0 +20260325 224500;213.082000;213.089000;213.074000;213.079000;0 +20260325 224600;213.084000;213.093000;213.074000;213.093000;0 +20260325 224700;213.093000;213.102000;213.092000;213.099000;0 +20260325 224800;213.099000;213.100000;213.016000;213.029000;0 +20260325 224900;213.028000;213.053000;213.028000;213.033000;0 +20260325 225000;213.032000;213.038000;213.032000;213.033000;0 +20260325 225100;213.036000;213.070000;213.033000;213.069000;0 +20260325 225200;213.071000;213.088000;213.059000;213.069000;0 +20260325 225300;213.066000;213.101000;213.062000;213.098000;0 +20260325 225400;213.097000;213.100000;213.081000;213.083000;0 +20260325 225500;213.082000;213.094000;213.071000;213.094000;0 +20260325 225600;213.092000;213.117000;213.092000;213.117000;0 +20260325 225700;213.117000;213.117000;213.101000;213.110000;0 +20260325 225800;213.111000;213.111000;213.094000;213.108000;0 +20260325 225900;213.109000;213.109000;213.095000;213.099000;0 +20260325 230000;213.097000;213.107000;213.089000;213.105000;0 +20260325 230100;213.103000;213.108000;213.103000;213.104000;0 +20260325 230200;213.102000;213.109000;213.101000;213.106000;0 +20260325 230300;213.103000;213.109000;213.093000;213.093000;0 +20260325 230400;213.092000;213.094000;213.090000;213.093000;0 +20260325 230500;213.097000;213.104000;213.086000;213.097000;0 +20260325 230600;213.093000;213.101000;213.091000;213.099000;0 +20260325 230700;213.101000;213.101000;213.087000;213.088000;0 +20260325 230800;213.091000;213.094000;213.086000;213.086000;0 +20260325 230900;213.091000;213.097000;213.091000;213.095000;0 +20260325 231000;213.095000;213.096000;213.073000;213.079000;0 +20260325 231100;213.077000;213.079000;213.065000;213.070000;0 +20260325 231200;213.069000;213.071000;213.060000;213.066000;0 +20260325 231300;213.069000;213.079000;213.064000;213.079000;0 +20260325 231400;213.080000;213.080000;213.067000;213.068000;0 +20260325 231500;213.068000;213.071000;213.062000;213.068000;0 +20260325 231600;213.066000;213.070000;213.059000;213.059000;0 +20260325 231700;213.059000;213.059000;213.042000;213.042000;0 +20260325 231800;213.044000;213.048000;213.043000;213.043000;0 +20260325 231900;213.043000;213.053000;213.042000;213.049000;0 +20260325 232000;213.053000;213.072000;213.049000;213.072000;0 +20260325 232100;213.071000;213.071000;213.060000;213.060000;0 +20260325 232200;213.060000;213.072000;213.056000;213.058000;0 +20260325 232300;213.059000;213.059000;213.042000;213.045000;0 +20260325 232400;213.044000;213.049000;213.033000;213.035000;0 +20260325 232500;213.036000;213.053000;213.036000;213.051000;0 +20260325 232600;213.052000;213.053000;213.044000;213.044000;0 +20260325 232700;213.043000;213.043000;213.022000;213.031000;0 +20260325 232800;213.033000;213.038000;213.027000;213.027000;0 +20260325 232900;213.031000;213.041000;213.029000;213.039000;0 +20260325 233000;213.039000;213.054000;213.037000;213.052000;0 +20260325 233100;213.054000;213.060000;213.054000;213.056000;0 +20260325 233200;213.059000;213.069000;213.053000;213.055000;0 +20260325 233300;213.054000;213.056000;213.045000;213.050000;0 +20260325 233400;213.051000;213.054000;213.049000;213.050000;0 +20260325 233500;213.049000;213.052000;213.046000;213.048000;0 +20260325 233600;213.048000;213.056000;213.048000;213.056000;0 +20260325 233700;213.056000;213.065000;213.056000;213.064000;0 +20260325 233800;213.060000;213.060000;213.048000;213.058000;0 +20260325 233900;213.058000;213.060000;213.045000;213.049000;0 +20260325 234000;213.049000;213.054000;213.047000;213.052000;0 +20260325 234100;213.051000;213.059000;213.046000;213.056000;0 +20260325 234200;213.054000;213.055000;213.045000;213.045000;0 +20260325 234300;213.046000;213.048000;213.042000;213.048000;0 +20260325 234400;213.047000;213.049000;213.046000;213.048000;0 +20260325 234500;213.055000;213.066000;213.045000;213.045000;0 +20260325 234600;213.044000;213.050000;213.031000;213.032000;0 +20260325 234700;213.032000;213.044000;213.031000;213.037000;0 +20260325 234800;213.037000;213.072000;213.037000;213.064000;0 +20260325 234900;213.061000;213.084000;213.061000;213.082000;0 +20260325 235000;213.082000;213.085000;213.068000;213.082000;0 +20260325 235100;213.079000;213.097000;213.079000;213.092000;0 +20260325 235200;213.093000;213.110000;213.079000;213.079000;0 +20260325 235300;213.076000;213.087000;213.067000;213.071000;0 +20260325 235400;213.071000;213.078000;213.056000;213.070000;0 +20260325 235500;213.069000;213.088000;213.064000;213.075000;0 +20260325 235600;213.075000;213.088000;213.061000;213.067000;0 +20260325 235700;213.064000;213.093000;213.062000;213.080000;0 +20260325 235800;213.081000;213.093000;213.075000;213.084000;0 +20260325 235900;213.083000;213.095000;213.082000;213.083000;0 +20260326 000000;213.085000;213.096000;213.040000;213.064000;0 +20260326 000100;213.064000;213.070000;213.052000;213.063000;0 +20260326 000200;213.062000;213.078000;213.053000;213.056000;0 +20260326 000300;213.057000;213.062000;213.055000;213.058000;0 +20260326 000400;213.059000;213.078000;213.059000;213.074000;0 +20260326 000500;213.076000;213.076000;213.050000;213.053000;0 +20260326 000600;213.050000;213.064000;213.047000;213.059000;0 +20260326 000700;213.060000;213.074000;213.053000;213.061000;0 +20260326 000800;213.059000;213.061000;213.042000;213.042000;0 +20260326 000900;213.045000;213.058000;213.042000;213.047000;0 +20260326 001000;213.044000;213.049000;213.025000;213.034000;0 +20260326 001100;213.034000;213.034000;213.005000;213.012000;0 +20260326 001200;213.012000;213.019000;212.988000;212.991000;0 +20260326 001300;212.990000;213.005000;212.986000;213.002000;0 +20260326 001400;213.005000;213.031000;213.005000;213.021000;0 +20260326 001500;213.021000;213.030000;213.012000;213.024000;0 +20260326 001600;213.025000;213.033000;213.019000;213.023000;0 +20260326 001700;213.026000;213.030000;213.020000;213.027000;0 +20260326 001800;213.031000;213.036000;213.023000;213.031000;0 +20260326 001900;213.032000;213.038000;213.030000;213.037000;0 +20260326 002000;213.035000;213.040000;213.031000;213.034000;0 +20260326 002100;213.035000;213.039000;213.019000;213.023000;0 +20260326 002200;213.021000;213.031000;213.007000;213.007000;0 +20260326 002300;213.004000;213.020000;213.000000;213.019000;0 +20260326 002400;213.017000;213.020000;213.001000;213.001000;0 +20260326 002500;213.000000;213.010000;212.985000;212.988000;0 +20260326 002600;212.980000;213.015000;212.979000;213.011000;0 +20260326 002700;213.010000;213.010000;212.983000;212.988000;0 +20260326 002800;212.987000;213.028000;212.981000;213.020000;0 +20260326 002900;213.023000;213.034000;213.020000;213.026000;0 +20260326 003000;213.030000;213.031000;213.013000;213.029000;0 +20260326 003100;213.030000;213.034000;213.012000;213.016000;0 +20260326 003200;213.018000;213.019000;212.974000;212.979000;0 +20260326 003300;212.982000;213.006000;212.980000;213.006000;0 +20260326 003400;213.006000;213.024000;213.001000;213.024000;0 +20260326 003500;213.022000;213.029000;213.017000;213.028000;0 +20260326 003600;213.024000;213.035000;213.022000;213.024000;0 +20260326 003700;213.022000;213.026000;213.009000;213.009000;0 +20260326 003800;213.009000;213.010000;212.995000;213.004000;0 +20260326 003900;213.013000;213.021000;213.009000;213.020000;0 +20260326 004000;213.020000;213.022000;213.005000;213.005000;0 +20260326 004100;213.007000;213.046000;213.007000;213.044000;0 +20260326 004200;213.043000;213.043000;213.025000;213.039000;0 +20260326 004300;213.038000;213.050000;213.033000;213.034000;0 +20260326 004400;213.035000;213.042000;213.014000;213.017000;0 +20260326 004500;213.020000;213.024000;212.998000;212.998000;0 +20260326 004600;212.998000;213.000000;212.979000;212.980000;0 +20260326 004700;212.982000;212.996000;212.970000;212.970000;0 +20260326 004800;212.970000;212.990000;212.966000;212.987000;0 +20260326 004900;212.986000;212.989000;212.983000;212.983000;0 +20260326 005000;212.989000;212.992000;212.978000;212.991000;0 +20260326 005100;212.989000;212.989000;212.973000;212.974000;0 +20260326 005200;212.968000;212.972000;212.959000;212.969000;0 +20260326 005300;212.971000;212.973000;212.961000;212.961000;0 +20260326 005400;212.962000;212.971000;212.952000;212.957000;0 +20260326 005500;212.958000;212.976000;212.950000;212.956000;0 +20260326 005600;212.953000;212.982000;212.953000;212.960000;0 +20260326 005700;212.961000;212.979000;212.961000;212.971000;0 +20260326 005800;212.973000;213.008000;212.973000;212.993000;0 +20260326 005900;212.994000;213.012000;212.987000;212.991000;0 +20260326 010000;212.992000;212.998000;212.982000;212.985000;0 +20260326 010100;212.983000;212.986000;212.949000;212.974000;0 +20260326 010200;212.976000;212.987000;212.953000;212.959000;0 +20260326 010300;212.958000;212.988000;212.958000;212.980000;0 +20260326 010400;212.981000;212.997000;212.973000;212.991000;0 +20260326 010500;212.993000;213.000000;212.947000;212.949000;0 +20260326 010600;212.947000;212.953000;212.937000;212.952000;0 +20260326 010700;212.951000;212.972000;212.949000;212.971000;0 +20260326 010800;212.968000;212.968000;212.948000;212.964000;0 +20260326 010900;212.966000;212.988000;212.957000;212.983000;0 +20260326 011000;212.984000;213.021000;212.978000;213.003000;0 +20260326 011100;213.002000;213.012000;212.985000;212.987000;0 +20260326 011200;212.986000;213.000000;212.971000;212.974000;0 +20260326 011300;212.974000;212.987000;212.967000;212.976000;0 +20260326 011400;212.977000;212.984000;212.958000;212.961000;0 +20260326 011500;212.963000;212.978000;212.949000;212.976000;0 +20260326 011600;212.975000;212.999000;212.972000;212.992000;0 +20260326 011700;212.995000;213.038000;212.995000;213.038000;0 +20260326 011800;213.040000;213.042000;213.009000;213.012000;0 +20260326 011900;213.012000;213.013000;212.986000;213.000000;0 +20260326 012000;212.999000;213.013000;212.996000;213.008000;0 +20260326 012100;213.009000;213.012000;212.989000;212.991000;0 +20260326 012200;212.991000;212.997000;212.985000;212.991000;0 +20260326 012300;212.993000;213.005000;212.987000;213.002000;0 +20260326 012400;212.997000;213.027000;212.997000;213.022000;0 +20260326 012500;213.020000;213.031000;213.018000;213.020000;0 +20260326 012600;213.021000;213.029000;213.009000;213.028000;0 +20260326 012700;213.027000;213.058000;213.025000;213.054000;0 +20260326 012800;213.058000;213.072000;213.051000;213.060000;0 +20260326 012900;213.061000;213.090000;213.045000;213.053000;0 +20260326 013000;213.053000;213.059000;213.027000;213.038000;0 +20260326 013100;213.039000;213.039000;213.013000;213.037000;0 +20260326 013200;213.039000;213.045000;213.021000;213.026000;0 +20260326 013300;213.024000;213.027000;212.999000;213.001000;0 +20260326 013400;213.001000;213.010000;212.994000;212.994000;0 +20260326 013500;212.994000;213.019000;212.990000;213.018000;0 +20260326 013600;213.017000;213.017000;212.983000;212.984000;0 +20260326 013700;212.984000;212.988000;212.968000;212.980000;0 +20260326 013800;212.981000;212.991000;212.971000;212.971000;0 +20260326 013900;212.971000;212.979000;212.963000;212.970000;0 +20260326 014000;212.968000;212.980000;212.963000;212.963000;0 +20260326 014100;212.967000;212.968000;212.937000;212.938000;0 +20260326 014200;212.938000;212.938000;212.916000;212.920000;0 +20260326 014300;212.923000;212.963000;212.923000;212.954000;0 +20260326 014400;212.959000;212.962000;212.949000;212.949000;0 +20260326 014500;212.951000;212.961000;212.944000;212.949000;0 +20260326 014600;212.950000;212.950000;212.934000;212.937000;0 +20260326 014700;212.939000;212.959000;212.939000;212.951000;0 +20260326 014800;212.949000;212.949000;212.892000;212.909000;0 +20260326 014900;212.914000;212.921000;212.897000;212.921000;0 +20260326 015000;212.918000;212.935000;212.909000;212.935000;0 +20260326 015100;212.934000;212.955000;212.932000;212.951000;0 +20260326 015200;212.949000;212.952000;212.929000;212.940000;0 +20260326 015300;212.942000;212.945000;212.929000;212.929000;0 +20260326 015400;212.930000;212.944000;212.930000;212.933000;0 +20260326 015500;212.936000;212.963000;212.929000;212.931000;0 +20260326 015600;212.933000;212.935000;212.908000;212.919000;0 +20260326 015700;212.919000;212.920000;212.889000;212.890000;0 +20260326 015800;212.890000;212.911000;212.889000;212.897000;0 +20260326 015900;212.900000;212.918000;212.900000;212.910000;0 +20260326 020000;212.909000;212.924000;212.879000;212.898000;0 +20260326 020100;212.891000;212.906000;212.875000;212.886000;0 +20260326 020200;212.884000;212.898000;212.864000;212.880000;0 +20260326 020300;212.879000;212.905000;212.875000;212.879000;0 +20260326 020400;212.879000;212.879000;212.835000;212.835000;0 +20260326 020500;212.838000;212.848000;212.809000;212.817000;0 +20260326 020600;212.820000;212.834000;212.804000;212.829000;0 +20260326 020700;212.832000;212.832000;212.807000;212.824000;0 +20260326 020800;212.829000;212.841000;212.813000;212.820000;0 +20260326 020900;212.819000;212.833000;212.811000;212.828000;0 +20260326 021000;212.829000;212.836000;212.818000;212.826000;0 +20260326 021100;212.827000;212.827000;212.802000;212.802000;0 +20260326 021200;212.805000;212.812000;212.787000;212.789000;0 +20260326 021300;212.789000;212.816000;212.784000;212.811000;0 +20260326 021400;212.811000;212.858000;212.806000;212.841000;0 +20260326 021500;212.843000;212.866000;212.843000;212.866000;0 +20260326 021600;212.868000;212.883000;212.860000;212.866000;0 +20260326 021700;212.864000;212.870000;212.854000;212.855000;0 +20260326 021800;212.854000;212.862000;212.837000;212.858000;0 +20260326 021900;212.859000;212.862000;212.814000;212.817000;0 +20260326 022000;212.817000;212.821000;212.734000;212.765000;0 +20260326 022100;212.763000;212.814000;212.758000;212.812000;0 +20260326 022200;212.815000;212.882000;212.815000;212.872000;0 +20260326 022300;212.872000;212.906000;212.865000;212.906000;0 +20260326 022400;212.905000;212.907000;212.888000;212.889000;0 +20260326 022500;212.889000;212.920000;212.886000;212.912000;0 +20260326 022600;212.911000;212.922000;212.890000;212.897000;0 +20260326 022700;212.898000;212.905000;212.878000;212.887000;0 +20260326 022800;212.887000;212.896000;212.875000;212.878000;0 +20260326 022900;212.879000;212.884000;212.867000;212.875000;0 +20260326 023000;212.875000;212.891000;212.862000;212.891000;0 +20260326 023100;212.890000;212.908000;212.877000;212.888000;0 +20260326 023200;212.899000;212.909000;212.876000;212.886000;0 +20260326 023300;212.887000;212.900000;212.871000;212.888000;0 +20260326 023400;212.887000;212.896000;212.879000;212.888000;0 +20260326 023500;212.888000;212.895000;212.876000;212.891000;0 +20260326 023600;212.888000;212.896000;212.847000;212.896000;0 +20260326 023700;212.897000;212.930000;212.891000;212.930000;0 +20260326 023800;212.932000;212.972000;212.932000;212.970000;0 +20260326 023900;212.968000;212.986000;212.957000;212.957000;0 +20260326 024000;212.958000;212.967000;212.921000;212.925000;0 +20260326 024100;212.925000;212.936000;212.915000;212.915000;0 +20260326 024200;212.919000;212.926000;212.912000;212.914000;0 +20260326 024300;212.913000;212.939000;212.902000;212.929000;0 +20260326 024400;212.929000;212.932000;212.906000;212.918000;0 +20260326 024500;212.920000;212.936000;212.914000;212.931000;0 +20260326 024600;212.932000;212.933000;212.909000;212.915000;0 +20260326 024700;212.913000;212.921000;212.908000;212.912000;0 +20260326 024800;212.915000;212.920000;212.908000;212.917000;0 +20260326 024900;212.921000;212.926000;212.911000;212.920000;0 +20260326 025000;212.921000;212.923000;212.893000;212.894000;0 +20260326 025100;212.899000;212.902000;212.858000;212.865000;0 +20260326 025200;212.863000;212.904000;212.859000;212.898000;0 +20260326 025300;212.894000;212.933000;212.894000;212.927000;0 +20260326 025400;212.926000;212.958000;212.918000;212.955000;0 +20260326 025500;212.960000;212.983000;212.951000;212.978000;0 +20260326 025600;212.982000;212.997000;212.963000;212.972000;0 +20260326 025700;212.970000;212.973000;212.917000;212.917000;0 +20260326 025800;212.921000;212.951000;212.913000;212.941000;0 +20260326 025900;212.944000;212.949000;212.913000;212.922000;0 +20260326 030000;212.921000;212.930000;212.840000;212.851000;0 +20260326 030100;212.855000;212.876000;212.847000;212.859000;0 +20260326 030200;212.859000;212.875000;212.785000;212.787000;0 +20260326 030300;212.789000;212.810000;212.780000;212.804000;0 +20260326 030400;212.804000;212.824000;212.791000;212.821000;0 +20260326 030500;212.819000;212.836000;212.768000;212.768000;0 +20260326 030600;212.779000;212.820000;212.776000;212.801000;0 +20260326 030700;212.807000;212.814000;212.784000;212.812000;0 +20260326 030800;212.812000;212.832000;212.807000;212.826000;0 +20260326 030900;212.824000;212.843000;212.816000;212.838000;0 +20260326 031000;212.836000;212.881000;212.836000;212.873000;0 +20260326 031100;212.875000;212.879000;212.852000;212.858000;0 +20260326 031200;212.856000;212.858000;212.834000;212.843000;0 +20260326 031300;212.843000;212.852000;212.797000;212.806000;0 +20260326 031400;212.806000;212.812000;212.779000;212.801000;0 +20260326 031500;212.809000;212.836000;212.796000;212.833000;0 +20260326 031600;212.834000;212.852000;212.824000;212.840000;0 +20260326 031700;212.842000;212.902000;212.842000;212.900000;0 +20260326 031800;212.899000;212.899000;212.857000;212.860000;0 +20260326 031900;212.858000;212.874000;212.853000;212.866000;0 +20260326 032000;212.867000;212.871000;212.852000;212.866000;0 +20260326 032100;212.867000;212.867000;212.825000;212.853000;0 +20260326 032200;212.858000;212.862000;212.840000;212.850000;0 +20260326 032300;212.849000;212.869000;212.849000;212.859000;0 +20260326 032400;212.858000;212.859000;212.822000;212.841000;0 +20260326 032500;212.838000;212.849000;212.769000;212.792000;0 +20260326 032600;212.792000;212.816000;212.778000;212.787000;0 +20260326 032700;212.785000;212.789000;212.762000;212.789000;0 +20260326 032800;212.794000;212.794000;212.756000;212.765000;0 +20260326 032900;212.765000;212.765000;212.729000;212.729000;0 +20260326 033000;212.729000;212.731000;212.712000;212.718000;0 +20260326 033100;212.717000;212.729000;212.697000;212.726000;0 +20260326 033200;212.724000;212.751000;212.724000;212.750000;0 +20260326 033300;212.750000;212.764000;212.733000;212.756000;0 +20260326 033400;212.757000;212.855000;212.757000;212.848000;0 +20260326 033500;212.847000;212.873000;212.825000;212.840000;0 +20260326 033600;212.846000;212.849000;212.830000;212.843000;0 +20260326 033700;212.843000;212.848000;212.824000;212.832000;0 +20260326 033800;212.833000;212.852000;212.814000;212.850000;0 +20260326 033900;212.850000;212.887000;212.848000;212.884000;0 +20260326 034000;212.885000;212.913000;212.885000;212.899000;0 +20260326 034100;212.899000;212.906000;212.891000;212.892000;0 +20260326 034200;212.892000;212.901000;212.862000;212.862000;0 +20260326 034300;212.866000;212.866000;212.795000;212.795000;0 +20260326 034400;212.797000;212.821000;212.791000;212.805000;0 +20260326 034500;212.805000;212.821000;212.798000;212.814000;0 +20260326 034600;212.814000;212.867000;212.811000;212.867000;0 +20260326 034700;212.865000;212.875000;212.846000;212.849000;0 +20260326 034800;212.852000;212.858000;212.824000;212.830000;0 +20260326 034900;212.830000;212.835000;212.811000;212.811000;0 +20260326 035000;212.813000;212.832000;212.813000;212.828000;0 +20260326 035100;212.829000;212.838000;212.814000;212.834000;0 +20260326 035200;212.836000;212.845000;212.831000;212.840000;0 +20260326 035300;212.840000;212.883000;212.836000;212.877000;0 +20260326 035400;212.876000;212.888000;212.873000;212.880000;0 +20260326 035500;212.878000;212.878000;212.849000;212.866000;0 +20260326 035600;212.877000;212.897000;212.868000;212.895000;0 +20260326 035700;212.895000;212.925000;212.890000;212.891000;0 +20260326 035800;212.891000;212.919000;212.891000;212.907000;0 +20260326 035900;212.907000;212.930000;212.904000;212.927000;0 +20260326 040000;212.926000;212.936000;212.914000;212.925000;0 +20260326 040100;212.919000;212.928000;212.890000;212.896000;0 +20260326 040200;212.897000;212.939000;212.882000;212.939000;0 +20260326 040300;212.946000;212.948000;212.892000;212.892000;0 +20260326 040400;212.894000;212.968000;212.893000;212.968000;0 +20260326 040500;212.965000;213.008000;212.958000;213.005000;0 +20260326 040600;212.999000;213.014000;212.985000;212.994000;0 +20260326 040700;212.996000;213.008000;212.976000;212.994000;0 +20260326 040800;212.997000;213.001000;212.956000;212.971000;0 +20260326 040900;212.969000;212.975000;212.961000;212.964000;0 +20260326 041000;212.965000;212.992000;212.965000;212.992000;0 +20260326 041100;212.990000;213.002000;212.980000;212.985000;0 +20260326 041200;212.981000;212.988000;212.965000;212.987000;0 +20260326 041300;212.983000;212.997000;212.922000;212.945000;0 +20260326 041400;212.944000;212.970000;212.944000;212.960000;0 +20260326 041500;212.961000;212.970000;212.952000;212.964000;0 +20260326 041600;212.964000;212.978000;212.958000;212.966000;0 +20260326 041700;212.968000;212.969000;212.934000;212.945000;0 +20260326 041800;212.945000;212.962000;212.884000;212.896000;0 +20260326 041900;212.897000;212.913000;212.887000;212.908000;0 +20260326 042000;212.905000;212.913000;212.864000;212.876000;0 +20260326 042100;212.878000;212.907000;212.864000;212.872000;0 +20260326 042200;212.873000;212.892000;212.854000;212.872000;0 +20260326 042300;212.876000;212.892000;212.851000;212.889000;0 +20260326 042400;212.891000;212.908000;212.868000;212.879000;0 +20260326 042500;212.875000;212.875000;212.835000;212.839000;0 +20260326 042600;212.839000;212.876000;212.837000;212.863000;0 +20260326 042700;212.862000;212.887000;212.861000;212.877000;0 +20260326 042800;212.883000;212.883000;212.842000;212.842000;0 +20260326 042900;212.844000;212.866000;212.836000;212.842000;0 +20260326 043000;212.841000;212.858000;212.809000;212.856000;0 +20260326 043100;212.856000;212.877000;212.840000;212.858000;0 +20260326 043200;212.858000;212.867000;212.840000;212.849000;0 +20260326 043300;212.848000;212.867000;212.822000;212.822000;0 +20260326 043400;212.824000;212.850000;212.824000;212.827000;0 +20260326 043500;212.828000;212.863000;212.826000;212.863000;0 +20260326 043600;212.863000;212.906000;212.861000;212.906000;0 +20260326 043700;212.915000;212.916000;212.878000;212.878000;0 +20260326 043800;212.877000;212.919000;212.876000;212.879000;0 +20260326 043900;212.879000;212.919000;212.863000;212.916000;0 +20260326 044000;212.914000;212.917000;212.860000;212.860000;0 +20260326 044100;212.860000;212.877000;212.847000;212.870000;0 +20260326 044200;212.877000;212.885000;212.851000;212.873000;0 +20260326 044300;212.875000;212.884000;212.837000;212.850000;0 +20260326 044400;212.851000;212.872000;212.847000;212.853000;0 +20260326 044500;212.853000;212.878000;212.853000;212.878000;0 +20260326 044600;212.876000;212.894000;212.876000;212.893000;0 +20260326 044700;212.894000;212.923000;212.894000;212.919000;0 +20260326 044800;212.919000;212.934000;212.913000;212.917000;0 +20260326 044900;212.917000;212.919000;212.890000;212.894000;0 +20260326 045000;212.897000;212.910000;212.884000;212.894000;0 +20260326 045100;212.894000;212.928000;212.894000;212.918000;0 +20260326 045200;212.916000;212.932000;212.910000;212.910000;0 +20260326 045300;212.910000;212.923000;212.902000;212.914000;0 +20260326 045400;212.915000;212.938000;212.911000;212.936000;0 +20260326 045500;212.940000;212.952000;212.932000;212.946000;0 +20260326 045600;212.948000;212.964000;212.943000;212.945000;0 +20260326 045700;212.947000;212.987000;212.946000;212.979000;0 +20260326 045800;212.981000;213.001000;212.978000;212.992000;0 +20260326 045900;212.993000;212.993000;212.971000;212.978000;0 +20260326 050000;212.978000;213.011000;212.977000;212.987000;0 +20260326 050100;212.988000;212.997000;212.965000;212.981000;0 +20260326 050200;212.981000;212.984000;212.962000;212.970000;0 +20260326 050300;212.970000;213.010000;212.970000;212.999000;0 +20260326 050400;213.007000;213.017000;212.996000;213.007000;0 +20260326 050500;213.009000;213.077000;213.003000;213.065000;0 +20260326 050600;213.066000;213.066000;213.035000;213.036000;0 +20260326 050700;213.038000;213.038000;213.022000;213.037000;0 +20260326 050800;213.039000;213.046000;213.022000;213.045000;0 +20260326 050900;213.043000;213.051000;213.037000;213.042000;0 +20260326 051000;213.039000;213.050000;213.031000;213.040000;0 +20260326 051100;213.039000;213.051000;213.028000;213.031000;0 +20260326 051200;213.031000;213.054000;213.019000;213.054000;0 +20260326 051300;213.053000;213.071000;213.041000;213.063000;0 +20260326 051400;213.063000;213.074000;213.058000;213.058000;0 +20260326 051500;213.058000;213.058000;213.032000;213.047000;0 +20260326 051600;213.051000;213.053000;213.031000;213.034000;0 +20260326 051700;213.029000;213.037000;213.008000;213.008000;0 +20260326 051800;213.008000;213.012000;212.995000;212.996000;0 +20260326 051900;212.993000;213.007000;212.978000;212.986000;0 +20260326 052000;212.985000;212.996000;212.965000;212.970000;0 +20260326 052100;212.970000;213.012000;212.970000;213.009000;0 +20260326 052200;213.008000;213.011000;212.985000;212.999000;0 +20260326 052300;213.003000;213.042000;213.003000;213.014000;0 +20260326 052400;213.010000;213.018000;213.008000;213.013000;0 +20260326 052500;213.011000;213.034000;213.009000;213.022000;0 +20260326 052600;213.021000;213.026000;213.007000;213.018000;0 +20260326 052700;213.020000;213.029000;213.020000;213.020000;0 +20260326 052800;213.024000;213.038000;213.024000;213.029000;0 +20260326 052900;213.036000;213.039000;212.986000;212.988000;0 +20260326 053000;212.991000;213.025000;212.989000;213.022000;0 +20260326 053100;213.021000;213.028000;213.016000;213.023000;0 +20260326 053200;213.023000;213.024000;212.991000;213.019000;0 +20260326 053300;213.020000;213.024000;212.987000;213.009000;0 +20260326 053400;213.011000;213.022000;212.973000;212.976000;0 +20260326 053500;212.975000;212.997000;212.965000;212.983000;0 +20260326 053600;212.982000;212.998000;212.977000;212.997000;0 +20260326 053700;212.997000;213.016000;212.992000;212.996000;0 +20260326 053800;212.999000;213.006000;212.995000;212.999000;0 +20260326 053900;213.000000;213.003000;212.931000;212.931000;0 +20260326 054000;212.933000;212.964000;212.919000;212.960000;0 +20260326 054100;212.961000;213.001000;212.960000;212.999000;0 +20260326 054200;212.999000;213.000000;212.976000;212.987000;0 +20260326 054300;212.989000;212.996000;212.974000;212.993000;0 +20260326 054400;212.992000;213.002000;212.974000;212.984000;0 +20260326 054500;212.988000;213.010000;212.987000;212.993000;0 +20260326 054600;212.997000;212.998000;212.971000;212.984000;0 +20260326 054700;212.984000;212.989000;212.954000;212.969000;0 +20260326 054800;212.970000;213.003000;212.970000;213.000000;0 +20260326 054900;213.000000;213.028000;212.993000;213.028000;0 +20260326 055000;213.028000;213.033000;213.015000;213.021000;0 +20260326 055100;213.022000;213.022000;213.005000;213.006000;0 +20260326 055200;213.012000;213.023000;213.000000;213.019000;0 +20260326 055300;213.019000;213.022000;212.988000;213.000000;0 +20260326 055400;213.000000;213.002000;212.973000;212.983000;0 +20260326 055500;212.981000;212.985000;212.967000;212.967000;0 +20260326 055600;212.965000;212.974000;212.951000;212.972000;0 +20260326 055700;212.971000;212.996000;212.961000;212.971000;0 +20260326 055800;212.972000;212.991000;212.972000;212.978000;0 +20260326 055900;212.979000;212.988000;212.970000;212.971000;0 +20260326 060000;212.970000;212.979000;212.941000;212.968000;0 +20260326 060100;212.971000;212.971000;212.941000;212.957000;0 +20260326 060200;212.957000;212.977000;212.948000;212.976000;0 +20260326 060300;212.976000;212.976000;212.962000;212.973000;0 +20260326 060400;212.974000;212.990000;212.972000;212.990000;0 +20260326 060500;212.990000;213.014000;212.979000;213.011000;0 +20260326 060600;213.012000;213.013000;212.983000;213.001000;0 +20260326 060700;213.002000;213.009000;212.994000;212.998000;0 +20260326 060800;212.996000;213.009000;212.996000;213.004000;0 +20260326 060900;213.009000;213.013000;212.998000;213.009000;0 +20260326 061000;213.008000;213.017000;212.999000;213.006000;0 +20260326 061100;213.006000;213.007000;212.969000;212.982000;0 +20260326 061200;212.985000;213.003000;212.981000;212.995000;0 +20260326 061300;212.995000;213.009000;212.970000;212.972000;0 +20260326 061400;212.970000;212.973000;212.948000;212.950000;0 +20260326 061500;212.951000;212.989000;212.950000;212.987000;0 +20260326 061600;212.985000;212.985000;212.968000;212.972000;0 +20260326 061700;212.974000;212.999000;212.974000;212.996000;0 +20260326 061800;212.995000;212.997000;212.984000;212.986000;0 +20260326 061900;212.981000;212.987000;212.972000;212.981000;0 +20260326 062000;212.981000;212.982000;212.953000;212.953000;0 +20260326 062100;212.954000;212.965000;212.928000;212.930000;0 +20260326 062200;212.926000;212.944000;212.921000;212.941000;0 +20260326 062300;212.946000;212.950000;212.930000;212.942000;0 +20260326 062400;212.941000;212.959000;212.936000;212.958000;0 +20260326 062500;212.957000;212.963000;212.922000;212.936000;0 +20260326 062600;212.936000;212.952000;212.925000;212.932000;0 +20260326 062700;212.933000;212.938000;212.919000;212.931000;0 +20260326 062800;212.932000;212.934000;212.919000;212.921000;0 +20260326 062900;212.922000;212.931000;212.917000;212.925000;0 +20260326 063000;212.923000;212.947000;212.922000;212.946000;0 +20260326 063100;212.944000;212.946000;212.929000;212.937000;0 +20260326 063200;212.937000;212.945000;212.929000;212.944000;0 +20260326 063300;212.942000;212.947000;212.902000;212.926000;0 +20260326 063400;212.924000;212.944000;212.918000;212.941000;0 +20260326 063500;212.940000;212.943000;212.914000;212.914000;0 +20260326 063600;212.913000;212.925000;212.911000;212.915000;0 +20260326 063700;212.915000;212.968000;212.914000;212.938000;0 +20260326 063800;212.937000;212.945000;212.919000;212.919000;0 +20260326 063900;212.923000;212.935000;212.910000;212.912000;0 +20260326 064000;212.911000;212.919000;212.895000;212.896000;0 +20260326 064100;212.899000;212.899000;212.862000;212.868000;0 +20260326 064200;212.870000;212.880000;212.862000;212.862000;0 +20260326 064300;212.864000;212.866000;212.830000;212.833000;0 +20260326 064400;212.834000;212.841000;212.820000;212.821000;0 +20260326 064500;212.821000;212.831000;212.816000;212.819000;0 +20260326 064600;212.818000;212.855000;212.812000;212.844000;0 +20260326 064700;212.844000;212.853000;212.826000;212.851000;0 +20260326 064800;212.857000;212.859000;212.813000;212.816000;0 +20260326 064900;212.815000;212.817000;212.797000;212.797000;0 +20260326 065000;212.797000;212.831000;212.792000;212.819000;0 +20260326 065100;212.818000;212.832000;212.790000;212.806000;0 +20260326 065200;212.803000;212.839000;212.798000;212.839000;0 +20260326 065300;212.836000;212.849000;212.821000;212.844000;0 +20260326 065400;212.844000;212.867000;212.842000;212.862000;0 +20260326 065500;212.862000;212.862000;212.827000;212.829000;0 +20260326 065600;212.828000;212.828000;212.779000;212.779000;0 +20260326 065700;212.782000;212.800000;212.777000;212.781000;0 +20260326 065800;212.780000;212.791000;212.754000;212.757000;0 +20260326 065900;212.758000;212.774000;212.754000;212.759000;0 +20260326 070000;212.759000;212.782000;212.739000;212.766000;0 +20260326 070100;212.764000;212.802000;212.761000;212.775000;0 +20260326 070200;212.776000;212.780000;212.752000;212.761000;0 +20260326 070300;212.762000;212.773000;212.742000;212.770000;0 +20260326 070400;212.769000;212.775000;212.752000;212.769000;0 +20260326 070500;212.768000;212.785000;212.759000;212.782000;0 +20260326 070600;212.781000;212.797000;212.764000;212.773000;0 +20260326 070700;212.772000;212.790000;212.762000;212.765000;0 +20260326 070800;212.764000;212.783000;212.758000;212.775000;0 +20260326 070900;212.774000;212.782000;212.759000;212.777000;0 +20260326 071000;212.778000;212.785000;212.759000;212.768000;0 +20260326 071100;212.771000;212.784000;212.764000;212.774000;0 +20260326 071200;212.776000;212.825000;212.776000;212.825000;0 +20260326 071300;212.823000;212.828000;212.813000;212.815000;0 +20260326 071400;212.811000;212.816000;212.775000;212.775000;0 +20260326 071500;212.774000;212.790000;212.767000;212.767000;0 +20260326 071600;212.765000;212.784000;212.745000;212.752000;0 +20260326 071700;212.745000;212.766000;212.741000;212.761000;0 +20260326 071800;212.763000;212.764000;212.723000;212.729000;0 +20260326 071900;212.728000;212.739000;212.716000;212.736000;0 +20260326 072000;212.732000;212.746000;212.717000;212.726000;0 +20260326 072100;212.725000;212.749000;212.709000;212.748000;0 +20260326 072200;212.744000;212.755000;212.724000;212.744000;0 +20260326 072300;212.750000;212.775000;212.735000;212.770000;0 +20260326 072400;212.770000;212.790000;212.760000;212.769000;0 +20260326 072500;212.768000;212.807000;212.766000;212.792000;0 +20260326 072600;212.791000;212.808000;212.783000;212.805000;0 +20260326 072700;212.805000;212.820000;212.793000;212.816000;0 +20260326 072800;212.819000;212.831000;212.815000;212.816000;0 +20260326 072900;212.815000;212.826000;212.773000;212.773000;0 +20260326 073000;212.776000;212.791000;212.736000;212.754000;0 +20260326 073100;212.752000;212.757000;212.732000;212.739000;0 +20260326 073200;212.740000;212.761000;212.725000;212.758000;0 +20260326 073300;212.758000;212.775000;212.714000;212.735000;0 +20260326 073400;212.733000;212.753000;212.710000;212.710000;0 +20260326 073500;212.711000;212.741000;212.709000;212.730000;0 +20260326 073600;212.730000;212.784000;212.726000;212.784000;0 +20260326 073700;212.780000;212.790000;212.758000;212.787000;0 +20260326 073800;212.786000;212.800000;212.774000;212.778000;0 +20260326 073900;212.778000;212.804000;212.759000;212.804000;0 +20260326 074000;212.803000;212.811000;212.765000;212.775000;0 +20260326 074100;212.775000;212.782000;212.760000;212.767000;0 +20260326 074200;212.771000;212.781000;212.745000;212.780000;0 +20260326 074300;212.779000;212.784000;212.765000;212.782000;0 +20260326 074400;212.779000;212.784000;212.735000;212.739000;0 +20260326 074500;212.738000;212.754000;212.730000;212.737000;0 +20260326 074600;212.738000;212.783000;212.738000;212.779000;0 +20260326 074700;212.781000;212.803000;212.747000;212.751000;0 +20260326 074800;212.751000;212.760000;212.736000;212.738000;0 +20260326 074900;212.736000;212.792000;212.736000;212.781000;0 +20260326 075000;212.782000;212.798000;212.772000;212.787000;0 +20260326 075100;212.789000;212.796000;212.779000;212.789000;0 +20260326 075200;212.789000;212.796000;212.754000;212.760000;0 +20260326 075300;212.759000;212.768000;212.749000;212.758000;0 +20260326 075400;212.759000;212.791000;212.748000;212.781000;0 +20260326 075500;212.782000;212.811000;212.766000;212.803000;0 +20260326 075600;212.796000;212.809000;212.782000;212.788000;0 +20260326 075700;212.789000;212.850000;212.781000;212.849000;0 +20260326 075800;212.847000;212.857000;212.812000;212.816000;0 +20260326 075900;212.816000;212.826000;212.790000;212.796000;0 +20260326 080000;212.796000;212.834000;212.793000;212.828000;0 +20260326 080100;212.830000;212.861000;212.827000;212.857000;0 +20260326 080200;212.856000;212.870000;212.839000;212.856000;0 +20260326 080300;212.856000;212.874000;212.846000;212.871000;0 +20260326 080400;212.872000;212.886000;212.857000;212.874000;0 +20260326 080500;212.875000;212.888000;212.865000;212.881000;0 +20260326 080600;212.883000;212.888000;212.863000;212.888000;0 +20260326 080700;212.886000;212.902000;212.868000;212.876000;0 +20260326 080800;212.874000;212.888000;212.863000;212.887000;0 +20260326 080900;212.889000;212.909000;212.877000;212.886000;0 +20260326 081000;212.882000;212.886000;212.853000;212.855000;0 +20260326 081100;212.856000;212.882000;212.846000;212.874000;0 +20260326 081200;212.874000;212.916000;212.874000;212.913000;0 +20260326 081300;212.914000;212.961000;212.900000;212.949000;0 +20260326 081400;212.951000;212.958000;212.928000;212.954000;0 +20260326 081500;212.956000;212.977000;212.950000;212.957000;0 +20260326 081600;212.959000;212.971000;212.947000;212.949000;0 +20260326 081700;212.948000;212.971000;212.944000;212.960000;0 +20260326 081800;212.958000;212.963000;212.932000;212.959000;0 +20260326 081900;212.958000;212.969000;212.947000;212.967000;0 +20260326 082000;212.969000;212.998000;212.967000;212.989000;0 +20260326 082100;212.992000;213.024000;212.990000;213.011000;0 +20260326 082200;213.014000;213.020000;213.001000;213.001000;0 +20260326 082300;213.003000;213.008000;212.990000;212.996000;0 +20260326 082400;212.996000;213.002000;212.977000;212.995000;0 +20260326 082500;212.994000;213.032000;212.993000;213.032000;0 +20260326 082600;213.032000;213.035000;213.013000;213.016000;0 +20260326 082700;213.013000;213.019000;212.994000;213.000000;0 +20260326 082800;213.001000;213.005000;212.981000;212.988000;0 +20260326 082900;212.989000;212.995000;212.971000;212.992000;0 +20260326 083000;212.989000;213.009000;212.979000;212.987000;0 +20260326 083100;212.989000;212.990000;212.963000;212.973000;0 +20260326 083200;212.977000;213.007000;212.971000;212.994000;0 +20260326 083300;212.994000;213.006000;212.984000;212.994000;0 +20260326 083400;212.995000;213.026000;212.990000;213.021000;0 +20260326 083500;213.022000;213.044000;213.014000;213.031000;0 +20260326 083600;213.032000;213.061000;213.023000;213.044000;0 +20260326 083700;213.044000;213.105000;213.044000;213.096000;0 +20260326 083800;213.096000;213.103000;213.078000;213.089000;0 +20260326 083900;213.086000;213.092000;213.050000;213.055000;0 +20260326 084000;213.051000;213.103000;213.047000;213.074000;0 +20260326 084100;213.078000;213.111000;213.074000;213.092000;0 +20260326 084200;213.094000;213.112000;213.088000;213.109000;0 +20260326 084300;213.110000;213.124000;213.091000;213.094000;0 +20260326 084400;213.093000;213.120000;213.077000;213.119000;0 +20260326 084500;213.118000;213.141000;213.116000;213.126000;0 +20260326 084600;213.125000;213.125000;213.094000;213.121000;0 +20260326 084700;213.120000;213.147000;213.098000;213.133000;0 +20260326 084800;213.133000;213.136000;213.104000;213.135000;0 +20260326 084900;213.131000;213.135000;213.099000;213.107000;0 +20260326 085000;213.109000;213.124000;213.094000;213.104000;0 +20260326 085100;213.108000;213.135000;213.103000;213.124000;0 +20260326 085200;213.124000;213.156000;213.109000;213.113000;0 +20260326 085300;213.111000;213.144000;213.095000;213.126000;0 +20260326 085400;213.127000;213.136000;213.093000;213.106000;0 +20260326 085500;213.103000;213.120000;213.096000;213.114000;0 +20260326 085600;213.116000;213.123000;213.092000;213.102000;0 +20260326 085700;213.101000;213.109000;213.086000;213.088000;0 +20260326 085800;213.091000;213.104000;213.068000;213.087000;0 +20260326 085900;213.087000;213.089000;213.039000;213.046000;0 +20260326 090000;213.045000;213.072000;213.010000;213.072000;0 +20260326 090100;213.070000;213.071000;213.034000;213.067000;0 +20260326 090200;213.069000;213.085000;213.055000;213.064000;0 +20260326 090300;213.060000;213.073000;213.042000;213.054000;0 +20260326 090400;213.051000;213.064000;213.030000;213.048000;0 +20260326 090500;213.050000;213.096000;213.041000;213.087000;0 +20260326 090600;213.084000;213.118000;213.084000;213.097000;0 +20260326 090700;213.093000;213.121000;213.093000;213.109000;0 +20260326 090800;213.110000;213.110000;213.065000;213.065000;0 +20260326 090900;213.067000;213.073000;213.050000;213.057000;0 +20260326 091000;213.059000;213.081000;213.034000;213.046000;0 +20260326 091100;213.043000;213.088000;213.043000;213.078000;0 +20260326 091200;213.080000;213.107000;213.079000;213.102000;0 +20260326 091300;213.099000;213.138000;213.096000;213.138000;0 +20260326 091400;213.138000;213.168000;213.135000;213.166000;0 +20260326 091500;213.166000;213.190000;213.138000;213.179000;0 +20260326 091600;213.180000;213.195000;213.165000;213.193000;0 +20260326 091700;213.191000;213.213000;213.175000;213.212000;0 +20260326 091800;213.210000;213.235000;213.204000;213.235000;0 +20260326 091900;213.235000;213.237000;213.202000;213.213000;0 +20260326 092000;213.213000;213.215000;213.173000;213.195000;0 +20260326 092100;213.198000;213.234000;213.189000;213.226000;0 +20260326 092200;213.227000;213.276000;213.225000;213.272000;0 +20260326 092300;213.268000;213.293000;213.265000;213.277000;0 +20260326 092400;213.275000;213.282000;213.242000;213.242000;0 +20260326 092500;213.243000;213.268000;213.229000;213.265000;0 +20260326 092600;213.266000;213.285000;213.265000;213.272000;0 +20260326 092700;213.270000;213.296000;213.270000;213.296000;0 +20260326 092800;213.300000;213.301000;213.282000;213.298000;0 +20260326 092900;213.299000;213.299000;213.256000;213.278000;0 +20260326 093000;213.276000;213.294000;213.247000;213.251000;0 +20260326 093100;213.253000;213.259000;213.228000;213.242000;0 +20260326 093200;213.244000;213.252000;213.217000;213.232000;0 +20260326 093300;213.227000;213.235000;213.204000;213.215000;0 +20260326 093400;213.213000;213.257000;213.210000;213.231000;0 +20260326 093500;213.230000;213.258000;213.201000;213.201000;0 +20260326 093600;213.201000;213.212000;213.179000;213.197000;0 +20260326 093700;213.196000;213.213000;213.189000;213.211000;0 +20260326 093800;213.209000;213.233000;213.179000;213.231000;0 +20260326 093900;213.232000;213.257000;213.231000;213.251000;0 +20260326 094000;213.253000;213.293000;213.216000;213.223000;0 +20260326 094100;213.221000;213.230000;213.159000;213.192000;0 +20260326 094200;213.196000;213.209000;213.175000;213.185000;0 +20260326 094300;213.185000;213.201000;213.148000;213.154000;0 +20260326 094400;213.154000;213.169000;213.135000;213.156000;0 +20260326 094500;213.156000;213.186000;213.142000;213.176000;0 +20260326 094600;213.177000;213.210000;213.177000;213.188000;0 +20260326 094700;213.189000;213.226000;213.180000;213.185000;0 +20260326 094800;213.186000;213.226000;213.183000;213.209000;0 +20260326 094900;213.206000;213.223000;213.189000;213.216000;0 +20260326 095000;213.217000;213.225000;213.195000;213.210000;0 +20260326 095100;213.209000;213.228000;213.199000;213.212000;0 +20260326 095200;213.215000;213.232000;213.185000;213.193000;0 +20260326 095300;213.195000;213.206000;213.125000;213.139000;0 +20260326 095400;213.141000;213.160000;213.110000;213.113000;0 +20260326 095500;213.111000;213.188000;213.091000;213.178000;0 +20260326 095600;213.179000;213.190000;213.147000;213.147000;0 +20260326 095700;213.150000;213.154000;213.125000;213.133000;0 +20260326 095800;213.134000;213.193000;213.134000;213.176000;0 +20260326 095900;213.179000;213.186000;213.149000;213.173000;0 +20260326 100000;213.175000;213.206000;213.164000;213.194000;0 +20260326 100100;213.195000;213.203000;213.158000;213.172000;0 +20260326 100200;213.172000;213.183000;213.143000;213.170000;0 +20260326 100300;213.172000;213.208000;213.159000;213.190000;0 +20260326 100400;213.186000;213.192000;213.167000;213.168000;0 +20260326 100500;213.163000;213.231000;213.160000;213.215000;0 +20260326 100600;213.209000;213.237000;213.192000;213.237000;0 +20260326 100700;213.236000;213.251000;213.174000;213.186000;0 +20260326 100800;213.187000;213.207000;213.182000;213.190000;0 +20260326 100900;213.190000;213.218000;213.188000;213.196000;0 +20260326 101000;213.199000;213.225000;213.195000;213.206000;0 +20260326 101100;213.207000;213.255000;213.198000;213.252000;0 +20260326 101200;213.254000;213.264000;213.243000;213.250000;0 +20260326 101300;213.250000;213.265000;213.229000;213.242000;0 +20260326 101400;213.238000;213.245000;213.222000;213.223000;0 +20260326 101500;213.224000;213.252000;213.224000;213.241000;0 +20260326 101600;213.242000;213.242000;213.158000;213.165000;0 +20260326 101700;213.165000;213.165000;213.132000;213.139000;0 +20260326 101800;213.140000;213.140000;213.118000;213.127000;0 +20260326 101900;213.126000;213.162000;213.125000;213.134000;0 +20260326 102000;213.132000;213.156000;213.106000;213.154000;0 +20260326 102100;213.153000;213.188000;213.152000;213.182000;0 +20260326 102200;213.181000;213.213000;213.178000;213.203000;0 +20260326 102300;213.203000;213.219000;213.195000;213.219000;0 +20260326 102400;213.218000;213.219000;213.185000;213.187000;0 +20260326 102500;213.186000;213.195000;213.142000;213.147000;0 +20260326 102600;213.147000;213.154000;213.115000;213.122000;0 +20260326 102700;213.124000;213.137000;213.104000;213.136000;0 +20260326 102800;213.136000;213.162000;213.131000;213.148000;0 +20260326 102900;213.148000;213.163000;213.130000;213.135000;0 +20260326 103000;213.132000;213.132000;213.106000;213.127000;0 +20260326 103100;213.126000;213.130000;213.088000;213.096000;0 +20260326 103200;213.095000;213.115000;213.081000;213.098000;0 +20260326 103300;213.097000;213.126000;213.080000;213.084000;0 +20260326 103400;213.082000;213.098000;213.072000;213.087000;0 +20260326 103500;213.089000;213.097000;213.076000;213.089000;0 +20260326 103600;213.089000;213.089000;213.032000;213.033000;0 +20260326 103700;213.035000;213.057000;213.027000;213.040000;0 +20260326 103800;213.041000;213.059000;213.029000;213.044000;0 +20260326 103900;213.044000;213.061000;213.032000;213.061000;0 +20260326 104000;213.060000;213.075000;213.043000;213.072000;0 +20260326 104100;213.072000;213.077000;212.997000;213.013000;0 +20260326 104200;213.011000;213.030000;213.002000;213.028000;0 +20260326 104300;213.027000;213.028000;212.986000;212.987000;0 +20260326 104400;212.988000;213.003000;212.972000;212.998000;0 +20260326 104500;212.999000;213.012000;212.998000;213.003000;0 +20260326 104600;213.002000;213.058000;212.989000;213.046000;0 +20260326 104700;213.046000;213.080000;213.042000;213.052000;0 +20260326 104800;213.053000;213.061000;213.037000;213.041000;0 +20260326 104900;213.041000;213.043000;213.024000;213.026000;0 +20260326 105000;213.025000;213.047000;213.025000;213.044000;0 +20260326 105100;213.044000;213.060000;213.030000;213.049000;0 +20260326 105200;213.048000;213.066000;213.047000;213.048000;0 +20260326 105300;213.048000;213.052000;213.021000;213.022000;0 +20260326 105400;213.021000;213.050000;212.999000;213.025000;0 +20260326 105500;213.030000;213.041000;212.986000;212.986000;0 +20260326 105600;212.984000;213.041000;212.984000;213.025000;0 +20260326 105700;213.025000;213.150000;213.017000;213.093000;0 +20260326 105800;213.093000;213.148000;213.091000;213.144000;0 +20260326 105900;213.144000;213.158000;213.138000;213.145000;0 +20260326 110000;213.146000;213.183000;213.142000;213.143000;0 +20260326 110100;213.142000;213.168000;213.133000;213.162000;0 +20260326 110200;213.162000;213.173000;213.115000;213.120000;0 +20260326 110300;213.117000;213.128000;213.094000;213.126000;0 +20260326 110400;213.128000;213.130000;213.100000;213.104000;0 +20260326 110500;213.106000;213.110000;213.055000;213.075000;0 +20260326 110600;213.076000;213.076000;213.027000;213.037000;0 +20260326 110700;213.036000;213.057000;213.034000;213.044000;0 +20260326 110800;213.046000;213.078000;213.043000;213.068000;0 +20260326 110900;213.068000;213.087000;213.068000;213.079000;0 +20260326 111000;213.078000;213.080000;213.041000;213.041000;0 +20260326 111100;213.044000;213.061000;213.040000;213.047000;0 +20260326 111200;213.048000;213.058000;213.035000;213.051000;0 +20260326 111300;213.053000;213.053000;213.040000;213.044000;0 +20260326 111400;213.046000;213.079000;213.033000;213.071000;0 +20260326 111500;213.071000;213.075000;212.984000;212.985000;0 +20260326 111600;212.985000;213.003000;212.957000;212.987000;0 +20260326 111700;212.985000;213.001000;212.944000;213.001000;0 +20260326 111800;213.000000;213.007000;212.986000;212.989000;0 +20260326 111900;212.989000;213.008000;212.978000;212.988000;0 +20260326 112000;212.991000;212.991000;212.968000;212.980000;0 +20260326 112100;212.976000;212.986000;212.955000;212.961000;0 +20260326 112200;212.961000;212.975000;212.941000;212.954000;0 +20260326 112300;212.950000;212.958000;212.942000;212.952000;0 +20260326 112400;212.955000;212.971000;212.951000;212.968000;0 +20260326 112500;212.969000;212.976000;212.925000;212.931000;0 +20260326 112600;212.933000;212.949000;212.925000;212.937000;0 +20260326 112700;212.938000;212.955000;212.932000;212.953000;0 +20260326 112800;212.953000;212.953000;212.935000;212.945000;0 +20260326 112900;212.942000;212.992000;212.942000;212.989000;0 +20260326 113000;212.988000;212.999000;212.980000;212.985000;0 +20260326 113100;212.991000;212.999000;212.982000;212.993000;0 +20260326 113200;212.994000;212.994000;212.955000;212.967000;0 +20260326 113300;212.970000;213.000000;212.967000;212.967000;0 +20260326 113400;212.968000;212.992000;212.955000;212.984000;0 +20260326 113500;212.984000;212.991000;212.968000;212.980000;0 +20260326 113600;212.982000;212.985000;212.960000;212.969000;0 +20260326 113700;212.969000;212.982000;212.952000;212.952000;0 +20260326 113800;212.952000;212.967000;212.947000;212.953000;0 +20260326 113900;212.954000;212.972000;212.950000;212.956000;0 +20260326 114000;212.953000;212.965000;212.936000;212.965000;0 +20260326 114100;212.967000;212.981000;212.953000;212.958000;0 +20260326 114200;212.960000;212.966000;212.939000;212.950000;0 +20260326 114300;212.948000;212.965000;212.946000;212.950000;0 +20260326 114400;212.949000;212.966000;212.948000;212.959000;0 +20260326 114500;212.959000;212.987000;212.936000;212.982000;0 +20260326 114600;212.982000;212.982000;212.954000;212.954000;0 +20260326 114700;212.954000;213.003000;212.953000;213.001000;0 +20260326 114800;213.004000;213.004000;212.969000;212.973000;0 +20260326 114900;212.972000;212.979000;212.966000;212.975000;0 +20260326 115000;212.972000;212.973000;212.937000;212.938000;0 +20260326 115100;212.940000;212.972000;212.939000;212.972000;0 +20260326 115200;212.970000;212.982000;212.958000;212.981000;0 +20260326 115300;212.980000;213.005000;212.974000;212.990000;0 +20260326 115400;212.992000;213.008000;212.980000;213.003000;0 +20260326 115500;213.003000;213.004000;212.972000;212.983000;0 +20260326 115600;212.984000;212.984000;212.969000;212.980000;0 +20260326 115700;212.981000;212.981000;212.947000;212.952000;0 +20260326 115800;212.953000;212.953000;212.933000;212.941000;0 +20260326 115900;212.941000;212.957000;212.928000;212.938000;0 +20260326 120000;212.936000;212.944000;212.918000;212.924000;0 +20260326 120100;212.923000;212.937000;212.920000;212.937000;0 +20260326 120200;212.934000;212.976000;212.930000;212.976000;0 +20260326 120300;212.975000;212.975000;212.947000;212.972000;0 +20260326 120400;212.971000;212.984000;212.958000;212.960000;0 +20260326 120500;212.958000;212.995000;212.955000;212.988000;0 +20260326 120600;212.988000;213.019000;212.985000;212.998000;0 +20260326 120700;213.000000;213.015000;212.994000;213.002000;0 +20260326 120800;213.004000;213.016000;212.997000;213.009000;0 +20260326 120900;213.012000;213.019000;213.006000;213.006000;0 +20260326 121000;213.008000;213.010000;212.992000;212.992000;0 +20260326 121100;212.993000;212.999000;212.982000;212.991000;0 +20260326 121200;212.991000;213.018000;212.985000;213.012000;0 +20260326 121300;213.014000;213.018000;212.979000;212.984000;0 +20260326 121400;212.987000;212.990000;212.971000;212.971000;0 +20260326 121500;212.968000;212.990000;212.968000;212.988000;0 +20260326 121600;212.988000;212.995000;212.944000;212.951000;0 +20260326 121700;212.952000;212.968000;212.952000;212.960000;0 +20260326 121800;212.959000;212.964000;212.943000;212.948000;0 +20260326 121900;212.947000;212.993000;212.942000;212.993000;0 +20260326 122000;212.992000;212.992000;212.968000;212.969000;0 +20260326 122100;212.971000;212.992000;212.952000;212.986000;0 +20260326 122200;212.983000;213.007000;212.983000;212.996000;0 +20260326 122300;212.994000;213.024000;212.989000;213.021000;0 +20260326 122400;213.023000;213.034000;213.010000;213.013000;0 +20260326 122500;213.007000;213.013000;212.995000;213.005000;0 +20260326 122600;213.005000;213.025000;213.003000;213.009000;0 +20260326 122700;213.008000;213.012000;212.988000;213.002000;0 +20260326 122800;213.002000;213.018000;212.991000;213.018000;0 +20260326 122900;213.016000;213.027000;212.995000;213.008000;0 +20260326 123000;213.010000;213.019000;212.995000;213.002000;0 +20260326 123100;212.999000;213.014000;212.999000;213.010000;0 +20260326 123200;213.008000;213.055000;213.008000;213.048000;0 +20260326 123300;213.050000;213.071000;213.050000;213.066000;0 +20260326 123400;213.064000;213.085000;213.064000;213.081000;0 +20260326 123500;213.078000;213.090000;213.060000;213.067000;0 +20260326 123600;213.067000;213.073000;213.026000;213.027000;0 +20260326 123700;213.024000;213.030000;213.010000;213.021000;0 +20260326 123800;213.023000;213.049000;213.023000;213.042000;0 +20260326 123900;213.040000;213.044000;213.012000;213.023000;0 +20260326 124000;213.021000;213.021000;212.958000;212.972000;0 +20260326 124100;212.973000;212.977000;212.931000;212.942000;0 +20260326 124200;212.943000;212.950000;212.920000;212.934000;0 +20260326 124300;212.935000;212.938000;212.921000;212.923000;0 +20260326 124400;212.922000;212.948000;212.918000;212.938000;0 +20260326 124500;212.940000;212.956000;212.894000;212.900000;0 +20260326 124600;212.898000;212.903000;212.875000;212.884000;0 +20260326 124700;212.884000;212.922000;212.881000;212.912000;0 +20260326 124800;212.912000;212.937000;212.909000;212.927000;0 +20260326 124900;212.925000;212.958000;212.924000;212.939000;0 +20260326 125000;212.935000;212.939000;212.887000;212.907000;0 +20260326 125100;212.907000;212.907000;212.882000;212.891000;0 +20260326 125200;212.892000;212.906000;212.881000;212.885000;0 +20260326 125300;212.884000;212.890000;212.844000;212.857000;0 +20260326 125400;212.856000;212.860000;212.820000;212.821000;0 +20260326 125500;212.822000;212.832000;212.773000;212.775000;0 +20260326 125600;212.775000;212.818000;212.775000;212.812000;0 +20260326 125700;212.810000;212.822000;212.803000;212.805000;0 +20260326 125800;212.806000;212.820000;212.796000;212.797000;0 +20260326 125900;212.796000;212.799000;212.776000;212.776000;0 +20260326 130000;212.774000;212.790000;212.757000;212.786000;0 +20260326 130100;212.786000;212.812000;212.784000;212.794000;0 +20260326 130200;212.793000;212.802000;212.785000;212.787000;0 +20260326 130300;212.788000;212.823000;212.782000;212.819000;0 +20260326 130400;212.819000;212.821000;212.805000;212.815000;0 +20260326 130500;212.815000;212.848000;212.808000;212.845000;0 +20260326 130600;212.848000;212.848000;212.816000;212.827000;0 +20260326 130700;212.827000;212.850000;212.826000;212.850000;0 +20260326 130800;212.849000;212.854000;212.838000;212.849000;0 +20260326 130900;212.850000;212.856000;212.842000;212.856000;0 +20260326 131000;212.856000;212.861000;212.848000;212.849000;0 +20260326 131100;212.849000;212.850000;212.836000;212.848000;0 +20260326 131200;212.849000;212.861000;212.846000;212.857000;0 +20260326 131300;212.859000;212.872000;212.855000;212.870000;0 +20260326 131400;212.870000;212.882000;212.866000;212.882000;0 +20260326 131500;212.882000;212.883000;212.864000;212.871000;0 +20260326 131600;212.871000;212.892000;212.868000;212.888000;0 +20260326 131700;212.890000;212.890000;212.853000;212.853000;0 +20260326 131800;212.853000;212.857000;212.836000;212.838000;0 +20260326 131900;212.840000;212.861000;212.837000;212.857000;0 +20260326 132000;212.858000;212.867000;212.851000;212.856000;0 +20260326 132100;212.858000;212.862000;212.842000;212.852000;0 +20260326 132200;212.853000;212.865000;212.846000;212.854000;0 +20260326 132300;212.852000;212.863000;212.850000;212.860000;0 +20260326 132400;212.858000;212.872000;212.855000;212.868000;0 +20260326 132500;212.867000;212.877000;212.858000;212.859000;0 +20260326 132600;212.860000;212.860000;212.845000;212.856000;0 +20260326 132700;212.858000;212.860000;212.844000;212.844000;0 +20260326 132800;212.838000;212.842000;212.833000;212.836000;0 +20260326 132900;212.838000;212.857000;212.836000;212.838000;0 +20260326 133000;212.837000;212.856000;212.837000;212.855000;0 +20260326 133100;212.856000;212.881000;212.852000;212.872000;0 +20260326 133200;212.871000;212.884000;212.868000;212.877000;0 +20260326 133300;212.877000;212.877000;212.844000;212.846000;0 +20260326 133400;212.841000;212.860000;212.841000;212.858000;0 +20260326 133500;212.858000;212.863000;212.848000;212.856000;0 +20260326 133600;212.851000;212.858000;212.846000;212.856000;0 +20260326 133700;212.857000;212.857000;212.824000;212.833000;0 +20260326 133800;212.836000;212.856000;212.836000;212.855000;0 +20260326 133900;212.856000;212.856000;212.840000;212.846000;0 +20260326 134000;212.844000;212.854000;212.834000;212.838000;0 +20260326 134100;212.838000;212.850000;212.835000;212.846000;0 +20260326 134200;212.845000;212.849000;212.834000;212.849000;0 +20260326 134300;212.849000;212.858000;212.844000;212.856000;0 +20260326 134400;212.856000;212.869000;212.854000;212.864000;0 +20260326 134500;212.864000;212.870000;212.855000;212.861000;0 +20260326 134600;212.863000;212.883000;212.863000;212.883000;0 +20260326 134700;212.878000;212.884000;212.868000;212.869000;0 +20260326 134800;212.870000;212.877000;212.860000;212.860000;0 +20260326 134900;212.860000;212.897000;212.860000;212.888000;0 +20260326 135000;212.888000;212.891000;212.880000;212.883000;0 +20260326 135100;212.882000;212.894000;212.867000;212.884000;0 +20260326 135200;212.884000;212.884000;212.872000;212.876000;0 +20260326 135300;212.880000;212.893000;212.880000;212.888000;0 +20260326 135400;212.888000;212.897000;212.886000;212.889000;0 +20260326 135500;212.888000;212.909000;212.876000;212.899000;0 +20260326 135600;212.896000;212.896000;212.878000;212.892000;0 +20260326 135700;212.896000;212.921000;212.896000;212.909000;0 +20260326 135800;212.911000;212.921000;212.905000;212.921000;0 +20260326 135900;212.923000;212.923000;212.899000;212.906000;0 +20260326 140000;212.908000;212.915000;212.890000;212.910000;0 +20260326 140100;212.909000;212.924000;212.909000;212.923000;0 +20260326 140200;212.922000;212.932000;212.905000;212.906000;0 +20260326 140300;212.905000;212.919000;212.903000;212.918000;0 +20260326 140400;212.916000;212.922000;212.905000;212.913000;0 +20260326 140500;212.916000;212.927000;212.914000;212.921000;0 +20260326 140600;212.922000;212.935000;212.917000;212.933000;0 +20260326 140700;212.934000;212.937000;212.908000;212.923000;0 +20260326 140800;212.925000;212.925000;212.889000;212.910000;0 +20260326 140900;212.914000;212.923000;212.889000;212.895000;0 +20260326 141000;212.898000;212.900000;212.879000;212.880000;0 +20260326 141100;212.880000;212.881000;212.827000;212.842000;0 +20260326 141200;212.840000;212.856000;212.834000;212.850000;0 +20260326 141300;212.852000;212.862000;212.847000;212.851000;0 +20260326 141400;212.852000;212.882000;212.852000;212.869000;0 +20260326 141500;212.870000;212.877000;212.863000;212.863000;0 +20260326 141600;212.865000;212.879000;212.857000;212.866000;0 +20260326 141700;212.866000;212.905000;212.862000;212.898000;0 +20260326 141800;212.898000;212.901000;212.875000;212.876000;0 +20260326 141900;212.878000;212.884000;212.872000;212.881000;0 +20260326 142000;212.880000;212.899000;212.872000;212.893000;0 +20260326 142100;212.896000;212.896000;212.884000;212.884000;0 +20260326 142200;212.885000;212.895000;212.875000;212.890000;0 +20260326 142300;212.890000;212.896000;212.878000;212.885000;0 +20260326 142400;212.883000;212.891000;212.876000;212.886000;0 +20260326 142500;212.885000;212.891000;212.870000;212.872000;0 +20260326 142600;212.869000;212.888000;212.869000;212.886000;0 +20260326 142700;212.886000;212.888000;212.870000;212.883000;0 +20260326 142800;212.883000;212.884000;212.862000;212.862000;0 +20260326 142900;212.863000;212.874000;212.863000;212.869000;0 +20260326 143000;212.871000;212.882000;212.855000;212.863000;0 +20260326 143100;212.864000;212.865000;212.842000;212.842000;0 +20260326 143200;212.842000;212.845000;212.833000;212.838000;0 +20260326 143300;212.840000;212.842000;212.825000;212.838000;0 +20260326 143400;212.836000;212.861000;212.836000;212.851000;0 +20260326 143500;212.852000;212.874000;212.850000;212.872000;0 +20260326 143600;212.872000;212.877000;212.861000;212.871000;0 +20260326 143700;212.870000;212.877000;212.861000;212.874000;0 +20260326 143800;212.876000;212.877000;212.862000;212.865000;0 +20260326 143900;212.866000;212.883000;212.863000;212.883000;0 +20260326 144000;212.883000;212.883000;212.866000;212.869000;0 +20260326 144100;212.869000;212.871000;212.861000;212.871000;0 +20260326 144200;212.872000;212.872000;212.858000;212.861000;0 +20260326 144300;212.862000;212.862000;212.837000;212.837000;0 +20260326 144400;212.836000;212.837000;212.826000;212.833000;0 +20260326 144500;212.835000;212.850000;212.830000;212.841000;0 +20260326 144600;212.837000;212.847000;212.824000;212.824000;0 +20260326 144700;212.821000;212.828000;212.814000;212.817000;0 +20260326 144800;212.813000;212.821000;212.804000;212.808000;0 +20260326 144900;212.806000;212.832000;212.803000;212.831000;0 +20260326 145000;212.830000;212.843000;212.822000;212.828000;0 +20260326 145100;212.829000;212.836000;212.822000;212.829000;0 +20260326 145200;212.826000;212.828000;212.815000;212.822000;0 +20260326 145300;212.821000;212.821000;212.812000;212.813000;0 +20260326 145400;212.814000;212.826000;212.812000;212.822000;0 +20260326 145500;212.825000;212.835000;212.793000;212.797000;0 +20260326 145600;212.803000;212.832000;212.796000;212.828000;0 +20260326 145700;212.830000;212.843000;212.796000;212.796000;0 +20260326 145800;212.794000;212.795000;212.781000;212.785000;0 +20260326 145900;212.787000;212.788000;212.768000;212.780000;0 +20260326 150000;212.778000;212.778000;212.750000;212.751000;0 +20260326 150100;212.752000;212.766000;212.739000;212.746000;0 +20260326 150200;212.746000;212.767000;212.743000;212.764000;0 +20260326 150300;212.765000;212.765000;212.728000;212.742000;0 +20260326 150400;212.744000;212.755000;212.740000;212.752000;0 +20260326 150500;212.747000;212.767000;212.743000;212.767000;0 +20260326 150600;212.768000;212.776000;212.760000;212.762000;0 +20260326 150700;212.762000;212.765000;212.753000;212.759000;0 +20260326 150800;212.759000;212.769000;212.753000;212.759000;0 +20260326 150900;212.763000;212.766000;212.757000;212.762000;0 +20260326 151000;212.765000;212.771000;212.759000;212.769000;0 +20260326 151100;212.769000;213.001000;212.769000;213.001000;0 +20260326 151200;212.999000;213.074000;212.801000;212.936000;0 +20260326 151300;212.920000;212.977000;212.849000;212.951000;0 +20260326 151400;212.948000;212.966000;212.902000;212.925000;0 +20260326 151500;212.924000;212.983000;212.894000;212.979000;0 +20260326 151600;212.978000;213.006000;212.929000;212.971000;0 +20260326 151700;212.971000;213.003000;212.955000;213.003000;0 +20260326 151800;213.000000;213.008000;212.976000;212.995000;0 +20260326 151900;212.997000;213.010000;212.947000;212.955000;0 +20260326 152000;212.948000;212.967000;212.913000;212.931000;0 +20260326 152100;212.932000;212.963000;212.891000;212.919000;0 +20260326 152200;212.920000;212.936000;212.890000;212.907000;0 +20260326 152300;212.910000;212.926000;212.894000;212.894000;0 +20260326 152400;212.900000;212.904000;212.845000;212.861000;0 +20260326 152500;212.858000;212.882000;212.827000;212.854000;0 +20260326 152600;212.859000;212.874000;212.838000;212.854000;0 +20260326 152700;212.854000;212.881000;212.854000;212.855000;0 +20260326 152800;212.863000;212.866000;212.834000;212.858000;0 +20260326 152900;212.855000;212.907000;212.851000;212.905000;0 +20260326 153000;212.903000;212.921000;212.890000;212.905000;0 +20260326 153100;212.907000;212.949000;212.905000;212.922000;0 +20260326 153200;212.920000;212.943000;212.907000;212.924000;0 +20260326 153300;212.923000;212.937000;212.908000;212.933000;0 +20260326 153400;212.931000;212.934000;212.900000;212.928000;0 +20260326 153500;212.921000;212.954000;212.901000;212.951000;0 +20260326 153600;212.956000;212.959000;212.937000;212.956000;0 +20260326 153700;212.959000;212.973000;212.936000;212.946000;0 +20260326 153800;212.950000;212.989000;212.939000;212.971000;0 +20260326 153900;212.971000;212.982000;212.962000;212.973000;0 +20260326 154000;212.976000;212.985000;212.946000;212.959000;0 +20260326 154100;212.961000;212.965000;212.925000;212.934000;0 +20260326 154200;212.932000;212.946000;212.917000;212.940000;0 +20260326 154300;212.938000;212.975000;212.938000;212.940000;0 +20260326 154400;212.943000;212.953000;212.938000;212.946000;0 +20260326 154500;212.950000;212.950000;212.932000;212.932000;0 +20260326 154600;212.922000;212.934000;212.907000;212.924000;0 +20260326 154700;212.922000;212.927000;212.900000;212.901000;0 +20260326 154800;212.906000;212.908000;212.880000;212.894000;0 +20260326 154900;212.890000;212.908000;212.889000;212.898000;0 +20260326 155000;212.899000;212.920000;212.889000;212.903000;0 +20260326 155100;212.911000;212.930000;212.902000;212.921000;0 +20260326 155200;212.923000;212.932000;212.916000;212.921000;0 +20260326 155300;212.921000;212.934000;212.906000;212.907000;0 +20260326 155400;212.915000;212.921000;212.892000;212.909000;0 +20260326 155500;212.907000;212.928000;212.898000;212.916000;0 +20260326 155600;212.919000;212.973000;212.909000;212.956000;0 +20260326 155700;212.963000;212.967000;212.941000;212.949000;0 +20260326 155800;212.946000;212.959000;212.885000;212.906000;0 +20260326 155900;212.896000;212.980000;212.896000;212.924000;0 +20260326 160400;212.708000;212.722000;212.708000;212.721000;0 +20260326 160500;212.769000;212.778000;212.715000;212.767000;0 +20260326 160600;212.777000;212.777000;212.777000;212.777000;0 +20260326 160700;212.777000;212.777000;212.719000;212.719000;0 +20260326 160800;212.715000;212.762000;212.715000;212.762000;0 +20260326 160900;212.761000;212.761000;212.702000;212.702000;0 +20260326 161000;212.752000;212.761000;212.737000;212.737000;0 +20260326 161100;212.734000;212.734000;212.734000;212.734000;0 +20260326 161200;212.730000;212.812000;212.711000;212.811000;0 +20260326 161300;212.821000;212.830000;212.805000;212.829000;0 +20260326 161400;212.845000;212.845000;212.799000;212.799000;0 +20260326 161500;212.799000;212.816000;212.799000;212.816000;0 +20260326 161600;212.807000;212.824000;212.807000;212.823000;0 +20260326 161700;212.849000;212.905000;212.849000;212.894000;0 +20260326 161800;212.894000;212.904000;212.890000;212.903000;0 +20260326 161900;212.903000;212.903000;212.881000;212.881000;0 +20260326 162000;212.877000;212.916000;212.865000;212.865000;0 +20260326 162100;212.865000;212.905000;212.861000;212.862000;0 +20260326 162200;212.879000;212.919000;212.877000;212.895000;0 +20260326 162300;212.892000;212.945000;212.892000;212.911000;0 +20260326 162400;212.910000;212.917000;212.878000;212.907000;0 +20260326 162500;212.908000;212.979000;212.894000;212.921000;0 +20260326 162600;212.930000;212.963000;212.927000;212.941000;0 +20260326 162700;212.951000;212.952000;212.927000;212.927000;0 +20260326 162800;212.930000;212.948000;212.856000;212.860000;0 +20260326 162900;212.867000;212.909000;212.857000;212.909000;0 +20260326 163000;212.901000;212.902000;212.896000;212.901000;0 +20260326 163100;212.900000;212.923000;212.888000;212.903000;0 +20260326 163200;212.905000;212.947000;212.873000;212.880000;0 +20260326 163300;212.878000;212.959000;212.856000;212.953000;0 +20260326 163400;212.953000;212.954000;212.908000;212.938000;0 +20260326 163500;212.938000;212.960000;212.916000;212.944000;0 +20260326 163600;212.940000;212.944000;212.907000;212.918000;0 +20260326 163700;212.920000;212.934000;212.901000;212.902000;0 +20260326 163800;212.902000;212.918000;212.887000;212.900000;0 +20260326 163900;212.896000;212.904000;212.875000;212.884000;0 +20260326 164000;212.886000;212.893000;212.884000;212.893000;0 +20260326 164100;212.892000;212.894000;212.872000;212.874000;0 +20260326 164200;212.875000;212.879000;212.845000;212.866000;0 +20260326 164300;212.866000;212.883000;212.857000;212.865000;0 +20260326 164400;212.865000;212.870000;212.852000;212.856000;0 +20260326 164500;212.859000;212.869000;212.850000;212.850000;0 +20260326 164600;212.850000;212.869000;212.850000;212.862000;0 +20260326 164700;212.862000;212.866000;212.859000;212.865000;0 +20260326 164800;212.865000;212.867000;212.859000;212.859000;0 +20260326 164900;212.863000;212.864000;212.854000;212.859000;0 +20260326 165000;212.853000;212.862000;212.836000;212.852000;0 +20260326 165100;212.856000;212.860000;212.849000;212.853000;0 +20260326 165200;212.857000;212.860000;212.847000;212.855000;0 +20260326 165300;212.857000;212.864000;212.795000;212.851000;0 +20260326 165400;212.855000;212.870000;212.832000;212.849000;0 +20260326 165500;212.847000;212.856000;212.832000;212.839000;0 +20260326 165600;212.831000;212.848000;212.792000;212.845000;0 +20260326 165700;212.844000;212.852000;212.830000;212.844000;0 +20260326 165800;212.845000;212.861000;212.835000;212.835000;0 +20260326 165900;212.838000;212.856000;212.838000;212.851000;0 +20260326 170000;212.973000;213.018000;212.875000;212.914000;0 +20260326 170100;212.912000;212.962000;212.912000;212.950000;0 +20260326 170200;212.952000;212.970000;212.941000;212.966000;0 +20260326 170300;212.964000;212.964000;212.932000;212.942000;0 +20260326 170400;212.945000;212.957000;212.937000;212.952000;0 +20260326 170500;212.949000;212.973000;212.944000;212.973000;0 +20260326 170600;212.978000;212.984000;212.973000;212.981000;0 +20260326 170700;212.979000;212.980000;212.958000;212.966000;0 +20260326 170800;212.966000;212.968000;212.936000;212.949000;0 +20260326 170900;212.951000;212.960000;212.936000;212.950000;0 +20260326 171000;212.955000;212.959000;212.946000;212.949000;0 +20260326 171100;212.950000;212.953000;212.927000;212.928000;0 +20260326 171200;212.924000;212.945000;212.922000;212.945000;0 +20260326 171300;212.945000;212.949000;212.934000;212.934000;0 +20260326 171400;212.936000;212.938000;212.924000;212.931000;0 +20260326 171500;212.932000;212.936000;212.928000;212.935000;0 +20260326 171600;212.935000;212.937000;212.931000;212.935000;0 +20260326 171700;212.934000;212.939000;212.931000;212.932000;0 +20260326 171800;212.933000;212.939000;212.922000;212.935000;0 +20260326 171900;212.932000;212.938000;212.930000;212.934000;0 +20260326 172000;212.934000;212.942000;212.928000;212.938000;0 +20260326 172100;212.935000;212.947000;212.935000;212.943000;0 +20260326 172200;212.943000;212.943000;212.917000;212.926000;0 +20260326 172300;212.925000;212.930000;212.905000;212.905000;0 +20260326 172400;212.906000;212.934000;212.906000;212.930000;0 +20260326 172500;212.927000;212.927000;212.915000;212.917000;0 +20260326 172600;212.916000;212.918000;212.903000;212.906000;0 +20260326 172700;212.907000;212.912000;212.903000;212.906000;0 +20260326 172800;212.904000;212.918000;212.904000;212.905000;0 +20260326 172900;212.904000;212.916000;212.904000;212.915000;0 +20260326 173000;212.914000;212.920000;212.907000;212.910000;0 +20260326 173100;212.911000;212.921000;212.901000;212.909000;0 +20260326 173200;212.910000;212.935000;212.910000;212.932000;0 +20260326 173300;212.933000;212.944000;212.931000;212.942000;0 +20260326 173400;212.940000;212.940000;212.921000;212.921000;0 +20260326 173500;212.926000;212.930000;212.916000;212.916000;0 +20260326 173600;212.917000;212.933000;212.917000;212.932000;0 +20260326 173700;212.933000;212.936000;212.932000;212.934000;0 +20260326 173800;212.935000;212.946000;212.923000;212.940000;0 +20260326 173900;212.941000;212.945000;212.928000;212.936000;0 +20260326 174000;212.937000;212.947000;212.930000;212.947000;0 +20260326 174100;212.947000;212.950000;212.934000;212.935000;0 +20260326 174200;212.935000;212.936000;212.919000;212.929000;0 +20260326 174300;212.928000;212.930000;212.921000;212.927000;0 +20260326 174400;212.928000;212.931000;212.918000;212.923000;0 +20260326 174500;212.921000;212.935000;212.914000;212.919000;0 +20260326 174600;212.920000;212.928000;212.918000;212.927000;0 +20260326 174700;212.925000;212.935000;212.919000;212.926000;0 +20260326 174800;212.929000;212.930000;212.929000;212.929000;0 +20260326 174900;212.932000;212.933000;212.929000;212.930000;0 +20260326 175000;212.931000;212.936000;212.927000;212.934000;0 +20260326 175100;212.928000;212.929000;212.920000;212.923000;0 +20260326 175200;212.924000;212.943000;212.919000;212.935000;0 +20260326 175300;212.935000;212.938000;212.928000;212.935000;0 +20260326 175400;212.934000;212.945000;212.934000;212.942000;0 +20260326 175500;212.943000;212.948000;212.934000;212.938000;0 +20260326 175600;212.939000;212.947000;212.927000;212.927000;0 +20260326 175700;212.928000;212.935000;212.925000;212.931000;0 +20260326 175800;212.928000;212.935000;212.918000;212.920000;0 +20260326 175900;212.920000;212.933000;212.918000;212.931000;0 +20260326 180000;212.933000;212.953000;212.920000;212.947000;0 +20260326 180100;212.946000;212.946000;212.914000;212.916000;0 +20260326 180200;212.913000;212.928000;212.911000;212.916000;0 +20260326 180300;212.919000;212.919000;212.908000;212.917000;0 +20260326 180400;212.915000;212.930000;212.912000;212.915000;0 +20260326 180500;212.914000;212.921000;212.905000;212.914000;0 +20260326 180600;212.913000;212.915000;212.900000;212.907000;0 +20260326 180700;212.904000;212.912000;212.902000;212.904000;0 +20260326 180800;212.907000;212.911000;212.900000;212.905000;0 +20260326 180900;212.908000;212.919000;212.899000;212.906000;0 +20260326 181000;212.902000;212.904000;212.889000;212.892000;0 +20260326 181100;212.891000;212.902000;212.883000;212.901000;0 +20260326 181200;212.898000;212.910000;212.893000;212.898000;0 +20260326 181300;212.902000;212.909000;212.892000;212.901000;0 +20260326 181400;212.905000;212.907000;212.897000;212.902000;0 +20260326 181500;212.912000;212.923000;212.908000;212.919000;0 +20260326 181600;212.924000;212.942000;212.923000;212.942000;0 +20260326 181700;212.941000;212.943000;212.933000;212.934000;0 +20260326 181800;212.934000;212.951000;212.933000;212.935000;0 +20260326 181900;212.935000;212.940000;212.932000;212.940000;0 +20260326 182000;212.942000;212.944000;212.924000;212.927000;0 +20260326 182100;212.927000;212.930000;212.919000;212.929000;0 +20260326 182200;212.930000;212.931000;212.917000;212.924000;0 +20260326 182300;212.918000;212.933000;212.914000;212.932000;0 +20260326 182400;212.929000;212.929000;212.923000;212.923000;0 +20260326 182500;212.922000;212.941000;212.919000;212.941000;0 +20260326 182600;212.942000;212.945000;212.933000;212.934000;0 +20260326 182700;212.929000;212.932000;212.927000;212.931000;0 +20260326 182800;212.930000;212.942000;212.927000;212.928000;0 +20260326 182900;212.929000;212.931000;212.927000;212.931000;0 +20260326 183000;212.934000;212.952000;212.926000;212.945000;0 +20260326 183100;212.945000;212.952000;212.942000;212.951000;0 +20260326 183200;212.951000;212.956000;212.947000;212.955000;0 +20260326 183300;212.954000;212.957000;212.942000;212.946000;0 +20260326 183400;212.943000;212.952000;212.940000;212.950000;0 +20260326 183500;212.949000;212.957000;212.949000;212.956000;0 +20260326 183600;212.957000;212.966000;212.950000;212.961000;0 +20260326 183700;212.961000;212.965000;212.957000;212.964000;0 +20260326 183800;212.963000;212.966000;212.958000;212.961000;0 +20260326 183900;212.962000;212.968000;212.954000;212.962000;0 +20260326 184000;212.962000;212.962000;212.958000;212.959000;0 +20260326 184100;212.960000;212.960000;212.951000;212.951000;0 +20260326 184200;212.951000;212.951000;212.939000;212.941000;0 +20260326 184300;212.942000;212.955000;212.937000;212.937000;0 +20260326 184400;212.938000;212.949000;212.935000;212.945000;0 +20260326 184500;212.948000;212.969000;212.940000;212.957000;0 +20260326 184600;212.958000;212.973000;212.957000;212.967000;0 +20260326 184700;212.966000;212.982000;212.962000;212.973000;0 +20260326 184800;212.973000;212.974000;212.956000;212.962000;0 +20260326 184900;212.963000;212.966000;212.947000;212.953000;0 +20260326 185000;212.953000;212.966000;212.952000;212.965000;0 +20260326 185100;212.965000;212.967000;212.965000;212.965000;0 +20260326 185200;212.968000;212.974000;212.968000;212.969000;0 +20260326 185300;212.964000;212.974000;212.964000;212.969000;0 +20260326 185400;212.969000;212.969000;212.957000;212.960000;0 +20260326 185500;212.961000;212.961000;212.960000;212.961000;0 +20260326 185600;212.960000;212.961000;212.955000;212.958000;0 +20260326 185700;212.957000;212.971000;212.952000;212.971000;0 +20260326 185800;212.982000;212.986000;212.970000;212.986000;0 +20260326 185900;212.986000;212.989000;212.980000;212.981000;0 +20260326 190000;212.978000;212.990000;212.967000;212.969000;0 +20260326 190100;212.966000;212.983000;212.956000;212.956000;0 +20260326 190200;212.956000;212.975000;212.946000;212.960000;0 +20260326 190300;212.962000;212.978000;212.957000;212.968000;0 +20260326 190400;212.968000;212.972000;212.953000;212.958000;0 +20260326 190500;212.956000;212.956000;212.905000;212.905000;0 +20260326 190600;212.906000;212.919000;212.887000;212.898000;0 +20260326 190700;212.898000;212.898000;212.873000;212.880000;0 +20260326 190800;212.881000;212.915000;212.876000;212.914000;0 +20260326 190900;212.913000;212.938000;212.907000;212.934000;0 +20260326 191000;212.933000;212.941000;212.924000;212.932000;0 +20260326 191100;212.934000;212.936000;212.923000;212.925000;0 +20260326 191200;212.923000;212.929000;212.908000;212.926000;0 +20260326 191300;212.924000;212.925000;212.905000;212.907000;0 +20260326 191400;212.903000;212.917000;212.896000;212.903000;0 +20260326 191500;212.904000;212.905000;212.878000;212.893000;0 +20260326 191600;212.895000;212.897000;212.885000;212.888000;0 +20260326 191700;212.885000;212.905000;212.885000;212.901000;0 +20260326 191800;212.898000;212.908000;212.879000;212.879000;0 +20260326 191900;212.880000;212.899000;212.867000;212.870000;0 +20260326 192000;212.870000;212.884000;212.852000;212.873000;0 +20260326 192100;212.872000;212.875000;212.835000;212.848000;0 +20260326 192200;212.851000;212.863000;212.832000;212.838000;0 +20260326 192300;212.835000;212.854000;212.819000;212.831000;0 +20260326 192400;212.831000;212.859000;212.827000;212.845000;0 +20260326 192500;212.849000;212.849000;212.830000;212.839000;0 +20260326 192600;212.840000;212.842000;212.816000;212.838000;0 +20260326 192700;212.839000;212.839000;212.820000;212.828000;0 +20260326 192800;212.826000;212.834000;212.820000;212.825000;0 +20260326 192900;212.828000;212.841000;212.821000;212.822000;0 +20260326 193000;212.823000;212.852000;212.823000;212.837000;0 +20260326 193100;212.841000;212.855000;212.837000;212.846000;0 +20260326 193200;212.845000;212.856000;212.837000;212.838000;0 +20260326 193300;212.838000;212.843000;212.822000;212.830000;0 +20260326 193400;212.830000;212.842000;212.827000;212.834000;0 +20260326 193500;212.833000;212.833000;212.809000;212.816000;0 +20260326 193600;212.816000;212.833000;212.803000;212.821000;0 +20260326 193700;212.821000;212.846000;212.819000;212.835000;0 +20260326 193800;212.838000;212.841000;212.829000;212.834000;0 +20260326 193900;212.834000;212.835000;212.820000;212.827000;0 +20260326 194000;212.826000;212.859000;212.826000;212.847000;0 +20260326 194100;212.847000;212.868000;212.847000;212.850000;0 +20260326 194200;212.851000;212.854000;212.832000;212.836000;0 +20260326 194300;212.832000;212.837000;212.805000;212.808000;0 +20260326 194400;212.809000;212.828000;212.809000;212.825000;0 +20260326 194500;212.824000;212.824000;212.777000;212.781000;0 +20260326 194600;212.781000;212.786000;212.748000;212.756000;0 +20260326 194700;212.759000;212.759000;212.728000;212.729000;0 +20260326 194800;212.728000;212.729000;212.659000;212.662000;0 +20260326 194900;212.660000;212.719000;212.623000;212.714000;0 +20260326 195000;212.711000;212.742000;212.649000;212.656000;0 +20260326 195100;212.657000;212.696000;212.657000;212.693000;0 +20260326 195200;212.690000;212.696000;212.660000;212.660000;0 +20260326 195300;212.660000;212.662000;212.590000;212.597000;0 +20260326 195400;212.596000;212.652000;212.586000;212.647000;0 +20260326 195500;212.647000;212.672000;212.635000;212.661000;0 +20260326 195600;212.663000;212.695000;212.655000;212.693000;0 +20260326 195700;212.693000;212.750000;212.692000;212.720000;0 +20260326 195800;212.716000;212.753000;212.712000;212.712000;0 +20260326 195900;212.712000;212.750000;212.709000;212.748000;0 +20260326 200000;212.747000;212.771000;212.736000;212.736000;0 +20260326 200100;212.735000;212.781000;212.735000;212.768000;0 +20260326 200200;212.767000;212.807000;212.764000;212.768000;0 +20260326 200300;212.765000;212.769000;212.751000;212.765000;0 +20260326 200400;212.764000;212.783000;212.757000;212.763000;0 +20260326 200500;212.765000;212.789000;212.754000;212.755000;0 +20260326 200600;212.754000;212.770000;212.748000;212.753000;0 +20260326 200700;212.751000;212.763000;212.724000;212.728000;0 +20260326 200800;212.726000;212.726000;212.698000;212.703000;0 +20260326 200900;212.703000;212.719000;212.686000;212.687000;0 +20260326 201000;212.687000;212.732000;212.683000;212.732000;0 +20260326 201100;212.732000;212.776000;212.732000;212.776000;0 +20260326 201200;212.774000;212.775000;212.754000;212.772000;0 +20260326 201300;212.772000;212.774000;212.756000;212.766000;0 +20260326 201400;212.766000;212.784000;212.758000;212.784000;0 +20260326 201500;212.784000;212.806000;212.773000;212.793000;0 +20260326 201600;212.798000;212.800000;212.776000;212.793000;0 +20260326 201700;212.793000;212.793000;212.765000;212.769000;0 +20260326 201800;212.769000;212.776000;212.757000;212.775000;0 +20260326 201900;212.771000;212.771000;212.749000;212.762000;0 +20260326 202000;212.762000;212.783000;212.759000;212.778000;0 +20260326 202100;212.778000;212.798000;212.772000;212.798000;0 +20260326 202200;212.795000;212.819000;212.787000;212.819000;0 +20260326 202300;212.820000;212.822000;212.796000;212.802000;0 +20260326 202400;212.802000;212.834000;212.802000;212.825000;0 +20260326 202500;212.826000;212.836000;212.814000;212.828000;0 +20260326 202600;212.827000;212.830000;212.819000;212.826000;0 +20260326 202700;212.827000;212.833000;212.816000;212.826000;0 +20260326 202800;212.826000;212.844000;212.822000;212.844000;0 +20260326 202900;212.843000;212.852000;212.826000;212.843000;0 +20260326 203000;212.843000;212.870000;212.843000;212.851000;0 +20260326 203100;212.851000;212.885000;212.846000;212.877000;0 +20260326 203200;212.877000;212.885000;212.874000;212.878000;0 +20260326 203300;212.878000;212.887000;212.876000;212.887000;0 +20260326 203400;212.887000;212.891000;212.876000;212.880000;0 +20260326 203500;212.880000;212.896000;212.880000;212.888000;0 +20260326 203600;212.888000;212.890000;212.871000;212.872000;0 +20260326 203700;212.872000;212.873000;212.850000;212.852000;0 +20260326 203800;212.852000;212.875000;212.852000;212.875000;0 +20260326 203900;212.874000;212.879000;212.867000;212.872000;0 +20260326 204000;212.875000;212.891000;212.872000;212.890000;0 +20260326 204100;212.890000;212.891000;212.854000;212.856000;0 +20260326 204200;212.856000;212.871000;212.856000;212.858000;0 +20260326 204300;212.859000;212.864000;212.843000;212.848000;0 +20260326 204400;212.849000;212.853000;212.844000;212.845000;0 +20260326 204500;212.846000;212.869000;212.820000;212.863000;0 +20260326 204600;212.863000;212.874000;212.828000;212.831000;0 +20260326 204700;212.833000;212.839000;212.826000;212.836000;0 +20260326 204800;212.836000;212.844000;212.835000;212.840000;0 +20260326 204900;212.840000;212.855000;212.837000;212.850000;0 +20260326 205000;212.850000;212.853000;212.831000;212.841000;0 +20260326 205100;212.841000;212.844000;212.827000;212.837000;0 +20260326 205200;212.839000;212.845000;212.827000;212.829000;0 +20260326 205300;212.829000;212.846000;212.827000;212.841000;0 +20260326 205400;212.842000;212.851000;212.842000;212.846000;0 +20260326 205500;212.847000;212.873000;212.844000;212.860000;0 +20260326 205600;212.860000;212.871000;212.817000;212.817000;0 +20260326 205700;212.818000;212.818000;212.763000;212.781000;0 +20260326 205800;212.780000;212.784000;212.765000;212.780000;0 +20260326 205900;212.775000;212.787000;212.769000;212.785000;0 +20260326 210000;212.783000;212.834000;212.783000;212.821000;0 +20260326 210100;212.823000;212.843000;212.815000;212.825000;0 +20260326 210200;212.822000;212.843000;212.813000;212.827000;0 +20260326 210300;212.828000;212.842000;212.816000;212.830000;0 +20260326 210400;212.830000;212.840000;212.821000;212.823000;0 +20260326 210500;212.823000;212.824000;212.805000;212.805000;0 +20260326 210600;212.807000;212.820000;212.800000;212.819000;0 +20260326 210700;212.817000;212.826000;212.800000;212.826000;0 +20260326 210800;212.824000;212.862000;212.821000;212.854000;0 +20260326 210900;212.853000;212.863000;212.848000;212.852000;0 +20260326 211000;212.853000;212.879000;212.853000;212.867000;0 +20260326 211100;212.866000;212.888000;212.858000;212.877000;0 +20260326 211200;212.875000;212.893000;212.870000;212.888000;0 +20260326 211300;212.888000;212.889000;212.869000;212.874000;0 +20260326 211400;212.874000;212.886000;212.871000;212.881000;0 +20260326 211500;212.881000;212.900000;212.881000;212.888000;0 +20260326 211600;212.890000;212.897000;212.884000;212.886000;0 +20260326 211700;212.887000;212.889000;212.874000;212.877000;0 +20260326 211800;212.875000;212.881000;212.864000;212.880000;0 +20260326 211900;212.881000;212.886000;212.871000;212.871000;0 +20260326 212000;212.871000;212.879000;212.858000;212.867000;0 +20260326 212100;212.866000;212.869000;212.855000;212.859000;0 +20260326 212200;212.861000;212.861000;212.848000;212.849000;0 +20260326 212300;212.850000;212.859000;212.844000;212.849000;0 +20260326 212400;212.848000;212.869000;212.843000;212.866000;0 +20260326 212500;212.868000;212.876000;212.868000;212.873000;0 +20260326 212600;212.872000;212.872000;212.859000;212.861000;0 +20260326 212700;212.857000;212.868000;212.852000;212.857000;0 +20260326 212800;212.859000;212.866000;212.849000;212.853000;0 +20260326 212900;212.855000;212.876000;212.853000;212.876000;0 +20260326 213000;212.877000;212.878000;212.864000;212.873000;0 +20260326 213100;212.872000;212.877000;212.866000;212.875000;0 +20260326 213200;212.875000;212.886000;212.866000;212.882000;0 +20260326 213300;212.882000;212.883000;212.863000;212.863000;0 +20260326 213400;212.865000;212.883000;212.863000;212.877000;0 +20260326 213500;212.880000;212.891000;212.873000;212.873000;0 +20260326 213600;212.874000;212.897000;212.870000;212.890000;0 +20260326 213700;212.893000;212.896000;212.880000;212.882000;0 +20260326 213800;212.881000;212.890000;212.856000;212.856000;0 +20260326 213900;212.857000;212.871000;212.854000;212.870000;0 +20260326 214000;212.871000;212.876000;212.866000;212.875000;0 +20260326 214100;212.875000;212.878000;212.866000;212.870000;0 +20260326 214200;212.868000;212.875000;212.858000;212.866000;0 +20260326 214300;212.865000;212.870000;212.847000;212.848000;0 +20260326 214400;212.849000;212.861000;212.838000;212.840000;0 +20260326 214500;212.841000;212.849000;212.830000;212.848000;0 +20260326 214600;212.846000;212.848000;212.830000;212.831000;0 +20260326 214700;212.829000;212.846000;212.826000;212.842000;0 +20260326 214800;212.844000;212.848000;212.818000;212.818000;0 +20260326 214900;212.818000;212.819000;212.801000;212.808000;0 +20260326 215000;212.806000;212.810000;212.799000;212.809000;0 +20260326 215100;212.812000;212.813000;212.798000;212.813000;0 +20260326 215200;212.814000;212.815000;212.805000;212.811000;0 +20260326 215300;212.809000;212.821000;212.803000;212.805000;0 +20260326 215400;212.807000;212.811000;212.794000;212.809000;0 +20260326 215500;212.811000;212.820000;212.811000;212.815000;0 +20260326 215600;212.814000;212.815000;212.801000;212.808000;0 +20260326 215700;212.806000;212.813000;212.795000;212.813000;0 +20260326 215800;212.810000;212.824000;212.810000;212.810000;0 +20260326 215900;212.811000;212.833000;212.811000;212.829000;0 +20260326 220000;212.830000;212.850000;212.830000;212.849000;0 +20260326 220100;212.844000;212.844000;212.833000;212.833000;0 +20260326 220200;212.835000;212.843000;212.828000;212.836000;0 +20260326 220300;212.835000;212.841000;212.829000;212.829000;0 +20260326 220400;212.827000;212.829000;212.788000;212.788000;0 +20260326 220500;212.789000;212.791000;212.767000;212.772000;0 +20260326 220600;212.773000;212.779000;212.755000;212.771000;0 +20260326 220700;212.772000;212.785000;212.760000;212.777000;0 +20260326 220800;212.776000;212.792000;212.772000;212.778000;0 +20260326 220900;212.777000;212.791000;212.777000;212.787000;0 +20260326 221000;212.787000;212.805000;212.775000;212.781000;0 +20260326 221100;212.778000;212.786000;212.774000;212.779000;0 +20260326 221200;212.779000;212.799000;212.775000;212.788000;0 +20260326 221300;212.791000;212.798000;212.786000;212.786000;0 +20260326 221400;212.788000;212.795000;212.781000;212.793000;0 +20260326 221500;212.794000;212.809000;212.793000;212.795000;0 +20260326 221600;212.800000;212.815000;212.793000;212.815000;0 +20260326 221700;212.812000;212.816000;212.789000;212.790000;0 +20260326 221800;212.790000;212.802000;212.782000;212.802000;0 +20260326 221900;212.815000;212.832000;212.808000;212.810000;0 +20260326 222000;212.811000;212.812000;212.801000;212.807000;0 +20260326 222100;212.806000;212.811000;212.801000;212.806000;0 +20260326 222200;212.806000;212.811000;212.804000;212.811000;0 +20260326 222300;212.809000;212.811000;212.798000;212.799000;0 +20260326 222400;212.800000;212.807000;212.796000;212.806000;0 +20260326 222500;212.804000;212.824000;212.804000;212.821000;0 +20260326 222600;212.821000;212.822000;212.799000;212.806000;0 +20260326 222700;212.808000;212.810000;212.797000;212.798000;0 +20260326 222800;212.801000;212.818000;212.801000;212.818000;0 +20260326 222900;212.816000;212.823000;212.809000;212.813000;0 +20260326 223000;212.813000;212.862000;212.812000;212.849000;0 +20260326 223100;212.848000;212.864000;212.843000;212.854000;0 +20260326 223200;212.853000;212.860000;212.849000;212.854000;0 +20260326 223300;212.854000;212.866000;212.847000;212.863000;0 +20260326 223400;212.864000;212.876000;212.860000;212.866000;0 +20260326 223500;212.871000;212.885000;212.865000;212.877000;0 +20260326 223600;212.873000;212.889000;212.868000;212.887000;0 +20260326 223700;212.887000;212.895000;212.882000;212.882000;0 +20260326 223800;212.880000;212.884000;212.872000;212.872000;0 +20260326 223900;212.873000;212.903000;212.871000;212.898000;0 +20260326 224000;212.902000;212.913000;212.901000;212.909000;0 +20260326 224100;212.907000;212.916000;212.902000;212.914000;0 +20260326 224200;212.915000;212.930000;212.912000;212.925000;0 +20260326 224300;212.922000;212.925000;212.916000;212.919000;0 +20260326 224400;212.918000;212.918000;212.892000;212.893000;0 +20260326 224500;212.894000;212.897000;212.881000;212.887000;0 +20260326 224600;212.894000;212.894000;212.870000;212.883000;0 +20260326 224700;212.882000;212.885000;212.877000;212.885000;0 +20260326 224800;212.896000;212.897000;212.869000;212.880000;0 +20260326 224900;212.881000;212.885000;212.878000;212.879000;0 +20260326 225000;212.874000;212.893000;212.873000;212.884000;0 +20260326 225100;212.885000;212.901000;212.879000;212.898000;0 +20260326 225200;212.898000;212.913000;212.898000;212.907000;0 +20260326 225300;212.906000;212.915000;212.905000;212.905000;0 +20260326 225400;212.904000;212.906000;212.886000;212.896000;0 +20260326 225500;212.897000;212.909000;212.892000;212.908000;0 +20260326 225600;212.910000;212.916000;212.902000;212.906000;0 +20260326 225700;212.907000;212.921000;212.904000;212.912000;0 +20260326 225800;212.913000;212.935000;212.910000;212.933000;0 +20260326 225900;212.934000;212.938000;212.928000;212.929000;0 +20260326 230000;212.930000;212.947000;212.930000;212.931000;0 +20260326 230100;212.932000;212.945000;212.931000;212.942000;0 +20260326 230200;212.942000;212.950000;212.935000;212.948000;0 +20260326 230300;212.949000;212.955000;212.944000;212.955000;0 +20260326 230400;212.954000;212.961000;212.951000;212.957000;0 +20260326 230500;212.955000;212.961000;212.949000;212.959000;0 +20260326 230600;212.960000;212.967000;212.958000;212.965000;0 +20260326 230700;212.963000;212.965000;212.954000;212.954000;0 +20260326 230800;212.958000;212.965000;212.954000;212.959000;0 +20260326 230900;212.955000;212.957000;212.946000;212.946000;0 +20260326 231000;212.948000;212.951000;212.935000;212.938000;0 +20260326 231100;212.936000;212.947000;212.934000;212.941000;0 +20260326 231200;212.943000;212.948000;212.933000;212.946000;0 +20260326 231300;212.947000;212.948000;212.929000;212.930000;0 +20260326 231400;212.929000;212.932000;212.922000;212.922000;0 +20260326 231500;212.922000;212.928000;212.922000;212.927000;0 +20260326 231600;212.928000;212.931000;212.921000;212.922000;0 +20260326 231700;212.918000;212.927000;212.918000;212.921000;0 +20260326 231800;212.923000;212.929000;212.920000;212.923000;0 +20260326 231900;212.924000;212.932000;212.921000;212.930000;0 +20260326 232000;212.933000;212.936000;212.915000;212.923000;0 +20260326 232100;212.920000;212.920000;212.901000;212.916000;0 +20260326 232200;212.917000;212.925000;212.916000;212.919000;0 +20260326 232300;212.921000;212.921000;212.912000;212.913000;0 +20260326 232400;212.910000;212.910000;212.893000;212.893000;0 +20260326 232500;212.894000;212.903000;212.878000;212.887000;0 +20260326 232600;212.890000;212.897000;212.880000;212.880000;0 +20260326 232700;212.880000;212.881000;212.851000;212.852000;0 +20260326 232800;212.852000;212.860000;212.845000;212.851000;0 +20260326 232900;212.852000;212.860000;212.850000;212.859000;0 +20260326 233000;212.862000;212.864000;212.848000;212.853000;0 +20260326 233100;212.854000;212.859000;212.844000;212.856000;0 +20260326 233200;212.858000;212.865000;212.852000;212.860000;0 +20260326 233300;212.860000;212.879000;212.853000;212.879000;0 +20260326 233400;212.879000;212.880000;212.867000;212.878000;0 +20260326 233500;212.881000;212.905000;212.881000;212.900000;0 +20260326 233600;212.901000;212.921000;212.901000;212.916000;0 +20260326 233700;212.915000;212.915000;212.902000;212.904000;0 +20260326 233800;212.905000;212.915000;212.901000;212.914000;0 +20260326 233900;212.910000;212.931000;212.910000;212.929000;0 +20260326 234000;212.928000;212.929000;212.925000;212.929000;0 +20260326 234100;212.929000;212.937000;212.925000;212.937000;0 +20260326 234200;212.936000;212.936000;212.929000;212.929000;0 +20260326 234300;212.932000;212.944000;212.929000;212.942000;0 +20260326 234400;212.943000;212.945000;212.939000;212.943000;0 +20260326 234500;212.945000;212.946000;212.936000;212.936000;0 +20260326 234600;212.937000;212.955000;212.937000;212.950000;0 +20260326 234700;212.948000;212.954000;212.939000;212.952000;0 +20260326 234800;212.954000;212.965000;212.951000;212.960000;0 +20260326 234900;212.958000;212.974000;212.957000;212.974000;0 +20260326 235000;212.971000;212.972000;212.960000;212.964000;0 +20260326 235100;212.965000;212.971000;212.947000;212.951000;0 +20260326 235200;212.952000;212.953000;212.941000;212.942000;0 +20260326 235300;212.940000;212.942000;212.918000;212.919000;0 +20260326 235400;212.918000;212.938000;212.916000;212.928000;0 +20260326 235500;212.931000;212.941000;212.928000;212.938000;0 +20260326 235600;212.937000;212.960000;212.937000;212.958000;0 +20260326 235700;212.957000;212.977000;212.948000;212.965000;0 +20260326 235800;212.969000;212.981000;212.962000;212.978000;0 +20260326 235900;212.978000;212.984000;212.974000;212.974000;0 +20260327 000000;212.977000;212.992000;212.974000;212.984000;0 +20260327 000100;212.986000;212.995000;212.986000;212.994000;0 +20260327 000200;212.993000;213.003000;212.991000;213.000000;0 +20260327 000300;212.995000;213.010000;212.995000;212.999000;0 +20260327 000400;212.999000;213.000000;212.977000;212.988000;0 +20260327 000500;212.988000;212.996000;212.973000;212.996000;0 +20260327 000600;212.997000;213.004000;212.992000;212.992000;0 +20260327 000700;212.992000;213.013000;212.992000;213.010000;0 +20260327 000800;213.005000;213.009000;212.999000;213.007000;0 +20260327 000900;213.008000;213.008000;212.990000;212.991000;0 +20260327 001000;212.990000;213.003000;212.988000;213.000000;0 +20260327 001100;213.000000;213.000000;212.987000;212.992000;0 +20260327 001200;212.993000;212.997000;212.981000;212.996000;0 +20260327 001300;212.996000;213.008000;212.992000;213.000000;0 +20260327 001400;213.000000;213.014000;213.000000;213.009000;0 +20260327 001500;213.007000;213.012000;212.998000;213.004000;0 +20260327 001600;213.004000;213.023000;212.999000;213.010000;0 +20260327 001700;213.009000;213.016000;213.003000;213.009000;0 +20260327 001800;213.008000;213.012000;213.000000;213.004000;0 +20260327 001900;213.007000;213.019000;213.003000;213.010000;0 +20260327 002000;213.011000;213.011000;212.975000;212.977000;0 +20260327 002100;212.977000;212.979000;212.962000;212.963000;0 +20260327 002200;212.962000;212.967000;212.946000;212.947000;0 +20260327 002300;212.948000;212.960000;212.947000;212.957000;0 +20260327 002400;212.956000;212.962000;212.948000;212.956000;0 +20260327 002500;212.957000;212.958000;212.940000;212.940000;0 +20260327 002600;212.939000;212.943000;212.917000;212.924000;0 +20260327 002700;212.927000;212.939000;212.924000;212.928000;0 +20260327 002800;212.928000;212.941000;212.928000;212.937000;0 +20260327 002900;212.948000;212.962000;212.945000;212.962000;0 +20260327 003000;212.963000;212.970000;212.954000;212.955000;0 +20260327 003100;212.952000;212.957000;212.945000;212.947000;0 +20260327 003200;212.945000;212.946000;212.931000;212.938000;0 +20260327 003300;212.935000;212.935000;212.900000;212.909000;0 +20260327 003400;212.907000;212.937000;212.905000;212.932000;0 +20260327 003500;212.933000;212.944000;212.931000;212.944000;0 +20260327 003600;212.945000;212.949000;212.925000;212.929000;0 +20260327 003700;212.928000;212.935000;212.917000;212.933000;0 +20260327 003800;212.931000;212.951000;212.927000;212.936000;0 +20260327 003900;212.938000;212.972000;212.936000;212.962000;0 +20260327 004000;212.962000;212.979000;212.958000;212.959000;0 +20260327 004100;212.958000;212.964000;212.951000;212.960000;0 +20260327 004200;212.957000;212.957000;212.938000;212.953000;0 +20260327 004300;212.958000;212.961000;212.946000;212.952000;0 +20260327 004400;212.951000;212.968000;212.951000;212.960000;0 +20260327 004500;212.961000;212.985000;212.956000;212.980000;0 +20260327 004600;212.979000;212.983000;212.969000;212.979000;0 +20260327 004700;212.977000;212.982000;212.962000;212.982000;0 +20260327 004800;212.983000;212.985000;212.959000;212.959000;0 +20260327 004900;212.959000;213.005000;212.959000;213.002000;0 +20260327 005000;213.004000;213.005000;212.985000;212.996000;0 +20260327 005100;212.998000;212.998000;212.975000;212.982000;0 +20260327 005200;212.982000;212.985000;212.955000;212.955000;0 +20260327 005300;212.955000;212.963000;212.946000;212.949000;0 +20260327 005400;212.951000;212.953000;212.941000;212.953000;0 +20260327 005500;212.954000;212.969000;212.936000;212.943000;0 +20260327 005600;212.943000;212.943000;212.913000;212.914000;0 +20260327 005700;212.914000;212.914000;212.903000;212.904000;0 +20260327 005800;212.902000;212.923000;212.902000;212.917000;0 +20260327 005900;212.916000;212.937000;212.916000;212.931000;0 +20260327 010000;212.933000;212.975000;212.933000;212.948000;0 +20260327 010100;212.949000;212.951000;212.940000;212.942000;0 +20260327 010200;212.939000;212.949000;212.920000;212.934000;0 +20260327 010300;212.934000;212.947000;212.927000;212.944000;0 +20260327 010400;212.942000;212.961000;212.934000;212.949000;0 +20260327 010500;212.951000;212.974000;212.948000;212.958000;0 +20260327 010600;212.954000;212.958000;212.935000;212.956000;0 +20260327 010700;212.955000;212.963000;212.936000;212.941000;0 +20260327 010800;212.942000;212.950000;212.936000;212.945000;0 +20260327 010900;212.943000;212.965000;212.939000;212.961000;0 +20260327 011000;212.961000;212.987000;212.954000;212.979000;0 +20260327 011100;212.975000;212.975000;212.938000;212.942000;0 +20260327 011200;212.942000;212.951000;212.930000;212.933000;0 +20260327 011300;212.934000;212.939000;212.922000;212.939000;0 +20260327 011400;212.939000;212.962000;212.934000;212.950000;0 +20260327 011500;212.950000;212.979000;212.944000;212.974000;0 +20260327 011600;212.975000;212.980000;212.963000;212.965000;0 +20260327 011700;212.967000;212.973000;212.965000;212.968000;0 +20260327 011800;212.967000;212.970000;212.952000;212.956000;0 +20260327 011900;212.954000;212.959000;212.946000;212.949000;0 +20260327 012000;212.950000;212.957000;212.944000;212.951000;0 +20260327 012100;212.951000;212.960000;212.950000;212.958000;0 +20260327 012200;212.958000;212.960000;212.932000;212.932000;0 +20260327 012300;212.932000;212.932000;212.920000;212.921000;0 +20260327 012400;212.922000;212.937000;212.922000;212.937000;0 +20260327 012500;212.936000;212.939000;212.926000;212.934000;0 +20260327 012600;212.933000;212.945000;212.930000;212.944000;0 +20260327 012700;212.941000;212.952000;212.937000;212.947000;0 +20260327 012800;212.948000;212.966000;212.948000;212.966000;0 +20260327 012900;212.961000;212.966000;212.951000;212.965000;0 +20260327 013000;212.962000;212.962000;212.909000;212.917000;0 +20260327 013100;212.917000;212.926000;212.907000;212.909000;0 +20260327 013200;212.907000;212.926000;212.907000;212.914000;0 +20260327 013300;212.916000;212.919000;212.899000;212.916000;0 +20260327 013400;212.918000;212.937000;212.914000;212.927000;0 +20260327 013500;212.927000;212.956000;212.921000;212.950000;0 +20260327 013600;212.950000;212.979000;212.942000;212.979000;0 +20260327 013700;212.979000;212.991000;212.978000;212.979000;0 +20260327 013800;212.980000;212.986000;212.968000;212.983000;0 +20260327 013900;212.983000;212.983000;212.967000;212.973000;0 +20260327 014000;212.975000;212.979000;212.970000;212.972000;0 +20260327 014100;212.970000;212.974000;212.956000;212.960000;0 +20260327 014200;212.962000;212.962000;212.950000;212.955000;0 +20260327 014300;212.954000;212.954000;212.946000;212.950000;0 +20260327 014400;212.950000;212.969000;212.946000;212.966000;0 +20260327 014500;212.962000;212.978000;212.957000;212.973000;0 +20260327 014600;212.973000;212.973000;212.961000;212.961000;0 +20260327 014700;212.961000;212.968000;212.949000;212.950000;0 +20260327 014800;212.950000;212.987000;212.944000;212.987000;0 +20260327 014900;212.987000;212.996000;212.963000;212.996000;0 +20260327 015000;212.994000;212.995000;212.979000;212.980000;0 +20260327 015100;212.981000;212.997000;212.980000;212.987000;0 +20260327 015200;212.987000;212.992000;212.974000;212.975000;0 +20260327 015300;212.974000;212.981000;212.956000;212.968000;0 +20260327 015400;212.966000;212.983000;212.960000;212.972000;0 +20260327 015500;212.975000;212.989000;212.975000;212.983000;0 +20260327 015600;212.986000;212.990000;212.969000;212.988000;0 +20260327 015700;212.987000;213.010000;212.987000;212.997000;0 +20260327 015800;212.998000;213.018000;212.997000;213.018000;0 +20260327 015900;213.016000;213.042000;213.012000;213.021000;0 +20260327 020000;213.021000;213.026000;212.983000;213.001000;0 +20260327 020100;212.998000;213.027000;212.998000;213.013000;0 +20260327 020200;213.010000;213.022000;212.987000;212.996000;0 +20260327 020300;212.997000;212.997000;212.973000;212.984000;0 +20260327 020400;212.986000;213.017000;212.983000;213.015000;0 +20260327 020500;213.014000;213.020000;213.007000;213.008000;0 +20260327 020600;213.010000;213.016000;212.984000;213.011000;0 +20260327 020700;213.010000;213.016000;212.991000;212.991000;0 +20260327 020800;212.988000;213.000000;212.975000;212.996000;0 +20260327 020900;212.998000;213.024000;212.996000;213.016000;0 +20260327 021000;213.014000;213.014000;212.987000;212.989000;0 +20260327 021100;212.990000;212.995000;212.969000;212.972000;0 +20260327 021200;212.972000;212.998000;212.967000;212.998000;0 +20260327 021300;213.000000;213.008000;212.986000;213.008000;0 +20260327 021400;213.007000;213.010000;212.954000;212.987000;0 +20260327 021500;212.988000;213.006000;212.979000;213.004000;0 +20260327 021600;213.006000;213.029000;213.001000;213.028000;0 +20260327 021700;213.029000;213.049000;213.023000;213.034000;0 +20260327 021800;213.032000;213.049000;213.013000;213.019000;0 +20260327 021900;213.021000;213.030000;213.004000;213.010000;0 +20260327 022000;213.012000;213.026000;213.003000;213.023000;0 +20260327 022100;213.021000;213.036000;213.007000;213.013000;0 +20260327 022200;213.013000;213.017000;212.994000;213.013000;0 +20260327 022300;213.011000;213.028000;212.999000;213.026000;0 +20260327 022400;213.026000;213.039000;212.989000;212.991000;0 +20260327 022500;212.988000;213.038000;212.987000;213.034000;0 +20260327 022600;213.040000;213.052000;213.032000;213.037000;0 +20260327 022700;213.038000;213.051000;213.036000;213.046000;0 +20260327 022800;213.047000;213.073000;213.023000;213.059000;0 +20260327 022900;213.054000;213.091000;213.049000;213.074000;0 +20260327 023000;213.077000;213.095000;213.029000;213.032000;0 +20260327 023100;213.032000;213.037000;213.008000;213.013000;0 +20260327 023200;213.013000;213.040000;213.013000;213.024000;0 +20260327 023300;213.024000;213.043000;213.017000;213.026000;0 +20260327 023400;213.028000;213.047000;213.009000;213.009000;0 +20260327 023500;213.015000;213.042000;213.008000;213.033000;0 +20260327 023600;213.032000;213.052000;213.011000;213.036000;0 +20260327 023700;213.037000;213.051000;213.029000;213.041000;0 +20260327 023800;213.038000;213.061000;213.038000;213.058000;0 +20260327 023900;213.058000;213.060000;213.023000;213.030000;0 +20260327 024000;213.024000;213.024000;212.985000;212.986000;0 +20260327 024100;212.986000;212.991000;212.957000;212.962000;0 +20260327 024200;212.963000;212.973000;212.958000;212.958000;0 +20260327 024300;212.958000;213.003000;212.956000;212.998000;0 +20260327 024400;213.000000;213.002000;212.967000;212.976000;0 +20260327 024500;212.974000;212.974000;212.945000;212.951000;0 +20260327 024600;212.952000;212.964000;212.945000;212.949000;0 +20260327 024700;212.959000;212.961000;212.938000;212.956000;0 +20260327 024800;212.960000;212.964000;212.954000;212.959000;0 +20260327 024900;212.966000;213.012000;212.962000;213.005000;0 +20260327 025000;213.004000;213.017000;212.985000;212.993000;0 +20260327 025100;212.992000;213.010000;212.986000;212.986000;0 +20260327 025200;212.986000;212.993000;212.972000;212.982000;0 +20260327 025300;212.983000;212.989000;212.977000;212.982000;0 +20260327 025400;212.983000;212.999000;212.974000;212.985000;0 +20260327 025500;212.986000;212.999000;212.963000;212.965000;0 +20260327 025600;212.965000;212.983000;212.959000;212.972000;0 +20260327 025700;212.971000;212.975000;212.951000;212.951000;0 +20260327 025800;212.949000;212.961000;212.930000;212.943000;0 +20260327 025900;212.942000;212.952000;212.932000;212.936000;0 +20260327 030000;212.935000;212.935000;212.883000;212.920000;0 +20260327 030100;212.917000;212.959000;212.899000;212.910000;0 +20260327 030200;212.910000;212.960000;212.900000;212.900000;0 +20260327 030300;212.899000;212.925000;212.887000;212.924000;0 +20260327 030400;212.926000;212.926000;212.883000;212.893000;0 +20260327 030500;212.892000;212.892000;212.830000;212.850000;0 +20260327 030600;212.849000;212.878000;212.849000;212.875000;0 +20260327 030700;212.876000;212.884000;212.859000;212.859000;0 +20260327 030800;212.860000;212.904000;212.860000;212.893000;0 +20260327 030900;212.893000;212.900000;212.875000;212.888000;0 +20260327 031000;212.888000;212.911000;212.877000;212.884000;0 +20260327 031100;212.887000;212.923000;212.880000;212.910000;0 +20260327 031200;212.907000;212.937000;212.902000;212.934000;0 +20260327 031300;212.939000;212.944000;212.916000;212.919000;0 +20260327 031400;212.919000;212.919000;212.894000;212.900000;0 +20260327 031500;212.899000;212.915000;212.870000;212.915000;0 +20260327 031600;212.914000;212.924000;212.899000;212.908000;0 +20260327 031700;212.908000;212.917000;212.883000;212.889000;0 +20260327 031800;212.889000;212.923000;212.888000;212.910000;0 +20260327 031900;212.906000;212.921000;212.900000;212.910000;0 +20260327 032000;212.907000;212.931000;212.902000;212.905000;0 +20260327 032100;212.903000;212.941000;212.901000;212.938000;0 +20260327 032200;212.935000;212.942000;212.895000;212.901000;0 +20260327 032300;212.900000;212.922000;212.887000;212.918000;0 +20260327 032400;212.919000;212.940000;212.910000;212.940000;0 +20260327 032500;212.941000;212.971000;212.938000;212.945000;0 +20260327 032600;212.943000;212.962000;212.936000;212.943000;0 +20260327 032700;212.947000;212.954000;212.936000;212.938000;0 +20260327 032800;212.935000;212.954000;212.917000;212.937000;0 +20260327 032900;212.937000;212.956000;212.932000;212.948000;0 +20260327 033000;212.947000;212.951000;212.921000;212.922000;0 +20260327 033100;212.922000;212.947000;212.897000;212.900000;0 +20260327 033200;212.900000;212.935000;212.900000;212.926000;0 +20260327 033300;212.929000;212.933000;212.903000;212.906000;0 +20260327 033400;212.907000;212.912000;212.866000;212.877000;0 +20260327 033500;212.881000;212.881000;212.835000;212.843000;0 +20260327 033600;212.845000;212.845000;212.814000;212.821000;0 +20260327 033700;212.821000;212.846000;212.804000;212.842000;0 +20260327 033800;212.845000;212.845000;212.809000;212.814000;0 +20260327 033900;212.812000;212.817000;212.790000;212.796000;0 +20260327 034000;212.794000;212.814000;212.783000;212.797000;0 +20260327 034100;212.795000;212.820000;212.791000;212.816000;0 +20260327 034200;212.816000;212.831000;212.748000;212.816000;0 +20260327 034300;212.824000;212.845000;212.805000;212.825000;0 +20260327 034400;212.825000;212.835000;212.814000;212.827000;0 +20260327 034500;212.826000;212.841000;212.817000;212.821000;0 +20260327 034600;212.821000;212.846000;212.808000;212.808000;0 +20260327 034700;212.814000;212.833000;212.790000;212.797000;0 +20260327 034800;212.798000;212.827000;212.794000;212.827000;0 +20260327 034900;212.827000;212.828000;212.788000;212.798000;0 +20260327 035000;212.796000;212.805000;212.766000;212.767000;0 +20260327 035100;212.767000;212.775000;212.733000;212.755000;0 +20260327 035200;212.751000;212.754000;212.717000;212.721000;0 +20260327 035300;212.729000;212.786000;212.725000;212.784000;0 +20260327 035400;212.785000;212.836000;212.779000;212.834000;0 +20260327 035500;212.838000;212.841000;212.807000;212.819000;0 +20260327 035600;212.821000;212.829000;212.808000;212.815000;0 +20260327 035700;212.814000;212.833000;212.812000;212.824000;0 +20260327 035800;212.823000;212.833000;212.805000;212.820000;0 +20260327 035900;212.819000;212.830000;212.799000;212.799000;0 +20260327 040000;212.798000;212.819000;212.785000;212.819000;0 +20260327 040100;212.815000;212.848000;212.811000;212.816000;0 +20260327 040200;212.819000;212.830000;212.804000;212.809000;0 +20260327 040300;212.808000;212.815000;212.786000;212.788000;0 +20260327 040400;212.787000;212.830000;212.787000;212.805000;0 +20260327 040500;212.806000;212.821000;212.782000;212.783000;0 +20260327 040600;212.780000;212.806000;212.780000;212.798000;0 +20260327 040700;212.798000;212.827000;212.783000;212.823000;0 +20260327 040800;212.821000;212.828000;212.813000;212.821000;0 +20260327 040900;212.822000;212.828000;212.801000;212.804000;0 +20260327 041000;212.803000;212.814000;212.780000;212.780000;0 +20260327 041100;212.785000;212.789000;212.752000;212.784000;0 +20260327 041200;212.784000;212.822000;212.784000;212.821000;0 +20260327 041300;212.821000;212.844000;212.809000;212.818000;0 +20260327 041400;212.817000;212.823000;212.789000;212.821000;0 +20260327 041500;212.822000;212.854000;212.812000;212.854000;0 +20260327 041600;212.852000;212.852000;212.823000;212.844000;0 +20260327 041700;212.845000;212.861000;212.839000;212.861000;0 +20260327 041800;212.868000;212.868000;212.833000;212.833000;0 +20260327 041900;212.834000;212.846000;212.804000;212.804000;0 +20260327 042000;212.802000;212.812000;212.759000;212.766000;0 +20260327 042100;212.766000;212.789000;212.747000;212.765000;0 +20260327 042200;212.752000;212.757000;212.712000;212.724000;0 +20260327 042300;212.728000;212.748000;212.709000;212.743000;0 +20260327 042400;212.747000;212.773000;212.744000;212.768000;0 +20260327 042500;212.767000;212.770000;212.726000;212.740000;0 +20260327 042600;212.742000;212.765000;212.734000;212.765000;0 +20260327 042700;212.765000;212.765000;212.736000;212.746000;0 +20260327 042800;212.744000;212.770000;212.743000;212.767000;0 +20260327 042900;212.768000;212.776000;212.764000;212.770000;0 +20260327 043000;212.767000;212.770000;212.725000;212.728000;0 +20260327 043100;212.728000;212.730000;212.699000;212.719000;0 +20260327 043200;212.722000;212.759000;212.721000;212.755000;0 +20260327 043300;212.755000;212.756000;212.722000;212.740000;0 +20260327 043400;212.739000;212.744000;212.716000;212.741000;0 +20260327 043500;212.738000;212.747000;212.728000;212.733000;0 +20260327 043600;212.733000;212.752000;212.731000;212.735000;0 +20260327 043700;212.735000;212.766000;212.719000;212.766000;0 +20260327 043800;212.765000;212.776000;212.739000;212.773000;0 +20260327 043900;212.773000;212.773000;212.759000;212.769000;0 +20260327 044000;212.766000;212.766000;212.700000;212.703000;0 +20260327 044100;212.703000;212.731000;212.703000;212.722000;0 +20260327 044200;212.724000;212.740000;212.715000;212.718000;0 +20260327 044300;212.714000;212.724000;212.710000;212.719000;0 +20260327 044400;212.721000;212.722000;212.693000;212.706000;0 +20260327 044500;212.705000;212.706000;212.665000;212.675000;0 +20260327 044600;212.676000;212.678000;212.647000;212.650000;0 +20260327 044700;212.649000;212.649000;212.620000;212.637000;0 +20260327 044800;212.639000;212.642000;212.629000;212.640000;0 +20260327 044900;212.639000;212.658000;212.635000;212.655000;0 +20260327 045000;212.655000;212.676000;212.631000;212.673000;0 +20260327 045100;212.672000;212.728000;212.672000;212.715000;0 +20260327 045200;212.713000;212.727000;212.708000;212.722000;0 +20260327 045300;212.724000;212.747000;212.720000;212.743000;0 +20260327 045400;212.744000;212.790000;212.744000;212.788000;0 +20260327 045500;212.787000;212.787000;212.768000;212.774000;0 +20260327 045600;212.773000;212.781000;212.766000;212.774000;0 +20260327 045700;212.774000;212.774000;212.703000;212.722000;0 +20260327 045800;212.717000;212.719000;212.694000;212.704000;0 +20260327 045900;212.704000;212.726000;212.691000;212.725000;0 +20260327 050000;212.726000;212.740000;212.718000;212.740000;0 +20260327 050100;212.742000;212.760000;212.732000;212.744000;0 +20260327 050200;212.743000;212.766000;212.727000;212.747000;0 +20260327 050300;212.746000;212.757000;212.743000;212.750000;0 +20260327 050400;212.747000;212.764000;212.745000;212.764000;0 +20260327 050500;212.760000;212.761000;212.732000;212.738000;0 +20260327 050600;212.738000;212.778000;212.738000;212.768000;0 +20260327 050700;212.769000;212.779000;212.753000;212.761000;0 +20260327 050800;212.759000;212.803000;212.759000;212.773000;0 +20260327 050900;212.776000;212.777000;212.741000;212.748000;0 +20260327 051000;212.749000;212.754000;212.710000;212.750000;0 +20260327 051100;212.751000;212.752000;212.727000;212.743000;0 +20260327 051200;212.741000;212.748000;212.722000;212.722000;0 +20260327 051300;212.724000;212.730000;212.676000;212.679000;0 +20260327 051400;212.680000;212.703000;212.667000;212.701000;0 +20260327 051500;212.700000;212.718000;212.693000;212.700000;0 +20260327 051600;212.700000;212.724000;212.696000;212.708000;0 +20260327 051700;212.709000;212.714000;212.698000;212.705000;0 +20260327 051800;212.706000;212.724000;212.701000;212.720000;0 +20260327 051900;212.726000;212.726000;212.710000;212.721000;0 +20260327 052000;212.723000;212.733000;212.713000;212.732000;0 +20260327 052100;212.733000;212.742000;212.716000;212.719000;0 +20260327 052200;212.717000;212.748000;212.711000;212.733000;0 +20260327 052300;212.732000;212.751000;212.728000;212.739000;0 +20260327 052400;212.741000;212.762000;212.741000;212.759000;0 +20260327 052500;212.758000;212.774000;212.757000;212.758000;0 +20260327 052600;212.754000;212.771000;212.746000;212.765000;0 +20260327 052700;212.765000;212.771000;212.751000;212.768000;0 +20260327 052800;212.766000;212.790000;212.761000;212.785000;0 +20260327 052900;212.784000;212.791000;212.760000;212.773000;0 +20260327 053000;212.773000;212.782000;212.766000;212.779000;0 +20260327 053100;212.775000;212.793000;212.770000;212.770000;0 +20260327 053200;212.770000;212.802000;212.760000;212.781000;0 +20260327 053300;212.781000;212.794000;212.776000;212.793000;0 +20260327 053400;212.792000;212.804000;212.783000;212.801000;0 +20260327 053500;212.801000;212.801000;212.778000;212.784000;0 +20260327 053600;212.788000;212.795000;212.779000;212.786000;0 +20260327 053700;212.785000;212.792000;212.773000;212.780000;0 +20260327 053800;212.782000;212.782000;212.757000;212.761000;0 +20260327 053900;212.759000;212.762000;212.727000;212.731000;0 +20260327 054000;212.730000;212.745000;212.697000;212.729000;0 +20260327 054100;212.725000;212.749000;212.718000;212.749000;0 +20260327 054200;212.749000;212.770000;212.746000;212.747000;0 +20260327 054300;212.744000;212.774000;212.744000;212.771000;0 +20260327 054400;212.769000;212.769000;212.743000;212.755000;0 +20260327 054500;212.751000;212.757000;212.736000;212.744000;0 +20260327 054600;212.739000;212.762000;212.735000;212.750000;0 +20260327 054700;212.752000;212.761000;212.741000;212.746000;0 +20260327 054800;212.748000;212.759000;212.737000;212.753000;0 +20260327 054900;212.750000;212.757000;212.728000;212.729000;0 +20260327 055000;212.724000;212.727000;212.710000;212.717000;0 +20260327 055100;212.717000;212.724000;212.706000;212.706000;0 +20260327 055200;212.706000;212.709000;212.699000;212.705000;0 +20260327 055300;212.703000;212.713000;212.697000;212.709000;0 +20260327 055400;212.713000;212.721000;212.702000;212.705000;0 +20260327 055500;212.705000;212.732000;212.688000;212.720000;0 +20260327 055600;212.721000;212.753000;212.721000;212.734000;0 +20260327 055700;212.732000;212.732000;212.704000;212.706000;0 +20260327 055800;212.706000;212.714000;212.694000;212.709000;0 +20260327 055900;212.714000;212.721000;212.710000;212.715000;0 +20260327 060000;212.717000;212.725000;212.701000;212.706000;0 +20260327 060100;212.705000;212.713000;212.694000;212.713000;0 +20260327 060200;212.714000;212.714000;212.689000;212.689000;0 +20260327 060300;212.692000;212.708000;212.689000;212.691000;0 +20260327 060400;212.689000;212.696000;212.676000;212.677000;0 +20260327 060500;212.672000;212.689000;212.667000;212.676000;0 +20260327 060600;212.677000;212.689000;212.671000;212.682000;0 +20260327 060700;212.685000;212.686000;212.677000;212.682000;0 +20260327 060800;212.683000;212.686000;212.669000;212.680000;0 +20260327 060900;212.678000;212.699000;212.665000;212.670000;0 +20260327 061000;212.669000;212.677000;212.665000;212.667000;0 +20260327 061100;212.667000;212.681000;212.654000;212.656000;0 +20260327 061200;212.658000;212.668000;212.650000;212.667000;0 +20260327 061300;212.667000;212.672000;212.650000;212.659000;0 +20260327 061400;212.661000;212.669000;212.654000;212.656000;0 +20260327 061500;212.660000;212.669000;212.646000;212.667000;0 +20260327 061600;212.667000;212.669000;212.655000;212.666000;0 +20260327 061700;212.666000;212.666000;212.650000;212.663000;0 +20260327 061800;212.663000;212.669000;212.648000;212.655000;0 +20260327 061900;212.656000;212.663000;212.649000;212.651000;0 +20260327 062000;212.649000;212.681000;212.644000;212.658000;0 +20260327 062100;212.655000;212.658000;212.640000;212.644000;0 +20260327 062200;212.645000;212.665000;212.642000;212.665000;0 +20260327 062300;212.664000;212.668000;212.657000;212.666000;0 +20260327 062400;212.666000;212.673000;212.655000;212.665000;0 +20260327 062500;212.664000;212.666000;212.638000;212.652000;0 +20260327 062600;212.655000;212.655000;212.635000;212.648000;0 +20260327 062700;212.648000;212.665000;212.648000;212.657000;0 +20260327 062800;212.656000;212.662000;212.647000;212.658000;0 +20260327 062900;212.658000;212.658000;212.626000;212.630000;0 +20260327 063000;212.631000;212.639000;212.611000;212.614000;0 +20260327 063100;212.613000;212.628000;212.613000;212.624000;0 +20260327 063200;212.621000;212.631000;212.618000;212.622000;0 +20260327 063300;212.623000;212.630000;212.610000;212.618000;0 +20260327 063400;212.619000;212.638000;212.616000;212.632000;0 +20260327 063500;212.631000;212.643000;212.629000;212.633000;0 +20260327 063600;212.632000;212.644000;212.618000;212.618000;0 +20260327 063700;212.619000;212.619000;212.601000;212.607000;0 +20260327 063800;212.607000;212.607000;212.582000;212.587000;0 +20260327 063900;212.584000;212.613000;212.578000;212.604000;0 +20260327 064000;212.605000;212.608000;212.569000;212.569000;0 +20260327 064100;212.568000;212.574000;212.554000;212.557000;0 +20260327 064200;212.553000;212.566000;212.527000;212.538000;0 +20260327 064300;212.538000;212.544000;212.519000;212.528000;0 +20260327 064400;212.528000;212.540000;212.513000;212.513000;0 +20260327 064500;212.515000;212.515000;212.490000;212.495000;0 +20260327 064600;212.496000;212.498000;212.457000;212.461000;0 +20260327 064700;212.467000;212.474000;212.446000;212.449000;0 +20260327 064800;212.451000;212.458000;212.418000;212.430000;0 +20260327 064900;212.426000;212.435000;212.416000;212.418000;0 +20260327 065000;212.416000;212.416000;212.380000;212.382000;0 +20260327 065100;212.383000;212.399000;212.367000;212.371000;0 +20260327 065200;212.372000;212.411000;212.371000;212.408000;0 +20260327 065300;212.407000;212.412000;212.380000;212.411000;0 +20260327 065400;212.411000;212.434000;212.405000;212.428000;0 +20260327 065500;212.428000;212.446000;212.402000;212.405000;0 +20260327 065600;212.405000;212.405000;212.344000;212.347000;0 +20260327 065700;212.347000;212.372000;212.337000;212.341000;0 +20260327 065800;212.340000;212.376000;212.336000;212.363000;0 +20260327 065900;212.361000;212.372000;212.326000;212.334000;0 +20260327 070000;212.332000;212.338000;212.291000;212.305000;0 +20260327 070100;212.301000;212.307000;212.275000;212.279000;0 +20260327 070200;212.281000;212.283000;212.257000;212.257000;0 +20260327 070300;212.253000;212.303000;212.228000;212.286000;0 +20260327 070400;212.286000;212.286000;212.241000;212.253000;0 +20260327 070500;212.253000;212.272000;212.252000;212.259000;0 +20260327 070600;212.263000;212.272000;212.229000;212.234000;0 +20260327 070700;212.235000;212.273000;212.230000;212.266000;0 +20260327 070800;212.264000;212.278000;212.253000;212.257000;0 +20260327 070900;212.257000;212.261000;212.230000;212.234000;0 +20260327 071000;212.234000;212.249000;212.224000;212.240000;0 +20260327 071100;212.242000;212.279000;212.241000;212.269000;0 +20260327 071200;212.271000;212.318000;212.271000;212.313000;0 +20260327 071300;212.312000;212.314000;212.280000;212.290000;0 +20260327 071400;212.290000;212.297000;212.278000;212.290000;0 +20260327 071500;212.294000;212.294000;212.274000;212.284000;0 +20260327 071600;212.288000;212.301000;212.261000;212.266000;0 +20260327 071700;212.264000;212.268000;212.237000;212.262000;0 +20260327 071800;212.264000;212.305000;212.260000;212.297000;0 +20260327 071900;212.296000;212.324000;212.291000;212.319000;0 +20260327 072000;212.322000;212.331000;212.294000;212.299000;0 +20260327 072100;212.299000;212.317000;212.287000;212.301000;0 +20260327 072200;212.301000;212.314000;212.292000;212.305000;0 +20260327 072300;212.304000;212.318000;212.290000;212.290000;0 +20260327 072400;212.292000;212.328000;212.292000;212.316000;0 +20260327 072500;212.316000;212.317000;212.298000;212.298000;0 +20260327 072600;212.296000;212.329000;212.289000;212.326000;0 +20260327 072700;212.325000;212.333000;212.310000;212.328000;0 +20260327 072800;212.325000;212.332000;212.311000;212.325000;0 +20260327 072900;212.330000;212.333000;212.311000;212.316000;0 +20260327 073000;212.315000;212.317000;212.299000;212.301000;0 +20260327 073100;212.301000;212.352000;212.301000;212.348000;0 +20260327 073200;212.345000;212.352000;212.338000;212.340000;0 +20260327 073300;212.340000;212.343000;212.311000;212.325000;0 +20260327 073400;212.325000;212.338000;212.253000;212.266000;0 +20260327 073500;212.266000;212.284000;212.251000;212.265000;0 +20260327 073600;212.264000;212.294000;212.258000;212.289000;0 +20260327 073700;212.281000;212.289000;212.265000;212.285000;0 +20260327 073800;212.286000;212.299000;212.273000;212.273000;0 +20260327 073900;212.284000;212.319000;212.283000;212.311000;0 +20260327 074000;212.307000;212.308000;212.269000;212.288000;0 +20260327 074100;212.285000;212.296000;212.271000;212.285000;0 +20260327 074200;212.286000;212.288000;212.241000;212.256000;0 +20260327 074300;212.252000;212.269000;212.231000;212.264000;0 +20260327 074400;212.265000;212.296000;212.258000;212.292000;0 +20260327 074500;212.292000;212.295000;212.272000;212.283000;0 +20260327 074600;212.279000;212.289000;212.257000;212.278000;0 +20260327 074700;212.279000;212.279000;212.252000;212.279000;0 +20260327 074800;212.279000;212.282000;212.265000;212.269000;0 +20260327 074900;212.269000;212.275000;212.252000;212.260000;0 +20260327 075000;212.260000;212.290000;212.251000;212.283000;0 +20260327 075100;212.286000;212.338000;212.286000;212.338000;0 +20260327 075200;212.338000;212.363000;212.321000;212.361000;0 +20260327 075300;212.361000;212.365000;212.328000;212.346000;0 +20260327 075400;212.346000;212.358000;212.327000;212.334000;0 +20260327 075500;212.334000;212.340000;212.307000;212.320000;0 +20260327 075600;212.319000;212.328000;212.285000;212.292000;0 +20260327 075700;212.296000;212.314000;212.293000;212.303000;0 +20260327 075800;212.300000;212.359000;212.300000;212.338000;0 +20260327 075900;212.337000;212.364000;212.332000;212.339000;0 +20260327 080000;212.338000;212.379000;212.338000;212.362000;0 +20260327 080100;212.361000;212.379000;212.355000;212.371000;0 +20260327 080200;212.366000;212.373000;212.351000;212.359000;0 +20260327 080300;212.357000;212.367000;212.333000;212.340000;0 +20260327 080400;212.338000;212.369000;212.338000;212.366000;0 +20260327 080500;212.364000;212.376000;212.351000;212.374000;0 +20260327 080600;212.374000;212.376000;212.340000;212.348000;0 +20260327 080700;212.349000;212.361000;212.337000;212.345000;0 +20260327 080800;212.348000;212.358000;212.337000;212.342000;0 +20260327 080900;212.340000;212.369000;212.338000;212.349000;0 +20260327 081000;212.350000;212.352000;212.321000;212.326000;0 +20260327 081100;212.326000;212.341000;212.319000;212.323000;0 +20260327 081200;212.323000;212.324000;212.297000;212.309000;0 +20260327 081300;212.307000;212.319000;212.295000;212.317000;0 +20260327 081400;212.317000;212.330000;212.311000;212.323000;0 +20260327 081500;212.322000;212.327000;212.296000;212.319000;0 +20260327 081600;212.320000;212.323000;212.304000;212.314000;0 +20260327 081700;212.317000;212.334000;212.313000;212.317000;0 +20260327 081800;212.318000;212.355000;212.310000;212.349000;0 +20260327 081900;212.351000;212.351000;212.312000;212.314000;0 +20260327 082000;212.315000;212.334000;212.306000;212.319000;0 +20260327 082100;212.318000;212.348000;212.317000;212.327000;0 +20260327 082200;212.328000;212.382000;212.315000;212.368000;0 +20260327 082300;212.371000;212.406000;212.364000;212.395000;0 +20260327 082400;212.393000;212.457000;212.381000;212.452000;0 +20260327 082500;212.451000;212.475000;212.448000;212.448000;0 +20260327 082600;212.448000;212.448000;212.419000;212.427000;0 +20260327 082700;212.426000;212.464000;212.419000;212.464000;0 +20260327 082800;212.465000;212.491000;212.454000;212.488000;0 +20260327 082900;212.489000;212.505000;212.486000;212.502000;0 +20260327 083000;212.506000;212.547000;212.498000;212.523000;0 +20260327 083100;212.522000;212.527000;212.491000;212.508000;0 +20260327 083200;212.506000;212.518000;212.479000;212.512000;0 +20260327 083300;212.512000;212.519000;212.486000;212.486000;0 +20260327 083400;212.482000;212.490000;212.456000;212.490000;0 +20260327 083500;212.491000;212.521000;212.486000;212.506000;0 +20260327 083600;212.504000;212.530000;212.492000;212.495000;0 +20260327 083700;212.496000;212.512000;212.473000;212.508000;0 +20260327 083800;212.506000;212.540000;212.501000;212.540000;0 +20260327 083900;212.537000;212.554000;212.523000;212.550000;0 +20260327 084000;212.546000;212.578000;212.546000;212.555000;0 +20260327 084100;212.557000;212.569000;212.537000;212.568000;0 +20260327 084200;212.569000;212.590000;212.560000;212.589000;0 +20260327 084300;212.590000;212.637000;212.577000;212.632000;0 +20260327 084400;212.630000;212.681000;212.629000;212.652000;0 +20260327 084500;212.650000;212.684000;212.643000;212.666000;0 +20260327 084600;212.664000;212.686000;212.645000;212.665000;0 +20260327 084700;212.660000;212.664000;212.629000;212.644000;0 +20260327 084800;212.641000;212.673000;212.634000;212.660000;0 +20260327 084900;212.660000;212.685000;212.649000;212.673000;0 +20260327 085000;212.676000;212.685000;212.653000;212.655000;0 +20260327 085100;212.658000;212.669000;212.628000;212.663000;0 +20260327 085200;212.662000;212.687000;212.648000;212.655000;0 +20260327 085300;212.654000;212.684000;212.636000;212.655000;0 +20260327 085400;212.655000;212.664000;212.603000;212.603000;0 +20260327 085500;212.603000;212.628000;212.586000;212.611000;0 +20260327 085600;212.610000;212.616000;212.582000;212.611000;0 +20260327 085700;212.612000;212.613000;212.576000;212.576000;0 +20260327 085800;212.577000;212.578000;212.547000;212.552000;0 +20260327 085900;212.553000;212.612000;212.553000;212.598000;0 +20260327 090000;212.597000;212.643000;212.591000;212.638000;0 +20260327 090100;212.635000;212.668000;212.632000;212.643000;0 +20260327 090200;212.646000;212.681000;212.620000;212.671000;0 +20260327 090300;212.669000;212.694000;212.660000;212.686000;0 +20260327 090400;212.690000;212.725000;212.690000;212.724000;0 +20260327 090500;212.728000;212.755000;212.717000;212.722000;0 +20260327 090600;212.724000;212.732000;212.706000;212.718000;0 +20260327 090700;212.718000;212.776000;212.704000;212.751000;0 +20260327 090800;212.749000;212.758000;212.727000;212.749000;0 +20260327 090900;212.748000;212.771000;212.729000;212.754000;0 +20260327 091000;212.750000;212.790000;212.741000;212.759000;0 +20260327 091100;212.756000;212.824000;212.756000;212.805000;0 +20260327 091200;212.805000;212.843000;212.800000;212.802000;0 +20260327 091300;212.800000;212.809000;212.751000;212.757000;0 +20260327 091400;212.753000;212.803000;212.752000;212.791000;0 +20260327 091500;212.791000;212.815000;212.768000;212.809000;0 +20260327 091600;212.812000;212.832000;212.795000;212.802000;0 +20260327 091700;212.802000;212.831000;212.781000;212.831000;0 +20260327 091800;212.829000;212.830000;212.783000;212.784000;0 +20260327 091900;212.789000;212.801000;212.778000;212.793000;0 +20260327 092000;212.792000;212.807000;212.781000;212.794000;0 +20260327 092100;212.794000;212.796000;212.769000;212.787000;0 +20260327 092200;212.787000;212.808000;212.754000;212.769000;0 +20260327 092300;212.772000;212.798000;212.762000;212.789000;0 +20260327 092400;212.789000;212.830000;212.781000;212.830000;0 +20260327 092500;212.830000;212.853000;212.827000;212.834000;0 +20260327 092600;212.832000;212.836000;212.790000;212.791000;0 +20260327 092700;212.795000;212.823000;212.790000;212.802000;0 +20260327 092800;212.801000;212.837000;212.796000;212.834000;0 +20260327 092900;212.834000;212.857000;212.823000;212.838000;0 +20260327 093000;212.832000;212.850000;212.796000;212.818000;0 +20260327 093100;212.818000;212.834000;212.804000;212.829000;0 +20260327 093200;212.829000;212.829000;212.800000;212.806000;0 +20260327 093300;212.805000;212.847000;212.780000;212.842000;0 +20260327 093400;212.844000;212.861000;212.821000;212.861000;0 +20260327 093500;212.862000;212.866000;212.824000;212.835000;0 +20260327 093600;212.835000;212.859000;212.826000;212.841000;0 +20260327 093700;212.848000;212.869000;212.842000;212.866000;0 +20260327 093800;212.865000;212.869000;212.824000;212.847000;0 +20260327 093900;212.847000;212.866000;212.843000;212.853000;0 +20260327 094000;212.858000;212.861000;212.839000;212.842000;0 +20260327 094100;212.844000;212.844000;212.819000;212.835000;0 +20260327 094200;212.834000;212.846000;212.824000;212.832000;0 +20260327 094300;212.831000;212.833000;212.810000;212.822000;0 +20260327 094400;212.822000;212.837000;212.807000;212.810000;0 +20260327 094500;212.809000;212.842000;212.803000;212.828000;0 +20260327 094600;212.829000;212.846000;212.802000;212.846000;0 +20260327 094700;212.846000;212.860000;212.825000;212.860000;0 +20260327 094800;212.865000;212.878000;212.845000;212.876000;0 +20260327 094900;212.877000;212.893000;212.860000;212.882000;0 +20260327 095000;212.884000;212.888000;212.860000;212.883000;0 +20260327 095100;212.885000;212.891000;212.865000;212.868000;0 +20260327 095200;212.867000;212.878000;212.849000;212.859000;0 +20260327 095300;212.857000;212.893000;212.852000;212.874000;0 +20260327 095400;212.876000;212.888000;212.845000;212.845000;0 +20260327 095500;212.847000;212.891000;212.847000;212.888000;0 +20260327 095600;212.887000;212.926000;212.870000;212.897000;0 +20260327 095700;212.893000;212.895000;212.876000;212.887000;0 +20260327 095800;212.882000;212.887000;212.860000;212.872000;0 +20260327 095900;212.871000;212.878000;212.838000;212.840000;0 +20260327 100000;212.839000;212.888000;212.839000;212.885000;0 +20260327 100100;212.886000;212.915000;212.878000;212.911000;0 +20260327 100200;212.911000;212.919000;212.898000;212.912000;0 +20260327 100300;212.913000;212.917000;212.892000;212.901000;0 +20260327 100400;212.903000;212.911000;212.862000;212.874000;0 +20260327 100500;212.874000;212.891000;212.863000;212.884000;0 +20260327 100600;212.885000;212.904000;212.868000;212.874000;0 +20260327 100700;212.875000;212.904000;212.871000;212.880000;0 +20260327 100800;212.880000;212.905000;212.870000;212.905000;0 +20260327 100900;212.906000;212.914000;212.881000;212.900000;0 +20260327 101000;212.901000;212.914000;212.890000;212.906000;0 +20260327 101100;212.905000;212.915000;212.883000;212.892000;0 +20260327 101200;212.887000;212.908000;212.882000;212.901000;0 +20260327 101300;212.899000;212.904000;212.875000;212.885000;0 +20260327 101400;212.886000;212.895000;212.871000;212.883000;0 +20260327 101500;212.887000;212.903000;212.881000;212.894000;0 +20260327 101600;212.893000;212.909000;212.881000;212.895000;0 +20260327 101700;212.897000;212.923000;212.848000;212.852000;0 +20260327 101800;212.854000;212.897000;212.852000;212.864000;0 +20260327 101900;212.864000;212.875000;212.840000;212.849000;0 +20260327 102000;212.849000;212.866000;212.808000;212.831000;0 +20260327 102100;212.831000;212.846000;212.811000;212.840000;0 +20260327 102200;212.841000;212.855000;212.814000;212.818000;0 +20260327 102300;212.818000;212.922000;212.816000;212.918000;0 +20260327 102400;212.917000;212.937000;212.851000;212.857000;0 +20260327 102500;212.858000;212.909000;212.847000;212.906000;0 +20260327 102600;212.904000;212.913000;212.893000;212.909000;0 +20260327 102700;212.912000;212.940000;212.889000;212.935000;0 +20260327 102800;212.937000;212.947000;212.907000;212.924000;0 +20260327 102900;212.925000;212.929000;212.910000;212.922000;0 +20260327 103000;212.922000;212.929000;212.888000;212.911000;0 +20260327 103100;212.906000;212.907000;212.878000;212.879000;0 +20260327 103200;212.883000;212.932000;212.870000;212.905000;0 +20260327 103300;212.907000;212.949000;212.900000;212.923000;0 +20260327 103400;212.923000;212.946000;212.914000;212.945000;0 +20260327 103500;212.945000;212.966000;212.925000;212.934000;0 +20260327 103600;212.933000;212.937000;212.902000;212.916000;0 +20260327 103700;212.916000;212.947000;212.903000;212.938000;0 +20260327 103800;212.939000;212.945000;212.911000;212.911000;0 +20260327 103900;212.912000;212.919000;212.869000;212.878000;0 +20260327 104000;212.877000;212.877000;212.850000;212.851000;0 +20260327 104100;212.858000;212.895000;212.857000;212.888000;0 +20260327 104200;212.887000;212.903000;212.876000;212.877000;0 +20260327 104300;212.876000;212.892000;212.865000;212.867000;0 +20260327 104400;212.870000;212.880000;212.865000;212.877000;0 +20260327 104500;212.879000;212.901000;212.871000;212.890000;0 +20260327 104600;212.891000;212.891000;212.825000;212.855000;0 +20260327 104700;212.850000;212.873000;212.830000;212.832000;0 +20260327 104800;212.831000;212.860000;212.825000;212.829000;0 +20260327 104900;212.830000;212.847000;212.821000;212.825000;0 +20260327 105000;212.825000;212.855000;212.806000;212.806000;0 +20260327 105100;212.810000;212.818000;212.799000;212.802000;0 +20260327 105200;212.800000;212.801000;212.746000;212.780000;0 +20260327 105300;212.781000;212.783000;212.742000;212.768000;0 +20260327 105400;212.769000;212.800000;212.768000;212.785000;0 +20260327 105500;212.786000;212.786000;212.718000;212.730000;0 +20260327 105600;212.727000;212.738000;212.632000;212.632000;0 +20260327 105700;212.633000;212.754000;212.563000;212.720000;0 +20260327 105800;212.719000;212.825000;212.718000;212.800000;0 +20260327 105900;212.799000;212.886000;212.787000;212.867000;0 +20260327 110000;212.871000;212.888000;212.824000;212.849000;0 +20260327 110100;212.849000;213.006000;212.822000;212.935000;0 +20260327 110200;212.942000;212.968000;212.915000;212.927000;0 +20260327 110300;212.924000;212.933000;212.903000;212.916000;0 +20260327 110400;212.914000;212.927000;212.897000;212.906000;0 +20260327 110500;212.907000;212.923000;212.901000;212.902000;0 +20260327 110600;212.901000;212.939000;212.882000;212.934000;0 +20260327 110700;212.934000;212.934000;212.878000;212.884000;0 +20260327 110800;212.885000;212.897000;212.862000;212.863000;0 +20260327 110900;212.862000;212.887000;212.855000;212.860000;0 +20260327 111000;212.860000;212.865000;212.820000;212.841000;0 +20260327 111100;212.844000;212.844000;212.796000;212.796000;0 +20260327 111200;212.798000;212.821000;212.794000;212.810000;0 +20260327 111300;212.812000;212.832000;212.796000;212.802000;0 +20260327 111400;212.795000;212.827000;212.791000;212.802000;0 +20260327 111500;212.803000;212.803000;212.779000;212.796000;0 +20260327 111600;212.797000;212.814000;212.789000;212.799000;0 +20260327 111700;212.798000;212.805000;212.777000;212.790000;0 +20260327 111800;212.785000;212.798000;212.770000;212.786000;0 +20260327 111900;212.786000;212.824000;212.786000;212.807000;0 +20260327 112000;212.808000;212.851000;212.806000;212.847000;0 +20260327 112100;212.843000;212.852000;212.822000;212.837000;0 +20260327 112200;212.840000;212.844000;212.811000;212.818000;0 +20260327 112300;212.818000;212.822000;212.795000;212.821000;0 +20260327 112400;212.821000;212.821000;212.790000;212.797000;0 +20260327 112500;212.802000;212.821000;212.796000;212.797000;0 +20260327 112600;212.796000;212.816000;212.789000;212.796000;0 +20260327 112700;212.796000;212.818000;212.789000;212.810000;0 +20260327 112800;212.809000;212.810000;212.730000;212.746000;0 +20260327 112900;212.745000;212.775000;212.733000;212.770000;0 +20260327 113000;212.765000;212.770000;212.705000;212.713000;0 +20260327 113100;212.714000;212.739000;212.691000;212.717000;0 +20260327 113200;212.716000;212.720000;212.695000;212.707000;0 +20260327 113300;212.709000;212.711000;212.687000;212.694000;0 +20260327 113400;212.694000;212.694000;212.636000;212.637000;0 +20260327 113500;212.636000;212.651000;212.624000;212.647000;0 +20260327 113600;212.654000;212.676000;212.653000;212.662000;0 +20260327 113700;212.662000;212.672000;212.632000;212.632000;0 +20260327 113800;212.630000;212.639000;212.610000;212.617000;0 +20260327 113900;212.620000;212.640000;212.588000;212.590000;0 +20260327 114000;212.587000;212.626000;212.567000;212.584000;0 +20260327 114100;212.587000;212.618000;212.582000;212.594000;0 +20260327 114200;212.596000;212.632000;212.586000;212.610000;0 +20260327 114300;212.606000;212.639000;212.584000;212.635000;0 +20260327 114400;212.631000;212.665000;212.627000;212.663000;0 +20260327 114500;212.663000;212.693000;212.651000;212.655000;0 +20260327 114600;212.654000;212.678000;212.639000;212.674000;0 +20260327 114700;212.669000;212.688000;212.669000;212.681000;0 +20260327 114800;212.680000;212.704000;212.675000;212.686000;0 +20260327 114900;212.691000;212.704000;212.680000;212.693000;0 +20260327 115000;212.691000;212.706000;212.681000;212.688000;0 +20260327 115100;212.686000;212.704000;212.677000;212.679000;0 +20260327 115200;212.682000;212.687000;212.651000;212.656000;0 +20260327 115300;212.652000;212.672000;212.646000;212.650000;0 +20260327 115400;212.651000;212.658000;212.629000;212.637000;0 +20260327 115500;212.640000;212.655000;212.624000;212.624000;0 +20260327 115600;212.624000;212.636000;212.623000;212.631000;0 +20260327 115700;212.631000;212.631000;212.601000;212.615000;0 +20260327 115800;212.615000;212.628000;212.596000;212.600000;0 +20260327 115900;212.597000;212.618000;212.582000;212.612000;0 +20260327 120000;212.612000;212.635000;212.611000;212.617000;0 +20260327 120100;212.621000;212.628000;212.598000;212.608000;0 +20260327 120200;212.608000;212.628000;212.587000;212.617000;0 +20260327 120300;212.618000;212.637000;212.611000;212.628000;0 +20260327 120400;212.628000;212.668000;212.628000;212.653000;0 +20260327 120500;212.654000;212.704000;212.654000;212.687000;0 +20260327 120600;212.686000;212.704000;212.647000;212.701000;0 +20260327 120700;212.702000;212.719000;212.670000;212.692000;0 +20260327 120800;212.687000;212.693000;212.667000;212.675000;0 +20260327 120900;212.671000;212.682000;212.663000;212.675000;0 +20260327 121000;212.672000;212.677000;212.628000;212.638000;0 +20260327 121100;212.636000;212.663000;212.631000;212.646000;0 +20260327 121200;212.645000;212.648000;212.611000;212.622000;0 +20260327 121300;212.620000;212.636000;212.611000;212.628000;0 +20260327 121400;212.628000;212.667000;212.625000;212.649000;0 +20260327 121500;212.651000;212.665000;212.630000;212.642000;0 +20260327 121600;212.642000;212.684000;212.636000;212.681000;0 +20260327 121700;212.681000;212.681000;212.649000;212.665000;0 +20260327 121800;212.665000;212.666000;212.644000;212.655000;0 +20260327 121900;212.656000;212.681000;212.636000;212.681000;0 +20260327 122000;212.677000;212.688000;212.655000;212.667000;0 +20260327 122100;212.665000;212.692000;212.665000;212.668000;0 +20260327 122200;212.673000;212.675000;212.648000;212.672000;0 +20260327 122300;212.672000;212.711000;212.672000;212.708000;0 +20260327 122400;212.707000;212.756000;212.705000;212.755000;0 +20260327 122500;212.755000;212.779000;212.751000;212.769000;0 +20260327 122600;212.767000;212.769000;212.734000;212.744000;0 +20260327 122700;212.744000;212.756000;212.727000;212.736000;0 +20260327 122800;212.736000;212.737000;212.702000;212.715000;0 +20260327 122900;212.717000;212.738000;212.709000;212.727000;0 +20260327 123000;212.728000;212.735000;212.713000;212.727000;0 +20260327 123100;212.727000;212.743000;212.725000;212.728000;0 +20260327 123200;212.725000;212.739000;212.717000;212.718000;0 +20260327 123300;212.717000;212.738000;212.706000;212.710000;0 +20260327 123400;212.709000;212.720000;212.695000;212.702000;0 +20260327 123500;212.701000;212.713000;212.689000;212.693000;0 +20260327 123600;212.695000;212.706000;212.663000;212.663000;0 +20260327 123700;212.665000;212.691000;212.659000;212.683000;0 +20260327 123800;212.684000;212.685000;212.666000;212.672000;0 +20260327 123900;212.672000;212.690000;212.670000;212.690000;0 +20260327 124000;212.690000;212.694000;212.677000;212.682000;0 +20260327 124100;212.681000;212.691000;212.674000;212.690000;0 +20260327 124200;212.690000;212.712000;212.683000;212.702000;0 +20260327 124300;212.699000;212.699000;212.652000;212.658000;0 +20260327 124400;212.662000;212.670000;212.622000;212.667000;0 +20260327 124500;212.670000;212.690000;212.668000;212.681000;0 +20260327 124600;212.682000;212.690000;212.667000;212.675000;0 +20260327 124700;212.675000;212.698000;212.664000;212.676000;0 +20260327 124800;212.674000;212.676000;212.661000;212.662000;0 +20260327 124900;212.660000;212.680000;212.652000;212.680000;0 +20260327 125000;212.678000;212.689000;212.669000;212.677000;0 +20260327 125100;212.676000;212.704000;212.676000;212.691000;0 +20260327 125200;212.692000;212.707000;212.686000;212.700000;0 +20260327 125300;212.701000;212.701000;212.672000;212.686000;0 +20260327 125400;212.683000;212.705000;212.681000;212.703000;0 +20260327 125500;212.702000;212.716000;212.698000;212.713000;0 +20260327 125600;212.717000;212.717000;212.697000;212.701000;0 +20260327 125700;212.703000;212.722000;212.698000;212.717000;0 +20260327 125800;212.713000;212.731000;212.704000;212.727000;0 +20260327 125900;212.728000;212.734000;212.713000;212.721000;0 +20260327 130000;212.722000;212.734000;212.713000;212.725000;0 +20260327 130100;212.724000;212.724000;212.700000;212.710000;0 +20260327 130200;212.709000;212.716000;212.696000;212.701000;0 +20260327 130300;212.701000;212.703000;212.690000;212.701000;0 +20260327 130400;212.701000;212.711000;212.689000;212.709000;0 +20260327 130500;212.710000;212.719000;212.704000;212.704000;0 +20260327 130600;212.701000;212.716000;212.694000;212.695000;0 +20260327 130700;212.699000;212.704000;212.685000;212.688000;0 +20260327 130800;212.689000;212.691000;212.679000;212.681000;0 +20260327 130900;212.681000;212.717000;212.681000;212.713000;0 +20260327 131000;212.714000;212.731000;212.708000;212.727000;0 +20260327 131100;212.725000;212.744000;212.716000;212.742000;0 +20260327 131200;212.743000;212.752000;212.723000;212.752000;0 +20260327 131300;212.755000;212.764000;212.744000;212.753000;0 +20260327 131400;212.749000;212.773000;212.746000;212.762000;0 +20260327 131500;212.763000;212.774000;212.745000;212.756000;0 +20260327 131600;212.753000;212.787000;212.739000;212.773000;0 +20260327 131700;212.772000;212.775000;212.753000;212.756000;0 +20260327 131800;212.754000;212.770000;212.753000;212.754000;0 +20260327 131900;212.756000;212.770000;212.754000;212.766000;0 +20260327 132000;212.769000;212.774000;212.759000;212.764000;0 +20260327 132100;212.765000;212.768000;212.748000;212.750000;0 +20260327 132200;212.748000;212.755000;212.742000;212.754000;0 +20260327 132300;212.753000;212.760000;212.746000;212.754000;0 +20260327 132400;212.752000;212.767000;212.744000;212.767000;0 +20260327 132500;212.767000;212.777000;212.747000;212.777000;0 +20260327 132600;212.775000;212.781000;212.757000;212.760000;0 +20260327 132700;212.761000;212.778000;212.754000;212.766000;0 +20260327 132800;212.769000;212.795000;212.766000;212.794000;0 +20260327 132900;212.792000;212.795000;212.777000;212.788000;0 +20260327 133000;212.787000;212.796000;212.776000;212.780000;0 +20260327 133100;212.778000;212.785000;212.769000;212.778000;0 +20260327 133200;212.779000;212.789000;212.772000;212.789000;0 +20260327 133300;212.789000;212.793000;212.761000;212.770000;0 +20260327 133400;212.772000;212.772000;212.737000;212.743000;0 +20260327 133500;212.742000;212.746000;212.732000;212.739000;0 +20260327 133600;212.740000;212.768000;212.740000;212.762000;0 +20260327 133700;212.764000;212.786000;212.764000;212.773000;0 +20260327 133800;212.772000;212.776000;212.753000;212.756000;0 +20260327 133900;212.756000;212.763000;212.742000;212.750000;0 +20260327 134000;212.751000;212.756000;212.741000;212.743000;0 +20260327 134100;212.744000;212.760000;212.741000;212.755000;0 +20260327 134200;212.756000;212.761000;212.741000;212.755000;0 +20260327 134300;212.755000;212.787000;212.752000;212.767000;0 +20260327 134400;212.764000;212.774000;212.755000;212.758000;0 +20260327 134500;212.757000;212.761000;212.739000;212.748000;0 +20260327 134600;212.745000;212.747000;212.711000;212.715000;0 +20260327 134700;212.715000;212.755000;212.704000;212.746000;0 +20260327 134800;212.747000;212.756000;212.737000;212.748000;0 +20260327 134900;212.746000;212.751000;212.722000;212.725000;0 +20260327 135000;212.722000;212.737000;212.702000;212.709000;0 +20260327 135100;212.709000;212.716000;212.698000;212.699000;0 +20260327 135200;212.699000;212.713000;212.698000;212.710000;0 +20260327 135300;212.712000;212.716000;212.685000;212.704000;0 +20260327 135400;212.705000;212.715000;212.700000;212.702000;0 +20260327 135500;212.699000;212.711000;212.689000;212.695000;0 +20260327 135600;212.697000;212.699000;212.688000;212.688000;0 +20260327 135700;212.688000;212.688000;212.664000;212.674000;0 +20260327 135800;212.675000;212.675000;212.650000;212.656000;0 +20260327 135900;212.655000;212.658000;212.642000;212.652000;0 +20260327 140000;212.649000;212.649000;212.627000;212.634000;0 +20260327 140100;212.638000;212.645000;212.616000;212.623000;0 +20260327 140200;212.622000;212.637000;212.622000;212.632000;0 +20260327 140300;212.631000;212.650000;212.621000;212.632000;0 +20260327 140400;212.631000;212.637000;212.621000;212.628000;0 +20260327 140500;212.631000;212.632000;212.605000;212.607000;0 +20260327 140600;212.607000;212.613000;212.590000;212.591000;0 +20260327 140700;212.592000;212.607000;212.592000;212.606000;0 +20260327 140800;212.605000;212.607000;212.600000;212.604000;0 +20260327 140900;212.600000;212.617000;212.600000;212.617000;0 +20260327 141000;212.617000;212.620000;212.605000;212.613000;0 +20260327 141100;212.613000;212.617000;212.602000;212.610000;0 +20260327 141200;212.612000;212.631000;212.610000;212.618000;0 +20260327 141300;212.613000;212.625000;212.605000;212.609000;0 +20260327 141400;212.611000;212.613000;212.592000;212.601000;0 +20260327 141500;212.602000;212.617000;212.594000;212.603000;0 +20260327 141600;212.599000;212.608000;212.590000;212.599000;0 +20260327 141700;212.598000;212.616000;212.595000;212.607000;0 +20260327 141800;212.610000;212.628000;212.606000;212.609000;0 +20260327 141900;212.607000;212.622000;212.601000;212.621000;0 +20260327 142000;212.618000;212.625000;212.615000;212.620000;0 +20260327 142100;212.620000;212.622000;212.609000;212.617000;0 +20260327 142200;212.615000;212.619000;212.607000;212.612000;0 +20260327 142300;212.614000;212.622000;212.609000;212.611000;0 +20260327 142400;212.615000;212.620000;212.612000;212.614000;0 +20260327 142500;212.617000;212.618000;212.602000;212.617000;0 +20260327 142600;212.618000;212.620000;212.615000;212.619000;0 +20260327 142700;212.620000;212.631000;212.614000;212.630000;0 +20260327 142800;212.629000;212.645000;212.629000;212.645000;0 +20260327 142900;212.645000;212.647000;212.637000;212.643000;0 +20260327 143000;212.644000;212.657000;212.641000;212.643000;0 +20260327 143100;212.641000;212.643000;212.614000;212.614000;0 +20260327 143200;212.612000;212.619000;212.601000;212.610000;0 +20260327 143300;212.612000;212.614000;212.595000;212.613000;0 +20260327 143400;212.613000;212.617000;212.602000;212.613000;0 +20260327 143500;212.615000;212.630000;212.609000;212.625000;0 +20260327 143600;212.625000;212.634000;212.625000;212.634000;0 +20260327 143700;212.635000;212.637000;212.624000;212.624000;0 +20260327 143800;212.625000;212.625000;212.612000;212.616000;0 +20260327 143900;212.617000;212.619000;212.605000;212.609000;0 +20260327 144000;212.609000;212.616000;212.598000;212.601000;0 +20260327 144100;212.602000;212.618000;212.600000;212.614000;0 +20260327 144200;212.616000;212.620000;212.602000;212.610000;0 +20260327 144300;212.610000;212.633000;212.607000;212.621000;0 +20260327 144400;212.614000;212.616000;212.606000;212.610000;0 +20260327 144500;212.613000;212.616000;212.586000;212.587000;0 +20260327 144600;212.589000;212.598000;212.576000;212.576000;0 +20260327 144700;212.576000;212.592000;212.576000;212.584000;0 +20260327 144800;212.587000;212.596000;212.577000;212.582000;0 +20260327 144900;212.582000;212.583000;212.576000;212.576000;0 +20260327 145000;212.576000;212.587000;212.570000;212.573000;0 +20260327 145100;212.572000;212.585000;212.572000;212.581000;0 +20260327 145200;212.582000;212.596000;212.576000;212.591000;0 +20260327 145300;212.591000;212.607000;212.580000;212.605000;0 +20260327 145400;212.603000;212.606000;212.586000;212.588000;0 +20260327 145500;212.586000;212.599000;212.567000;212.578000;0 +20260327 145600;212.582000;212.593000;212.577000;212.585000;0 +20260327 145700;212.583000;212.604000;212.573000;212.579000;0 +20260327 145800;212.577000;212.593000;212.542000;212.547000;0 +20260327 145900;212.547000;212.557000;212.529000;212.540000;0 +20260327 150000;212.538000;212.550000;212.521000;212.525000;0 +20260327 150100;212.523000;212.579000;212.517000;212.544000;0 +20260327 150200;212.542000;212.546000;212.514000;212.546000;0 +20260327 150300;212.551000;212.563000;212.543000;212.548000;0 +20260327 150400;212.548000;212.577000;212.547000;212.561000;0 +20260327 150500;212.557000;212.562000;212.541000;212.544000;0 +20260327 150600;212.547000;212.586000;212.543000;212.561000;0 +20260327 150700;212.564000;212.566000;212.546000;212.552000;0 +20260327 150800;212.551000;212.604000;212.551000;212.602000;0 +20260327 150900;212.604000;212.605000;212.591000;212.592000;0 +20260327 151000;212.594000;212.622000;212.594000;212.617000;0 +20260327 151100;212.614000;212.618000;212.601000;212.601000;0 +20260327 151200;212.597000;212.597000;212.584000;212.594000;0 +20260327 151300;212.598000;212.605000;212.593000;212.602000;0 +20260327 151400;212.603000;212.619000;212.599000;212.616000;0 +20260327 151500;212.617000;212.629000;212.611000;212.624000;0 +20260327 151600;212.624000;212.633000;212.613000;212.621000;0 +20260327 151700;212.624000;212.624000;212.616000;212.622000;0 +20260327 151800;212.623000;212.635000;212.621000;212.624000;0 +20260327 151900;212.624000;212.635000;212.620000;212.634000;0 +20260327 152000;212.635000;212.641000;212.618000;212.635000;0 +20260327 152100;212.634000;212.634000;212.619000;212.619000;0 +20260327 152200;212.617000;212.621000;212.612000;212.618000;0 +20260327 152300;212.619000;212.639000;212.616000;212.638000;0 +20260327 152400;212.636000;212.643000;212.636000;212.639000;0 +20260327 152500;212.639000;212.639000;212.636000;212.636000;0 +20260327 152600;212.636000;212.643000;212.635000;212.636000;0 +20260327 152700;212.635000;212.652000;212.623000;212.625000;0 +20260327 152800;212.625000;212.631000;212.617000;212.623000;0 +20260327 152900;212.623000;212.625000;212.599000;212.619000;0 +20260327 153000;212.619000;212.625000;212.605000;212.618000;0 +20260327 153100;212.623000;212.624000;212.616000;212.617000;0 +20260327 153200;212.617000;212.632000;212.604000;212.627000;0 +20260327 153300;212.617000;212.619000;212.589000;212.611000;0 +20260327 153400;212.606000;212.633000;212.603000;212.631000;0 +20260327 153500;212.629000;212.652000;212.624000;212.650000;0 +20260327 153600;212.650000;212.650000;212.628000;212.637000;0 +20260327 153700;212.639000;212.670000;212.629000;212.668000;0 +20260327 153800;212.672000;212.673000;212.646000;212.654000;0 +20260327 153900;212.645000;212.649000;212.597000;212.605000;0 +20260327 154000;212.604000;212.659000;212.603000;212.655000;0 +20260327 154100;212.653000;212.669000;212.647000;212.657000;0 +20260327 154200;212.659000;212.675000;212.659000;212.666000;0 +20260327 154300;212.666000;212.705000;212.657000;212.678000;0 +20260327 154400;212.677000;212.687000;212.664000;212.684000;0 +20260327 154500;212.680000;212.682000;212.651000;212.658000;0 +20260327 154600;212.657000;212.672000;212.640000;212.642000;0 +20260327 154700;212.652000;212.661000;212.638000;212.650000;0 +20260327 154800;212.645000;212.662000;212.644000;212.661000;0 +20260327 154900;212.657000;212.665000;212.643000;212.650000;0 +20260327 155000;212.648000;212.665000;212.646000;212.660000;0 +20260327 155100;212.659000;212.659000;212.636000;212.647000;0 +20260327 155200;212.645000;212.646000;212.627000;212.637000;0 +20260327 155300;212.639000;212.646000;212.624000;212.626000;0 +20260327 155400;212.638000;212.667000;212.628000;212.655000;0 +20260327 155500;212.652000;212.686000;212.643000;212.660000;0 +20260327 155600;212.667000;212.684000;212.628000;212.649000;0 +20260327 155700;212.645000;212.649000;212.560000;212.575000;0 +20260327 155800;212.575000;212.603000;212.500000;212.547000;0 +20260327 155900;212.544000;212.549000;212.495000;212.501000;0 +20260329 170400;212.314000;212.315000;212.314000;212.315000;0 +20260329 170500;212.265000;212.339000;212.265000;212.339000;0 +20260329 170600;212.313000;212.313000;212.312000;212.312000;0 +20260329 170700;212.307000;212.313000;212.307000;212.312000;0 +20260329 170800;212.307000;212.316000;212.307000;212.316000;0 +20260329 170900;212.338000;212.338000;212.338000;212.338000;0 +20260329 171000;212.343000;212.378000;212.328000;212.338000;0 +20260329 171100;212.325000;212.339000;212.320000;212.338000;0 +20260329 171200;212.339000;212.348000;212.303000;212.303000;0 +20260329 171300;212.301000;212.302000;212.270000;212.270000;0 +20260329 171400;212.268000;212.268000;212.263000;212.263000;0 +20260329 171500;212.266000;212.270000;212.265000;212.265000;0 +20260329 171600;212.264000;212.264000;212.264000;212.264000;0 +20260329 171700;212.263000;212.263000;212.261000;212.263000;0 +20260329 171800;212.248000;212.268000;212.248000;212.268000;0 +20260329 171900;212.260000;212.263000;212.260000;212.263000;0 +20260329 172000;212.267000;212.279000;212.267000;212.278000;0 +20260329 172100;212.279000;212.280000;212.278000;212.280000;0 +20260329 172200;212.281000;212.282000;212.279000;212.280000;0 +20260329 172300;212.281000;212.281000;212.279000;212.279000;0 +20260329 172400;212.281000;212.281000;212.280000;212.280000;0 +20260329 172500;212.281000;212.281000;212.280000;212.280000;0 +20260329 172600;212.279000;212.279000;212.254000;212.254000;0 +20260329 172700;212.254000;212.256000;212.249000;212.256000;0 +20260329 172800;212.254000;212.259000;212.245000;212.246000;0 +20260329 172900;212.254000;212.283000;212.254000;212.283000;0 +20260329 173000;212.284000;212.284000;212.258000;212.260000;0 +20260329 173100;212.259000;212.259000;212.243000;212.244000;0 +20260329 173200;212.244000;212.268000;212.240000;212.262000;0 +20260329 173300;212.324000;212.337000;212.324000;212.334000;0 +20260329 173400;212.334000;212.336000;212.312000;212.316000;0 +20260329 173500;212.318000;212.380000;212.314000;212.374000;0 +20260329 173600;212.374000;212.389000;212.292000;212.302000;0 +20260329 173700;212.301000;212.302000;212.274000;212.279000;0 +20260329 173800;212.278000;212.293000;212.272000;212.272000;0 +20260329 173900;212.272000;212.504000;212.265000;212.502000;0 +20260329 174000;212.503000;212.611000;212.503000;212.599000;0 +20260329 174100;212.600000;212.609000;212.552000;212.552000;0 +20260329 174200;212.544000;212.550000;212.541000;212.550000;0 +20260329 174300;212.552000;212.558000;212.552000;212.558000;0 +20260329 174400;212.558000;212.561000;212.547000;212.547000;0 +20260329 174500;212.546000;212.548000;212.294000;212.358000;0 +20260329 174600;212.357000;212.414000;212.356000;212.388000;0 +20260329 174700;212.411000;212.411000;212.329000;212.339000;0 +20260329 174800;212.337000;212.341000;212.320000;212.334000;0 +20260329 174900;212.333000;212.342000;212.326000;212.326000;0 +20260329 175000;212.326000;212.370000;212.318000;212.370000;0 +20260329 175100;212.370000;212.384000;212.316000;212.332000;0 +20260329 175200;212.331000;212.335000;212.326000;212.329000;0 +20260329 175300;212.329000;212.339000;212.238000;212.315000;0 +20260329 175400;212.373000;212.416000;212.358000;212.358000;0 +20260329 175500;212.358000;212.370000;212.340000;212.370000;0 +20260329 175600;212.356000;212.356000;212.309000;212.336000;0 +20260329 175700;212.336000;212.351000;212.323000;212.323000;0 +20260329 175800;212.392000;212.401000;212.392000;212.399000;0 +20260329 180000;212.530000;212.555000;212.497000;212.503000;0 +20260329 180100;212.500000;212.511000;212.419000;212.444000;0 +20260329 180200;212.446000;212.473000;212.438000;212.459000;0 +20260329 180300;212.461000;212.467000;212.448000;212.455000;0 +20260329 180400;212.450000;212.524000;212.450000;212.496000;0 +20260329 180500;212.496000;212.546000;212.496000;212.513000;0 +20260329 180600;212.497000;212.519000;212.487000;212.488000;0 +20260329 180700;212.487000;212.489000;212.467000;212.479000;0 +20260329 180800;212.482000;212.482000;212.451000;212.451000;0 +20260329 180900;212.452000;212.452000;212.338000;212.403000;0 +20260329 181000;212.404000;212.408000;212.367000;212.393000;0 +20260329 181100;212.392000;212.394000;212.325000;212.331000;0 +20260329 181200;212.328000;212.369000;212.308000;212.317000;0 +20260329 181300;212.299000;212.318000;212.289000;212.318000;0 +20260329 181400;212.317000;212.354000;212.317000;212.339000;0 +20260329 181500;212.337000;212.343000;212.298000;212.311000;0 +20260329 181600;212.310000;212.362000;212.310000;212.353000;0 +20260329 181700;212.364000;212.374000;212.355000;212.363000;0 +20260329 181800;212.361000;212.370000;212.347000;212.349000;0 +20260329 181900;212.350000;212.386000;212.350000;212.375000;0 +20260329 182000;212.375000;212.406000;212.375000;212.397000;0 +20260329 182100;212.389000;212.408000;212.369000;212.391000;0 +20260329 182200;212.387000;212.428000;212.384000;212.399000;0 +20260329 182300;212.398000;212.409000;212.375000;212.390000;0 +20260329 182400;212.387000;212.396000;212.350000;212.351000;0 +20260329 182500;212.357000;212.383000;212.352000;212.383000;0 +20260329 182600;212.384000;212.390000;212.367000;212.385000;0 +20260329 182700;212.384000;212.397000;212.383000;212.388000;0 +20260329 182800;212.387000;212.421000;212.387000;212.409000;0 +20260329 182900;212.411000;212.417000;212.381000;212.381000;0 +20260329 183000;212.384000;212.454000;212.384000;212.427000;0 +20260329 183100;212.424000;212.434000;212.423000;212.425000;0 +20260329 183200;212.424000;212.441000;212.417000;212.436000;0 +20260329 183300;212.428000;212.439000;212.410000;212.427000;0 +20260329 183400;212.420000;212.427000;212.401000;212.402000;0 +20260329 183500;212.408000;212.420000;212.397000;212.412000;0 +20260329 183600;212.411000;212.423000;212.403000;212.409000;0 +20260329 183700;212.404000;212.409000;212.392000;212.408000;0 +20260329 183800;212.402000;212.415000;212.392000;212.412000;0 +20260329 183900;212.406000;212.410000;212.391000;212.394000;0 +20260329 184000;212.399000;212.405000;212.388000;212.394000;0 +20260329 184100;212.395000;212.410000;212.382000;212.386000;0 +20260329 184200;212.389000;212.389000;212.375000;212.377000;0 +20260329 184300;212.378000;212.391000;212.364000;212.377000;0 +20260329 184400;212.383000;212.388000;212.357000;212.364000;0 +20260329 184500;212.368000;212.376000;212.356000;212.368000;0 +20260329 184600;212.370000;212.373000;212.341000;212.351000;0 +20260329 184700;212.341000;212.359000;212.336000;212.353000;0 +20260329 184800;212.355000;212.362000;212.344000;212.358000;0 +20260329 184900;212.356000;212.364000;212.330000;212.336000;0 +20260329 185000;212.331000;212.342000;212.319000;212.330000;0 +20260329 185100;212.332000;212.332000;212.320000;212.320000;0 +20260329 185200;212.324000;212.325000;212.318000;212.322000;0 +20260329 185300;212.325000;212.331000;212.310000;212.322000;0 +20260329 185400;212.318000;212.325000;212.318000;212.322000;0 +20260329 185500;212.325000;212.351000;212.325000;212.349000;0 +20260329 185600;212.346000;212.359000;212.340000;212.355000;0 +20260329 185700;212.352000;212.357000;212.337000;212.348000;0 +20260329 185800;212.348000;212.353000;212.336000;212.342000;0 +20260329 185900;212.341000;212.346000;212.327000;212.330000;0 +20260329 200000;212.113000;212.133000;212.086000;212.105000;0 +20260329 200100;212.104000;212.110000;212.018000;212.023000;0 +20260329 200200;212.022000;212.032000;211.976000;211.984000;0 +20260329 200300;211.986000;211.997000;211.954000;211.957000;0 +20260329 200400;211.956000;212.008000;211.956000;211.999000;0 +20260329 200500;211.997000;212.033000;211.993000;212.019000;0 +20260329 200600;212.021000;212.030000;212.010000;212.030000;0 +20260329 200700;212.031000;212.037000;211.954000;211.969000;0 +20260329 200800;211.969000;211.972000;211.923000;211.927000;0 +20260329 200900;211.925000;211.937000;211.914000;211.925000;0 +20260329 201000;211.923000;211.958000;211.917000;211.941000;0 +20260329 201100;211.944000;211.958000;211.924000;211.926000;0 +20260329 201200;211.926000;211.944000;211.918000;211.941000;0 +20260329 201300;211.942000;211.968000;211.929000;211.948000;0 +20260329 201400;211.949000;211.965000;211.914000;211.919000;0 +20260329 201500;211.920000;211.944000;211.905000;211.934000;0 +20260329 201600;211.932000;211.959000;211.921000;211.939000;0 +20260329 201700;211.945000;212.020000;211.940000;212.010000;0 +20260329 201800;212.009000;212.010000;211.944000;211.978000;0 +20260329 201900;211.978000;211.991000;211.893000;211.986000;0 +20260329 202000;211.989000;212.076000;211.989000;212.044000;0 +20260329 202100;212.047000;212.083000;212.011000;212.023000;0 +20260329 202200;212.022000;212.058000;212.015000;212.027000;0 +20260329 202300;212.025000;212.041000;212.010000;212.020000;0 +20260329 202400;212.017000;212.047000;212.006000;212.042000;0 +20260329 202500;212.041000;212.051000;212.026000;212.043000;0 +20260329 202600;212.043000;212.082000;212.026000;212.072000;0 +20260329 202700;212.071000;212.112000;212.065000;212.074000;0 +20260329 202800;212.072000;212.078000;212.050000;212.055000;0 +20260329 202900;212.053000;212.086000;212.053000;212.057000;0 +20260329 203000;212.055000;212.066000;212.049000;212.060000;0 +20260329 203100;212.063000;212.078000;212.037000;212.067000;0 +20260329 203200;212.065000;212.097000;212.063000;212.080000;0 +20260329 203300;212.075000;212.084000;212.055000;212.063000;0 +20260329 203400;212.063000;212.071000;212.046000;212.061000;0 +20260329 203500;212.063000;212.067000;212.030000;212.045000;0 +20260329 203600;212.043000;212.087000;212.043000;212.076000;0 +20260329 203700;212.073000;212.080000;212.038000;212.042000;0 +20260329 203800;212.042000;212.051000;212.011000;212.011000;0 +20260329 203900;212.013000;212.016000;211.993000;211.997000;0 +20260329 204000;212.000000;212.000000;211.979000;211.984000;0 +20260329 204100;211.985000;211.985000;211.909000;211.909000;0 +20260329 204200;211.910000;211.935000;211.910000;211.933000;0 +20260329 204300;211.936000;211.951000;211.931000;211.932000;0 +20260329 204400;211.932000;211.947000;211.918000;211.941000;0 +20260329 204500;211.941000;211.942000;211.919000;211.928000;0 +20260329 204600;211.931000;211.971000;211.931000;211.949000;0 +20260329 204700;211.956000;211.956000;211.918000;211.920000;0 +20260329 204800;211.920000;211.931000;211.903000;211.905000;0 +20260329 204900;211.903000;211.927000;211.903000;211.920000;0 +20260329 205000;211.917000;211.943000;211.917000;211.922000;0 +20260329 205100;211.928000;211.967000;211.924000;211.953000;0 +20260329 205200;211.950000;211.966000;211.933000;211.935000;0 +20260329 205300;211.936000;211.956000;211.922000;211.945000;0 +20260329 205400;211.944000;211.971000;211.903000;211.935000;0 +20260329 205500;211.932000;211.962000;211.869000;211.883000;0 +20260329 205600;211.880000;211.924000;211.880000;211.922000;0 +20260329 205700;211.921000;211.928000;211.905000;211.915000;0 +20260329 205800;211.914000;211.918000;211.881000;211.914000;0 +20260329 205900;211.917000;211.924000;211.864000;211.871000;0 +20260329 210000;211.872000;211.941000;211.872000;211.940000;0 +20260329 210100;211.940000;211.959000;211.917000;211.954000;0 +20260329 210200;211.957000;211.963000;211.927000;211.938000;0 +20260329 210300;211.934000;211.935000;211.900000;211.909000;0 +20260329 210400;211.909000;211.928000;211.871000;211.876000;0 +20260329 210500;211.880000;211.889000;211.840000;211.849000;0 +20260329 210600;211.856000;211.889000;211.856000;211.888000;0 +20260329 210700;211.894000;211.895000;211.868000;211.868000;0 +20260329 210800;211.869000;211.899000;211.858000;211.893000;0 +20260329 210900;211.894000;211.903000;211.884000;211.902000;0 +20260329 211000;211.904000;211.910000;211.887000;211.903000;0 +20260329 211100;211.902000;211.910000;211.886000;211.891000;0 +20260329 211200;211.892000;211.913000;211.887000;211.905000;0 +20260329 211300;211.908000;211.948000;211.906000;211.942000;0 +20260329 211400;211.940000;211.943000;211.920000;211.938000;0 +20260329 211500;211.935000;211.939000;211.893000;211.904000;0 +20260329 211600;211.904000;211.925000;211.904000;211.921000;0 +20260329 211700;211.920000;211.920000;211.910000;211.916000;0 +20260329 211800;211.915000;211.920000;211.895000;211.895000;0 +20260329 211900;211.896000;211.898000;211.872000;211.893000;0 +20260329 212000;211.892000;211.906000;211.887000;211.896000;0 +20260329 212100;211.903000;211.934000;211.891000;211.917000;0 +20260329 212200;211.917000;211.920000;211.903000;211.916000;0 +20260329 212300;211.920000;211.932000;211.910000;211.924000;0 +20260329 212400;211.921000;211.921000;211.888000;211.899000;0 +20260329 212500;211.894000;211.938000;211.891000;211.936000;0 +20260329 212600;211.938000;211.953000;211.931000;211.941000;0 +20260329 212700;211.939000;211.944000;211.927000;211.934000;0 +20260329 212800;211.932000;211.932000;211.912000;211.913000;0 +20260329 212900;211.916000;211.920000;211.905000;211.918000;0 +20260329 213000;211.923000;211.926000;211.902000;211.919000;0 +20260329 213100;211.917000;211.919000;211.901000;211.905000;0 +20260329 213200;211.909000;211.931000;211.906000;211.920000;0 +20260329 213300;211.920000;211.931000;211.916000;211.927000;0 +20260329 213400;211.925000;211.961000;211.919000;211.953000;0 +20260329 213500;211.951000;211.978000;211.950000;211.972000;0 +20260329 213600;211.968000;211.970000;211.944000;211.953000;0 +20260329 213700;211.953000;211.974000;211.953000;211.974000;0 +20260329 213800;211.974000;211.986000;211.968000;211.974000;0 +20260329 213900;211.975000;211.985000;211.955000;211.958000;0 +20260329 214000;211.958000;211.970000;211.946000;211.963000;0 +20260329 214100;211.960000;211.972000;211.954000;211.956000;0 +20260329 214200;211.953000;211.969000;211.940000;211.959000;0 +20260329 214300;211.962000;211.970000;211.956000;211.968000;0 +20260329 214400;211.966000;211.982000;211.966000;211.977000;0 +20260329 214500;211.983000;211.984000;211.929000;211.935000;0 +20260329 214600;211.935000;211.946000;211.931000;211.936000;0 +20260329 214700;211.937000;211.939000;211.924000;211.927000;0 +20260329 214800;211.928000;211.929000;211.918000;211.922000;0 +20260329 214900;211.920000;211.929000;211.890000;211.925000;0 +20260329 215000;211.925000;211.946000;211.921000;211.921000;0 +20260329 215100;211.923000;211.934000;211.908000;211.925000;0 +20260329 215200;211.927000;211.935000;211.924000;211.931000;0 +20260329 215300;211.930000;211.938000;211.916000;211.918000;0 +20260329 215400;211.920000;211.920000;211.903000;211.910000;0 +20260329 215500;211.912000;211.920000;211.894000;211.916000;0 +20260329 215600;211.918000;211.932000;211.918000;211.927000;0 +20260329 215700;211.927000;211.928000;211.910000;211.913000;0 +20260329 215800;211.913000;211.928000;211.910000;211.911000;0 +20260329 215900;211.915000;211.926000;211.900000;211.902000;0 +20260329 220000;211.906000;211.931000;211.901000;211.930000;0 +20260329 220100;211.929000;211.942000;211.918000;211.927000;0 +20260329 220200;211.929000;211.938000;211.897000;211.911000;0 +20260329 220300;211.910000;211.918000;211.899000;211.903000;0 +20260329 220400;211.908000;211.910000;211.894000;211.894000;0 +20260329 220500;211.895000;211.898000;211.885000;211.890000;0 +20260329 220600;211.886000;211.901000;211.881000;211.891000;0 +20260329 220700;211.893000;211.911000;211.881000;211.908000;0 +20260329 220800;211.908000;211.933000;211.903000;211.927000;0 +20260329 220900;211.928000;211.928000;211.898000;211.899000;0 +20260329 221000;211.899000;211.915000;211.889000;211.912000;0 +20260329 221100;211.912000;211.913000;211.896000;211.904000;0 +20260329 221200;211.903000;211.923000;211.896000;211.921000;0 +20260329 221300;211.922000;211.927000;211.898000;211.898000;0 +20260329 221400;211.897000;211.903000;211.872000;211.903000;0 +20260329 221500;211.902000;211.902000;211.876000;211.884000;0 +20260329 221600;211.883000;211.887000;211.849000;211.864000;0 +20260329 221700;211.865000;211.868000;211.857000;211.858000;0 +20260329 221800;211.858000;211.868000;211.836000;211.837000;0 +20260329 221900;211.839000;211.849000;211.837000;211.837000;0 +20260329 222000;211.835000;211.835000;211.796000;211.819000;0 +20260329 222100;211.821000;211.849000;211.818000;211.843000;0 +20260329 222200;211.841000;211.841000;211.813000;211.815000;0 +20260329 222300;211.812000;211.832000;211.802000;211.822000;0 +20260329 222400;211.821000;211.825000;211.810000;211.810000;0 +20260329 222500;211.810000;211.826000;211.802000;211.822000;0 +20260329 222600;211.820000;211.834000;211.801000;211.804000;0 +20260329 222700;211.801000;211.801000;211.771000;211.771000;0 +20260329 222800;211.771000;211.808000;211.771000;211.793000;0 +20260329 222900;211.794000;211.799000;211.754000;211.783000;0 +20260329 223000;211.786000;211.816000;211.786000;211.804000;0 +20260329 223100;211.805000;211.827000;211.799000;211.822000;0 +20260329 223200;211.821000;211.821000;211.789000;211.790000;0 +20260329 223300;211.790000;211.793000;211.747000;211.767000;0 +20260329 223400;211.767000;211.786000;211.767000;211.769000;0 +20260329 223500;211.770000;211.779000;211.762000;211.766000;0 +20260329 223600;211.767000;211.789000;211.764000;211.785000;0 +20260329 223700;211.783000;211.793000;211.778000;211.787000;0 +20260329 223800;211.787000;211.807000;211.784000;211.802000;0 +20260329 223900;211.803000;211.811000;211.787000;211.791000;0 +20260329 224000;211.794000;211.794000;211.769000;211.779000;0 +20260329 224100;211.779000;211.794000;211.772000;211.791000;0 +20260329 224200;211.792000;211.827000;211.787000;211.827000;0 +20260329 224300;211.826000;211.849000;211.818000;211.840000;0 +20260329 224400;211.841000;211.878000;211.838000;211.857000;0 +20260329 224500;211.857000;211.883000;211.846000;211.883000;0 +20260329 224600;211.885000;211.889000;211.869000;211.874000;0 +20260329 224700;211.874000;211.880000;211.870000;211.875000;0 +20260329 224800;211.875000;211.906000;211.875000;211.904000;0 +20260329 224900;211.902000;211.916000;211.889000;211.909000;0 +20260329 225000;211.907000;211.916000;211.901000;211.901000;0 +20260329 225100;211.914000;211.917000;211.895000;211.905000;0 +20260329 225200;211.907000;211.911000;211.876000;211.894000;0 +20260329 225300;211.896000;211.900000;211.881000;211.895000;0 +20260329 225400;211.896000;211.901000;211.885000;211.896000;0 +20260329 225500;211.896000;211.912000;211.896000;211.902000;0 +20260329 225600;211.903000;211.906000;211.883000;211.898000;0 +20260329 225700;211.897000;211.898000;211.886000;211.895000;0 +20260329 225800;211.897000;211.913000;211.893000;211.911000;0 +20260329 225900;211.910000;211.922000;211.908000;211.916000;0 +20260329 230000;211.918000;211.921000;211.907000;211.921000;0 +20260329 230100;211.919000;211.920000;211.894000;211.907000;0 +20260329 230200;211.905000;211.916000;211.898000;211.899000;0 +20260329 230300;211.898000;211.901000;211.880000;211.883000;0 +20260329 230400;211.884000;211.895000;211.865000;211.882000;0 +20260329 230500;211.883000;211.889000;211.871000;211.885000;0 +20260329 230600;211.885000;211.922000;211.876000;211.921000;0 +20260329 230700;211.920000;211.946000;211.920000;211.945000;0 +20260329 230800;211.944000;211.956000;211.937000;211.950000;0 +20260329 230900;211.954000;211.963000;211.943000;211.957000;0 +20260329 231000;211.957000;211.972000;211.945000;211.958000;0 +20260329 231100;211.956000;211.956000;211.940000;211.940000;0 +20260329 231200;211.939000;211.953000;211.937000;211.944000;0 +20260329 231300;211.942000;211.945000;211.900000;211.909000;0 +20260329 231400;211.908000;211.908000;211.885000;211.903000;0 +20260329 231500;211.902000;211.902000;211.880000;211.882000;0 +20260329 231600;211.881000;211.905000;211.876000;211.905000;0 +20260329 231700;211.902000;211.941000;211.902000;211.939000;0 +20260329 231800;211.940000;211.962000;211.937000;211.950000;0 +20260329 231900;211.954000;211.955000;211.937000;211.948000;0 +20260329 232000;211.949000;211.958000;211.943000;211.955000;0 +20260329 232100;211.953000;211.956000;211.937000;211.950000;0 +20260329 232200;211.950000;211.958000;211.940000;211.955000;0 +20260329 232300;211.955000;211.968000;211.952000;211.956000;0 +20260329 232400;211.958000;211.969000;211.943000;211.965000;0 +20260329 232500;211.963000;211.981000;211.954000;211.979000;0 +20260329 232600;211.977000;211.992000;211.977000;211.985000;0 +20260329 232700;211.981000;212.008000;211.981000;212.008000;0 +20260329 232800;212.006000;212.007000;211.991000;212.002000;0 +20260329 232900;212.002000;212.002000;211.992000;211.996000;0 +20260329 233000;211.997000;211.999000;211.962000;211.972000;0 +20260329 233100;211.974000;211.976000;211.960000;211.963000;0 +20260329 233200;211.962000;212.003000;211.960000;212.003000;0 +20260329 233300;212.003000;212.009000;212.003000;212.006000;0 +20260329 233400;212.004000;212.020000;212.000000;212.003000;0 +20260329 233500;212.003000;212.022000;211.996000;212.013000;0 +20260329 233600;212.012000;212.023000;212.004000;212.007000;0 +20260329 233700;212.008000;212.012000;211.993000;212.005000;0 +20260329 233800;212.004000;212.005000;211.984000;211.988000;0 +20260329 233900;211.990000;212.010000;211.987000;212.010000;0 +20260329 234000;212.010000;212.013000;212.003000;212.011000;0 +20260329 234100;212.009000;212.013000;212.002000;212.008000;0 +20260329 234200;212.010000;212.010000;211.994000;212.004000;0 +20260329 234300;212.002000;212.007000;211.987000;211.991000;0 +20260329 234400;211.990000;211.995000;211.978000;211.995000;0 +20260329 234500;211.992000;212.001000;211.982000;211.998000;0 +20260329 234600;211.997000;212.006000;211.992000;212.001000;0 +20260329 234700;211.991000;212.000000;211.980000;211.988000;0 +20260329 234800;211.988000;212.029000;211.988000;212.022000;0 +20260329 234900;212.023000;212.030000;212.010000;212.025000;0 +20260329 235000;212.024000;212.040000;212.018000;212.039000;0 +20260329 235100;212.037000;212.040000;212.011000;212.022000;0 +20260329 235200;212.022000;212.027000;211.995000;211.999000;0 +20260329 235300;212.000000;212.013000;211.999000;212.013000;0 +20260329 235400;212.012000;212.014000;211.997000;212.001000;0 +20260329 235500;212.000000;212.021000;211.996000;212.003000;0 +20260329 235600;212.005000;212.019000;211.998000;212.019000;0 +20260329 235700;212.019000;212.052000;212.018000;212.050000;0 +20260329 235800;212.048000;212.059000;212.031000;212.057000;0 +20260329 235900;212.057000;212.068000;212.053000;212.058000;0 +20260330 000000;212.056000;212.056000;212.017000;212.017000;0 +20260330 000100;212.020000;212.026000;211.976000;211.982000;0 +20260330 000200;211.981000;211.982000;211.940000;211.940000;0 +20260330 000300;211.936000;211.937000;211.910000;211.918000;0 +20260330 000400;211.919000;211.933000;211.903000;211.933000;0 +20260330 000500;211.933000;211.935000;211.917000;211.928000;0 +20260330 000600;211.931000;211.957000;211.931000;211.935000;0 +20260330 000700;211.933000;211.939000;211.919000;211.937000;0 +20260330 000800;211.933000;211.962000;211.933000;211.954000;0 +20260330 000900;211.954000;211.973000;211.951000;211.973000;0 +20260330 001000;211.972000;211.988000;211.962000;211.988000;0 +20260330 001100;211.984000;211.995000;211.976000;211.985000;0 +20260330 001200;211.987000;211.989000;211.963000;211.972000;0 +20260330 001300;211.972000;212.001000;211.972000;211.987000;0 +20260330 001400;211.985000;211.985000;211.972000;211.979000;0 +20260330 001500;211.979000;211.982000;211.959000;211.978000;0 +20260330 001600;211.973000;211.978000;211.968000;211.977000;0 +20260330 001700;211.973000;211.976000;211.968000;211.969000;0 +20260330 001800;211.970000;211.970000;211.946000;211.947000;0 +20260330 001900;211.947000;211.974000;211.946000;211.974000;0 +20260330 002000;211.975000;211.989000;211.972000;211.972000;0 +20260330 002100;211.974000;211.981000;211.970000;211.979000;0 +20260330 002200;211.975000;212.003000;211.975000;211.994000;0 +20260330 002300;211.993000;212.000000;211.987000;211.994000;0 +20260330 002400;211.993000;211.993000;211.955000;211.955000;0 +20260330 002500;211.955000;211.996000;211.953000;211.996000;0 +20260330 002600;211.994000;211.994000;211.978000;211.985000;0 +20260330 002700;211.984000;211.989000;211.970000;211.985000;0 +20260330 002800;211.982000;211.995000;211.982000;211.993000;0 +20260330 002900;211.991000;212.022000;211.991000;212.017000;0 +20260330 003000;212.020000;212.038000;212.014000;212.033000;0 +20260330 003100;212.029000;212.030000;212.002000;212.009000;0 +20260330 003200;212.009000;212.018000;212.009000;212.014000;0 +20260330 003300;212.015000;212.031000;212.015000;212.019000;0 +20260330 003400;212.017000;212.022000;212.011000;212.014000;0 +20260330 003500;212.015000;212.031000;212.015000;212.016000;0 +20260330 003600;212.016000;212.030000;212.007000;212.030000;0 +20260330 003700;212.029000;212.030000;212.017000;212.020000;0 +20260330 003800;212.020000;212.051000;212.019000;212.036000;0 +20260330 003900;212.039000;212.054000;212.039000;212.051000;0 +20260330 004000;212.051000;212.052000;212.015000;212.015000;0 +20260330 004100;212.015000;212.022000;212.011000;212.021000;0 +20260330 004200;212.021000;212.023000;212.021000;212.021000;0 +20260330 004300;212.015000;212.020000;212.015000;212.017000;0 +20260330 004400;212.017000;212.021000;212.005000;212.021000;0 +20260330 004500;212.023000;212.030000;212.007000;212.011000;0 +20260330 004600;212.014000;212.016000;212.009000;212.009000;0 +20260330 004700;212.010000;212.011000;212.004000;212.004000;0 +20260330 004800;212.004000;212.031000;212.002000;212.024000;0 +20260330 004900;212.022000;212.029000;212.001000;212.001000;0 +20260330 005000;211.993000;211.993000;211.964000;211.976000;0 +20260330 005100;211.976000;211.988000;211.973000;211.975000;0 +20260330 005200;211.976000;211.985000;211.966000;211.983000;0 +20260330 005300;211.986000;211.988000;211.982000;211.983000;0 +20260330 005400;211.986000;212.011000;211.975000;212.007000;0 +20260330 005500;212.007000;212.018000;212.003000;212.006000;0 +20260330 005600;212.004000;212.010000;211.988000;211.996000;0 +20260330 005700;211.993000;211.993000;211.982000;211.989000;0 +20260330 005800;211.989000;212.032000;211.989000;212.013000;0 +20260330 005900;212.017000;212.025000;212.007000;212.007000;0 +20260330 010000;212.008000;212.037000;212.001000;212.034000;0 +20260330 010100;212.036000;212.039000;212.014000;212.020000;0 +20260330 010200;212.015000;212.015000;211.996000;212.004000;0 +20260330 010300;212.002000;212.003000;211.992000;211.994000;0 +20260330 010400;211.992000;212.020000;211.990000;212.016000;0 +20260330 010500;212.017000;212.019000;212.004000;212.015000;0 +20260330 010600;212.012000;212.036000;212.012000;212.024000;0 +20260330 010700;212.022000;212.026000;212.016000;212.024000;0 +20260330 010800;212.026000;212.026000;212.005000;212.022000;0 +20260330 010900;212.023000;212.030000;212.001000;212.025000;0 +20260330 011000;212.024000;212.026000;212.013000;212.026000;0 +20260330 011100;212.024000;212.033000;212.017000;212.026000;0 +20260330 011200;212.027000;212.031000;212.009000;212.009000;0 +20260330 011300;212.011000;212.012000;211.990000;212.002000;0 +20260330 011400;212.001000;212.024000;211.995000;212.010000;0 +20260330 011500;212.008000;212.022000;212.005000;212.015000;0 +20260330 011600;212.013000;212.018000;211.991000;212.000000;0 +20260330 011700;212.002000;212.008000;211.999000;212.003000;0 +20260330 011800;212.005000;212.018000;212.002000;212.018000;0 +20260330 011900;212.027000;212.028000;212.016000;212.018000;0 +20260330 012000;212.020000;212.025000;212.014000;212.025000;0 +20260330 012100;212.021000;212.035000;212.019000;212.029000;0 +20260330 012200;212.027000;212.031000;212.014000;212.021000;0 +20260330 012300;212.026000;212.033000;212.020000;212.020000;0 +20260330 012400;212.021000;212.030000;212.016000;212.021000;0 +20260330 012500;212.021000;212.040000;212.016000;212.034000;0 +20260330 012600;212.036000;212.073000;212.031000;212.070000;0 +20260330 012700;212.065000;212.071000;212.060000;212.067000;0 +20260330 012800;212.061000;212.074000;212.057000;212.067000;0 +20260330 012900;212.066000;212.066000;212.036000;212.036000;0 +20260330 013000;212.037000;212.047000;212.032000;212.038000;0 +20260330 013100;212.038000;212.053000;212.014000;212.014000;0 +20260330 013200;212.016000;212.020000;212.011000;212.011000;0 +20260330 013300;212.010000;212.033000;212.008000;212.015000;0 +20260330 013400;212.014000;212.017000;211.971000;211.971000;0 +20260330 013500;211.971000;211.990000;211.956000;211.979000;0 +20260330 013600;211.979000;211.980000;211.966000;211.973000;0 +20260330 013700;211.973000;212.004000;211.973000;212.003000;0 +20260330 013800;212.003000;212.013000;211.995000;212.003000;0 +20260330 013900;212.004000;212.012000;211.996000;212.005000;0 +20260330 014000;212.004000;212.031000;212.004000;212.027000;0 +20260330 014100;212.029000;212.038000;212.021000;212.031000;0 +20260330 014200;212.030000;212.032000;212.012000;212.018000;0 +20260330 014300;212.018000;212.020000;212.009000;212.009000;0 +20260330 014400;212.010000;212.022000;212.010000;212.014000;0 +20260330 014500;212.015000;212.035000;212.015000;212.017000;0 +20260330 014600;212.015000;212.022000;212.002000;212.003000;0 +20260330 014700;212.003000;212.008000;212.001000;212.007000;0 +20260330 014800;212.009000;212.015000;212.005000;212.010000;0 +20260330 014900;212.009000;212.010000;211.968000;211.969000;0 +20260330 015000;211.970000;211.987000;211.965000;211.987000;0 +20260330 015100;211.986000;211.998000;211.969000;211.995000;0 +20260330 015200;211.991000;211.992000;211.950000;211.960000;0 +20260330 015300;211.958000;211.978000;211.957000;211.971000;0 +20260330 015400;211.972000;212.010000;211.965000;212.009000;0 +20260330 015500;212.008000;212.012000;211.991000;212.009000;0 +20260330 015600;212.005000;212.019000;212.003000;212.010000;0 +20260330 015700;212.009000;212.019000;211.985000;211.996000;0 +20260330 015800;212.002000;212.003000;211.983000;211.988000;0 +20260330 015900;211.988000;212.020000;211.976000;212.002000;0 +20260330 020000;212.002000;212.009000;211.952000;211.966000;0 +20260330 020100;211.964000;211.971000;211.946000;211.964000;0 +20260330 020200;211.964000;211.979000;211.955000;211.962000;0 +20260330 020300;211.962000;211.995000;211.956000;211.991000;0 +20260330 020400;211.995000;212.007000;211.981000;211.990000;0 +20260330 020500;211.989000;212.014000;211.984000;212.005000;0 +20260330 020600;212.004000;212.009000;211.988000;211.995000;0 +20260330 020700;211.998000;212.002000;211.976000;211.980000;0 +20260330 020800;211.981000;212.009000;211.962000;212.001000;0 +20260330 020900;212.000000;212.000000;211.954000;211.988000;0 +20260330 021000;211.986000;211.988000;211.968000;211.969000;0 +20260330 021100;211.968000;211.999000;211.968000;211.974000;0 +20260330 021200;211.974000;211.999000;211.974000;211.986000;0 +20260330 021300;211.985000;211.989000;211.967000;211.972000;0 +20260330 021400;211.970000;211.975000;211.924000;211.934000;0 +20260330 021500;211.934000;211.962000;211.930000;211.934000;0 +20260330 021600;211.939000;211.955000;211.924000;211.955000;0 +20260330 021700;211.954000;211.966000;211.948000;211.952000;0 +20260330 021800;211.952000;211.958000;211.947000;211.956000;0 +20260330 021900;211.955000;211.976000;211.931000;211.953000;0 +20260330 022000;211.953000;211.976000;211.932000;211.972000;0 +20260330 022100;211.972000;211.977000;211.952000;211.965000;0 +20260330 022200;211.968000;211.979000;211.962000;211.970000;0 +20260330 022300;211.970000;211.970000;211.934000;211.959000;0 +20260330 022400;211.957000;211.981000;211.950000;211.975000;0 +20260330 022500;211.975000;212.030000;211.975000;212.020000;0 +20260330 022600;212.023000;212.034000;212.015000;212.015000;0 +20260330 022700;212.016000;212.041000;212.008000;212.027000;0 +20260330 022800;212.030000;212.049000;212.029000;212.041000;0 +20260330 022900;212.043000;212.050000;212.020000;212.020000;0 +20260330 023000;212.023000;212.045000;211.999000;212.003000;0 +20260330 023100;212.002000;212.004000;211.968000;211.968000;0 +20260330 023200;211.962000;211.971000;211.939000;211.953000;0 +20260330 023300;211.948000;211.956000;211.924000;211.924000;0 +20260330 023400;211.928000;211.965000;211.928000;211.961000;0 +20260330 023500;211.962000;211.963000;211.945000;211.954000;0 +20260330 023600;211.950000;212.001000;211.948000;211.998000;0 +20260330 023700;211.998000;212.040000;211.998000;212.036000;0 +20260330 023800;212.036000;212.059000;212.033000;212.042000;0 +20260330 023900;212.041000;212.056000;212.025000;212.042000;0 +20260330 024000;212.042000;212.059000;212.029000;212.039000;0 +20260330 024100;212.037000;212.045000;212.021000;212.035000;0 +20260330 024200;212.035000;212.035000;212.016000;212.033000;0 +20260330 024300;212.041000;212.101000;212.041000;212.083000;0 +20260330 024400;212.084000;212.099000;212.081000;212.093000;0 +20260330 024500;212.087000;212.107000;212.080000;212.088000;0 +20260330 024600;212.088000;212.088000;212.057000;212.057000;0 +20260330 024700;212.058000;212.058000;212.017000;212.048000;0 +20260330 024800;212.052000;212.053000;212.029000;212.037000;0 +20260330 024900;212.041000;212.078000;212.040000;212.059000;0 +20260330 025000;212.056000;212.067000;212.035000;212.049000;0 +20260330 025100;212.049000;212.051000;212.019000;212.023000;0 +20260330 025200;212.022000;212.042000;212.007000;212.034000;0 +20260330 025300;212.034000;212.046000;212.022000;212.043000;0 +20260330 025400;212.044000;212.051000;212.014000;212.016000;0 +20260330 025500;212.021000;212.033000;212.010000;212.016000;0 +20260330 025600;212.012000;212.033000;212.003000;212.019000;0 +20260330 025700;212.017000;212.040000;212.016000;212.034000;0 +20260330 025800;212.036000;212.041000;212.014000;212.019000;0 +20260330 025900;212.026000;212.027000;211.993000;211.997000;0 +20260330 030000;211.996000;211.996000;211.958000;211.977000;0 +20260330 030100;211.976000;211.983000;211.936000;211.956000;0 +20260330 030200;211.958000;211.969000;211.919000;211.938000;0 +20260330 030300;211.938000;211.953000;211.919000;211.919000;0 +20260330 030400;211.922000;211.924000;211.891000;211.897000;0 +20260330 030500;211.902000;211.902000;211.794000;211.802000;0 +20260330 030600;211.802000;211.810000;211.766000;211.771000;0 +20260330 030700;211.773000;211.809000;211.771000;211.791000;0 +20260330 030800;211.792000;211.806000;211.783000;211.796000;0 +20260330 030900;211.799000;211.832000;211.790000;211.828000;0 +20260330 031000;211.829000;211.830000;211.783000;211.783000;0 +20260330 031100;211.783000;211.792000;211.736000;211.747000;0 +20260330 031200;211.750000;211.751000;211.717000;211.717000;0 +20260330 031300;211.718000;211.731000;211.711000;211.716000;0 +20260330 031400;211.714000;211.724000;211.686000;211.691000;0 +20260330 031500;211.690000;211.712000;211.681000;211.698000;0 +20260330 031600;211.696000;211.716000;211.686000;211.686000;0 +20260330 031700;211.695000;211.698000;211.660000;211.660000;0 +20260330 031800;211.660000;211.660000;211.632000;211.633000;0 +20260330 031900;211.634000;211.634000;211.586000;211.606000;0 +20260330 032000;211.604000;211.623000;211.594000;211.608000;0 +20260330 032100;211.608000;211.628000;211.606000;211.622000;0 +20260330 032200;211.620000;211.622000;211.582000;211.586000;0 +20260330 032300;211.583000;211.583000;211.525000;211.525000;0 +20260330 032400;211.527000;211.538000;211.471000;211.472000;0 +20260330 032500;211.473000;211.483000;211.444000;211.461000;0 +20260330 032600;211.462000;211.485000;211.445000;211.481000;0 +20260330 032700;211.480000;211.495000;211.461000;211.474000;0 +20260330 032800;211.474000;211.494000;211.471000;211.485000;0 +20260330 032900;211.485000;211.507000;211.483000;211.492000;0 +20260330 033000;211.489000;211.509000;211.474000;211.489000;0 +20260330 033100;211.496000;211.515000;211.478000;211.493000;0 +20260330 033200;211.493000;211.521000;211.488000;211.502000;0 +20260330 033300;211.504000;211.511000;211.489000;211.500000;0 +20260330 033400;211.503000;211.517000;211.497000;211.510000;0 +20260330 033500;211.510000;211.519000;211.490000;211.490000;0 +20260330 033600;211.493000;211.503000;211.479000;211.493000;0 +20260330 033700;211.493000;211.500000;211.450000;211.465000;0 +20260330 033800;211.468000;211.521000;211.468000;211.521000;0 +20260330 033900;211.520000;211.528000;211.497000;211.499000;0 +20260330 034000;211.501000;211.504000;211.469000;211.502000;0 +20260330 034100;211.503000;211.526000;211.498000;211.526000;0 +20260330 034200;211.524000;211.545000;211.500000;211.506000;0 +20260330 034300;211.503000;211.503000;211.480000;211.495000;0 +20260330 034400;211.491000;211.500000;211.471000;211.497000;0 +20260330 034500;211.493000;211.521000;211.482000;211.499000;0 +20260330 034600;211.499000;211.504000;211.480000;211.498000;0 +20260330 034700;211.494000;211.506000;211.481000;211.487000;0 +20260330 034800;211.487000;211.494000;211.460000;211.492000;0 +20260330 034900;211.491000;211.522000;211.489000;211.512000;0 +20260330 035000;211.511000;211.525000;211.505000;211.524000;0 +20260330 035100;211.524000;211.568000;211.524000;211.568000;0 +20260330 035200;211.565000;211.571000;211.546000;211.564000;0 +20260330 035300;211.561000;211.578000;211.560000;211.562000;0 +20260330 035400;211.566000;211.583000;211.561000;211.583000;0 +20260330 035500;211.588000;211.611000;211.580000;211.609000;0 +20260330 035600;211.608000;211.623000;211.587000;211.621000;0 +20260330 035700;211.621000;211.621000;211.584000;211.589000;0 +20260330 035800;211.589000;211.630000;211.589000;211.620000;0 +20260330 035900;211.617000;211.631000;211.606000;211.629000;0 +20260330 040000;211.629000;211.632000;211.598000;211.615000;0 +20260330 040100;211.615000;211.630000;211.609000;211.627000;0 +20260330 040200;211.628000;211.637000;211.583000;211.583000;0 +20260330 040300;211.586000;211.599000;211.553000;211.567000;0 +20260330 040400;211.566000;211.635000;211.561000;211.627000;0 +20260330 040500;211.627000;211.643000;211.582000;211.635000;0 +20260330 040600;211.638000;211.647000;211.600000;211.610000;0 +20260330 040700;211.608000;211.608000;211.570000;211.578000;0 +20260330 040800;211.578000;211.578000;211.554000;211.573000;0 +20260330 040900;211.577000;211.578000;211.531000;211.532000;0 +20260330 041000;211.530000;211.575000;211.516000;211.571000;0 +20260330 041100;211.568000;211.572000;211.553000;211.557000;0 +20260330 041200;211.558000;211.627000;211.549000;211.596000;0 +20260330 041300;211.592000;211.592000;211.545000;211.567000;0 +20260330 041400;211.568000;211.573000;211.545000;211.565000;0 +20260330 041500;211.565000;211.566000;211.547000;211.549000;0 +20260330 041600;211.553000;211.569000;211.546000;211.551000;0 +20260330 041700;211.550000;211.550000;211.488000;211.488000;0 +20260330 041800;211.496000;211.533000;211.491000;211.512000;0 +20260330 041900;211.512000;211.524000;211.483000;211.483000;0 +20260330 042000;211.480000;211.482000;211.451000;211.451000;0 +20260330 042100;211.455000;211.455000;211.411000;211.437000;0 +20260330 042200;211.434000;211.446000;211.426000;211.439000;0 +20260330 042300;211.438000;211.448000;211.425000;211.433000;0 +20260330 042400;211.433000;211.433000;211.401000;211.414000;0 +20260330 042500;211.413000;211.452000;211.390000;211.448000;0 +20260330 042600;211.448000;211.451000;211.430000;211.435000;0 +20260330 042700;211.438000;211.438000;211.414000;211.414000;0 +20260330 042800;211.427000;211.452000;211.411000;211.450000;0 +20260330 042900;211.454000;211.476000;211.431000;211.475000;0 +20260330 043000;211.470000;211.470000;211.446000;211.446000;0 +20260330 043100;211.451000;211.518000;211.451000;211.509000;0 +20260330 043200;211.509000;211.509000;211.476000;211.492000;0 +20260330 043300;211.492000;211.507000;211.470000;211.478000;0 +20260330 043400;211.479000;211.483000;211.467000;211.478000;0 +20260330 043500;211.480000;211.487000;211.460000;211.485000;0 +20260330 043600;211.485000;211.487000;211.472000;211.473000;0 +20260330 043700;211.471000;211.489000;211.465000;211.482000;0 +20260330 043800;211.481000;211.527000;211.481000;211.516000;0 +20260330 043900;211.519000;211.528000;211.487000;211.490000;0 +20260330 044000;211.491000;211.496000;211.455000;211.466000;0 +20260330 044100;211.466000;211.473000;211.446000;211.446000;0 +20260330 044200;211.445000;211.457000;211.411000;211.417000;0 +20260330 044300;211.417000;211.432000;211.411000;211.411000;0 +20260330 044400;211.412000;211.412000;211.362000;211.362000;0 +20260330 044500;211.361000;211.369000;211.346000;211.347000;0 +20260330 044600;211.346000;211.361000;211.325000;211.360000;0 +20260330 044700;211.361000;211.361000;211.323000;211.325000;0 +20260330 044800;211.324000;211.325000;211.299000;211.302000;0 +20260330 044900;211.300000;211.334000;211.294000;211.306000;0 +20260330 045000;211.306000;211.333000;211.276000;211.330000;0 +20260330 045100;211.333000;211.354000;211.322000;211.329000;0 +20260330 045200;211.329000;211.340000;211.299000;211.336000;0 +20260330 045300;211.336000;211.365000;211.329000;211.363000;0 +20260330 045400;211.366000;211.369000;211.321000;211.351000;0 +20260330 045500;211.349000;211.356000;211.325000;211.340000;0 +20260330 045600;211.340000;211.359000;211.322000;211.355000;0 +20260330 045700;211.355000;211.365000;211.319000;211.319000;0 +20260330 045800;211.321000;211.336000;211.316000;211.332000;0 +20260330 045900;211.333000;211.353000;211.326000;211.335000;0 +20260330 050000;211.338000;211.359000;211.320000;211.356000;0 +20260330 050100;211.356000;211.376000;211.343000;211.343000;0 +20260330 050200;211.342000;211.366000;211.332000;211.335000;0 +20260330 050300;211.333000;211.334000;211.305000;211.305000;0 +20260330 050400;211.303000;211.303000;211.260000;211.296000;0 +20260330 050500;211.299000;211.330000;211.298000;211.301000;0 +20260330 050600;211.303000;211.306000;211.282000;211.287000;0 +20260330 050700;211.289000;211.297000;211.270000;211.271000;0 +20260330 050800;211.271000;211.289000;211.258000;211.261000;0 +20260330 050900;211.258000;211.279000;211.244000;211.256000;0 +20260330 051000;211.256000;211.258000;211.242000;211.244000;0 +20260330 051100;211.246000;211.261000;211.234000;211.242000;0 +20260330 051200;211.245000;211.282000;211.240000;211.266000;0 +20260330 051300;211.282000;211.308000;211.262000;211.306000;0 +20260330 051400;211.308000;211.310000;211.267000;211.269000;0 +20260330 051500;211.267000;211.271000;211.246000;211.252000;0 +20260330 051600;211.253000;211.256000;211.246000;211.252000;0 +20260330 051700;211.253000;211.273000;211.190000;211.230000;0 +20260330 051800;211.230000;211.277000;211.226000;211.257000;0 +20260330 051900;211.252000;211.264000;211.240000;211.261000;0 +20260330 052000;211.261000;211.279000;211.251000;211.259000;0 +20260330 052100;211.260000;211.289000;211.239000;211.239000;0 +20260330 052200;211.242000;211.262000;211.235000;211.240000;0 +20260330 052300;211.249000;211.258000;211.235000;211.247000;0 +20260330 052400;211.248000;211.332000;211.248000;211.320000;0 +20260330 052500;211.320000;211.330000;211.302000;211.308000;0 +20260330 052600;211.301000;211.309000;211.278000;211.281000;0 +20260330 052700;211.274000;211.286000;211.265000;211.281000;0 +20260330 052800;211.282000;211.299000;211.281000;211.285000;0 +20260330 052900;211.284000;211.295000;211.266000;211.266000;0 +20260330 053000;211.262000;211.279000;211.245000;211.268000;0 +20260330 053100;211.268000;211.271000;211.242000;211.244000;0 +20260330 053200;211.242000;211.244000;211.167000;211.171000;0 +20260330 053300;211.174000;211.229000;211.174000;211.203000;0 +20260330 053400;211.204000;211.224000;211.203000;211.212000;0 +20260330 053500;211.213000;211.227000;211.208000;211.222000;0 +20260330 053600;211.222000;211.235000;211.214000;211.229000;0 +20260330 053700;211.228000;211.248000;211.217000;211.223000;0 +20260330 053800;211.223000;211.263000;211.220000;211.243000;0 +20260330 053900;211.246000;211.283000;211.242000;211.277000;0 +20260330 054000;211.278000;211.319000;211.275000;211.314000;0 +20260330 054100;211.313000;211.317000;211.286000;211.295000;0 +20260330 054200;211.298000;211.320000;211.295000;211.306000;0 +20260330 054300;211.306000;211.321000;211.296000;211.311000;0 +20260330 054400;211.315000;211.337000;211.313000;211.332000;0 +20260330 054500;211.327000;211.328000;211.299000;211.315000;0 +20260330 054600;211.315000;211.321000;211.297000;211.306000;0 +20260330 054700;211.306000;211.308000;211.296000;211.301000;0 +20260330 054800;211.304000;211.304000;211.272000;211.284000;0 +20260330 054900;211.288000;211.295000;211.284000;211.291000;0 +20260330 055000;211.290000;211.291000;211.248000;211.248000;0 +20260330 055100;211.248000;211.258000;211.240000;211.252000;0 +20260330 055200;211.243000;211.280000;211.239000;211.264000;0 +20260330 055300;211.268000;211.311000;211.249000;211.291000;0 +20260330 055400;211.296000;211.301000;211.280000;211.297000;0 +20260330 055500;211.298000;211.316000;211.292000;211.292000;0 +20260330 055600;211.290000;211.314000;211.287000;211.302000;0 +20260330 055700;211.301000;211.305000;211.237000;211.265000;0 +20260330 055800;211.277000;211.332000;211.272000;211.325000;0 +20260330 055900;211.326000;211.328000;211.227000;211.238000;0 +20260330 060000;211.238000;211.243000;211.214000;211.230000;0 +20260330 060100;211.227000;211.230000;211.204000;211.214000;0 +20260330 060200;211.222000;211.243000;211.194000;211.196000;0 +20260330 060300;211.197000;211.210000;211.185000;211.188000;0 +20260330 060400;211.195000;211.210000;211.190000;211.201000;0 +20260330 060500;211.202000;211.222000;211.189000;211.201000;0 +20260330 060600;211.202000;211.223000;211.202000;211.219000;0 +20260330 060700;211.217000;211.262000;211.215000;211.259000;0 +20260330 060800;211.258000;211.321000;211.258000;211.317000;0 +20260330 060900;211.316000;211.316000;211.279000;211.296000;0 +20260330 061000;211.296000;211.302000;211.271000;211.280000;0 +20260330 061100;211.278000;211.280000;211.236000;211.239000;0 +20260330 061200;211.241000;211.271000;211.236000;211.251000;0 +20260330 061300;211.253000;211.258000;211.242000;211.253000;0 +20260330 061400;211.257000;211.275000;211.253000;211.264000;0 +20260330 061500;211.261000;211.261000;211.218000;211.223000;0 +20260330 061600;211.219000;211.219000;211.186000;211.212000;0 +20260330 061700;211.214000;211.239000;211.205000;211.210000;0 +20260330 061800;211.209000;211.216000;211.179000;211.206000;0 +20260330 061900;211.203000;211.233000;211.197000;211.228000;0 +20260330 062000;211.229000;211.232000;211.204000;211.211000;0 +20260330 062100;211.207000;211.233000;211.200000;211.223000;0 +20260330 062200;211.220000;211.243000;211.207000;211.243000;0 +20260330 062300;211.242000;211.244000;211.203000;211.203000;0 +20260330 062400;211.205000;211.240000;211.200000;211.231000;0 +20260330 062500;211.230000;211.232000;211.226000;211.227000;0 +20260330 062600;211.228000;211.252000;211.228000;211.237000;0 +20260330 062700;211.235000;211.250000;211.235000;211.239000;0 +20260330 062800;211.237000;211.252000;211.221000;211.250000;0 +20260330 062900;211.249000;211.260000;211.230000;211.236000;0 +20260330 063000;211.235000;211.247000;211.214000;211.223000;0 +20260330 063100;211.230000;211.264000;211.202000;211.210000;0 +20260330 063200;211.210000;211.257000;211.208000;211.251000;0 +20260330 063300;211.250000;211.260000;211.229000;211.229000;0 +20260330 063400;211.228000;211.245000;211.228000;211.243000;0 +20260330 063500;211.245000;211.255000;211.240000;211.243000;0 +20260330 063600;211.241000;211.243000;211.227000;211.239000;0 +20260330 063700;211.238000;211.245000;211.203000;211.204000;0 +20260330 063800;211.204000;211.212000;211.195000;211.207000;0 +20260330 063900;211.205000;211.214000;211.182000;211.204000;0 +20260330 064000;211.203000;211.203000;211.180000;211.183000;0 +20260330 064100;211.183000;211.195000;211.177000;211.194000;0 +20260330 064200;211.191000;211.191000;211.157000;211.160000;0 +20260330 064300;211.161000;211.186000;211.159000;211.185000;0 +20260330 064400;211.186000;211.187000;211.128000;211.151000;0 +20260330 064500;211.151000;211.173000;211.142000;211.169000;0 +20260330 064600;211.169000;211.176000;211.153000;211.170000;0 +20260330 064700;211.169000;211.181000;211.160000;211.172000;0 +20260330 064800;211.176000;211.187000;211.159000;211.187000;0 +20260330 064900;211.186000;211.197000;211.182000;211.192000;0 +20260330 065000;211.192000;211.222000;211.189000;211.193000;0 +20260330 065100;211.193000;211.205000;211.166000;211.178000;0 +20260330 065200;211.178000;211.188000;211.172000;211.188000;0 +20260330 065300;211.188000;211.188000;211.169000;211.172000;0 +20260330 065400;211.173000;211.185000;211.170000;211.171000;0 +20260330 065500;211.170000;211.170000;211.147000;211.149000;0 +20260330 065600;211.148000;211.148000;211.102000;211.102000;0 +20260330 065700;211.110000;211.116000;211.078000;211.086000;0 +20260330 065800;211.085000;211.134000;211.085000;211.123000;0 +20260330 065900;211.125000;211.152000;211.124000;211.137000;0 +20260330 070000;211.138000;211.175000;211.130000;211.130000;0 +20260330 070100;211.127000;211.154000;211.126000;211.148000;0 +20260330 070200;211.147000;211.147000;211.120000;211.129000;0 +20260330 070300;211.128000;211.147000;211.118000;211.123000;0 +20260330 070400;211.121000;211.126000;211.089000;211.100000;0 +20260330 070500;211.101000;211.131000;211.095000;211.109000;0 +20260330 070600;211.109000;211.113000;211.077000;211.090000;0 +20260330 070700;211.090000;211.105000;211.073000;211.097000;0 +20260330 070800;211.099000;211.132000;211.099000;211.118000;0 +20260330 070900;211.119000;211.148000;211.119000;211.131000;0 +20260330 071000;211.134000;211.165000;211.134000;211.161000;0 +20260330 071100;211.164000;211.172000;211.139000;211.157000;0 +20260330 071200;211.158000;211.167000;211.155000;211.162000;0 +20260330 071300;211.170000;211.187000;211.161000;211.182000;0 +20260330 071400;211.181000;211.192000;211.176000;211.178000;0 +20260330 071500;211.175000;211.185000;211.149000;211.149000;0 +20260330 071600;211.155000;211.176000;211.145000;211.170000;0 +20260330 071700;211.169000;211.179000;211.155000;211.173000;0 +20260330 071800;211.173000;211.194000;211.170000;211.178000;0 +20260330 071900;211.178000;211.180000;211.164000;211.164000;0 +20260330 072000;211.166000;211.167000;211.136000;211.156000;0 +20260330 072100;211.160000;211.214000;211.160000;211.204000;0 +20260330 072200;211.204000;211.242000;211.191000;211.240000;0 +20260330 072300;211.240000;211.241000;211.206000;211.219000;0 +20260330 072400;211.219000;211.221000;211.193000;211.206000;0 +20260330 072500;211.203000;211.208000;211.193000;211.200000;0 +20260330 072600;211.202000;211.279000;211.187000;211.225000;0 +20260330 072700;211.223000;211.289000;211.201000;211.221000;0 +20260330 072800;211.221000;211.255000;211.185000;211.222000;0 +20260330 072900;211.223000;211.247000;211.208000;211.239000;0 +20260330 073000;211.240000;211.240000;211.179000;211.179000;0 +20260330 073100;211.187000;211.199000;211.176000;211.183000;0 +20260330 073200;211.182000;211.198000;211.168000;211.168000;0 +20260330 073300;211.169000;211.181000;211.153000;211.171000;0 +20260330 073400;211.168000;211.180000;211.162000;211.166000;0 +20260330 073500;211.167000;211.199000;211.166000;211.189000;0 +20260330 073600;211.186000;211.186000;211.125000;211.145000;0 +20260330 073700;211.145000;211.145000;211.124000;211.125000;0 +20260330 073800;211.123000;211.145000;211.109000;211.141000;0 +20260330 073900;211.140000;211.146000;211.129000;211.131000;0 +20260330 074000;211.124000;211.134000;211.098000;211.113000;0 +20260330 074100;211.111000;211.123000;211.095000;211.103000;0 +20260330 074200;211.101000;211.112000;211.083000;211.105000;0 +20260330 074300;211.106000;211.128000;211.100000;211.106000;0 +20260330 074400;211.109000;211.143000;211.093000;211.143000;0 +20260330 074500;211.142000;211.144000;211.103000;211.113000;0 +20260330 074600;211.115000;211.125000;211.101000;211.115000;0 +20260330 074700;211.110000;211.121000;211.096000;211.107000;0 +20260330 074800;211.110000;211.117000;211.101000;211.104000;0 +20260330 074900;211.105000;211.117000;211.083000;211.096000;0 +20260330 075000;211.097000;211.110000;211.074000;211.097000;0 +20260330 075100;211.097000;211.106000;211.084000;211.093000;0 +20260330 075200;211.092000;211.098000;211.082000;211.084000;0 +20260330 075300;211.085000;211.098000;211.084000;211.093000;0 +20260330 075400;211.093000;211.114000;211.087000;211.089000;0 +20260330 075500;211.088000;211.091000;211.065000;211.072000;0 +20260330 075600;211.079000;211.101000;211.073000;211.096000;0 +20260330 075700;211.097000;211.097000;211.062000;211.083000;0 +20260330 075800;211.088000;211.092000;211.057000;211.058000;0 +20260330 075900;211.057000;211.073000;211.047000;211.051000;0 +20260330 080000;211.047000;211.048000;210.981000;210.983000;0 +20260330 080100;210.985000;210.999000;210.979000;210.983000;0 +20260330 080200;210.985000;210.986000;210.961000;210.973000;0 +20260330 080300;210.972000;211.004000;210.963000;210.965000;0 +20260330 080400;210.969000;210.988000;210.956000;210.983000;0 +20260330 080500;210.983000;211.019000;210.983000;211.015000;0 +20260330 080600;211.013000;211.018000;210.969000;210.969000;0 +20260330 080700;210.967000;210.968000;210.954000;210.962000;0 +20260330 080800;210.959000;210.987000;210.952000;210.982000;0 +20260330 080900;210.983000;210.985000;210.932000;210.943000;0 +20260330 081000;210.942000;210.943000;210.932000;210.943000;0 +20260330 081100;210.940000;210.952000;210.928000;210.940000;0 +20260330 081200;210.942000;210.946000;210.917000;210.919000;0 +20260330 081300;210.918000;210.922000;210.902000;210.904000;0 +20260330 081400;210.904000;210.910000;210.893000;210.908000;0 +20260330 081500;210.908000;210.938000;210.891000;210.935000;0 +20260330 081600;210.935000;210.980000;210.923000;210.980000;0 +20260330 081700;210.980000;211.014000;210.974000;211.013000;0 +20260330 081800;211.013000;211.054000;211.003000;211.034000;0 +20260330 081900;211.034000;211.052000;211.018000;211.044000;0 +20260330 082000;211.046000;211.063000;211.032000;211.041000;0 +20260330 082100;211.035000;211.054000;211.024000;211.043000;0 +20260330 082200;211.039000;211.062000;211.020000;211.031000;0 +20260330 082300;211.032000;211.033000;211.007000;211.027000;0 +20260330 082400;211.026000;211.036000;211.003000;211.006000;0 +20260330 082500;211.007000;211.029000;210.995000;211.026000;0 +20260330 082600;211.033000;211.050000;211.015000;211.041000;0 +20260330 082700;211.042000;211.045000;211.007000;211.029000;0 +20260330 082800;211.027000;211.035000;211.011000;211.021000;0 +20260330 082900;211.023000;211.028000;211.002000;211.013000;0 +20260330 083000;211.013000;211.013000;210.971000;210.972000;0 +20260330 083100;210.974000;210.974000;210.951000;210.964000;0 +20260330 083200;210.964000;210.973000;210.949000;210.950000;0 +20260330 083300;210.948000;211.024000;210.945000;211.023000;0 +20260330 083400;211.020000;211.035000;211.008000;211.016000;0 +20260330 083500;211.020000;211.046000;211.019000;211.032000;0 +20260330 083600;211.032000;211.054000;211.032000;211.054000;0 +20260330 083700;211.053000;211.070000;211.049000;211.060000;0 +20260330 083800;211.060000;211.064000;211.042000;211.043000;0 +20260330 083900;211.042000;211.057000;211.042000;211.047000;0 +20260330 084000;211.046000;211.054000;211.042000;211.043000;0 +20260330 084100;211.042000;211.043000;210.965000;210.966000;0 +20260330 084200;210.969000;210.980000;210.954000;210.962000;0 +20260330 084300;210.963000;210.972000;210.956000;210.958000;0 +20260330 084400;210.959000;210.975000;210.938000;210.944000;0 +20260330 084500;210.942000;210.946000;210.928000;210.934000;0 +20260330 084600;210.933000;210.948000;210.920000;210.943000;0 +20260330 084700;210.947000;210.968000;210.938000;210.948000;0 +20260330 084800;210.948000;210.967000;210.939000;210.954000;0 +20260330 084900;210.954000;211.009000;210.950000;211.004000;0 +20260330 085000;211.002000;211.017000;210.977000;210.977000;0 +20260330 085100;210.975000;210.987000;210.963000;210.978000;0 +20260330 085200;210.979000;210.989000;210.952000;210.957000;0 +20260330 085300;210.955000;210.982000;210.951000;210.966000;0 +20260330 085400;210.970000;210.970000;210.942000;210.942000;0 +20260330 085500;210.940000;210.941000;210.891000;210.899000;0 +20260330 085600;210.899000;210.902000;210.811000;210.812000;0 +20260330 085700;210.810000;210.831000;210.787000;210.819000;0 +20260330 085800;210.819000;210.844000;210.815000;210.821000;0 +20260330 085900;210.822000;210.831000;210.805000;210.813000;0 +20260330 090000;210.812000;210.853000;210.798000;210.835000;0 +20260330 090100;210.833000;210.840000;210.815000;210.833000;0 +20260330 090200;210.835000;210.847000;210.820000;210.840000;0 +20260330 090300;210.838000;210.870000;210.814000;210.838000;0 +20260330 090400;210.839000;210.839000;210.790000;210.793000;0 +20260330 090500;210.788000;210.821000;210.788000;210.802000;0 +20260330 090600;210.807000;210.820000;210.770000;210.774000;0 +20260330 090700;210.772000;210.797000;210.770000;210.789000;0 +20260330 090800;210.791000;210.795000;210.772000;210.790000;0 +20260330 090900;210.790000;210.805000;210.776000;210.794000;0 +20260330 091000;210.792000;210.813000;210.788000;210.807000;0 +20260330 091100;210.808000;210.825000;210.796000;210.823000;0 +20260330 091200;210.823000;210.832000;210.802000;210.824000;0 +20260330 091300;210.824000;210.840000;210.816000;210.830000;0 +20260330 091400;210.830000;210.835000;210.819000;210.833000;0 +20260330 091500;210.830000;210.882000;210.825000;210.869000;0 +20260330 091600;210.869000;210.874000;210.845000;210.851000;0 +20260330 091700;210.851000;210.870000;210.845000;210.869000;0 +20260330 091800;210.867000;210.877000;210.851000;210.868000;0 +20260330 091900;210.868000;210.869000;210.851000;210.852000;0 +20260330 092000;210.855000;210.865000;210.835000;210.836000;0 +20260330 092100;210.837000;210.873000;210.835000;210.842000;0 +20260330 092200;210.842000;210.842000;210.778000;210.782000;0 +20260330 092300;210.781000;210.815000;210.781000;210.797000;0 +20260330 092400;210.798000;210.798000;210.740000;210.743000;0 +20260330 092500;210.743000;210.743000;210.704000;210.722000;0 +20260330 092600;210.723000;210.752000;210.699000;210.705000;0 +20260330 092700;210.707000;210.736000;210.707000;210.735000;0 +20260330 092800;210.736000;210.755000;210.732000;210.741000;0 +20260330 092900;210.742000;210.745000;210.680000;210.697000;0 +20260330 093000;210.700000;210.708000;210.670000;210.675000;0 +20260330 093100;210.675000;210.685000;210.644000;210.646000;0 +20260330 093200;210.644000;210.645000;210.603000;210.632000;0 +20260330 093300;210.634000;210.661000;210.621000;210.638000;0 +20260330 093400;210.638000;210.638000;210.533000;210.543000;0 +20260330 093500;210.551000;210.552000;210.473000;210.486000;0 +20260330 093600;210.485000;210.503000;210.470000;210.499000;0 +20260330 093700;210.500000;210.523000;210.481000;210.508000;0 +20260330 093800;210.505000;210.516000;210.481000;210.504000;0 +20260330 093900;210.504000;210.537000;210.483000;210.490000;0 +20260330 094000;210.488000;210.490000;210.403000;210.403000;0 +20260330 094100;210.403000;210.410000;210.375000;210.396000;0 +20260330 094200;210.399000;210.421000;210.369000;210.371000;0 +20260330 094300;210.369000;210.382000;210.354000;210.363000;0 +20260330 094400;210.360000;210.374000;210.339000;210.362000;0 +20260330 094500;210.362000;210.374000;210.343000;210.372000;0 +20260330 094600;210.372000;210.382000;210.346000;210.367000;0 +20260330 094700;210.370000;210.392000;210.349000;210.349000;0 +20260330 094800;210.351000;210.360000;210.331000;210.350000;0 +20260330 094900;210.346000;210.353000;210.329000;210.330000;0 +20260330 095000;210.331000;210.352000;210.329000;210.349000;0 +20260330 095100;210.348000;210.393000;210.348000;210.370000;0 +20260330 095200;210.365000;210.373000;210.312000;210.314000;0 +20260330 095300;210.318000;210.328000;210.284000;210.298000;0 +20260330 095400;210.299000;210.308000;210.265000;210.265000;0 +20260330 095500;210.265000;210.297000;210.254000;210.285000;0 +20260330 095600;210.285000;210.350000;210.278000;210.317000;0 +20260330 095700;210.319000;210.336000;210.293000;210.302000;0 +20260330 095800;210.305000;210.325000;210.296000;210.304000;0 +20260330 095900;210.303000;210.339000;210.303000;210.311000;0 +20260330 100000;210.311000;210.352000;210.308000;210.324000;0 +20260330 100100;210.323000;210.388000;210.320000;210.376000;0 +20260330 100200;210.375000;210.387000;210.358000;210.365000;0 +20260330 100300;210.365000;210.372000;210.352000;210.369000;0 +20260330 100400;210.367000;210.409000;210.367000;210.391000;0 +20260330 100500;210.392000;210.404000;210.324000;210.352000;0 +20260330 100600;210.351000;210.377000;210.339000;210.369000;0 +20260330 100700;210.370000;210.385000;210.353000;210.371000;0 +20260330 100800;210.373000;210.390000;210.354000;210.389000;0 +20260330 100900;210.388000;210.416000;210.373000;210.411000;0 +20260330 101000;210.412000;210.442000;210.401000;210.418000;0 +20260330 101100;210.418000;210.430000;210.380000;210.384000;0 +20260330 101200;210.385000;210.399000;210.370000;210.385000;0 +20260330 101300;210.384000;210.388000;210.350000;210.376000;0 +20260330 101400;210.375000;210.382000;210.351000;210.359000;0 +20260330 101500;210.356000;210.366000;210.318000;210.320000;0 +20260330 101600;210.320000;210.325000;210.300000;210.312000;0 +20260330 101700;210.313000;210.323000;210.247000;210.251000;0 +20260330 101800;210.253000;210.295000;210.253000;210.284000;0 +20260330 101900;210.288000;210.290000;210.258000;210.273000;0 +20260330 102000;210.272000;210.286000;210.240000;210.264000;0 +20260330 102100;210.266000;210.268000;210.241000;210.248000;0 +20260330 102200;210.247000;210.331000;210.247000;210.318000;0 +20260330 102300;210.315000;210.315000;210.276000;210.287000;0 +20260330 102400;210.287000;210.296000;210.272000;210.282000;0 +20260330 102500;210.282000;210.307000;210.271000;210.287000;0 +20260330 102600;210.287000;210.314000;210.285000;210.306000;0 +20260330 102700;210.307000;210.321000;210.288000;210.295000;0 +20260330 102800;210.293000;210.314000;210.290000;210.300000;0 +20260330 102900;210.299000;210.335000;210.294000;210.306000;0 +20260330 103000;210.313000;210.368000;210.304000;210.355000;0 +20260330 103100;210.358000;210.401000;210.356000;210.381000;0 +20260330 103200;210.381000;210.427000;210.381000;210.427000;0 +20260330 103300;210.428000;210.449000;210.417000;210.428000;0 +20260330 103400;210.425000;210.432000;210.404000;210.415000;0 +20260330 103500;210.415000;210.434000;210.396000;210.396000;0 +20260330 103600;210.397000;210.408000;210.370000;210.372000;0 +20260330 103700;210.370000;210.402000;210.369000;210.396000;0 +20260330 103800;210.397000;210.425000;210.395000;210.398000;0 +20260330 103900;210.396000;210.415000;210.379000;210.414000;0 +20260330 104000;210.414000;210.439000;210.413000;210.428000;0 +20260330 104100;210.428000;210.431000;210.382000;210.408000;0 +20260330 104200;210.411000;210.413000;210.351000;210.351000;0 +20260330 104300;210.349000;210.350000;210.297000;210.318000;0 +20260330 104400;210.322000;210.342000;210.310000;210.328000;0 +20260330 104500;210.328000;210.376000;210.317000;210.363000;0 +20260330 104600;210.363000;210.458000;210.363000;210.452000;0 +20260330 104700;210.451000;210.483000;210.411000;210.482000;0 +20260330 104800;210.482000;210.535000;210.477000;210.487000;0 +20260330 104900;210.487000;210.505000;210.437000;210.441000;0 +20260330 105000;210.443000;210.450000;210.390000;210.424000;0 +20260330 105100;210.425000;210.450000;210.411000;210.432000;0 +20260330 105200;210.433000;210.463000;210.413000;210.461000;0 +20260330 105300;210.458000;210.524000;210.454000;210.517000;0 +20260330 105400;210.516000;210.556000;210.506000;210.548000;0 +20260330 105500;210.549000;210.603000;210.548000;210.554000;0 +20260330 105600;210.552000;210.636000;210.552000;210.616000;0 +20260330 105700;210.614000;210.614000;210.557000;210.562000;0 +20260330 105800;210.564000;210.576000;210.517000;210.517000;0 +20260330 105900;210.514000;210.549000;210.510000;210.549000;0 +20260330 110000;210.555000;210.568000;210.543000;210.548000;0 +20260330 110100;210.550000;210.558000;210.520000;210.536000;0 +20260330 110200;210.533000;210.533000;210.486000;210.512000;0 +20260330 110300;210.511000;210.538000;210.490000;210.538000;0 +20260330 110400;210.539000;210.567000;210.521000;210.555000;0 +20260330 110500;210.554000;210.574000;210.511000;210.515000;0 +20260330 110600;210.518000;210.521000;210.435000;210.439000;0 +20260330 110700;210.440000;210.464000;210.421000;210.436000;0 +20260330 110800;210.437000;210.445000;210.403000;210.403000;0 +20260330 110900;210.404000;210.423000;210.394000;210.422000;0 +20260330 111000;210.422000;210.452000;210.422000;210.426000;0 +20260330 111100;210.424000;210.448000;210.420000;210.444000;0 +20260330 111200;210.442000;210.454000;210.418000;210.428000;0 +20260330 111300;210.427000;210.444000;210.406000;210.421000;0 +20260330 111400;210.423000;210.423000;210.334000;210.335000;0 +20260330 111500;210.337000;210.365000;210.298000;210.325000;0 +20260330 111600;210.326000;210.329000;210.282000;210.286000;0 +20260330 111700;210.284000;210.315000;210.283000;210.315000;0 +20260330 111800;210.314000;210.401000;210.313000;210.398000;0 +20260330 111900;210.395000;210.425000;210.385000;210.412000;0 +20260330 112000;210.412000;210.431000;210.395000;210.415000;0 +20260330 112100;210.414000;210.415000;210.383000;210.391000;0 +20260330 112200;210.392000;210.413000;210.364000;210.409000;0 +20260330 112300;210.406000;210.430000;210.396000;210.428000;0 +20260330 112400;210.427000;210.444000;210.419000;210.438000;0 +20260330 112500;210.439000;210.472000;210.423000;210.425000;0 +20260330 112600;210.427000;210.441000;210.413000;210.433000;0 +20260330 112700;210.430000;210.443000;210.420000;210.426000;0 +20260330 112800;210.427000;210.450000;210.423000;210.444000;0 +20260330 112900;210.446000;210.464000;210.429000;210.461000;0 +20260330 113000;210.462000;210.470000;210.434000;210.451000;0 +20260330 113100;210.447000;210.455000;210.429000;210.440000;0 +20260330 113200;210.439000;210.466000;210.435000;210.442000;0 +20260330 113300;210.443000;210.460000;210.421000;210.423000;0 +20260330 113400;210.425000;210.486000;210.425000;210.476000;0 +20260330 113500;210.475000;210.494000;210.388000;210.402000;0 +20260330 113600;210.401000;210.436000;210.388000;210.427000;0 +20260330 113700;210.429000;210.490000;210.421000;210.459000;0 +20260330 113800;210.459000;210.475000;210.444000;210.445000;0 +20260330 113900;210.447000;210.467000;210.438000;210.443000;0 +20260330 114000;210.445000;210.445000;210.415000;210.427000;0 +20260330 114100;210.424000;210.424000;210.359000;210.367000;0 +20260330 114200;210.363000;210.363000;210.310000;210.311000;0 +20260330 114300;210.312000;210.340000;210.302000;210.340000;0 +20260330 114400;210.341000;210.352000;210.335000;210.347000;0 +20260330 114500;210.348000;210.380000;210.339000;210.369000;0 +20260330 114600;210.368000;210.390000;210.332000;210.336000;0 +20260330 114700;210.337000;210.360000;210.324000;210.359000;0 +20260330 114800;210.359000;210.390000;210.357000;210.388000;0 +20260330 114900;210.387000;210.387000;210.347000;210.355000;0 +20260330 115000;210.359000;210.389000;210.350000;210.389000;0 +20260330 115100;210.388000;210.403000;210.374000;210.391000;0 +20260330 115200;210.391000;210.397000;210.374000;210.381000;0 +20260330 115300;210.382000;210.392000;210.359000;210.374000;0 +20260330 115400;210.373000;210.374000;210.341000;210.367000;0 +20260330 115500;210.368000;210.391000;210.366000;210.389000;0 +20260330 115600;210.393000;210.397000;210.376000;210.377000;0 +20260330 115700;210.378000;210.392000;210.344000;210.361000;0 +20260330 115800;210.363000;210.379000;210.358000;210.379000;0 +20260330 115900;210.381000;210.382000;210.349000;210.349000;0 +20260330 120000;210.347000;210.359000;210.332000;210.334000;0 +20260330 120100;210.333000;210.334000;210.289000;210.289000;0 +20260330 120200;210.288000;210.306000;210.264000;210.266000;0 +20260330 120300;210.266000;210.294000;210.262000;210.282000;0 +20260330 120400;210.281000;210.290000;210.277000;210.281000;0 +20260330 120500;210.289000;210.320000;210.286000;210.301000;0 +20260330 120600;210.304000;210.304000;210.270000;210.271000;0 +20260330 120700;210.269000;210.285000;210.245000;210.267000;0 +20260330 120800;210.269000;210.278000;210.261000;210.271000;0 +20260330 120900;210.272000;210.291000;210.269000;210.270000;0 +20260330 121000;210.271000;210.290000;210.259000;210.277000;0 +20260330 121100;210.276000;210.289000;210.260000;210.263000;0 +20260330 121200;210.264000;210.313000;210.261000;210.313000;0 +20260330 121300;210.314000;210.322000;210.310000;210.322000;0 +20260330 121400;210.321000;210.335000;210.318000;210.333000;0 +20260330 121500;210.334000;210.337000;210.325000;210.327000;0 +20260330 121600;210.328000;210.342000;210.317000;210.318000;0 +20260330 121700;210.320000;210.331000;210.309000;210.330000;0 +20260330 121800;210.328000;210.331000;210.307000;210.325000;0 +20260330 121900;210.325000;210.348000;210.321000;210.346000;0 +20260330 122000;210.346000;210.374000;210.346000;210.348000;0 +20260330 122100;210.345000;210.348000;210.322000;210.322000;0 +20260330 122200;210.322000;210.326000;210.301000;210.302000;0 +20260330 122300;210.303000;210.307000;210.293000;210.296000;0 +20260330 122400;210.296000;210.298000;210.277000;210.289000;0 +20260330 122500;210.288000;210.293000;210.283000;210.288000;0 +20260330 122600;210.288000;210.288000;210.253000;210.258000;0 +20260330 122700;210.256000;210.267000;210.246000;210.247000;0 +20260330 122800;210.246000;210.257000;210.242000;210.247000;0 +20260330 122900;210.247000;210.263000;210.242000;210.242000;0 +20260330 123000;210.241000;210.297000;210.240000;210.296000;0 +20260330 123100;210.291000;210.310000;210.269000;210.271000;0 +20260330 123200;210.270000;210.292000;210.270000;210.280000;0 +20260330 123300;210.279000;210.292000;210.272000;210.273000;0 +20260330 123400;210.269000;210.281000;210.262000;210.265000;0 +20260330 123500;210.267000;210.277000;210.267000;210.276000;0 +20260330 123600;210.276000;210.276000;210.242000;210.252000;0 +20260330 123700;210.253000;210.268000;210.252000;210.255000;0 +20260330 123800;210.254000;210.260000;210.231000;210.231000;0 +20260330 123900;210.231000;210.259000;210.217000;210.219000;0 +20260330 124000;210.218000;210.229000;210.217000;210.223000;0 +20260330 124100;210.223000;210.238000;210.220000;210.229000;0 +20260330 124200;210.231000;210.232000;210.214000;210.216000;0 +20260330 124300;210.216000;210.237000;210.203000;210.207000;0 +20260330 124400;210.204000;210.223000;210.202000;210.219000;0 +20260330 124500;210.217000;210.234000;210.208000;210.214000;0 +20260330 124600;210.217000;210.226000;210.200000;210.200000;0 +20260330 124700;210.199000;210.218000;210.199000;210.212000;0 +20260330 124800;210.213000;210.228000;210.211000;210.222000;0 +20260330 124900;210.220000;210.234000;210.203000;210.212000;0 +20260330 125000;210.211000;210.231000;210.197000;210.230000;0 +20260330 125100;210.229000;210.264000;210.228000;210.263000;0 +20260330 125200;210.261000;210.266000;210.249000;210.257000;0 +20260330 125300;210.253000;210.265000;210.240000;210.245000;0 +20260330 125400;210.245000;210.253000;210.242000;210.247000;0 +20260330 125500;210.247000;210.259000;210.234000;210.248000;0 +20260330 125600;210.248000;210.297000;210.240000;210.288000;0 +20260330 125700;210.288000;210.290000;210.265000;210.271000;0 +20260330 125800;210.271000;210.289000;210.266000;210.282000;0 +20260330 125900;210.283000;210.320000;210.276000;210.306000;0 +20260330 130000;210.305000;210.318000;210.285000;210.302000;0 +20260330 130100;210.301000;210.331000;210.299000;210.331000;0 +20260330 130200;210.332000;210.346000;210.319000;210.344000;0 +20260330 130300;210.346000;210.367000;210.341000;210.355000;0 +20260330 130400;210.353000;210.362000;210.341000;210.361000;0 +20260330 130500;210.357000;210.378000;210.352000;210.368000;0 +20260330 130600;210.368000;210.406000;210.361000;210.402000;0 +20260330 130700;210.402000;210.403000;210.363000;210.368000;0 +20260330 130800;210.368000;210.371000;210.332000;210.344000;0 +20260330 130900;210.344000;210.364000;210.342000;210.361000;0 +20260330 131000;210.362000;210.374000;210.313000;210.315000;0 +20260330 131100;210.314000;210.340000;210.312000;210.320000;0 +20260330 131200;210.324000;210.342000;210.305000;210.311000;0 +20260330 131300;210.311000;210.342000;210.289000;210.337000;0 +20260330 131400;210.339000;210.347000;210.329000;210.343000;0 +20260330 131500;210.343000;210.364000;210.342000;210.356000;0 +20260330 131600;210.358000;210.363000;210.342000;210.344000;0 +20260330 131700;210.345000;210.366000;210.345000;210.354000;0 +20260330 131800;210.354000;210.371000;210.353000;210.369000;0 +20260330 131900;210.369000;210.399000;210.369000;210.394000;0 +20260330 132000;210.394000;210.417000;210.388000;210.406000;0 +20260330 132100;210.407000;210.408000;210.387000;210.390000;0 +20260330 132200;210.388000;210.402000;210.369000;210.378000;0 +20260330 132300;210.376000;210.408000;210.376000;210.403000;0 +20260330 132400;210.400000;210.416000;210.391000;210.416000;0 +20260330 132500;210.415000;210.418000;210.398000;210.403000;0 +20260330 132600;210.403000;210.419000;210.402000;210.405000;0 +20260330 132700;210.404000;210.415000;210.399000;210.406000;0 +20260330 132800;210.404000;210.437000;210.403000;210.420000;0 +20260330 132900;210.416000;210.420000;210.401000;210.417000;0 +20260330 133000;210.413000;210.452000;210.402000;210.450000;0 +20260330 133100;210.449000;210.452000;210.418000;210.420000;0 +20260330 133200;210.419000;210.421000;210.395000;210.416000;0 +20260330 133300;210.421000;210.425000;210.402000;210.404000;0 +20260330 133400;210.403000;210.421000;210.393000;210.417000;0 +20260330 133500;210.415000;210.424000;210.387000;210.388000;0 +20260330 133600;210.390000;210.413000;210.390000;210.413000;0 +20260330 133700;210.412000;210.417000;210.388000;210.392000;0 +20260330 133800;210.394000;210.397000;210.383000;210.384000;0 +20260330 133900;210.383000;210.400000;210.379000;210.388000;0 +20260330 134000;210.387000;210.399000;210.376000;210.389000;0 +20260330 134100;210.388000;210.425000;210.380000;210.409000;0 +20260330 134200;210.408000;210.422000;210.394000;210.394000;0 +20260330 134300;210.395000;210.414000;210.395000;210.400000;0 +20260330 134400;210.399000;210.440000;210.398000;210.439000;0 +20260330 134500;210.438000;210.447000;210.431000;210.443000;0 +20260330 134600;210.444000;210.444000;210.412000;210.427000;0 +20260330 134700;210.431000;210.456000;210.431000;210.436000;0 +20260330 134800;210.436000;210.445000;210.407000;210.412000;0 +20260330 134900;210.407000;210.424000;210.405000;210.414000;0 +20260330 135000;210.415000;210.426000;210.411000;210.414000;0 +20260330 135100;210.415000;210.426000;210.388000;210.417000;0 +20260330 135200;210.418000;210.418000;210.403000;210.412000;0 +20260330 135300;210.409000;210.429000;210.409000;210.426000;0 +20260330 135400;210.425000;210.431000;210.408000;210.424000;0 +20260330 135500;210.423000;210.428000;210.410000;210.418000;0 +20260330 135600;210.418000;210.429000;210.412000;210.422000;0 +20260330 135700;210.422000;210.422000;210.401000;210.405000;0 +20260330 135800;210.405000;210.406000;210.380000;210.380000;0 +20260330 135900;210.381000;210.395000;210.362000;210.395000;0 +20260330 140000;210.394000;210.404000;210.381000;210.393000;0 +20260330 140100;210.393000;210.407000;210.381000;210.406000;0 +20260330 140200;210.407000;210.438000;210.401000;210.428000;0 +20260330 140300;210.432000;210.433000;210.410000;210.411000;0 +20260330 140400;210.410000;210.411000;210.388000;210.390000;0 +20260330 140500;210.392000;210.411000;210.392000;210.396000;0 +20260330 140600;210.397000;210.399000;210.380000;210.386000;0 +20260330 140700;210.385000;210.385000;210.355000;210.357000;0 +20260330 140800;210.355000;210.361000;210.345000;210.351000;0 +20260330 140900;210.349000;210.356000;210.342000;210.345000;0 +20260330 141000;210.346000;210.355000;210.333000;210.333000;0 +20260330 141100;210.335000;210.343000;210.333000;210.336000;0 +20260330 141200;210.338000;210.347000;210.330000;210.344000;0 +20260330 141300;210.346000;210.350000;210.325000;210.339000;0 +20260330 141400;210.345000;210.375000;210.343000;210.360000;0 +20260330 141500;210.363000;210.367000;210.341000;210.341000;0 +20260330 141600;210.344000;210.356000;210.344000;210.345000;0 +20260330 141700;210.347000;210.352000;210.336000;210.336000;0 +20260330 141800;210.339000;210.353000;210.335000;210.347000;0 +20260330 141900;210.345000;210.357000;210.341000;210.347000;0 +20260330 142000;210.346000;210.397000;210.344000;210.396000;0 +20260330 142100;210.394000;210.416000;210.392000;210.416000;0 +20260330 142200;210.416000;210.426000;210.410000;210.411000;0 +20260330 142300;210.413000;210.428000;210.412000;210.417000;0 +20260330 142400;210.418000;210.437000;210.418000;210.429000;0 +20260330 142500;210.429000;210.430000;210.402000;210.403000;0 +20260330 142600;210.406000;210.416000;210.399000;210.416000;0 +20260330 142700;210.412000;210.421000;210.400000;210.421000;0 +20260330 142800;210.419000;210.429000;210.405000;210.426000;0 +20260330 142900;210.425000;210.433000;210.416000;210.425000;0 +20260330 143000;210.426000;210.452000;210.422000;210.448000;0 +20260330 143100;210.449000;210.473000;210.448000;210.469000;0 +20260330 143200;210.469000;210.492000;210.465000;210.484000;0 +20260330 143300;210.481000;210.481000;210.449000;210.449000;0 +20260330 143400;210.455000;210.462000;210.450000;210.450000;0 +20260330 143500;210.451000;210.469000;210.450000;210.469000;0 +20260330 143600;210.468000;210.486000;210.468000;210.483000;0 +20260330 143700;210.484000;210.494000;210.477000;210.494000;0 +20260330 143800;210.495000;210.501000;210.481000;210.490000;0 +20260330 143900;210.491000;210.502000;210.488000;210.488000;0 +20260330 144000;210.491000;210.498000;210.481000;210.483000;0 +20260330 144100;210.481000;210.499000;210.476000;210.499000;0 +20260330 144200;210.498000;210.510000;210.490000;210.506000;0 +20260330 144300;210.504000;210.518000;210.498000;210.506000;0 +20260330 144400;210.507000;210.511000;210.497000;210.500000;0 +20260330 144500;210.500000;210.530000;210.490000;210.526000;0 +20260330 144600;210.525000;210.528000;210.498000;210.501000;0 +20260330 144700;210.499000;210.501000;210.477000;210.490000;0 +20260330 144800;210.488000;210.507000;210.487000;210.497000;0 +20260330 144900;210.499000;210.509000;210.488000;210.491000;0 +20260330 145000;210.488000;210.495000;210.478000;210.483000;0 +20260330 145100;210.482000;210.491000;210.452000;210.476000;0 +20260330 145200;210.471000;210.478000;210.462000;210.462000;0 +20260330 145300;210.462000;210.467000;210.453000;210.456000;0 +20260330 145400;210.455000;210.459000;210.434000;210.458000;0 +20260330 145500;210.456000;210.481000;210.455000;210.472000;0 +20260330 145600;210.472000;210.476000;210.465000;210.467000;0 +20260330 145700;210.474000;210.493000;210.447000;210.455000;0 +20260330 145800;210.453000;210.470000;210.443000;210.456000;0 +20260330 145900;210.453000;210.477000;210.445000;210.463000;0 +20260330 150000;210.463000;210.463000;210.437000;210.448000;0 +20260330 150100;210.454000;210.478000;210.452000;210.475000;0 +20260330 150200;210.476000;210.492000;210.456000;210.456000;0 +20260330 150300;210.454000;210.462000;210.441000;210.446000;0 +20260330 150400;210.446000;210.475000;210.444000;210.467000;0 +20260330 150500;210.463000;210.465000;210.444000;210.445000;0 +20260330 150600;210.445000;210.471000;210.444000;210.461000;0 +20260330 150700;210.462000;210.466000;210.448000;210.453000;0 +20260330 150800;210.451000;210.462000;210.442000;210.446000;0 +20260330 150900;210.445000;210.458000;210.437000;210.446000;0 +20260330 151000;210.444000;210.457000;210.416000;210.417000;0 +20260330 151100;210.418000;210.426000;210.372000;210.415000;0 +20260330 151200;210.417000;210.429000;210.406000;210.417000;0 +20260330 151300;210.415000;210.420000;210.401000;210.410000;0 +20260330 151400;210.412000;210.435000;210.405000;210.426000;0 +20260330 151500;210.427000;210.441000;210.427000;210.427000;0 +20260330 151600;210.429000;210.433000;210.414000;210.418000;0 +20260330 151700;210.419000;210.431000;210.415000;210.419000;0 +20260330 151800;210.418000;210.426000;210.410000;210.420000;0 +20260330 151900;210.421000;210.424000;210.389000;210.397000;0 +20260330 152000;210.401000;210.405000;210.384000;210.390000;0 +20260330 152100;210.388000;210.391000;210.373000;210.385000;0 +20260330 152200;210.385000;210.397000;210.383000;210.387000;0 +20260330 152300;210.390000;210.400000;210.384000;210.400000;0 +20260330 152400;210.399000;210.416000;210.398000;210.403000;0 +20260330 152500;210.405000;210.406000;210.394000;210.402000;0 +20260330 152600;210.401000;210.409000;210.395000;210.402000;0 +20260330 152700;210.403000;210.413000;210.397000;210.399000;0 +20260330 152800;210.397000;210.406000;210.394000;210.404000;0 +20260330 152900;210.403000;210.414000;210.401000;210.414000;0 +20260330 153000;210.415000;210.456000;210.412000;210.452000;0 +20260330 153100;210.450000;210.453000;210.426000;210.427000;0 +20260330 153200;210.428000;210.445000;210.424000;210.434000;0 +20260330 153300;210.435000;210.458000;210.433000;210.458000;0 +20260330 153400;210.458000;210.467000;210.453000;210.457000;0 +20260330 153500;210.453000;210.477000;210.453000;210.468000;0 +20260330 153600;210.469000;210.478000;210.463000;210.474000;0 +20260330 153700;210.473000;210.500000;210.462000;210.500000;0 +20260330 153800;210.500000;210.502000;210.477000;210.491000;0 +20260330 153900;210.492000;210.493000;210.473000;210.483000;0 +20260330 154000;210.482000;210.503000;210.482000;210.499000;0 +20260330 154100;210.497000;210.506000;210.495000;210.503000;0 +20260330 154200;210.500000;210.506000;210.486000;210.487000;0 +20260330 154300;210.487000;210.493000;210.476000;210.493000;0 +20260330 154400;210.491000;210.506000;210.488000;210.495000;0 +20260330 154500;210.494000;210.501000;210.481000;210.483000;0 +20260330 154600;210.483000;210.483000;210.470000;210.478000;0 +20260330 154700;210.479000;210.510000;210.478000;210.502000;0 +20260330 154800;210.501000;210.501000;210.469000;210.471000;0 +20260330 154900;210.471000;210.476000;210.468000;210.476000;0 +20260330 155000;210.480000;210.487000;210.469000;210.482000;0 +20260330 155100;210.483000;210.487000;210.482000;210.483000;0 +20260330 155200;210.483000;210.489000;210.481000;210.482000;0 +20260330 155300;210.482000;210.506000;210.478000;210.498000;0 +20260330 155400;210.499000;210.505000;210.494000;210.501000;0 +20260330 155500;210.503000;210.533000;210.503000;210.523000;0 +20260330 155600;210.525000;210.543000;210.525000;210.543000;0 +20260330 155700;210.542000;210.553000;210.538000;210.549000;0 +20260330 155800;210.548000;210.555000;210.529000;210.548000;0 +20260330 155900;210.549000;210.563000;210.540000;210.554000;0 +20260330 160000;210.553000;210.565000;210.542000;210.556000;0 +20260330 160100;210.555000;210.572000;210.547000;210.553000;0 +20260330 160200;210.553000;210.563000;210.544000;210.545000;0 +20260330 160300;210.544000;210.545000;210.532000;210.532000;0 +20260330 160400;210.528000;210.531000;210.512000;210.512000;0 +20260330 160500;210.511000;210.518000;210.508000;210.518000;0 +20260330 160600;210.515000;210.526000;210.514000;210.516000;0 +20260330 160700;210.512000;210.513000;210.490000;210.509000;0 +20260330 160800;210.509000;210.513000;210.494000;210.495000;0 +20260330 160900;210.491000;210.495000;210.462000;210.488000;0 +20260330 161000;210.490000;210.505000;210.482000;210.502000;0 +20260330 161100;210.502000;210.511000;210.496000;210.496000;0 +20260330 161200;210.496000;210.512000;210.495000;210.511000;0 +20260330 161300;210.512000;210.515000;210.499000;210.506000;0 +20260330 161400;210.508000;210.509000;210.498000;210.499000;0 +20260330 161500;210.499000;210.499000;210.482000;210.492000;0 +20260330 161600;210.480000;210.485000;210.480000;210.485000;0 +20260330 161700;210.481000;210.497000;210.481000;210.496000;0 +20260330 161800;210.496000;210.496000;210.486000;210.493000;0 +20260330 161900;210.494000;210.494000;210.479000;210.480000;0 +20260330 162000;210.479000;210.490000;210.469000;210.471000;0 +20260330 162100;210.473000;210.488000;210.470000;210.481000;0 +20260330 162200;210.482000;210.482000;210.462000;210.463000;0 +20260330 162300;210.464000;210.469000;210.460000;210.467000;0 +20260330 162400;210.467000;210.472000;210.456000;210.456000;0 +20260330 162500;210.455000;210.471000;210.453000;210.463000;0 +20260330 162600;210.464000;210.468000;210.463000;210.467000;0 +20260330 162700;210.464000;210.466000;210.459000;210.463000;0 +20260330 162800;210.460000;210.461000;210.454000;210.454000;0 +20260330 162900;210.455000;210.484000;210.455000;210.480000;0 +20260330 163000;210.481000;210.494000;210.478000;210.494000;0 +20260330 163100;210.490000;210.498000;210.490000;210.495000;0 +20260330 163200;210.497000;210.515000;210.497000;210.512000;0 +20260330 163300;210.513000;210.526000;210.512000;210.521000;0 +20260330 163400;210.521000;210.534000;210.512000;210.533000;0 +20260330 163500;210.534000;210.534000;210.514000;210.516000;0 +20260330 163600;210.516000;210.521000;210.508000;210.510000;0 +20260330 163700;210.509000;210.533000;210.509000;210.533000;0 +20260330 163800;210.532000;210.596000;210.532000;210.582000;0 +20260330 163900;210.585000;210.597000;210.583000;210.591000;0 +20260330 164000;210.593000;210.600000;210.575000;210.581000;0 +20260330 164100;210.578000;210.578000;210.569000;210.569000;0 +20260330 164200;210.569000;210.574000;210.526000;210.526000;0 +20260330 164300;210.526000;210.529000;210.504000;210.516000;0 +20260330 164400;210.513000;210.528000;210.511000;210.513000;0 +20260330 164500;210.513000;210.513000;210.483000;210.502000;0 +20260330 164600;210.503000;210.507000;210.478000;210.507000;0 +20260330 164700;210.504000;210.525000;210.504000;210.525000;0 +20260330 164800;210.527000;210.529000;210.527000;210.529000;0 +20260330 164900;210.529000;210.559000;210.524000;210.546000;0 +20260330 165000;210.550000;210.559000;210.543000;210.543000;0 +20260330 165100;210.541000;210.560000;210.539000;210.552000;0 +20260330 165200;210.552000;210.557000;210.547000;210.550000;0 +20260330 165300;210.551000;210.568000;210.551000;210.563000;0 +20260330 165400;210.558000;210.564000;210.544000;210.545000;0 +20260330 165500;210.547000;210.565000;210.547000;210.556000;0 +20260330 165600;210.562000;210.568000;210.555000;210.565000;0 +20260330 165700;210.554000;210.596000;210.554000;210.589000;0 +20260330 165800;210.584000;210.584000;210.556000;210.567000;0 +20260330 165900;210.566000;210.568000;210.497000;210.543000;0 +20260330 170000;210.555000;210.555000;210.555000;210.555000;0 +20260330 170500;210.339000;210.339000;210.339000;210.339000;0 +20260330 170600;210.349000;210.373000;210.349000;210.373000;0 +20260330 170700;210.379000;210.379000;210.379000;210.379000;0 +20260330 170800;210.375000;210.398000;210.371000;210.398000;0 +20260330 170900;210.435000;210.445000;210.405000;210.405000;0 +20260330 171000;210.415000;210.415000;210.395000;210.395000;0 +20260330 171100;210.386000;210.405000;210.385000;210.385000;0 +20260330 171200;210.390000;210.390000;210.382000;210.382000;0 +20260330 171300;210.395000;210.435000;210.395000;210.435000;0 +20260330 171400;210.412000;210.455000;210.412000;210.455000;0 +20260330 171500;210.456000;210.484000;210.455000;210.484000;0 +20260330 171600;210.486000;210.494000;210.460000;210.461000;0 +20260330 171700;210.460000;210.460000;210.451000;210.451000;0 +20260330 171800;210.448000;210.480000;210.445000;210.468000;0 +20260330 171900;210.463000;210.463000;210.463000;210.463000;0 +20260330 172000;210.449000;210.449000;210.449000;210.449000;0 +20260330 172100;210.459000;210.470000;210.438000;210.461000;0 +20260330 172200;210.457000;210.482000;210.408000;210.453000;0 +20260330 172300;210.426000;210.475000;210.426000;210.474000;0 +20260330 172400;210.424000;210.485000;210.418000;210.485000;0 +20260330 172500;210.463000;210.463000;210.434000;210.441000;0 +20260330 172600;210.442000;210.442000;210.416000;210.420000;0 +20260330 172700;210.437000;210.438000;210.409000;210.426000;0 +20260330 172800;210.426000;210.427000;210.340000;210.350000;0 +20260330 172900;210.350000;210.351000;210.350000;210.350000;0 +20260330 173000;210.359000;210.363000;210.347000;210.359000;0 +20260330 173100;210.359000;210.364000;210.337000;210.337000;0 +20260330 173200;210.342000;210.346000;210.322000;210.322000;0 +20260330 173300;210.324000;210.394000;210.322000;210.394000;0 +20260330 173400;210.394000;210.474000;210.387000;210.456000;0 +20260330 173500;210.455000;210.455000;210.422000;210.438000;0 +20260330 173600;210.444000;210.455000;210.411000;210.445000;0 +20260330 173700;210.445000;210.474000;210.443000;210.459000;0 +20260330 173800;210.463000;210.482000;210.434000;210.469000;0 +20260330 173900;210.470000;210.488000;210.445000;210.449000;0 +20260330 174000;210.442000;210.508000;210.442000;210.505000;0 +20260330 174100;210.507000;210.529000;210.487000;210.529000;0 +20260330 174200;210.526000;210.542000;210.525000;210.540000;0 +20260330 174300;210.540000;210.548000;210.536000;210.542000;0 +20260330 174400;210.534000;210.548000;210.510000;210.510000;0 +20260330 174500;210.511000;210.569000;210.511000;210.546000;0 +20260330 174600;210.541000;210.567000;210.537000;210.553000;0 +20260330 174700;210.553000;210.578000;210.537000;210.555000;0 +20260330 174800;210.555000;210.576000;210.536000;210.539000;0 +20260330 174900;210.541000;210.559000;210.514000;210.515000;0 +20260330 175000;210.531000;210.557000;210.511000;210.526000;0 +20260330 175100;210.527000;210.541000;210.523000;210.540000;0 +20260330 175200;210.537000;210.565000;210.512000;210.560000;0 +20260330 175300;210.557000;210.567000;210.528000;210.528000;0 +20260330 175400;210.510000;210.542000;210.500000;210.514000;0 +20260330 175500;210.514000;210.536000;210.500000;210.522000;0 +20260330 175600;210.522000;210.526000;210.495000;210.514000;0 +20260330 175700;210.516000;210.539000;210.503000;210.519000;0 +20260330 175800;210.519000;210.522000;210.514000;210.517000;0 +20260330 175900;210.516000;210.516000;210.510000;210.514000;0 +20260330 180000;210.496000;210.578000;210.496000;210.555000;0 +20260330 180100;210.569000;210.605000;210.569000;210.579000;0 +20260330 180200;210.579000;210.589000;210.568000;210.578000;0 +20260330 180300;210.582000;210.603000;210.579000;210.590000;0 +20260330 180400;210.588000;210.602000;210.588000;210.602000;0 +20260330 180500;210.601000;210.606000;210.597000;210.602000;0 +20260330 180600;210.603000;210.603000;210.580000;210.589000;0 +20260330 180700;210.591000;210.591000;210.590000;210.590000;0 +20260330 180800;210.590000;210.590000;210.574000;210.574000;0 +20260330 180900;210.571000;210.571000;210.559000;210.568000;0 +20260330 181000;210.569000;210.582000;210.567000;210.582000;0 +20260330 181100;210.583000;210.588000;210.569000;210.587000;0 +20260330 181200;210.586000;210.587000;210.577000;210.580000;0 +20260330 181300;210.581000;210.593000;210.578000;210.592000;0 +20260330 181400;210.593000;210.593000;210.576000;210.577000;0 +20260330 181500;210.576000;210.580000;210.566000;210.569000;0 +20260330 181600;210.567000;210.567000;210.559000;210.564000;0 +20260330 181700;210.569000;210.582000;210.565000;210.576000;0 +20260330 181800;210.576000;210.576000;210.571000;210.572000;0 +20260330 181900;210.568000;210.573000;210.556000;210.570000;0 +20260330 182000;210.573000;210.574000;210.564000;210.564000;0 +20260330 182100;210.565000;210.569000;210.565000;210.569000;0 +20260330 182200;210.569000;210.570000;210.568000;210.569000;0 +20260330 182300;210.570000;210.572000;210.567000;210.568000;0 +20260330 182400;210.568000;210.573000;210.564000;210.570000;0 +20260330 182500;210.568000;210.569000;210.565000;210.569000;0 +20260330 182600;210.570000;210.572000;210.568000;210.569000;0 +20260330 182700;210.569000;210.574000;210.569000;210.574000;0 +20260330 182800;210.572000;210.576000;210.550000;210.554000;0 +20260330 182900;210.553000;210.571000;210.552000;210.568000;0 +20260330 183000;210.577000;210.579000;210.561000;210.566000;0 +20260330 183100;210.564000;210.589000;210.560000;210.589000;0 +20260330 183200;210.589000;210.602000;210.583000;210.584000;0 +20260330 183300;210.586000;210.595000;210.586000;210.587000;0 +20260330 183400;210.586000;210.612000;210.586000;210.605000;0 +20260330 183500;210.607000;210.608000;210.601000;210.603000;0 +20260330 183600;210.606000;210.606000;210.601000;210.603000;0 +20260330 183700;210.602000;210.606000;210.589000;210.603000;0 +20260330 183800;210.604000;210.606000;210.597000;210.605000;0 +20260330 183900;210.603000;210.604000;210.585000;210.591000;0 +20260330 184000;210.590000;210.595000;210.590000;210.595000;0 +20260330 184100;210.584000;210.591000;210.578000;210.590000;0 +20260330 184200;210.590000;210.604000;210.585000;210.588000;0 +20260330 184300;210.589000;210.593000;210.584000;210.588000;0 +20260330 184400;210.588000;210.591000;210.581000;210.582000;0 +20260330 184500;210.582000;210.587000;210.582000;210.582000;0 +20260330 184600;210.582000;210.604000;210.581000;210.604000;0 +20260330 184700;210.604000;210.604000;210.604000;210.604000;0 +20260330 184800;210.601000;210.601000;210.590000;210.592000;0 +20260330 184900;210.592000;210.597000;210.587000;210.596000;0 +20260330 185000;210.594000;210.605000;210.589000;210.604000;0 +20260330 185100;210.604000;210.609000;210.603000;210.607000;0 +20260330 185200;210.608000;210.610000;210.597000;210.606000;0 +20260330 185300;210.608000;210.609000;210.605000;210.605000;0 +20260330 185400;210.605000;210.606000;210.605000;210.605000;0 +20260330 185500;210.605000;210.610000;210.597000;210.609000;0 +20260330 185600;210.609000;210.614000;210.605000;210.613000;0 +20260330 185700;210.612000;210.616000;210.608000;210.615000;0 +20260330 185800;210.614000;210.625000;210.599000;210.599000;0 +20260330 185900;210.602000;210.611000;210.594000;210.598000;0 +20260330 190000;210.598000;210.607000;210.564000;210.581000;0 +20260330 190100;210.581000;210.592000;210.572000;210.577000;0 +20260330 190200;210.573000;210.584000;210.560000;210.560000;0 +20260330 190300;210.558000;210.569000;210.556000;210.563000;0 +20260330 190400;210.563000;210.575000;210.550000;210.560000;0 +20260330 190500;210.565000;210.566000;210.548000;210.556000;0 +20260330 190600;210.551000;210.554000;210.525000;210.536000;0 +20260330 190700;210.538000;210.556000;210.520000;210.526000;0 +20260330 190800;210.523000;210.541000;210.520000;210.524000;0 +20260330 190900;210.526000;210.541000;210.525000;210.534000;0 +20260330 191000;210.540000;210.546000;210.527000;210.528000;0 +20260330 191100;210.528000;210.552000;210.524000;210.545000;0 +20260330 191200;210.548000;210.548000;210.524000;210.528000;0 +20260330 191300;210.526000;210.527000;210.501000;210.512000;0 +20260330 191400;210.511000;210.523000;210.506000;210.511000;0 +20260330 191500;210.512000;210.522000;210.505000;210.517000;0 +20260330 191600;210.521000;210.529000;210.518000;210.527000;0 +20260330 191700;210.525000;210.525000;210.503000;210.510000;0 +20260330 191800;210.511000;210.515000;210.511000;210.513000;0 +20260330 191900;210.514000;210.519000;210.513000;210.515000;0 +20260330 192000;210.516000;210.532000;210.511000;210.516000;0 +20260330 192100;210.511000;210.524000;210.510000;210.516000;0 +20260330 192200;210.515000;210.515000;210.498000;210.505000;0 +20260330 192300;210.507000;210.515000;210.507000;210.514000;0 +20260330 192400;210.525000;210.525000;210.510000;210.521000;0 +20260330 192500;210.518000;210.518000;210.505000;210.514000;0 +20260330 192600;210.516000;210.516000;210.501000;210.505000;0 +20260330 192700;210.505000;210.505000;210.499000;210.501000;0 +20260330 192800;210.504000;210.506000;210.493000;210.497000;0 +20260330 192900;210.496000;210.499000;210.494000;210.494000;0 +20260330 193000;210.498000;210.537000;210.486000;210.501000;0 +20260330 193100;210.501000;210.502000;210.457000;210.482000;0 +20260330 193200;210.483000;210.492000;210.472000;210.477000;0 +20260330 193300;210.482000;210.489000;210.480000;210.485000;0 +20260330 193400;210.484000;210.489000;210.475000;210.488000;0 +20260330 193500;210.491000;210.502000;210.484000;210.502000;0 +20260330 193600;210.497000;210.505000;210.492000;210.495000;0 +20260330 193700;210.496000;210.501000;210.486000;210.490000;0 +20260330 193800;210.489000;210.493000;210.480000;210.487000;0 +20260330 193900;210.490000;210.507000;210.489000;210.498000;0 +20260330 194000;210.497000;210.500000;210.497000;210.500000;0 +20260330 194100;210.500000;210.501000;210.488000;210.495000;0 +20260330 194200;210.493000;210.493000;210.476000;210.483000;0 +20260330 194300;210.483000;210.489000;210.482000;210.484000;0 +20260330 194400;210.484000;210.501000;210.478000;210.499000;0 +20260330 194500;210.499000;210.501000;210.485000;210.485000;0 +20260330 194600;210.486000;210.499000;210.486000;210.490000;0 +20260330 194700;210.489000;210.489000;210.474000;210.475000;0 +20260330 194800;210.477000;210.482000;210.475000;210.482000;0 +20260330 194900;210.480000;210.506000;210.478000;210.506000;0 +20260330 195000;210.506000;210.518000;210.500000;210.518000;0 +20260330 195100;210.522000;210.524000;210.517000;210.521000;0 +20260330 195200;210.518000;210.548000;210.513000;210.544000;0 +20260330 195300;210.547000;210.549000;210.532000;210.532000;0 +20260330 195400;210.533000;210.535000;210.527000;210.532000;0 +20260330 195500;210.530000;210.540000;210.518000;210.531000;0 +20260330 195600;210.534000;210.544000;210.533000;210.540000;0 +20260330 195700;210.546000;210.546000;210.526000;210.526000;0 +20260330 195800;210.525000;210.534000;210.515000;210.526000;0 +20260330 195900;210.531000;210.545000;210.522000;210.542000;0 +20260330 200000;210.538000;210.538000;210.433000;210.433000;0 +20260330 200100;210.433000;210.466000;210.423000;210.452000;0 +20260330 200200;210.452000;210.503000;210.445000;210.503000;0 +20260330 200300;210.503000;210.521000;210.500000;210.505000;0 +20260330 200400;210.507000;210.557000;210.507000;210.518000;0 +20260330 200500;210.516000;210.541000;210.489000;210.536000;0 +20260330 200600;210.533000;210.556000;210.524000;210.552000;0 +20260330 200700;210.549000;210.564000;210.540000;210.552000;0 +20260330 200800;210.552000;210.565000;210.543000;210.556000;0 +20260330 200900;210.556000;210.568000;210.536000;210.536000;0 +20260330 201000;210.541000;210.565000;210.536000;210.563000;0 +20260330 201100;210.564000;210.569000;210.524000;210.525000;0 +20260330 201200;210.527000;210.530000;210.494000;210.507000;0 +20260330 201300;210.506000;210.507000;210.486000;210.488000;0 +20260330 201400;210.489000;210.498000;210.476000;210.478000;0 +20260330 201500;210.480000;210.486000;210.448000;210.450000;0 +20260330 201600;210.448000;210.453000;210.421000;210.428000;0 +20260330 201700;210.432000;210.436000;210.419000;210.419000;0 +20260330 201800;210.421000;210.444000;210.419000;210.436000;0 +20260330 201900;210.437000;210.448000;210.429000;210.448000;0 +20260330 202000;210.448000;210.471000;210.444000;210.466000;0 +20260330 202100;210.465000;210.479000;210.446000;210.446000;0 +20260330 202200;210.450000;210.478000;210.448000;210.478000;0 +20260330 202300;210.476000;210.479000;210.429000;210.434000;0 +20260330 202400;210.437000;210.462000;210.435000;210.456000;0 +20260330 202500;210.455000;210.480000;210.450000;210.475000;0 +20260330 202600;210.479000;210.518000;210.479000;210.513000;0 +20260330 202700;210.514000;210.529000;210.500000;210.507000;0 +20260330 202800;210.507000;210.508000;210.486000;210.496000;0 +20260330 202900;210.493000;210.505000;210.478000;210.501000;0 +20260330 203000;210.501000;210.509000;210.497000;210.508000;0 +20260330 203100;210.508000;210.519000;210.502000;210.503000;0 +20260330 203200;210.503000;210.510000;210.490000;210.510000;0 +20260330 203300;210.511000;210.519000;210.480000;210.507000;0 +20260330 203400;210.507000;210.523000;210.496000;210.498000;0 +20260330 203500;210.498000;210.517000;210.491000;210.497000;0 +20260330 203600;210.494000;210.534000;210.494000;210.533000;0 +20260330 203700;210.533000;210.533000;210.507000;210.523000;0 +20260330 203800;210.521000;210.630000;210.521000;210.618000;0 +20260330 203900;210.614000;210.622000;210.541000;210.617000;0 +20260330 204000;210.613000;210.633000;210.587000;210.623000;0 +20260330 204100;210.619000;210.666000;210.603000;210.665000;0 +20260330 204200;210.661000;210.708000;210.661000;210.676000;0 +20260330 204300;210.677000;210.770000;210.677000;210.744000;0 +20260330 204400;210.745000;210.791000;210.742000;210.770000;0 +20260330 204500;210.770000;210.861000;210.765000;210.802000;0 +20260330 204600;210.793000;210.823000;210.765000;210.813000;0 +20260330 204700;210.811000;210.868000;210.797000;210.867000;0 +20260330 204800;210.867000;210.876000;210.812000;210.829000;0 +20260330 204900;210.826000;210.892000;210.822000;210.884000;0 +20260330 205000;210.883000;210.957000;210.883000;210.933000;0 +20260330 205100;210.933000;210.946000;210.810000;210.855000;0 +20260330 205200;210.858000;210.895000;210.843000;210.890000;0 +20260330 205300;210.887000;210.910000;210.853000;210.877000;0 +20260330 205400;210.874000;210.912000;210.854000;210.896000;0 +20260330 205500;210.895000;210.951000;210.895000;210.935000;0 +20260330 205600;210.931000;210.975000;210.920000;210.942000;0 +20260330 205700;210.942000;210.969000;210.919000;210.969000;0 +20260330 205800;210.969000;211.015000;210.960000;211.015000;0 +20260330 205900;211.015000;211.057000;211.000000;211.043000;0 +20260330 210000;211.045000;211.056000;211.022000;211.033000;0 +20260330 210100;211.035000;211.049000;211.023000;211.039000;0 +20260330 210200;211.039000;211.070000;211.035000;211.068000;0 +20260330 210300;211.068000;211.116000;211.053000;211.109000;0 +20260330 210400;211.106000;211.135000;211.059000;211.114000;0 +20260330 210500;211.116000;211.137000;211.112000;211.137000;0 +20260330 210600;211.136000;211.142000;211.105000;211.111000;0 +20260330 210700;211.111000;211.114000;211.079000;211.094000;0 +20260330 210800;211.093000;211.110000;211.039000;211.046000;0 +20260330 210900;211.048000;211.072000;211.042000;211.071000;0 +20260330 211000;211.071000;211.092000;211.057000;211.072000;0 +20260330 211100;211.073000;211.086000;211.056000;211.057000;0 +20260330 211200;211.058000;211.070000;211.041000;211.069000;0 +20260330 211300;211.075000;211.086000;211.053000;211.057000;0 +20260330 211400;211.053000;211.063000;211.038000;211.041000;0 +20260330 211500;211.035000;211.064000;211.029000;211.043000;0 +20260330 211600;211.043000;211.065000;211.016000;211.020000;0 +20260330 211700;211.017000;211.039000;211.012000;211.027000;0 +20260330 211800;211.028000;211.057000;211.019000;211.034000;0 +20260330 211900;211.032000;211.059000;211.028000;211.037000;0 +20260330 212000;211.040000;211.061000;211.032000;211.047000;0 +20260330 212100;211.050000;211.110000;211.047000;211.102000;0 +20260330 212200;211.098000;211.108000;211.069000;211.108000;0 +20260330 212300;211.103000;211.146000;211.095000;211.137000;0 +20260330 212400;211.137000;211.138000;211.110000;211.122000;0 +20260330 212500;211.123000;211.152000;211.115000;211.142000;0 +20260330 212600;211.140000;211.167000;211.132000;211.140000;0 +20260330 212700;211.140000;211.151000;211.124000;211.144000;0 +20260330 212800;211.144000;211.166000;211.128000;211.162000;0 +20260330 212900;211.162000;211.189000;211.144000;211.189000;0 +20260330 213000;211.190000;211.196000;211.143000;211.148000;0 +20260330 213100;211.149000;211.174000;211.131000;211.169000;0 +20260330 213200;211.169000;211.207000;211.134000;211.201000;0 +20260330 213300;211.202000;211.213000;211.174000;211.203000;0 +20260330 213400;211.204000;211.207000;211.167000;211.180000;0 +20260330 213500;211.177000;211.186000;211.121000;211.121000;0 +20260330 213600;211.125000;211.149000;211.121000;211.140000;0 +20260330 213700;211.143000;211.159000;211.120000;211.141000;0 +20260330 213800;211.141000;211.160000;211.125000;211.149000;0 +20260330 213900;211.149000;211.201000;211.141000;211.179000;0 +20260330 214000;211.178000;211.178000;211.129000;211.130000;0 +20260330 214100;211.129000;211.160000;211.116000;211.141000;0 +20260330 214200;211.140000;211.157000;211.116000;211.122000;0 +20260330 214300;211.122000;211.135000;211.092000;211.097000;0 +20260330 214400;211.096000;211.099000;211.066000;211.087000;0 +20260330 214500;211.084000;211.089000;211.066000;211.078000;0 +20260330 214600;211.080000;211.089000;211.070000;211.075000;0 +20260330 214700;211.073000;211.079000;211.034000;211.036000;0 +20260330 214800;211.037000;211.041000;211.017000;211.041000;0 +20260330 214900;211.036000;211.050000;210.983000;210.994000;0 +20260330 215000;210.991000;211.003000;210.961000;210.961000;0 +20260330 215100;210.963000;211.009000;210.961000;210.970000;0 +20260330 215200;210.970000;210.979000;210.946000;210.969000;0 +20260330 215300;210.968000;211.017000;210.967000;211.000000;0 +20260330 215400;211.001000;211.006000;210.986000;210.995000;0 +20260330 215500;210.996000;211.002000;210.961000;210.978000;0 +20260330 215600;210.981000;210.986000;210.951000;210.955000;0 +20260330 215700;210.953000;210.984000;210.951000;210.980000;0 +20260330 215800;210.983000;210.994000;210.973000;210.988000;0 +20260330 215900;210.992000;211.025000;210.992000;211.023000;0 +20260330 220000;211.023000;211.032000;211.003000;211.010000;0 +20260330 220100;211.011000;211.022000;211.008000;211.015000;0 +20260330 220200;211.016000;211.026000;210.967000;210.972000;0 +20260330 220300;210.975000;210.978000;210.955000;210.966000;0 +20260330 220400;210.966000;211.001000;210.964000;210.999000;0 +20260330 220500;210.997000;211.013000;210.995000;211.002000;0 +20260330 220600;211.011000;211.029000;210.962000;210.962000;0 +20260330 220700;210.963000;210.999000;210.962000;210.994000;0 +20260330 220800;210.996000;211.025000;210.996000;211.024000;0 +20260330 220900;211.017000;211.017000;210.995000;211.011000;0 +20260330 221000;211.011000;211.027000;211.008000;211.015000;0 +20260330 221100;211.020000;211.032000;211.013000;211.014000;0 +20260330 221200;211.014000;211.021000;210.992000;210.992000;0 +20260330 221300;210.992000;210.996000;210.972000;210.973000;0 +20260330 221400;210.974000;210.985000;210.963000;210.970000;0 +20260330 221500;210.970000;210.999000;210.969000;210.981000;0 +20260330 221600;210.978000;210.978000;210.956000;210.956000;0 +20260330 221700;210.956000;210.964000;210.926000;210.931000;0 +20260330 221800;210.931000;210.938000;210.922000;210.928000;0 +20260330 221900;210.928000;210.929000;210.899000;210.922000;0 +20260330 222000;210.924000;210.935000;210.901000;210.915000;0 +20260330 222100;210.917000;210.918000;210.896000;210.905000;0 +20260330 222200;210.905000;210.957000;210.905000;210.957000;0 +20260330 222300;210.955000;210.963000;210.944000;210.944000;0 +20260330 222400;210.945000;210.945000;210.926000;210.934000;0 +20260330 222500;210.935000;210.935000;210.896000;210.921000;0 +20260330 222600;210.924000;210.935000;210.916000;210.925000;0 +20260330 222700;210.934000;210.940000;210.915000;210.929000;0 +20260330 222800;210.928000;210.936000;210.918000;210.921000;0 +20260330 222900;210.925000;210.933000;210.912000;210.933000;0 +20260330 223000;210.938000;210.939000;210.921000;210.935000;0 +20260330 223100;210.939000;210.947000;210.911000;210.917000;0 +20260330 223200;210.917000;210.928000;210.899000;210.900000;0 +20260330 223300;210.906000;210.915000;210.900000;210.910000;0 +20260330 223400;210.913000;210.918000;210.902000;210.918000;0 +20260330 223500;210.917000;210.932000;210.915000;210.915000;0 +20260330 223600;210.917000;210.918000;210.899000;210.901000;0 +20260330 223700;210.903000;210.933000;210.902000;210.932000;0 +20260330 223800;210.931000;210.931000;210.890000;210.891000;0 +20260330 223900;210.892000;210.898000;210.883000;210.893000;0 +20260330 224000;210.894000;210.897000;210.872000;210.874000;0 +20260330 224100;210.872000;210.882000;210.858000;210.868000;0 +20260330 224200;210.867000;210.887000;210.866000;210.874000;0 +20260330 224300;210.875000;210.878000;210.863000;210.867000;0 +20260330 224400;210.868000;210.882000;210.868000;210.874000;0 +20260330 224500;210.871000;210.874000;210.820000;210.822000;0 +20260330 224600;210.824000;210.844000;210.788000;210.844000;0 +20260330 224700;210.846000;210.855000;210.822000;210.831000;0 +20260330 224800;210.830000;210.856000;210.816000;210.844000;0 +20260330 224900;210.843000;210.861000;210.842000;210.846000;0 +20260330 225000;210.846000;210.883000;210.846000;210.878000;0 +20260330 225100;210.878000;210.891000;210.859000;210.859000;0 +20260330 225200;210.858000;210.868000;210.850000;210.861000;0 +20260330 225300;210.860000;210.874000;210.846000;210.873000;0 +20260330 225400;210.872000;210.881000;210.849000;210.855000;0 +20260330 225500;210.858000;210.860000;210.840000;210.845000;0 +20260330 225600;210.843000;210.856000;210.838000;210.850000;0 +20260330 225700;210.849000;210.851000;210.841000;210.849000;0 +20260330 225800;210.849000;210.855000;210.841000;210.850000;0 +20260330 225900;210.853000;210.853000;210.819000;210.819000;0 +20260330 230000;210.818000;210.832000;210.810000;210.829000;0 +20260330 230100;210.830000;210.849000;210.825000;210.837000;0 +20260330 230200;210.835000;210.838000;210.815000;210.826000;0 +20260330 230300;210.824000;210.825000;210.810000;210.824000;0 +20260330 230400;210.825000;210.839000;210.820000;210.822000;0 +20260330 230500;210.821000;210.831000;210.816000;210.822000;0 +20260330 230600;210.820000;210.831000;210.815000;210.820000;0 +20260330 230700;210.820000;210.862000;210.820000;210.860000;0 +20260330 230800;210.860000;210.868000;210.857000;210.863000;0 +20260330 230900;210.864000;210.866000;210.842000;210.843000;0 +20260330 231000;210.843000;210.856000;210.838000;210.854000;0 +20260330 231100;210.854000;210.873000;210.854000;210.859000;0 +20260330 231200;210.861000;210.884000;210.861000;210.869000;0 +20260330 231300;210.869000;210.870000;210.865000;210.867000;0 +20260330 231400;210.867000;210.871000;210.847000;210.847000;0 +20260330 231500;210.847000;210.858000;210.838000;210.842000;0 +20260330 231600;210.840000;210.852000;210.823000;210.846000;0 +20260330 231700;210.848000;210.860000;210.844000;210.851000;0 +20260330 231800;210.852000;210.865000;210.847000;210.859000;0 +20260330 231900;210.859000;210.862000;210.849000;210.849000;0 +20260330 232000;210.850000;210.860000;210.846000;210.856000;0 +20260330 232100;210.857000;210.864000;210.852000;210.862000;0 +20260330 232200;210.863000;210.882000;210.862000;210.880000;0 +20260330 232300;210.881000;210.885000;210.881000;210.884000;0 +20260330 232400;210.881000;210.882000;210.851000;210.853000;0 +20260330 232500;210.854000;210.874000;210.853000;210.871000;0 +20260330 232600;210.871000;210.878000;210.857000;210.866000;0 +20260330 232700;210.866000;210.868000;210.852000;210.857000;0 +20260330 232800;210.856000;210.864000;210.853000;210.861000;0 +20260330 232900;210.861000;210.865000;210.847000;210.852000;0 +20260330 233000;210.853000;210.864000;210.853000;210.854000;0 +20260330 233100;210.855000;210.855000;210.843000;210.849000;0 +20260330 233200;210.850000;210.850000;210.841000;210.844000;0 +20260330 233300;210.843000;210.858000;210.841000;210.853000;0 +20260330 233400;210.853000;210.868000;210.845000;210.847000;0 +20260330 233500;210.849000;210.858000;210.839000;210.845000;0 +20260330 233600;210.848000;210.856000;210.838000;210.839000;0 +20260330 233700;210.840000;210.842000;210.824000;210.826000;0 +20260330 233800;210.825000;210.835000;210.825000;210.830000;0 +20260330 233900;210.831000;210.837000;210.811000;210.812000;0 +20260330 234000;210.808000;210.808000;210.768000;210.775000;0 +20260330 234100;210.776000;210.826000;210.774000;210.825000;0 +20260330 234200;210.823000;210.837000;210.823000;210.837000;0 +20260330 234300;210.840000;210.844000;210.803000;210.805000;0 +20260330 234400;210.802000;210.815000;210.802000;210.812000;0 +20260330 234500;210.815000;210.831000;210.815000;210.830000;0 +20260330 234600;210.828000;210.847000;210.816000;210.835000;0 +20260330 234700;210.837000;210.848000;210.823000;210.827000;0 +20260330 234800;210.830000;210.838000;210.805000;210.813000;0 +20260330 234900;210.816000;210.819000;210.796000;210.819000;0 +20260330 235000;210.819000;210.847000;210.819000;210.830000;0 +20260330 235100;210.829000;210.836000;210.822000;210.834000;0 +20260330 235200;210.836000;210.845000;210.828000;210.829000;0 +20260330 235300;210.832000;210.833000;210.822000;210.828000;0 +20260330 235400;210.829000;210.829000;210.806000;210.813000;0 +20260330 235500;210.816000;210.817000;210.806000;210.810000;0 +20260330 235600;210.811000;210.817000;210.799000;210.802000;0 +20260330 235700;210.807000;210.814000;210.802000;210.813000;0 +20260330 235800;210.813000;210.829000;210.812000;210.813000;0 +20260330 235900;210.813000;210.829000;210.804000;210.828000;0 +20260331 000000;210.831000;210.831000;210.815000;210.828000;0 +20260331 000100;210.828000;210.830000;210.821000;210.826000;0 +20260331 000200;210.827000;210.835000;210.824000;210.830000;0 +20260331 000300;210.833000;210.833000;210.828000;210.828000;0 +20260331 000400;210.830000;210.830000;210.820000;210.825000;0 +20260331 000500;210.824000;210.836000;210.822000;210.824000;0 +20260331 000600;210.825000;210.840000;210.825000;210.828000;0 +20260331 000700;210.826000;210.841000;210.825000;210.834000;0 +20260331 000800;210.836000;210.840000;210.833000;210.838000;0 +20260331 000900;210.839000;210.840000;210.836000;210.837000;0 +20260331 001000;210.836000;210.850000;210.836000;210.849000;0 +20260331 001100;210.848000;210.852000;210.836000;210.838000;0 +20260331 001200;210.838000;210.847000;210.815000;210.821000;0 +20260331 001300;210.820000;210.820000;210.810000;210.811000;0 +20260331 001400;210.813000;210.819000;210.803000;210.808000;0 +20260331 001500;210.807000;210.809000;210.801000;210.809000;0 +20260331 001600;210.805000;210.816000;210.805000;210.814000;0 +20260331 001700;210.813000;210.816000;210.805000;210.809000;0 +20260331 001800;210.813000;210.828000;210.813000;210.822000;0 +20260331 001900;210.821000;210.824000;210.821000;210.821000;0 +20260331 002000;210.832000;210.841000;210.831000;210.837000;0 +20260331 002100;210.837000;210.837000;210.815000;210.821000;0 +20260331 002200;210.819000;210.819000;210.790000;210.790000;0 +20260331 002300;210.789000;210.792000;210.773000;210.774000;0 +20260331 002400;210.774000;210.785000;210.773000;210.781000;0 +20260331 002500;210.781000;210.784000;210.770000;210.772000;0 +20260331 002600;210.771000;210.778000;210.743000;210.748000;0 +20260331 002700;210.749000;210.758000;210.744000;210.752000;0 +20260331 002800;210.753000;210.753000;210.716000;210.717000;0 +20260331 002900;210.716000;210.734000;210.716000;210.725000;0 +20260331 003000;210.724000;210.729000;210.720000;210.727000;0 +20260331 003100;210.728000;210.739000;210.728000;210.736000;0 +20260331 003200;210.735000;210.741000;210.717000;210.732000;0 +20260331 003300;210.732000;210.749000;210.729000;210.737000;0 +20260331 003400;210.734000;210.740000;210.723000;210.740000;0 +20260331 003500;210.740000;210.741000;210.734000;210.734000;0 +20260331 003600;210.734000;210.737000;210.730000;210.730000;0 +20260331 003700;210.730000;210.736000;210.719000;210.733000;0 +20260331 003800;210.732000;210.750000;210.731000;210.748000;0 +20260331 003900;210.747000;210.747000;210.733000;210.738000;0 +20260331 004000;210.737000;210.737000;210.717000;210.717000;0 +20260331 004100;210.718000;210.727000;210.712000;210.717000;0 +20260331 004200;210.718000;210.718000;210.709000;210.716000;0 +20260331 004300;210.719000;210.724000;210.716000;210.720000;0 +20260331 004400;210.720000;210.726000;210.719000;210.719000;0 +20260331 004500;210.720000;210.721000;210.715000;210.716000;0 +20260331 004600;210.717000;210.731000;210.717000;210.720000;0 +20260331 004700;210.720000;210.727000;210.708000;210.717000;0 +20260331 004800;210.718000;210.728000;210.716000;210.721000;0 +20260331 004900;210.725000;210.725000;210.679000;210.683000;0 +20260331 005000;210.688000;210.688000;210.684000;210.685000;0 +20260331 005100;210.684000;210.688000;210.681000;210.684000;0 +20260331 005200;210.683000;210.685000;210.675000;210.680000;0 +20260331 005300;210.681000;210.681000;210.665000;210.680000;0 +20260331 005400;210.683000;210.687000;210.677000;210.683000;0 +20260331 005500;210.687000;210.706000;210.686000;210.691000;0 +20260331 005600;210.692000;210.693000;210.683000;210.690000;0 +20260331 005700;210.692000;210.692000;210.665000;210.666000;0 +20260331 005800;210.664000;210.669000;210.640000;210.648000;0 +20260331 005900;210.650000;210.654000;210.642000;210.647000;0 +20260331 010000;210.645000;210.658000;210.640000;210.655000;0 +20260331 010100;210.656000;210.656000;210.643000;210.652000;0 +20260331 010200;210.653000;210.653000;210.622000;210.640000;0 +20260331 010300;210.637000;210.664000;210.637000;210.659000;0 +20260331 010400;210.660000;210.665000;210.653000;210.654000;0 +20260331 010500;210.659000;210.660000;210.631000;210.635000;0 +20260331 010600;210.633000;210.641000;210.624000;210.633000;0 +20260331 010700;210.635000;210.639000;210.587000;210.589000;0 +20260331 010800;210.595000;210.623000;210.595000;210.617000;0 +20260331 010900;210.611000;210.616000;210.608000;210.615000;0 +20260331 011000;210.615000;210.617000;210.558000;210.563000;0 +20260331 011100;210.563000;210.570000;210.542000;210.544000;0 +20260331 011200;210.545000;210.555000;210.515000;210.516000;0 +20260331 011300;210.517000;210.520000;210.404000;210.455000;0 +20260331 011400;210.454000;210.488000;210.453000;210.470000;0 +20260331 011500;210.465000;210.478000;210.459000;210.476000;0 +20260331 011600;210.477000;210.512000;210.475000;210.500000;0 +20260331 011700;210.499000;210.500000;210.472000;210.488000;0 +20260331 011800;210.487000;210.502000;210.484000;210.492000;0 +20260331 011900;210.493000;210.497000;210.460000;210.469000;0 +20260331 012000;210.470000;210.519000;210.469000;210.519000;0 +20260331 012100;210.519000;210.550000;210.513000;210.549000;0 +20260331 012200;210.548000;210.564000;210.545000;210.562000;0 +20260331 012300;210.562000;210.583000;210.556000;210.582000;0 +20260331 012400;210.582000;210.592000;210.575000;210.587000;0 +20260331 012500;210.587000;210.624000;210.587000;210.621000;0 +20260331 012600;210.620000;210.702000;210.619000;210.701000;0 +20260331 012700;210.702000;210.704000;210.682000;210.683000;0 +20260331 012800;210.684000;210.697000;210.682000;210.688000;0 +20260331 012900;210.688000;210.688000;210.672000;210.681000;0 +20260331 013000;210.683000;210.688000;210.655000;210.658000;0 +20260331 013100;210.657000;210.687000;210.656000;210.686000;0 +20260331 013200;210.685000;210.714000;210.685000;210.705000;0 +20260331 013300;210.705000;210.736000;210.702000;210.735000;0 +20260331 013400;210.744000;210.768000;210.737000;210.758000;0 +20260331 013500;210.759000;210.767000;210.738000;210.742000;0 +20260331 013600;210.741000;210.746000;210.724000;210.745000;0 +20260331 013700;210.748000;210.753000;210.732000;210.745000;0 +20260331 013800;210.746000;210.761000;210.739000;210.751000;0 +20260331 013900;210.751000;210.754000;210.723000;210.729000;0 +20260331 014000;210.731000;210.738000;210.723000;210.734000;0 +20260331 014100;210.734000;210.734000;210.704000;210.715000;0 +20260331 014200;210.715000;210.715000;210.684000;210.705000;0 +20260331 014300;210.705000;210.706000;210.687000;210.693000;0 +20260331 014400;210.691000;210.703000;210.688000;210.695000;0 +20260331 014500;210.695000;210.695000;210.658000;210.692000;0 +20260331 014600;210.690000;210.702000;210.683000;210.690000;0 +20260331 014700;210.687000;210.725000;210.687000;210.722000;0 +20260331 014800;210.721000;210.767000;210.721000;210.766000;0 +20260331 014900;210.761000;210.788000;210.746000;210.788000;0 +20260331 015000;210.793000;210.830000;210.792000;210.829000;0 +20260331 015100;210.829000;210.830000;210.788000;210.788000;0 +20260331 015200;210.788000;210.797000;210.774000;210.778000;0 +20260331 015300;210.780000;210.780000;210.754000;210.763000;0 +20260331 015400;210.764000;210.765000;210.744000;210.747000;0 +20260331 015500;210.744000;210.744000;210.697000;210.700000;0 +20260331 015600;210.702000;210.710000;210.693000;210.699000;0 +20260331 015700;210.701000;210.719000;210.676000;210.676000;0 +20260331 015800;210.680000;210.693000;210.671000;210.689000;0 +20260331 015900;210.689000;210.726000;210.688000;210.708000;0 +20260331 020000;210.696000;210.696000;210.644000;210.668000;0 +20260331 020100;210.665000;210.683000;210.660000;210.673000;0 +20260331 020200;210.669000;210.741000;210.658000;210.739000;0 +20260331 020300;210.740000;210.779000;210.739000;210.760000;0 +20260331 020400;210.761000;210.761000;210.729000;210.750000;0 +20260331 020500;210.750000;210.760000;210.721000;210.750000;0 +20260331 020600;210.751000;210.755000;210.742000;210.748000;0 +20260331 020700;210.749000;210.752000;210.691000;210.695000;0 +20260331 020800;210.694000;210.699000;210.645000;210.664000;0 +20260331 020900;210.663000;210.716000;210.663000;210.698000;0 +20260331 021000;210.699000;210.762000;210.699000;210.753000;0 +20260331 021100;210.753000;210.762000;210.736000;210.757000;0 +20260331 021200;210.757000;210.764000;210.705000;210.713000;0 +20260331 021300;210.714000;210.748000;210.709000;210.744000;0 +20260331 021400;210.738000;210.763000;210.724000;210.750000;0 +20260331 021500;210.749000;210.749000;210.700000;210.710000;0 +20260331 021600;210.709000;210.709000;210.641000;210.644000;0 +20260331 021700;210.644000;210.668000;210.643000;210.668000;0 +20260331 021800;210.667000;210.675000;210.625000;210.627000;0 +20260331 021900;210.630000;210.648000;210.625000;210.642000;0 +20260331 022000;210.642000;210.665000;210.635000;210.648000;0 +20260331 022100;210.650000;210.697000;210.648000;210.695000;0 +20260331 022200;210.701000;210.723000;210.679000;210.700000;0 +20260331 022300;210.699000;210.711000;210.646000;210.652000;0 +20260331 022400;210.650000;210.685000;210.645000;210.673000;0 +20260331 022500;210.674000;210.730000;210.673000;210.716000;0 +20260331 022600;210.717000;210.717000;210.689000;210.700000;0 +20260331 022700;210.700000;210.723000;210.660000;210.665000;0 +20260331 022800;210.662000;210.708000;210.661000;210.679000;0 +20260331 022900;210.680000;210.683000;210.627000;210.683000;0 +20260331 023000;210.686000;210.800000;210.670000;210.796000;0 +20260331 023100;210.797000;210.823000;210.781000;210.820000;0 +20260331 023200;210.821000;210.824000;210.796000;210.809000;0 +20260331 023300;210.809000;210.815000;210.792000;210.795000;0 +20260331 023400;210.794000;210.814000;210.789000;210.808000;0 +20260331 023500;210.807000;210.807000;210.751000;210.769000;0 +20260331 023600;210.771000;210.808000;210.762000;210.762000;0 +20260331 023700;210.762000;210.764000;210.727000;210.736000;0 +20260331 023800;210.736000;210.765000;210.735000;210.765000;0 +20260331 023900;210.767000;210.795000;210.765000;210.795000;0 +20260331 024000;210.794000;210.839000;210.789000;210.798000;0 +20260331 024100;210.802000;210.806000;210.754000;210.756000;0 +20260331 024200;210.757000;210.776000;210.756000;210.773000;0 +20260331 024300;210.773000;210.782000;210.723000;210.745000;0 +20260331 024400;210.745000;210.782000;210.745000;210.781000;0 +20260331 024500;210.781000;210.790000;210.766000;210.775000;0 +20260331 024600;210.771000;210.781000;210.761000;210.763000;0 +20260331 024700;210.754000;210.762000;210.747000;210.750000;0 +20260331 024800;210.751000;210.756000;210.734000;210.753000;0 +20260331 024900;210.753000;210.761000;210.727000;210.745000;0 +20260331 025000;210.753000;210.766000;210.732000;210.739000;0 +20260331 025100;210.737000;210.788000;210.737000;210.788000;0 +20260331 025200;210.785000;210.825000;210.785000;210.821000;0 +20260331 025300;210.821000;210.859000;210.801000;210.837000;0 +20260331 025400;210.837000;210.837000;210.803000;210.835000;0 +20260331 025500;210.835000;210.879000;210.828000;210.872000;0 +20260331 025600;210.872000;210.922000;210.872000;210.900000;0 +20260331 025700;210.899000;210.903000;210.827000;210.868000;0 +20260331 025800;210.867000;210.888000;210.851000;210.886000;0 +20260331 025900;210.885000;210.928000;210.874000;210.919000;0 +20260331 030000;210.920000;210.946000;210.895000;210.934000;0 +20260331 030100;210.934000;210.952000;210.880000;210.902000;0 +20260331 030200;210.905000;210.913000;210.882000;210.882000;0 +20260331 030300;210.882000;210.900000;210.857000;210.885000;0 +20260331 030400;210.883000;210.902000;210.838000;210.856000;0 +20260331 030500;210.854000;210.931000;210.853000;210.915000;0 +20260331 030600;210.912000;210.929000;210.885000;210.900000;0 +20260331 030700;210.901000;210.912000;210.844000;210.877000;0 +20260331 030800;210.878000;210.880000;210.810000;210.823000;0 +20260331 030900;210.821000;210.850000;210.789000;210.799000;0 +20260331 031000;210.800000;210.854000;210.799000;210.831000;0 +20260331 031100;210.830000;210.836000;210.811000;210.813000;0 +20260331 031200;210.813000;210.814000;210.759000;210.760000;0 +20260331 031300;210.761000;210.783000;210.708000;210.711000;0 +20260331 031400;210.712000;210.734000;210.709000;210.719000;0 +20260331 031500;210.718000;210.767000;210.716000;210.755000;0 +20260331 031600;210.755000;210.755000;210.726000;210.732000;0 +20260331 031700;210.733000;210.782000;210.733000;210.765000;0 +20260331 031800;210.764000;210.799000;210.754000;210.798000;0 +20260331 031900;210.803000;210.803000;210.739000;210.782000;0 +20260331 032000;210.784000;210.847000;210.783000;210.847000;0 +20260331 032100;210.847000;210.865000;210.842000;210.853000;0 +20260331 032200;210.852000;210.868000;210.819000;210.833000;0 +20260331 032300;210.832000;210.833000;210.802000;210.802000;0 +20260331 032400;210.803000;210.841000;210.800000;210.838000;0 +20260331 032500;210.839000;210.856000;210.806000;210.817000;0 +20260331 032600;210.815000;210.825000;210.807000;210.815000;0 +20260331 032700;210.820000;210.849000;210.818000;210.847000;0 +20260331 032800;210.847000;210.853000;210.829000;210.833000;0 +20260331 032900;210.834000;210.834000;210.810000;210.812000;0 +20260331 033000;210.812000;210.902000;210.812000;210.898000;0 +20260331 033100;210.900000;210.927000;210.887000;210.904000;0 +20260331 033200;210.902000;210.918000;210.886000;210.915000;0 +20260331 033300;210.917000;210.947000;210.876000;210.901000;0 +20260331 033400;210.901000;210.909000;210.880000;210.887000;0 +20260331 033500;210.895000;210.917000;210.869000;210.880000;0 +20260331 033600;210.883000;210.903000;210.857000;210.857000;0 +20260331 033700;210.859000;210.874000;210.859000;210.864000;0 +20260331 033800;210.865000;210.905000;210.860000;210.904000;0 +20260331 033900;210.910000;210.914000;210.825000;210.831000;0 +20260331 034000;210.831000;210.835000;210.803000;210.830000;0 +20260331 034100;210.831000;210.878000;210.827000;210.876000;0 +20260331 034200;210.876000;210.881000;210.859000;210.869000;0 +20260331 034300;210.867000;210.888000;210.855000;210.873000;0 +20260331 034400;210.871000;210.874000;210.852000;210.852000;0 +20260331 034500;210.855000;210.855000;210.802000;210.824000;0 +20260331 034600;210.824000;210.835000;210.799000;210.820000;0 +20260331 034700;210.819000;210.821000;210.785000;210.790000;0 +20260331 034800;210.792000;210.792000;210.734000;210.752000;0 +20260331 034900;210.752000;210.774000;210.729000;210.738000;0 +20260331 035000;210.738000;210.743000;210.706000;210.706000;0 +20260331 035100;210.706000;210.739000;210.706000;210.739000;0 +20260331 035200;210.737000;210.749000;210.729000;210.736000;0 +20260331 035300;210.738000;210.749000;210.722000;210.732000;0 +20260331 035400;210.732000;210.760000;210.730000;210.753000;0 +20260331 035500;210.753000;210.866000;210.747000;210.854000;0 +20260331 035600;210.856000;210.915000;210.856000;210.896000;0 +20260331 035700;210.891000;210.909000;210.816000;210.861000;0 +20260331 035800;210.864000;210.870000;210.823000;210.870000;0 +20260331 035900;210.870000;210.884000;210.794000;210.809000;0 +20260331 040000;210.808000;210.850000;210.786000;210.814000;0 +20260331 040100;210.816000;210.816000;210.738000;210.759000;0 +20260331 040200;210.759000;210.799000;210.747000;210.795000;0 +20260331 040300;210.796000;210.830000;210.779000;210.780000;0 +20260331 040400;210.778000;210.808000;210.778000;210.805000;0 +20260331 040500;210.796000;210.828000;210.784000;210.825000;0 +20260331 040600;210.826000;210.841000;210.822000;210.836000;0 +20260331 040700;210.837000;210.881000;210.834000;210.841000;0 +20260331 040800;210.839000;210.895000;210.837000;210.886000;0 +20260331 040900;210.887000;210.895000;210.853000;210.853000;0 +20260331 041000;210.851000;210.874000;210.812000;210.814000;0 +20260331 041100;210.815000;210.817000;210.779000;210.786000;0 +20260331 041200;210.783000;210.798000;210.756000;210.766000;0 +20260331 041300;210.763000;210.787000;210.759000;210.783000;0 +20260331 041400;210.781000;210.781000;210.734000;210.739000;0 +20260331 041500;210.739000;210.758000;210.718000;210.754000;0 +20260331 041600;210.754000;210.780000;210.748000;210.780000;0 +20260331 041700;210.781000;210.797000;210.757000;210.795000;0 +20260331 041800;210.795000;210.795000;210.760000;210.773000;0 +20260331 041900;210.773000;210.786000;210.767000;210.781000;0 +20260331 042000;210.780000;210.787000;210.736000;210.737000;0 +20260331 042100;210.736000;210.769000;210.736000;210.759000;0 +20260331 042200;210.761000;210.761000;210.731000;210.732000;0 +20260331 042300;210.731000;210.767000;210.731000;210.756000;0 +20260331 042400;210.755000;210.755000;210.720000;210.723000;0 +20260331 042500;210.724000;210.768000;210.721000;210.754000;0 +20260331 042600;210.757000;210.757000;210.746000;210.753000;0 +20260331 042700;210.751000;210.767000;210.732000;210.738000;0 +20260331 042800;210.743000;210.786000;210.737000;210.781000;0 +20260331 042900;210.783000;210.810000;210.771000;210.808000;0 +20260331 043000;210.809000;210.817000;210.796000;210.809000;0 +20260331 043100;210.808000;210.835000;210.808000;210.830000;0 +20260331 043200;210.830000;210.835000;210.796000;210.796000;0 +20260331 043300;210.792000;210.827000;210.792000;210.824000;0 +20260331 043400;210.824000;210.826000;210.806000;210.816000;0 +20260331 043500;210.820000;210.860000;210.819000;210.859000;0 +20260331 043600;210.860000;210.874000;210.853000;210.873000;0 +20260331 043700;210.874000;210.892000;210.860000;210.868000;0 +20260331 043800;210.870000;210.898000;210.868000;210.898000;0 +20260331 043900;210.899000;210.900000;210.874000;210.893000;0 +20260331 044000;210.894000;210.912000;210.882000;210.895000;0 +20260331 044100;210.895000;210.903000;210.883000;210.889000;0 +20260331 044200;210.891000;210.936000;210.890000;210.935000;0 +20260331 044300;210.932000;210.955000;210.927000;210.955000;0 +20260331 044400;210.952000;210.957000;210.931000;210.937000;0 +20260331 044500;210.937000;210.943000;210.881000;210.882000;0 +20260331 044600;210.880000;210.917000;210.873000;210.913000;0 +20260331 044700;210.909000;210.917000;210.886000;210.891000;0 +20260331 044800;210.891000;210.893000;210.882000;210.890000;0 +20260331 044900;210.891000;210.891000;210.862000;210.874000;0 +20260331 045000;210.874000;210.902000;210.873000;210.887000;0 +20260331 045100;210.888000;210.901000;210.870000;210.892000;0 +20260331 045200;210.893000;210.899000;210.854000;210.880000;0 +20260331 045300;210.878000;210.891000;210.868000;210.883000;0 +20260331 045400;210.879000;210.901000;210.862000;210.874000;0 +20260331 045500;210.874000;210.882000;210.853000;210.853000;0 +20260331 045600;210.855000;210.868000;210.855000;210.861000;0 +20260331 045700;210.861000;210.877000;210.856000;210.859000;0 +20260331 045800;210.865000;210.866000;210.841000;210.842000;0 +20260331 045900;210.842000;210.863000;210.824000;210.824000;0 +20260331 050000;210.828000;210.828000;210.778000;210.802000;0 +20260331 050100;210.804000;210.804000;210.737000;210.752000;0 +20260331 050200;210.753000;210.797000;210.753000;210.793000;0 +20260331 050300;210.796000;210.819000;210.779000;210.781000;0 +20260331 050400;210.787000;210.787000;210.761000;210.783000;0 +20260331 050500;210.787000;210.787000;210.740000;210.756000;0 +20260331 050600;210.758000;210.761000;210.731000;210.742000;0 +20260331 050700;210.742000;210.752000;210.729000;210.746000;0 +20260331 050800;210.745000;210.747000;210.724000;210.741000;0 +20260331 050900;210.743000;210.749000;210.732000;210.733000;0 +20260331 051000;210.736000;210.757000;210.731000;210.757000;0 +20260331 051100;210.756000;210.756000;210.714000;210.729000;0 +20260331 051200;210.730000;210.770000;210.728000;210.764000;0 +20260331 051300;210.762000;210.763000;210.717000;210.720000;0 +20260331 051400;210.720000;210.733000;210.719000;210.730000;0 +20260331 051500;210.731000;210.744000;210.726000;210.738000;0 +20260331 051600;210.739000;210.755000;210.723000;210.727000;0 +20260331 051700;210.726000;210.744000;210.726000;210.741000;0 +20260331 051800;210.742000;210.787000;210.736000;210.780000;0 +20260331 051900;210.783000;210.793000;210.765000;210.770000;0 +20260331 052000;210.778000;210.813000;210.773000;210.807000;0 +20260331 052100;210.810000;210.810000;210.790000;210.798000;0 +20260331 052200;210.796000;210.807000;210.783000;210.807000;0 +20260331 052300;210.810000;210.838000;210.807000;210.833000;0 +20260331 052400;210.833000;210.842000;210.824000;210.836000;0 +20260331 052500;210.833000;210.839000;210.801000;210.809000;0 +20260331 052600;210.812000;210.837000;210.809000;210.828000;0 +20260331 052700;210.828000;210.836000;210.822000;210.822000;0 +20260331 052800;210.823000;210.851000;210.823000;210.844000;0 +20260331 052900;210.846000;210.859000;210.845000;210.857000;0 +20260331 053000;210.858000;210.878000;210.845000;210.876000;0 +20260331 053100;210.879000;210.905000;210.870000;210.902000;0 +20260331 053200;210.903000;210.919000;210.895000;210.902000;0 +20260331 053300;210.902000;210.950000;210.902000;210.943000;0 +20260331 053400;210.947000;210.954000;210.936000;210.945000;0 +20260331 053500;210.954000;210.958000;210.940000;210.957000;0 +20260331 053600;210.956000;210.992000;210.954000;210.990000;0 +20260331 053700;210.991000;211.021000;210.986000;211.018000;0 +20260331 053800;211.017000;211.021000;210.999000;211.010000;0 +20260331 053900;211.010000;211.010000;210.975000;210.976000;0 +20260331 054000;210.976000;211.008000;210.973000;210.980000;0 +20260331 054100;210.980000;210.981000;210.929000;210.939000;0 +20260331 054200;210.936000;210.957000;210.926000;210.951000;0 +20260331 054300;210.953000;210.957000;210.945000;210.951000;0 +20260331 054400;210.953000;210.973000;210.953000;210.970000;0 +20260331 054500;210.970000;210.979000;210.947000;210.947000;0 +20260331 054600;210.946000;210.968000;210.927000;210.968000;0 +20260331 054700;210.972000;210.980000;210.959000;210.959000;0 +20260331 054800;210.957000;210.966000;210.949000;210.955000;0 +20260331 054900;210.955000;210.955000;210.923000;210.925000;0 +20260331 055000;210.923000;210.935000;210.909000;210.916000;0 +20260331 055100;210.913000;210.930000;210.912000;210.921000;0 +20260331 055200;210.922000;210.946000;210.921000;210.929000;0 +20260331 055300;210.931000;210.936000;210.917000;210.924000;0 +20260331 055400;210.925000;210.959000;210.924000;210.953000;0 +20260331 055500;210.956000;210.958000;210.900000;210.908000;0 +20260331 055600;210.912000;210.921000;210.910000;210.913000;0 +20260331 055700;210.915000;210.956000;210.911000;210.956000;0 +20260331 055800;210.956000;210.975000;210.942000;210.967000;0 +20260331 055900;210.967000;210.969000;210.952000;210.957000;0 +20260331 060000;210.958000;210.986000;210.958000;210.980000;0 +20260331 060100;210.980000;211.001000;210.972000;210.979000;0 +20260331 060200;210.978000;210.978000;210.948000;210.953000;0 +20260331 060300;210.953000;210.955000;210.936000;210.944000;0 +20260331 060400;210.947000;210.964000;210.940000;210.960000;0 +20260331 060500;210.958000;210.965000;210.955000;210.964000;0 +20260331 060600;210.966000;210.984000;210.956000;210.956000;0 +20260331 060700;210.958000;210.960000;210.912000;210.912000;0 +20260331 060800;210.916000;210.943000;210.916000;210.935000;0 +20260331 060900;210.932000;210.960000;210.922000;210.926000;0 +20260331 061000;210.924000;210.938000;210.922000;210.929000;0 +20260331 061100;210.928000;210.948000;210.927000;210.938000;0 +20260331 061200;210.933000;210.946000;210.931000;210.931000;0 +20260331 061300;210.931000;210.937000;210.931000;210.933000;0 +20260331 061400;210.933000;210.939000;210.918000;210.935000;0 +20260331 061500;210.933000;210.933000;210.913000;210.919000;0 +20260331 061600;210.918000;210.938000;210.918000;210.930000;0 +20260331 061700;210.927000;210.935000;210.925000;210.935000;0 +20260331 061800;210.934000;210.954000;210.934000;210.953000;0 +20260331 061900;210.952000;210.954000;210.927000;210.930000;0 +20260331 062000;210.933000;210.963000;210.924000;210.943000;0 +20260331 062100;210.944000;210.944000;210.922000;210.922000;0 +20260331 062200;210.924000;210.941000;210.924000;210.938000;0 +20260331 062300;210.937000;210.955000;210.935000;210.942000;0 +20260331 062400;210.945000;210.981000;210.945000;210.965000;0 +20260331 062500;210.962000;210.974000;210.947000;210.957000;0 +20260331 062600;210.954000;210.959000;210.941000;210.943000;0 +20260331 062700;210.944000;210.944000;210.917000;210.923000;0 +20260331 062800;210.924000;210.927000;210.908000;210.915000;0 +20260331 062900;210.909000;210.909000;210.875000;210.885000;0 +20260331 063000;210.887000;210.915000;210.882000;210.908000;0 +20260331 063100;210.911000;210.917000;210.898000;210.903000;0 +20260331 063200;210.904000;210.916000;210.900000;210.915000;0 +20260331 063300;210.915000;210.920000;210.912000;210.918000;0 +20260331 063400;210.919000;210.922000;210.878000;210.884000;0 +20260331 063500;210.881000;210.889000;210.869000;210.869000;0 +20260331 063600;210.870000;210.889000;210.854000;210.875000;0 +20260331 063700;210.873000;210.893000;210.863000;210.891000;0 +20260331 063800;210.887000;210.921000;210.887000;210.917000;0 +20260331 063900;210.915000;210.930000;210.896000;210.929000;0 +20260331 064000;210.928000;210.932000;210.909000;210.913000;0 +20260331 064100;210.915000;210.931000;210.906000;210.909000;0 +20260331 064200;210.911000;210.925000;210.905000;210.914000;0 +20260331 064300;210.913000;210.913000;210.891000;210.893000;0 +20260331 064400;210.893000;210.893000;210.875000;210.883000;0 +20260331 064500;210.880000;210.881000;210.850000;210.851000;0 +20260331 064600;210.851000;210.856000;210.830000;210.838000;0 +20260331 064700;210.839000;210.871000;210.837000;210.868000;0 +20260331 064800;210.865000;210.877000;210.862000;210.868000;0 +20260331 064900;210.871000;210.873000;210.862000;210.862000;0 +20260331 065000;210.872000;210.889000;210.864000;210.882000;0 +20260331 065100;210.881000;210.904000;210.876000;210.883000;0 +20260331 065200;210.879000;210.885000;210.859000;210.863000;0 +20260331 065300;210.867000;210.918000;210.861000;210.918000;0 +20260331 065400;210.920000;210.944000;210.914000;210.924000;0 +20260331 065500;210.924000;210.928000;210.884000;210.892000;0 +20260331 065600;210.891000;210.899000;210.873000;210.889000;0 +20260331 065700;210.886000;210.894000;210.828000;210.840000;0 +20260331 065800;210.840000;210.848000;210.826000;210.830000;0 +20260331 065900;210.833000;210.843000;210.824000;210.833000;0 +20260331 070000;210.837000;210.850000;210.816000;210.845000;0 +20260331 070100;210.843000;210.847000;210.817000;210.818000;0 +20260331 070200;210.819000;210.839000;210.801000;210.835000;0 +20260331 070300;210.834000;210.838000;210.816000;210.826000;0 +20260331 070400;210.825000;210.827000;210.794000;210.811000;0 +20260331 070500;210.810000;210.812000;210.772000;210.775000;0 +20260331 070600;210.776000;210.797000;210.776000;210.778000;0 +20260331 070700;210.777000;210.785000;210.774000;210.780000;0 +20260331 070800;210.780000;210.783000;210.767000;210.776000;0 +20260331 070900;210.778000;210.783000;210.746000;210.747000;0 +20260331 071000;210.749000;210.755000;210.715000;210.748000;0 +20260331 071100;210.748000;210.864000;210.748000;210.836000;0 +20260331 071200;210.836000;210.853000;210.772000;210.794000;0 +20260331 071300;210.792000;210.813000;210.781000;210.803000;0 +20260331 071400;210.802000;210.835000;210.795000;210.801000;0 +20260331 071500;210.810000;210.830000;210.805000;210.813000;0 +20260331 071600;210.813000;210.828000;210.801000;210.813000;0 +20260331 071700;210.814000;210.844000;210.790000;210.838000;0 +20260331 071800;210.841000;210.868000;210.834000;210.853000;0 +20260331 071900;210.856000;210.859000;210.795000;210.812000;0 +20260331 072000;210.814000;210.840000;210.807000;210.836000;0 +20260331 072100;210.836000;210.854000;210.824000;210.826000;0 +20260331 072200;210.823000;210.840000;210.809000;210.827000;0 +20260331 072300;210.827000;210.828000;210.770000;210.774000;0 +20260331 072400;210.777000;210.828000;210.772000;210.826000;0 +20260331 072500;210.825000;210.879000;210.822000;210.838000;0 +20260331 072600;210.838000;210.900000;210.833000;210.894000;0 +20260331 072700;210.895000;210.899000;210.842000;210.855000;0 +20260331 072800;210.851000;210.869000;210.804000;210.820000;0 +20260331 072900;210.817000;210.817000;210.754000;210.768000;0 +20260331 073000;210.768000;210.796000;210.756000;210.779000;0 +20260331 073100;210.771000;210.772000;210.754000;210.772000;0 +20260331 073200;210.771000;210.799000;210.765000;210.773000;0 +20260331 073300;210.771000;210.790000;210.754000;210.787000;0 +20260331 073400;210.786000;210.838000;210.782000;210.810000;0 +20260331 073500;210.806000;210.822000;210.794000;210.811000;0 +20260331 073600;210.811000;210.831000;210.804000;210.829000;0 +20260331 073700;210.829000;210.857000;210.829000;210.851000;0 +20260331 073800;210.850000;210.880000;210.843000;210.860000;0 +20260331 073900;210.859000;210.889000;210.858000;210.872000;0 +20260331 074000;210.872000;210.880000;210.845000;210.845000;0 +20260331 074100;210.846000;210.860000;210.822000;210.827000;0 +20260331 074200;210.827000;210.898000;210.827000;210.898000;0 +20260331 074300;210.898000;210.920000;210.889000;210.912000;0 +20260331 074400;210.911000;210.921000;210.896000;210.900000;0 +20260331 074500;210.899000;210.961000;210.891000;210.937000;0 +20260331 074600;210.931000;210.936000;210.859000;210.862000;0 +20260331 074700;210.865000;210.876000;210.835000;210.855000;0 +20260331 074800;210.855000;210.863000;210.831000;210.833000;0 +20260331 074900;210.829000;210.909000;210.829000;210.896000;0 +20260331 075000;210.894000;210.920000;210.881000;210.902000;0 +20260331 075100;210.904000;210.940000;210.890000;210.933000;0 +20260331 075200;210.933000;210.937000;210.905000;210.906000;0 +20260331 075300;210.908000;210.944000;210.902000;210.937000;0 +20260331 075400;210.938000;210.947000;210.923000;210.936000;0 +20260331 075500;210.937000;210.963000;210.920000;210.928000;0 +20260331 075600;210.928000;210.964000;210.928000;210.963000;0 +20260331 075700;210.966000;211.001000;210.957000;210.969000;0 +20260331 075800;210.969000;210.971000;210.947000;210.970000;0 +20260331 075900;210.970000;210.987000;210.959000;210.980000;0 +20260331 080000;210.981000;211.052000;210.968000;211.044000;0 +20260331 080100;211.044000;211.071000;211.037000;211.053000;0 +20260331 080200;211.054000;211.078000;211.046000;211.066000;0 +20260331 080300;211.064000;211.112000;211.064000;211.103000;0 +20260331 080400;211.103000;211.122000;211.079000;211.122000;0 +20260331 080500;211.122000;211.136000;211.094000;211.113000;0 +20260331 080600;211.113000;211.141000;211.113000;211.137000;0 +20260331 080700;211.134000;211.134000;211.109000;211.125000;0 +20260331 080800;211.123000;211.138000;211.118000;211.133000;0 +20260331 080900;211.135000;211.201000;211.134000;211.179000;0 +20260331 081000;211.180000;211.183000;211.140000;211.153000;0 +20260331 081100;211.152000;211.152000;211.094000;211.097000;0 +20260331 081200;211.100000;211.119000;211.061000;211.102000;0 +20260331 081300;211.102000;211.140000;211.099000;211.129000;0 +20260331 081400;211.129000;211.161000;211.112000;211.121000;0 +20260331 081500;211.119000;211.122000;211.071000;211.078000;0 +20260331 081600;211.077000;211.081000;211.033000;211.064000;0 +20260331 081700;211.063000;211.083000;211.051000;211.070000;0 +20260331 081800;211.070000;211.130000;211.037000;211.107000;0 +20260331 081900;211.108000;211.130000;211.056000;211.075000;0 +20260331 082000;211.067000;211.110000;211.058000;211.075000;0 +20260331 082100;211.078000;211.080000;211.018000;211.025000;0 +20260331 082200;211.023000;211.060000;211.018000;211.054000;0 +20260331 082300;211.052000;211.055000;210.993000;211.009000;0 +20260331 082400;211.008000;211.037000;211.002000;211.024000;0 +20260331 082500;211.024000;211.055000;211.023000;211.049000;0 +20260331 082600;211.052000;211.052000;211.019000;211.034000;0 +20260331 082700;211.033000;211.040000;211.014000;211.025000;0 +20260331 082800;211.026000;211.087000;211.024000;211.085000;0 +20260331 082900;211.085000;211.086000;211.050000;211.069000;0 +20260331 083000;211.068000;211.097000;211.039000;211.094000;0 +20260331 083100;211.094000;211.130000;211.086000;211.116000;0 +20260331 083200;211.113000;211.128000;211.101000;211.114000;0 +20260331 083300;211.117000;211.119000;211.085000;211.103000;0 +20260331 083400;211.104000;211.108000;211.091000;211.099000;0 +20260331 083500;211.097000;211.103000;211.082000;211.086000;0 +20260331 083600;211.084000;211.114000;211.070000;211.108000;0 +20260331 083700;211.108000;211.109000;211.079000;211.079000;0 +20260331 083800;211.083000;211.099000;211.050000;211.055000;0 +20260331 083900;211.058000;211.063000;211.029000;211.032000;0 +20260331 084000;211.032000;211.049000;211.003000;211.039000;0 +20260331 084100;211.039000;211.066000;211.039000;211.055000;0 +20260331 084200;211.055000;211.071000;211.035000;211.066000;0 +20260331 084300;211.066000;211.084000;211.062000;211.072000;0 +20260331 084400;211.075000;211.081000;211.069000;211.080000;0 +20260331 084500;211.077000;211.113000;211.077000;211.104000;0 +20260331 084600;211.104000;211.123000;211.097000;211.107000;0 +20260331 084700;211.104000;211.129000;211.104000;211.112000;0 +20260331 084800;211.112000;211.123000;211.066000;211.076000;0 +20260331 084900;211.078000;211.111000;211.061000;211.065000;0 +20260331 085000;211.070000;211.072000;211.021000;211.065000;0 +20260331 085100;211.063000;211.088000;211.061000;211.077000;0 +20260331 085200;211.076000;211.080000;211.050000;211.055000;0 +20260331 085300;211.060000;211.067000;211.023000;211.058000;0 +20260331 085400;211.060000;211.063000;211.022000;211.037000;0 +20260331 085500;211.038000;211.038000;210.992000;210.993000;0 +20260331 085600;210.996000;211.017000;210.973000;210.986000;0 +20260331 085700;210.986000;210.986000;210.949000;210.959000;0 +20260331 085800;210.957000;210.969000;210.939000;210.949000;0 +20260331 085900;210.953000;210.958000;210.941000;210.948000;0 +20260331 090000;210.947000;210.960000;210.934000;210.950000;0 +20260331 090100;210.949000;210.983000;210.947000;210.968000;0 +20260331 090200;210.970000;210.979000;210.949000;210.969000;0 +20260331 090300;210.968000;210.968000;210.895000;210.906000;0 +20260331 090400;210.910000;210.947000;210.908000;210.936000;0 +20260331 090500;210.936000;210.969000;210.916000;210.964000;0 +20260331 090600;210.967000;211.012000;210.965000;210.995000;0 +20260331 090700;210.996000;211.003000;210.969000;210.984000;0 +20260331 090800;210.984000;211.009000;210.976000;210.977000;0 +20260331 090900;210.978000;211.007000;210.971000;211.001000;0 +20260331 091000;210.996000;211.022000;210.990000;211.022000;0 +20260331 091100;211.023000;211.029000;211.004000;211.009000;0 +20260331 091200;211.009000;211.028000;210.999000;211.006000;0 +20260331 091300;211.002000;211.008000;210.961000;210.961000;0 +20260331 091400;210.964000;210.976000;210.956000;210.970000;0 +20260331 091500;210.967000;210.990000;210.951000;210.978000;0 +20260331 091600;210.979000;211.000000;210.969000;210.979000;0 +20260331 091700;210.980000;210.980000;210.952000;210.971000;0 +20260331 091800;210.970000;211.002000;210.954000;210.982000;0 +20260331 091900;210.984000;211.003000;210.974000;210.982000;0 +20260331 092000;210.983000;210.999000;210.968000;210.989000;0 +20260331 092100;210.987000;211.014000;210.977000;211.013000;0 +20260331 092200;211.009000;211.020000;210.993000;211.012000;0 +20260331 092300;211.008000;211.012000;210.989000;210.993000;0 +20260331 092400;210.992000;210.993000;210.976000;210.987000;0 +20260331 092500;210.987000;210.999000;210.966000;210.970000;0 +20260331 092600;210.973000;210.996000;210.962000;210.991000;0 +20260331 092700;210.993000;211.011000;210.990000;211.005000;0 +20260331 092800;211.008000;211.008000;210.976000;210.982000;0 +20260331 092900;210.983000;210.996000;210.975000;210.993000;0 +20260331 093000;210.991000;211.006000;210.960000;210.965000;0 +20260331 093100;210.966000;210.981000;210.917000;210.934000;0 +20260331 093200;210.932000;210.965000;210.899000;210.922000;0 +20260331 093300;210.918000;210.938000;210.899000;210.935000;0 +20260331 093400;210.934000;210.938000;210.905000;210.927000;0 +20260331 093500;210.924000;210.967000;210.924000;210.945000;0 +20260331 093600;210.945000;210.947000;210.918000;210.928000;0 +20260331 093700;210.923000;210.931000;210.905000;210.913000;0 +20260331 093800;210.912000;210.943000;210.908000;210.929000;0 +20260331 093900;210.935000;210.937000;210.913000;210.921000;0 +20260331 094000;210.925000;210.972000;210.923000;210.971000;0 +20260331 094100;210.970000;210.970000;210.939000;210.954000;0 +20260331 094200;210.950000;210.973000;210.900000;210.918000;0 +20260331 094300;210.914000;210.927000;210.892000;210.892000;0 +20260331 094400;210.892000;210.896000;210.846000;210.859000;0 +20260331 094500;210.858000;210.867000;210.782000;210.825000;0 +20260331 094600;210.825000;210.878000;210.825000;210.837000;0 +20260331 094700;210.836000;210.842000;210.810000;210.810000;0 +20260331 094800;210.814000;210.842000;210.806000;210.833000;0 +20260331 094900;210.833000;210.862000;210.823000;210.857000;0 +20260331 095000;210.855000;210.873000;210.834000;210.861000;0 +20260331 095100;210.857000;210.887000;210.857000;210.868000;0 +20260331 095200;210.867000;210.875000;210.839000;210.867000;0 +20260331 095300;210.867000;210.918000;210.856000;210.914000;0 +20260331 095400;210.918000;211.011000;210.914000;210.999000;0 +20260331 095500;211.003000;211.032000;210.993000;211.013000;0 +20260331 095600;211.014000;211.015000;210.939000;210.971000;0 +20260331 095700;210.972000;210.993000;210.941000;210.948000;0 +20260331 095800;210.947000;210.972000;210.932000;210.972000;0 +20260331 095900;210.965000;210.983000;210.936000;210.947000;0 +20260331 100000;210.946000;211.008000;210.914000;210.981000;0 +20260331 100100;210.982000;211.023000;210.969000;210.988000;0 +20260331 100200;210.989000;211.023000;210.983000;211.015000;0 +20260331 100300;211.014000;211.025000;210.990000;211.023000;0 +20260331 100400;211.028000;211.051000;211.006000;211.012000;0 +20260331 100500;211.014000;211.017000;210.955000;210.963000;0 +20260331 100600;210.961000;210.966000;210.926000;210.937000;0 +20260331 100700;210.939000;210.949000;210.907000;210.921000;0 +20260331 100800;210.921000;210.938000;210.904000;210.919000;0 +20260331 100900;210.919000;210.925000;210.893000;210.917000;0 +20260331 101000;210.916000;210.924000;210.888000;210.891000;0 +20260331 101100;210.891000;210.936000;210.886000;210.915000;0 +20260331 101200;210.914000;210.940000;210.901000;210.920000;0 +20260331 101300;210.922000;210.922000;210.886000;210.895000;0 +20260331 101400;210.895000;210.902000;210.881000;210.897000;0 +20260331 101500;210.893000;210.931000;210.891000;210.927000;0 +20260331 101600;210.929000;210.950000;210.908000;210.934000;0 +20260331 101700;210.935000;210.951000;210.884000;210.891000;0 +20260331 101800;210.889000;210.896000;210.846000;210.864000;0 +20260331 101900;210.863000;210.881000;210.861000;210.870000;0 +20260331 102000;210.869000;210.885000;210.846000;210.858000;0 +20260331 102100;210.861000;210.869000;210.804000;210.816000;0 +20260331 102200;210.820000;210.845000;210.814000;210.835000;0 +20260331 102300;210.832000;210.838000;210.802000;210.821000;0 +20260331 102400;210.816000;210.835000;210.806000;210.823000;0 +20260331 102500;210.822000;210.836000;210.806000;210.820000;0 +20260331 102600;210.819000;210.875000;210.819000;210.871000;0 +20260331 102700;210.870000;210.876000;210.841000;210.872000;0 +20260331 102800;210.875000;210.894000;210.864000;210.886000;0 +20260331 102900;210.885000;210.918000;210.883000;210.918000;0 +20260331 103000;210.917000;210.947000;210.912000;210.928000;0 +20260331 103100;210.929000;210.954000;210.905000;210.950000;0 +20260331 103200;210.948000;210.987000;210.947000;210.969000;0 +20260331 103300;210.973000;210.997000;210.967000;210.974000;0 +20260331 103400;210.970000;211.031000;210.953000;210.997000;0 +20260331 103500;210.997000;211.013000;210.976000;211.008000;0 +20260331 103600;211.007000;211.027000;210.903000;210.925000;0 +20260331 103700;210.926000;210.950000;210.892000;210.901000;0 +20260331 103800;210.899000;210.905000;210.871000;210.892000;0 +20260331 103900;210.892000;210.893000;210.830000;210.842000;0 +20260331 104000;210.842000;210.869000;210.813000;210.820000;0 +20260331 104100;210.827000;210.859000;210.817000;210.821000;0 +20260331 104200;210.819000;210.844000;210.817000;210.835000;0 +20260331 104300;210.833000;210.847000;210.805000;210.807000;0 +20260331 104400;210.807000;210.815000;210.779000;210.794000;0 +20260331 104500;210.798000;210.812000;210.769000;210.771000;0 +20260331 104600;210.769000;210.787000;210.761000;210.784000;0 +20260331 104700;210.783000;210.819000;210.768000;210.819000;0 +20260331 104800;210.816000;210.830000;210.804000;210.819000;0 +20260331 104900;210.824000;210.831000;210.800000;210.819000;0 +20260331 105000;210.819000;210.819000;210.719000;210.730000;0 +20260331 105100;210.733000;210.734000;210.634000;210.634000;0 +20260331 105200;210.636000;210.639000;210.554000;210.571000;0 +20260331 105300;210.572000;210.583000;210.552000;210.556000;0 +20260331 105400;210.559000;210.560000;210.457000;210.483000;0 +20260331 105500;210.481000;210.485000;210.255000;210.270000;0 +20260331 105600;210.270000;210.275000;210.067000;210.119000;0 +20260331 105700;210.122000;210.129000;209.626000;209.627000;0 +20260331 105800;209.627000;209.872000;209.614000;209.816000;0 +20260331 105900;209.819000;209.881000;209.707000;209.810000;0 +20260331 110000;209.805000;209.833000;209.710000;209.773000;0 +20260331 110100;209.772000;209.822000;209.742000;209.750000;0 +20260331 110200;209.753000;209.832000;209.743000;209.816000;0 +20260331 110300;209.816000;209.816000;209.746000;209.765000;0 +20260331 110400;209.766000;209.860000;209.741000;209.859000;0 +20260331 110500;209.859000;209.912000;209.845000;209.895000;0 +20260331 110600;209.893000;209.918000;209.858000;209.895000;0 +20260331 110700;209.896000;209.917000;209.853000;209.897000;0 +20260331 110800;209.900000;209.937000;209.876000;209.910000;0 +20260331 110900;209.911000;209.938000;209.882000;209.937000;0 +20260331 111000;209.937000;210.012000;209.932000;210.008000;0 +20260331 111100;210.004000;210.028000;209.968000;210.004000;0 +20260331 111200;210.003000;210.025000;209.966000;210.000000;0 +20260331 111300;209.999000;210.055000;209.994000;210.042000;0 +20260331 111400;210.042000;210.061000;210.012000;210.052000;0 +20260331 111500;210.054000;210.091000;210.018000;210.023000;0 +20260331 111600;210.024000;210.029000;209.969000;209.980000;0 +20260331 111700;209.978000;210.018000;209.968000;210.003000;0 +20260331 111800;210.004000;210.055000;210.003000;210.032000;0 +20260331 111900;210.032000;210.033000;209.983000;209.985000;0 +20260331 112000;209.980000;210.017000;209.955000;209.961000;0 +20260331 112100;209.960000;209.976000;209.944000;209.973000;0 +20260331 112200;209.970000;210.034000;209.970000;210.021000;0 +20260331 112300;210.021000;210.042000;209.975000;209.998000;0 +20260331 112400;209.998000;210.035000;209.994000;209.998000;0 +20260331 112500;209.993000;210.000000;209.974000;209.981000;0 +20260331 112600;209.981000;210.017000;209.957000;209.963000;0 +20260331 112700;209.960000;209.980000;209.926000;209.940000;0 +20260331 112800;209.940000;209.988000;209.936000;209.980000;0 +20260331 112900;209.983000;209.983000;209.942000;209.951000;0 +20260331 113000;209.952000;209.960000;209.890000;209.898000;0 +20260331 113100;209.895000;209.904000;209.845000;209.863000;0 +20260331 113200;209.867000;209.890000;209.863000;209.888000;0 +20260331 113300;209.890000;209.980000;209.886000;209.959000;0 +20260331 113400;209.959000;209.994000;209.949000;209.967000;0 +20260331 113500;209.966000;209.987000;209.935000;209.943000;0 +20260331 113600;209.945000;209.986000;209.939000;209.971000;0 +20260331 113700;209.971000;210.007000;209.950000;210.007000;0 +20260331 113800;210.006000;210.025000;209.996000;209.999000;0 +20260331 113900;209.995000;210.025000;209.988000;209.997000;0 +20260331 114000;209.996000;210.003000;209.917000;209.917000;0 +20260331 114100;209.917000;209.927000;209.862000;209.864000;0 +20260331 114200;209.865000;209.866000;209.797000;209.799000;0 +20260331 114300;209.796000;209.803000;209.762000;209.795000;0 +20260331 114400;209.793000;209.883000;209.780000;209.882000;0 +20260331 114500;209.883000;209.914000;209.879000;209.895000;0 +20260331 114600;209.893000;209.914000;209.849000;209.899000;0 +20260331 114700;209.901000;209.918000;209.862000;209.866000;0 +20260331 114800;209.869000;209.879000;209.846000;209.846000;0 +20260331 114900;209.846000;209.857000;209.818000;209.850000;0 +20260331 115000;209.851000;209.859000;209.829000;209.851000;0 +20260331 115100;209.849000;209.861000;209.811000;209.822000;0 +20260331 115200;209.823000;209.849000;209.813000;209.835000;0 +20260331 115300;209.833000;209.844000;209.781000;209.785000;0 +20260331 115400;209.785000;209.785000;209.748000;209.763000;0 +20260331 115500;209.766000;209.766000;209.690000;209.704000;0 +20260331 115600;209.698000;209.718000;209.681000;209.683000;0 +20260331 115700;209.677000;209.742000;209.677000;209.715000;0 +20260331 115800;209.715000;209.740000;209.698000;209.735000;0 +20260331 115900;209.736000;209.750000;209.722000;209.728000;0 +20260331 120000;209.727000;209.775000;209.696000;209.768000;0 +20260331 120100;209.767000;209.827000;209.759000;209.825000;0 +20260331 120200;209.822000;209.859000;209.822000;209.833000;0 +20260331 120300;209.834000;209.877000;209.823000;209.851000;0 +20260331 120400;209.851000;209.862000;209.843000;209.848000;0 +20260331 120500;209.850000;209.854000;209.799000;209.814000;0 +20260331 120600;209.819000;209.832000;209.763000;209.767000;0 +20260331 120700;209.767000;209.793000;209.744000;209.792000;0 +20260331 120800;209.792000;209.819000;209.784000;209.788000;0 +20260331 120900;209.782000;209.790000;209.749000;209.766000;0 +20260331 121000;209.765000;209.784000;209.738000;209.784000;0 +20260331 121100;209.785000;209.860000;209.783000;209.828000;0 +20260331 121200;209.825000;209.849000;209.779000;209.822000;0 +20260331 121300;209.829000;209.857000;209.825000;209.841000;0 +20260331 121400;209.851000;209.882000;209.845000;209.862000;0 +20260331 121500;209.860000;209.885000;209.821000;209.840000;0 +20260331 121600;209.843000;209.846000;209.759000;209.819000;0 +20260331 121700;209.821000;209.829000;209.798000;209.817000;0 +20260331 121800;209.819000;209.843000;209.809000;209.817000;0 +20260331 121900;209.820000;209.820000;209.797000;209.799000;0 +20260331 122000;209.799000;209.821000;209.758000;209.773000;0 +20260331 122100;209.777000;209.824000;209.746000;209.788000;0 +20260331 122200;209.784000;209.815000;209.775000;209.778000;0 +20260331 122300;209.778000;209.806000;209.771000;209.793000;0 +20260331 122400;209.793000;209.867000;209.793000;209.862000;0 +20260331 122500;209.865000;209.912000;209.857000;209.910000;0 +20260331 122600;209.912000;209.912000;209.881000;209.881000;0 +20260331 122700;209.883000;209.916000;209.883000;209.914000;0 +20260331 122800;209.916000;209.931000;209.906000;209.920000;0 +20260331 122900;209.918000;209.919000;209.891000;209.906000;0 +20260331 123000;209.905000;209.918000;209.890000;209.914000;0 +20260331 123100;209.922000;209.924000;209.883000;209.895000;0 +20260331 123200;209.895000;209.929000;209.885000;209.928000;0 +20260331 123300;209.928000;209.985000;209.928000;209.967000;0 +20260331 123400;209.966000;209.966000;209.917000;209.920000;0 +20260331 123500;209.917000;209.934000;209.909000;209.911000;0 +20260331 123600;209.915000;209.933000;209.906000;209.931000;0 +20260331 123700;209.932000;209.967000;209.927000;209.957000;0 +20260331 123800;209.953000;209.968000;209.926000;209.947000;0 +20260331 123900;209.949000;209.958000;209.921000;209.939000;0 +20260331 124000;209.937000;210.115000;209.933000;210.054000;0 +20260331 124100;210.055000;210.199000;210.043000;210.191000;0 +20260331 124200;210.190000;210.190000;210.062000;210.154000;0 +20260331 124300;210.156000;210.193000;210.058000;210.071000;0 +20260331 124400;210.069000;210.077000;210.015000;210.034000;0 +20260331 124500;210.032000;210.059000;209.995000;210.014000;0 +20260331 124600;210.012000;210.021000;209.949000;209.997000;0 +20260331 124700;209.999000;210.000000;209.956000;209.972000;0 +20260331 124800;209.972000;209.980000;209.914000;209.941000;0 +20260331 124900;209.941000;209.958000;209.891000;209.937000;0 +20260331 125000;209.937000;210.002000;209.881000;209.946000;0 +20260331 125100;209.946000;209.986000;209.923000;209.971000;0 +20260331 125200;209.973000;209.981000;209.915000;209.938000;0 +20260331 125300;209.938000;210.014000;209.932000;209.991000;0 +20260331 125400;209.991000;210.039000;209.986000;210.024000;0 +20260331 125500;210.022000;210.049000;209.998000;210.027000;0 +20260331 125600;210.027000;210.081000;210.011000;210.071000;0 +20260331 125700;210.068000;210.077000;210.017000;210.037000;0 +20260331 125800;210.042000;210.052000;209.987000;210.026000;0 +20260331 125900;210.027000;210.078000;210.010000;210.058000;0 +20260331 130000;210.060000;210.158000;210.060000;210.112000;0 +20260331 130100;210.113000;210.196000;210.103000;210.174000;0 +20260331 130200;210.175000;210.198000;210.167000;210.171000;0 +20260331 130300;210.171000;210.188000;210.116000;210.145000;0 +20260331 130400;210.140000;210.178000;210.118000;210.138000;0 +20260331 130500;210.139000;210.148000;210.074000;210.092000;0 +20260331 130600;210.099000;210.129000;210.067000;210.080000;0 +20260331 130700;210.079000;210.133000;210.075000;210.103000;0 +20260331 130800;210.103000;210.132000;210.099000;210.125000;0 +20260331 130900;210.125000;210.131000;210.051000;210.071000;0 +20260331 131000;210.068000;210.086000;210.046000;210.083000;0 +20260331 131100;210.082000;210.116000;210.077000;210.109000;0 +20260331 131200;210.110000;210.135000;210.084000;210.118000;0 +20260331 131300;210.117000;210.140000;210.086000;210.097000;0 +20260331 131400;210.096000;210.148000;210.096000;210.123000;0 +20260331 131500;210.124000;210.169000;210.123000;210.165000;0 +20260331 131600;210.165000;210.183000;210.150000;210.182000;0 +20260331 131700;210.186000;210.192000;210.160000;210.184000;0 +20260331 131800;210.185000;210.208000;210.165000;210.168000;0 +20260331 131900;210.169000;210.201000;210.162000;210.193000;0 +20260331 132000;210.192000;210.198000;210.178000;210.194000;0 +20260331 132100;210.197000;210.215000;210.186000;210.204000;0 +20260331 132200;210.204000;210.229000;210.196000;210.224000;0 +20260331 132300;210.224000;210.260000;210.219000;210.219000;0 +20260331 132400;210.217000;210.229000;210.202000;210.207000;0 +20260331 132500;210.210000;210.235000;210.191000;210.218000;0 +20260331 132600;210.218000;210.256000;210.211000;210.248000;0 +20260331 132700;210.248000;210.261000;210.226000;210.240000;0 +20260331 132800;210.239000;210.266000;210.231000;210.263000;0 +20260331 132900;210.263000;210.274000;210.249000;210.265000;0 +20260331 133000;210.269000;210.275000;210.248000;210.266000;0 +20260331 133100;210.269000;210.282000;210.261000;210.270000;0 +20260331 133200;210.269000;210.294000;210.256000;210.261000;0 +20260331 133300;210.258000;210.303000;210.252000;210.301000;0 +20260331 133400;210.298000;210.313000;210.288000;210.295000;0 +20260331 133500;210.296000;210.313000;210.289000;210.297000;0 +20260331 133600;210.301000;210.328000;210.235000;210.308000;0 +20260331 133700;210.308000;210.309000;210.250000;210.271000;0 +20260331 133800;210.269000;210.296000;210.256000;210.296000;0 +20260331 133900;210.295000;210.312000;210.260000;210.309000;0 +20260331 134000;210.308000;210.355000;210.293000;210.336000;0 +20260331 134100;210.345000;210.352000;210.307000;210.325000;0 +20260331 134200;210.328000;210.333000;210.315000;210.325000;0 +20260331 134300;210.323000;210.326000;210.304000;210.314000;0 +20260331 134400;210.319000;210.325000;210.279000;210.311000;0 +20260331 134500;210.309000;210.316000;210.293000;210.314000;0 +20260331 134600;210.315000;210.345000;210.311000;210.338000;0 +20260331 134700;210.336000;210.375000;210.333000;210.369000;0 +20260331 134800;210.369000;210.370000;210.335000;210.353000;0 +20260331 134900;210.355000;210.398000;210.353000;210.391000;0 +20260331 135000;210.392000;210.404000;210.379000;210.393000;0 +20260331 135100;210.395000;210.400000;210.375000;210.395000;0 +20260331 135200;210.394000;210.418000;210.390000;210.410000;0 +20260331 135300;210.408000;210.410000;210.391000;210.404000;0 +20260331 135400;210.403000;210.404000;210.342000;210.373000;0 +20260331 135500;210.374000;210.375000;210.335000;210.338000;0 +20260331 135600;210.340000;210.350000;210.316000;210.316000;0 +20260331 135700;210.315000;210.332000;210.276000;210.300000;0 +20260331 135800;210.295000;210.298000;210.273000;210.289000;0 +20260331 135900;210.290000;210.294000;210.275000;210.293000;0 +20260331 140000;210.292000;210.334000;210.288000;210.331000;0 +20260331 140100;210.327000;210.356000;210.324000;210.337000;0 +20260331 140200;210.342000;210.361000;210.335000;210.355000;0 +20260331 140300;210.355000;210.364000;210.339000;210.358000;0 +20260331 140400;210.358000;210.359000;210.326000;210.336000;0 +20260331 140500;210.336000;210.366000;210.334000;210.358000;0 +20260331 140600;210.360000;210.371000;210.335000;210.345000;0 +20260331 140700;210.346000;210.389000;210.331000;210.387000;0 +20260331 140800;210.383000;210.383000;210.358000;210.365000;0 +20260331 140900;210.369000;210.395000;210.361000;210.369000;0 +20260331 141000;210.371000;210.382000;210.360000;210.362000;0 +20260331 141100;210.362000;210.409000;210.349000;210.396000;0 +20260331 141200;210.394000;210.401000;210.362000;210.370000;0 +20260331 141300;210.376000;210.391000;210.363000;210.378000;0 +20260331 141400;210.382000;210.401000;210.374000;210.387000;0 +20260331 141500;210.388000;210.390000;210.365000;210.378000;0 +20260331 141600;210.378000;210.398000;210.377000;210.393000;0 +20260331 141700;210.393000;210.395000;210.376000;210.380000;0 +20260331 141800;210.377000;210.381000;210.355000;210.358000;0 +20260331 141900;210.356000;210.374000;210.353000;210.374000;0 +20260331 142000;210.372000;210.375000;210.357000;210.363000;0 +20260331 142100;210.361000;210.374000;210.347000;210.354000;0 +20260331 142200;210.354000;210.355000;210.342000;210.344000;0 +20260331 142300;210.343000;210.359000;210.336000;210.338000;0 +20260331 142400;210.339000;210.345000;210.325000;210.345000;0 +20260331 142500;210.349000;210.354000;210.316000;210.342000;0 +20260331 142600;210.342000;210.357000;210.338000;210.351000;0 +20260331 142700;210.352000;210.366000;210.342000;210.362000;0 +20260331 142800;210.363000;210.370000;210.330000;210.333000;0 +20260331 142900;210.338000;210.343000;210.312000;210.315000;0 +20260331 143000;210.314000;210.321000;210.296000;210.304000;0 +20260331 143100;210.306000;210.312000;210.284000;210.288000;0 +20260331 143200;210.290000;210.312000;210.288000;210.303000;0 +20260331 143300;210.309000;210.310000;210.289000;210.302000;0 +20260331 143400;210.303000;210.310000;210.296000;210.301000;0 +20260331 143500;210.301000;210.324000;210.286000;210.323000;0 +20260331 143600;210.327000;210.338000;210.313000;210.319000;0 +20260331 143700;210.318000;210.330000;210.314000;210.315000;0 +20260331 143800;210.321000;210.332000;210.299000;210.304000;0 +20260331 143900;210.303000;210.307000;210.280000;210.280000;0 +20260331 144000;210.288000;210.294000;210.236000;210.241000;0 +20260331 144100;210.243000;210.255000;210.238000;210.243000;0 +20260331 144200;210.245000;210.264000;210.219000;210.228000;0 +20260331 144300;210.230000;210.243000;210.224000;210.228000;0 +20260331 144400;210.231000;210.231000;210.202000;210.210000;0 +20260331 144500;210.212000;210.237000;210.210000;210.216000;0 +20260331 144600;210.216000;210.227000;210.191000;210.194000;0 +20260331 144700;210.194000;210.199000;210.150000;210.172000;0 +20260331 144800;210.172000;210.182000;210.163000;210.167000;0 +20260331 144900;210.163000;210.183000;210.161000;210.178000;0 +20260331 145000;210.178000;210.194000;210.145000;210.147000;0 +20260331 145100;210.153000;210.161000;210.140000;210.155000;0 +20260331 145200;210.155000;210.163000;210.146000;210.149000;0 +20260331 145300;210.152000;210.152000;210.128000;210.135000;0 +20260331 145400;210.135000;210.165000;210.133000;210.148000;0 +20260331 145500;210.147000;210.154000;210.135000;210.147000;0 +20260331 145600;210.151000;210.191000;210.146000;210.180000;0 +20260331 145700;210.178000;210.213000;210.169000;210.204000;0 +20260331 145800;210.206000;210.213000;210.160000;210.160000;0 +20260331 145900;210.163000;210.172000;210.152000;210.157000;0 +20260331 150000;210.159000;210.206000;210.159000;210.190000;0 +20260331 150100;210.188000;210.198000;210.168000;210.172000;0 +20260331 150200;210.169000;210.169000;210.126000;210.134000;0 +20260331 150300;210.134000;210.225000;210.109000;210.206000;0 +20260331 150400;210.207000;210.216000;210.178000;210.191000;0 +20260331 150500;210.192000;210.256000;210.184000;210.246000;0 +20260331 150600;210.245000;210.246000;210.201000;210.201000;0 +20260331 150700;210.204000;210.231000;210.199000;210.231000;0 +20260331 150800;210.229000;210.231000;210.191000;210.213000;0 +20260331 150900;210.215000;210.255000;210.215000;210.236000;0 +20260331 151000;210.238000;210.250000;210.227000;210.236000;0 +20260331 151100;210.230000;210.251000;210.223000;210.243000;0 +20260331 151200;210.246000;210.251000;210.234000;210.239000;0 +20260331 151300;210.241000;210.246000;210.224000;210.246000;0 +20260331 151400;210.244000;210.264000;210.239000;210.249000;0 +20260331 151500;210.251000;210.263000;210.247000;210.249000;0 +20260331 151600;210.248000;210.263000;210.244000;210.253000;0 +20260331 151700;210.252000;210.261000;210.232000;210.246000;0 +20260331 151800;210.246000;210.246000;210.229000;210.236000;0 +20260331 151900;210.236000;210.243000;210.219000;210.223000;0 +20260331 152000;210.228000;210.246000;210.226000;210.238000;0 +20260331 152100;210.239000;210.248000;210.231000;210.233000;0 +20260331 152200;210.230000;210.250000;210.225000;210.247000;0 +20260331 152300;210.246000;210.256000;210.225000;210.232000;0 +20260331 152400;210.230000;210.232000;210.214000;210.226000;0 +20260331 152500;210.230000;210.230000;210.211000;210.214000;0 +20260331 152600;210.216000;210.219000;210.193000;210.204000;0 +20260331 152700;210.202000;210.220000;210.194000;210.196000;0 +20260331 152800;210.197000;210.208000;210.187000;210.188000;0 +20260331 152900;210.185000;210.192000;210.176000;210.181000;0 +20260331 153000;210.180000;210.205000;210.174000;210.203000;0 +20260331 153100;210.203000;210.207000;210.184000;210.188000;0 +20260331 153200;210.189000;210.191000;210.179000;210.184000;0 +20260331 153300;210.183000;210.184000;210.136000;210.140000;0 +20260331 153400;210.144000;210.150000;210.118000;210.146000;0 +20260331 153500;210.148000;210.162000;210.135000;210.147000;0 +20260331 153600;210.146000;210.154000;210.120000;210.122000;0 +20260331 153700;210.122000;210.128000;210.095000;210.097000;0 +20260331 153800;210.097000;210.115000;210.089000;210.090000;0 +20260331 153900;210.091000;210.127000;210.086000;210.108000;0 +20260331 154000;210.107000;210.108000;210.092000;210.097000;0 +20260331 154100;210.098000;210.102000;210.071000;210.079000;0 +20260331 154200;210.079000;210.140000;210.069000;210.132000;0 +20260331 154300;210.132000;210.164000;210.128000;210.147000;0 +20260331 154400;210.146000;210.171000;210.143000;210.166000;0 +20260331 154500;210.166000;210.169000;210.148000;210.159000;0 +20260331 154600;210.156000;210.169000;210.151000;210.161000;0 +20260331 154700;210.162000;210.167000;210.144000;210.161000;0 +20260331 154800;210.162000;210.172000;210.152000;210.159000;0 +20260331 154900;210.159000;210.159000;210.121000;210.121000;0 +20260331 155000;210.121000;210.133000;210.076000;210.088000;0 +20260331 155100;210.087000;210.091000;210.061000;210.078000;0 +20260331 155200;210.076000;210.102000;210.075000;210.076000;0 +20260331 155300;210.077000;210.088000;210.065000;210.073000;0 +20260331 155400;210.073000;210.091000;210.072000;210.084000;0 +20260331 155500;210.084000;210.105000;210.060000;210.060000;0 +20260331 155600;210.057000;210.063000;210.018000;210.020000;0 +20260331 155700;210.019000;210.051000;210.011000;210.051000;0 +20260331 155800;210.048000;210.058000;210.034000;210.036000;0 +20260331 155900;210.035000;210.101000;210.031000;210.058000;0 +20260331 160000;210.057000;210.069000;210.038000;210.061000;0 +20260331 160100;210.062000;210.065000;210.047000;210.056000;0 +20260331 160200;210.057000;210.073000;210.031000;210.073000;0 +20260331 160300;210.069000;210.072000;210.055000;210.061000;0 +20260331 160400;210.057000;210.063000;210.052000;210.054000;0 +20260331 160500;210.054000;210.086000;210.054000;210.074000;0 +20260331 160600;210.076000;210.088000;210.066000;210.074000;0 +20260331 160700;210.074000;210.091000;210.066000;210.085000;0 +20260331 160800;210.088000;210.088000;210.045000;210.045000;0 +20260331 160900;210.040000;210.040000;210.018000;210.023000;0 +20260331 161000;210.022000;210.054000;210.016000;210.039000;0 +20260331 161100;210.038000;210.047000;210.014000;210.032000;0 +20260331 161200;210.035000;210.035000;209.994000;209.997000;0 +20260331 161300;209.998000;210.005000;209.984000;209.984000;0 +20260331 161400;209.987000;210.012000;209.987000;210.011000;0 +20260331 161500;210.012000;210.028000;210.008000;210.028000;0 +20260331 161600;210.029000;210.031000;210.003000;210.005000;0 +20260331 161700;210.005000;210.012000;210.001000;210.012000;0 +20260331 161800;210.013000;210.015000;210.009000;210.014000;0 +20260331 161900;210.021000;210.024000;209.982000;209.982000;0 +20260331 162000;209.982000;209.994000;209.959000;209.993000;0 +20260331 162100;209.993000;209.993000;209.980000;209.981000;0 +20260331 162200;209.983000;209.986000;209.980000;209.983000;0 +20260331 162300;209.982000;209.989000;209.977000;209.982000;0 +20260331 162400;209.987000;209.996000;209.979000;209.993000;0 +20260331 162500;209.993000;209.994000;209.972000;209.974000;0 +20260331 162600;209.971000;209.976000;209.900000;209.910000;0 +20260331 162700;209.908000;209.920000;209.900000;209.918000;0 +20260331 162800;209.916000;209.928000;209.915000;209.928000;0 +20260331 162900;209.930000;209.982000;209.930000;209.965000;0 +20260331 163000;209.966000;209.975000;209.947000;209.965000;0 +20260331 163100;209.965000;209.983000;209.947000;209.982000;0 +20260331 163200;209.985000;209.989000;209.961000;209.974000;0 +20260331 163300;209.973000;209.991000;209.955000;209.962000;0 +20260331 163400;209.963000;209.974000;209.957000;209.973000;0 +20260331 163500;209.973000;209.974000;209.964000;209.966000;0 +20260331 163600;209.967000;209.988000;209.963000;209.988000;0 +20260331 163700;209.992000;209.994000;209.968000;209.991000;0 +20260331 163800;209.990000;209.992000;209.978000;209.980000;0 +20260331 163900;209.979000;209.984000;209.961000;209.963000;0 +20260331 164000;209.955000;209.955000;209.937000;209.943000;0 +20260331 164100;209.941000;209.953000;209.938000;209.938000;0 +20260331 164200;209.938000;209.948000;209.924000;209.942000;0 +20260331 164300;209.942000;209.947000;209.935000;209.940000;0 +20260331 164400;209.941000;209.943000;209.925000;209.925000;0 +20260331 164500;209.924000;209.944000;209.924000;209.931000;0 +20260331 164600;209.934000;209.947000;209.920000;209.923000;0 +20260331 164700;209.923000;209.923000;209.911000;209.921000;0 +20260331 164800;209.917000;209.919000;209.913000;209.917000;0 +20260331 164900;209.919000;209.921000;209.912000;209.912000;0 +20260331 165000;209.916000;209.933000;209.908000;209.916000;0 +20260331 165100;209.913000;209.917000;209.909000;209.910000;0 +20260331 165200;209.910000;209.912000;209.902000;209.909000;0 +20260331 165300;209.907000;209.908000;209.903000;209.907000;0 +20260331 165400;209.907000;209.913000;209.900000;209.910000;0 +20260331 165500;209.912000;209.938000;209.910000;209.926000;0 +20260331 165600;209.930000;209.940000;209.925000;209.934000;0 +20260331 165700;209.932000;209.951000;209.915000;209.916000;0 +20260331 165800;209.916000;209.940000;209.906000;209.908000;0 +20260331 165900;209.907000;209.908000;209.854000;209.854000;0 +20260331 170600;209.715000;209.715000;209.715000;209.715000;0 +20260331 170700;209.780000;209.780000;209.780000;209.780000;0 +20260331 170800;209.804000;209.827000;209.804000;209.827000;0 +20260331 170900;209.827000;209.827000;209.782000;209.782000;0 +20260331 171000;209.776000;209.819000;209.776000;209.819000;0 +20260331 171100;209.820000;209.820000;209.785000;209.785000;0 +20260331 171200;209.795000;209.843000;209.786000;209.835000;0 +20260331 171300;209.835000;209.835000;209.835000;209.835000;0 +20260331 171400;209.829000;209.829000;209.829000;209.829000;0 +20260331 171500;209.842000;209.878000;209.837000;209.859000;0 +20260331 171600;209.860000;209.912000;209.859000;209.880000;0 +20260331 171700;209.881000;209.881000;209.872000;209.872000;0 +20260331 171800;209.877000;209.915000;209.877000;209.915000;0 +20260331 171900;209.914000;209.919000;209.877000;209.919000;0 +20260331 172000;209.917000;209.917000;209.917000;209.917000;0 +20260331 172100;209.919000;209.925000;209.919000;209.925000;0 +20260331 172200;209.925000;209.940000;209.895000;209.940000;0 +20260331 172300;209.939000;209.940000;209.933000;209.940000;0 +20260331 172400;209.939000;209.940000;209.932000;209.932000;0 +20260331 172500;209.939000;209.940000;209.939000;209.940000;0 +20260331 172600;209.939000;209.940000;209.932000;209.932000;0 +20260331 172700;209.932000;209.933000;209.920000;209.920000;0 +20260331 172800;209.920000;209.944000;209.920000;209.932000;0 +20260331 172900;209.933000;209.933000;209.916000;209.929000;0 +20260331 173000;209.923000;209.935000;209.913000;209.916000;0 +20260331 173100;209.914000;209.921000;209.911000;209.919000;0 +20260331 173200;209.919000;209.922000;209.893000;209.900000;0 +20260331 173300;209.897000;209.901000;209.818000;209.818000;0 +20260331 173400;209.819000;209.821000;209.819000;209.821000;0 +20260331 173500;209.820000;209.836000;209.816000;209.832000;0 +20260331 173600;209.834000;209.840000;209.824000;209.824000;0 +20260331 173700;209.824000;209.831000;209.749000;209.755000;0 +20260331 173800;209.762000;209.804000;209.752000;209.766000;0 +20260331 173900;209.765000;209.777000;209.759000;209.765000;0 +20260331 174000;209.766000;209.784000;209.766000;209.779000;0 +20260331 174100;209.780000;209.844000;209.767000;209.813000;0 +20260331 174200;209.816000;209.827000;209.816000;209.824000;0 +20260331 174300;209.822000;209.831000;209.822000;209.825000;0 +20260331 174400;209.826000;209.902000;209.826000;209.887000;0 +20260331 174500;209.886000;209.908000;209.860000;209.881000;0 +20260331 174600;209.886000;209.889000;209.864000;209.875000;0 +20260331 174700;209.873000;209.888000;209.862000;209.872000;0 +20260331 174800;209.869000;209.887000;209.863000;209.872000;0 +20260331 174900;209.873000;209.887000;209.867000;209.875000;0 +20260331 175000;209.875000;209.893000;209.866000;209.879000;0 +20260331 175100;209.877000;209.891000;209.873000;209.879000;0 +20260331 175200;209.879000;209.894000;209.879000;209.889000;0 +20260331 175300;209.889000;209.895000;209.815000;209.823000;0 +20260331 175400;209.825000;209.836000;209.792000;209.792000;0 +20260331 175500;209.790000;209.815000;209.737000;209.799000;0 +20260331 175600;209.801000;209.859000;209.703000;209.798000;0 +20260331 175700;209.798000;209.846000;209.777000;209.842000;0 +20260331 175800;209.840000;209.888000;209.828000;209.869000;0 +20260331 175900;209.867000;209.867000;209.867000;209.867000;0 +20260331 180000;209.816000;209.933000;209.816000;209.930000;0 +20260331 180100;209.930000;209.931000;209.921000;209.922000;0 +20260331 180200;209.921000;209.954000;209.921000;209.953000;0 +20260331 180300;209.954000;209.954000;209.933000;209.946000;0 +20260331 180400;209.947000;209.948000;209.934000;209.935000;0 +20260331 180500;209.936000;209.949000;209.933000;209.941000;0 +20260331 180600;209.940000;209.947000;209.933000;209.942000;0 +20260331 180700;209.936000;209.948000;209.933000;209.945000;0 +20260331 180800;209.945000;209.946000;209.940000;209.945000;0 +20260331 180900;209.946000;209.946000;209.868000;209.906000;0 +20260331 181000;209.910000;209.931000;209.904000;209.920000;0 +20260331 181100;209.921000;209.937000;209.913000;209.931000;0 +20260331 181200;209.929000;209.930000;209.906000;209.911000;0 +20260331 181300;209.915000;209.920000;209.894000;209.896000;0 +20260331 181400;209.895000;209.905000;209.879000;209.899000;0 +20260331 181500;209.897000;209.914000;209.886000;209.914000;0 +20260331 181600;209.912000;209.915000;209.885000;209.895000;0 +20260331 181700;209.895000;209.897000;209.884000;209.886000;0 +20260331 181800;209.887000;209.895000;209.885000;209.891000;0 +20260331 181900;209.890000;209.899000;209.881000;209.886000;0 +20260331 182000;209.886000;209.898000;209.879000;209.894000;0 +20260331 182100;209.895000;209.904000;209.871000;209.881000;0 +20260331 182200;209.881000;209.895000;209.879000;209.895000;0 +20260331 182300;209.895000;209.897000;209.883000;209.890000;0 +20260331 182400;209.891000;209.897000;209.874000;209.886000;0 +20260331 182500;209.887000;209.901000;209.887000;209.893000;0 +20260331 182600;209.894000;209.898000;209.888000;209.890000;0 +20260331 182700;209.890000;209.900000;209.888000;209.890000;0 +20260331 182800;209.889000;209.892000;209.887000;209.887000;0 +20260331 182900;209.886000;209.893000;209.881000;209.883000;0 +20260331 183000;209.881000;209.921000;209.874000;209.904000;0 +20260331 183100;209.906000;209.923000;209.904000;209.921000;0 +20260331 183200;209.920000;209.929000;209.916000;209.926000;0 +20260331 183300;209.926000;209.932000;209.925000;209.927000;0 +20260331 183400;209.933000;209.958000;209.933000;209.937000;0 +20260331 183500;209.938000;209.938000;209.922000;209.931000;0 +20260331 183600;209.931000;209.959000;209.931000;209.955000;0 +20260331 183700;209.955000;209.960000;209.937000;209.937000;0 +20260331 183800;209.938000;209.946000;209.926000;209.928000;0 +20260331 183900;209.927000;209.934000;209.913000;209.918000;0 +20260331 184000;209.919000;209.920000;209.918000;209.920000;0 +20260331 184100;209.921000;209.939000;209.920000;209.924000;0 +20260331 184200;209.925000;209.927000;209.907000;209.913000;0 +20260331 184300;209.913000;209.913000;209.906000;209.909000;0 +20260331 184400;209.910000;209.920000;209.892000;209.915000;0 +20260331 184500;209.916000;209.916000;209.906000;209.907000;0 +20260331 184600;209.907000;209.911000;209.904000;209.911000;0 +20260331 184700;209.906000;209.916000;209.903000;209.914000;0 +20260331 184800;209.915000;209.940000;209.914000;209.926000;0 +20260331 184900;209.923000;209.927000;209.918000;209.924000;0 +20260331 185000;209.923000;209.928000;209.922000;209.924000;0 +20260331 185100;209.924000;209.925000;209.923000;209.925000;0 +20260331 185200;209.925000;209.927000;209.923000;209.926000;0 +20260331 185300;209.923000;209.931000;209.923000;209.925000;0 +20260331 185400;209.924000;209.931000;209.923000;209.931000;0 +20260331 185500;209.925000;209.930000;209.924000;209.925000;0 +20260331 185600;209.924000;209.929000;209.921000;209.926000;0 +20260331 185700;209.927000;209.939000;209.924000;209.937000;0 +20260331 185800;209.937000;209.942000;209.926000;209.929000;0 +20260331 185900;209.929000;209.934000;209.924000;209.933000;0 +20260331 190000;209.931000;209.943000;209.915000;209.934000;0 +20260331 190100;209.937000;209.937000;209.909000;209.928000;0 +20260331 190200;209.927000;209.930000;209.916000;209.926000;0 +20260331 190300;209.923000;209.953000;209.923000;209.951000;0 +20260331 190400;209.956000;209.968000;209.954000;209.962000;0 +20260331 190500;209.964000;209.976000;209.960000;209.967000;0 +20260331 190600;209.962000;209.992000;209.958000;209.962000;0 +20260331 190700;209.973000;209.973000;209.943000;209.947000;0 +20260331 190800;209.946000;209.950000;209.939000;209.942000;0 +20260331 190900;209.940000;209.941000;209.934000;209.941000;0 +20260331 191000;209.941000;209.955000;209.937000;209.943000;0 +20260331 191100;209.946000;209.946000;209.938000;209.940000;0 +20260331 191200;209.938000;209.952000;209.938000;209.941000;0 +20260331 191300;209.941000;209.962000;209.941000;209.959000;0 +20260331 191400;209.954000;209.959000;209.950000;209.952000;0 +20260331 191500;209.949000;209.949000;209.924000;209.934000;0 +20260331 191600;209.939000;209.953000;209.906000;209.912000;0 +20260331 191700;209.914000;209.927000;209.893000;209.902000;0 +20260331 191800;209.903000;209.914000;209.890000;209.893000;0 +20260331 191900;209.892000;209.914000;209.889000;209.913000;0 +20260331 192000;209.914000;209.916000;209.895000;209.912000;0 +20260331 192100;209.908000;209.916000;209.903000;209.913000;0 +20260331 192200;209.912000;209.930000;209.912000;209.924000;0 +20260331 192300;209.924000;209.924000;209.878000;209.881000;0 +20260331 192400;209.881000;209.881000;209.853000;209.857000;0 +20260331 192500;209.859000;209.869000;209.842000;209.850000;0 +20260331 192600;209.852000;209.868000;209.835000;209.845000;0 +20260331 192700;209.842000;209.844000;209.823000;209.838000;0 +20260331 192800;209.836000;209.852000;209.834000;209.835000;0 +20260331 192900;209.837000;209.863000;209.836000;209.857000;0 +20260331 193000;209.854000;209.891000;209.851000;209.887000;0 +20260331 193100;209.890000;209.926000;209.870000;209.923000;0 +20260331 193200;209.923000;209.940000;209.911000;209.935000;0 +20260331 193300;209.933000;209.942000;209.923000;209.930000;0 +20260331 193400;209.933000;209.952000;209.933000;209.938000;0 +20260331 193500;209.944000;209.949000;209.917000;209.917000;0 +20260331 193600;209.920000;209.928000;209.912000;209.923000;0 +20260331 193700;209.923000;209.930000;209.908000;209.930000;0 +20260331 193800;209.931000;209.948000;209.923000;209.937000;0 +20260331 193900;209.940000;209.946000;209.932000;209.938000;0 +20260331 194000;209.933000;209.939000;209.912000;209.912000;0 +20260331 194100;209.909000;209.909000;209.896000;209.899000;0 +20260331 194200;209.898000;209.906000;209.898000;209.904000;0 +20260331 194300;209.904000;209.909000;209.878000;209.882000;0 +20260331 194400;209.890000;209.895000;209.876000;209.887000;0 +20260331 194500;209.903000;209.940000;209.890000;209.939000;0 +20260331 194600;209.939000;209.939000;209.909000;209.909000;0 +20260331 194700;209.908000;209.930000;209.908000;209.926000;0 +20260331 194800;209.926000;209.932000;209.921000;209.932000;0 +20260331 194900;209.932000;209.943000;209.915000;209.937000;0 +20260331 195000;209.940000;209.948000;209.913000;209.941000;0 +20260331 195100;209.943000;209.954000;209.925000;209.939000;0 +20260331 195200;209.939000;209.939000;209.898000;209.904000;0 +20260331 195300;209.904000;209.952000;209.903000;209.922000;0 +20260331 195400;209.924000;209.924000;209.911000;209.922000;0 +20260331 195500;209.922000;209.941000;209.908000;209.919000;0 +20260331 195600;209.916000;209.942000;209.907000;209.935000;0 +20260331 195700;209.937000;209.944000;209.920000;209.941000;0 +20260331 195800;209.939000;209.955000;209.927000;209.932000;0 +20260331 195900;209.932000;209.947000;209.932000;209.943000;0 +20260331 200000;209.943000;209.943000;209.886000;209.890000;0 +20260331 200100;209.889000;209.917000;209.886000;209.913000;0 +20260331 200200;209.916000;209.938000;209.907000;209.923000;0 +20260331 200300;209.921000;209.924000;209.903000;209.911000;0 +20260331 200400;209.909000;209.925000;209.909000;209.916000;0 +20260331 200500;209.915000;209.943000;209.914000;209.942000;0 +20260331 200600;209.942000;209.963000;209.936000;209.948000;0 +20260331 200700;209.947000;209.953000;209.933000;209.943000;0 +20260331 200800;209.940000;209.957000;209.938000;209.950000;0 +20260331 200900;209.950000;209.975000;209.950000;209.955000;0 +20260331 201000;209.955000;209.967000;209.949000;209.965000;0 +20260331 201100;209.964000;209.988000;209.964000;209.973000;0 +20260331 201200;209.975000;209.995000;209.971000;209.991000;0 +20260331 201300;209.988000;209.989000;209.972000;209.985000;0 +20260331 201400;209.986000;209.993000;209.975000;209.983000;0 +20260331 201500;209.983000;210.043000;209.982000;210.032000;0 +20260331 201600;210.035000;210.039000;210.018000;210.030000;0 +20260331 201700;210.031000;210.044000;209.997000;210.004000;0 +20260331 201800;209.998000;210.010000;209.996000;209.996000;0 +20260331 201900;209.995000;210.013000;209.983000;209.984000;0 +20260331 202000;209.983000;210.002000;209.977000;209.994000;0 +20260331 202100;209.991000;209.991000;209.943000;209.952000;0 +20260331 202200;209.947000;209.951000;209.910000;209.929000;0 +20260331 202300;209.929000;209.958000;209.920000;209.947000;0 +20260331 202400;209.945000;209.968000;209.945000;209.958000;0 +20260331 202500;209.955000;209.972000;209.944000;209.955000;0 +20260331 202600;209.956000;209.976000;209.956000;209.970000;0 +20260331 202700;209.970000;209.990000;209.965000;209.989000;0 +20260331 202800;209.987000;210.009000;209.987000;210.008000;0 +20260331 202900;210.011000;210.045000;210.008000;210.035000;0 +20260331 203000;210.036000;210.050000;210.019000;210.046000;0 +20260331 203100;210.045000;210.062000;210.042000;210.057000;0 +20260331 203200;210.057000;210.094000;210.040000;210.083000;0 +20260331 203300;210.080000;210.104000;210.074000;210.103000;0 +20260331 203400;210.103000;210.108000;210.074000;210.100000;0 +20260331 203500;210.100000;210.125000;210.094000;210.123000;0 +20260331 203600;210.124000;210.124000;210.064000;210.079000;0 +20260331 203700;210.078000;210.087000;210.063000;210.081000;0 +20260331 203800;210.087000;210.088000;210.075000;210.077000;0 +20260331 203900;210.081000;210.083000;210.056000;210.056000;0 +20260331 204000;210.059000;210.063000;210.050000;210.063000;0 +20260331 204100;210.061000;210.122000;210.061000;210.121000;0 +20260331 204200;210.120000;210.142000;210.118000;210.142000;0 +20260331 204300;210.141000;210.150000;210.138000;210.147000;0 +20260331 204400;210.148000;210.156000;210.134000;210.144000;0 +20260331 204500;210.146000;210.219000;210.143000;210.213000;0 +20260331 204600;210.228000;210.241000;210.203000;210.206000;0 +20260331 204700;210.203000;210.218000;210.187000;210.216000;0 +20260331 204800;210.216000;210.230000;210.213000;210.222000;0 +20260331 204900;210.223000;210.225000;210.191000;210.206000;0 +20260331 205000;210.208000;210.215000;210.201000;210.202000;0 +20260331 205100;210.202000;210.221000;210.175000;210.219000;0 +20260331 205200;210.219000;210.219000;210.158000;210.201000;0 +20260331 205300;210.202000;210.252000;210.178000;210.248000;0 +20260331 205400;210.247000;210.321000;210.239000;210.312000;0 +20260331 205500;210.310000;210.328000;210.252000;210.270000;0 +20260331 205600;210.270000;210.271000;210.224000;210.231000;0 +20260331 205700;210.232000;210.250000;210.232000;210.236000;0 +20260331 205800;210.233000;210.263000;210.227000;210.254000;0 +20260331 205900;210.252000;210.260000;210.236000;210.258000;0 +20260331 210000;210.259000;210.276000;210.223000;210.240000;0 +20260331 210100;210.239000;210.266000;210.209000;210.256000;0 +20260331 210200;210.256000;210.291000;210.245000;210.282000;0 +20260331 210300;210.283000;210.324000;210.270000;210.318000;0 +20260331 210400;210.320000;210.321000;210.240000;210.242000;0 +20260331 210500;210.241000;210.246000;210.187000;210.192000;0 +20260331 210600;210.194000;210.194000;210.088000;210.126000;0 +20260331 210700;210.128000;210.225000;210.127000;210.210000;0 +20260331 210800;210.213000;210.241000;210.204000;210.224000;0 +20260331 210900;210.225000;210.233000;210.183000;210.197000;0 +20260331 211000;210.197000;210.229000;210.185000;210.215000;0 +20260331 211100;210.218000;210.227000;210.192000;210.200000;0 +20260331 211200;210.199000;210.203000;210.180000;210.200000;0 +20260331 211300;210.199000;210.225000;210.187000;210.205000;0 +20260331 211400;210.195000;210.205000;210.176000;210.180000;0 +20260331 211500;210.181000;210.182000;210.157000;210.174000;0 +20260331 211600;210.173000;210.175000;210.133000;210.138000;0 +20260331 211700;210.136000;210.143000;210.114000;210.117000;0 +20260331 211800;210.120000;210.140000;210.107000;210.117000;0 +20260331 211900;210.116000;210.128000;210.106000;210.125000;0 +20260331 212000;210.123000;210.133000;210.088000;210.093000;0 +20260331 212100;210.092000;210.092000;210.055000;210.064000;0 +20260331 212200;210.064000;210.068000;210.032000;210.041000;0 +20260331 212300;210.039000;210.039000;210.021000;210.027000;0 +20260331 212400;210.024000;210.031000;210.005000;210.008000;0 +20260331 212500;210.005000;210.027000;210.001000;210.022000;0 +20260331 212600;210.023000;210.031000;210.011000;210.019000;0 +20260331 212700;210.022000;210.072000;210.022000;210.057000;0 +20260331 212800;210.057000;210.076000;210.040000;210.056000;0 +20260331 212900;210.055000;210.065000;210.023000;210.034000;0 +20260331 213000;210.033000;210.051000;210.023000;210.050000;0 +20260331 213100;210.049000;210.053000;210.032000;210.041000;0 +20260331 213200;210.040000;210.058000;210.028000;210.028000;0 +20260331 213300;210.026000;210.034000;210.005000;210.028000;0 +20260331 213400;210.028000;210.040000;210.020000;210.028000;0 +20260331 213500;210.024000;210.047000;210.014000;210.040000;0 +20260331 213600;210.039000;210.047000;210.029000;210.034000;0 +20260331 213700;210.034000;210.049000;210.013000;210.016000;0 +20260331 213800;210.016000;210.038000;209.974000;210.033000;0 +20260331 213900;210.034000;210.061000;210.030000;210.061000;0 +20260331 214000;210.061000;210.077000;210.055000;210.073000;0 +20260331 214100;210.071000;210.078000;210.062000;210.068000;0 +20260331 214200;210.068000;210.090000;210.053000;210.055000;0 +20260331 214300;210.057000;210.067000;210.020000;210.023000;0 +20260331 214400;210.025000;210.044000;210.019000;210.027000;0 +20260331 214500;210.024000;210.034000;209.993000;209.997000;0 +20260331 214600;209.993000;210.021000;209.993000;210.009000;0 +20260331 214700;210.006000;210.018000;210.004000;210.012000;0 +20260331 214800;210.011000;210.011000;209.989000;210.006000;0 +20260331 214900;210.005000;210.008000;209.977000;209.978000;0 +20260331 215000;209.978000;209.993000;209.962000;209.993000;0 +20260331 215100;209.993000;209.996000;209.987000;209.993000;0 +20260331 215200;209.992000;209.997000;209.966000;209.972000;0 +20260331 215300;209.970000;209.987000;209.954000;209.954000;0 +20260331 215400;209.953000;209.995000;209.950000;209.994000;0 +20260331 215500;209.996000;210.004000;209.956000;209.971000;0 +20260331 215600;209.973000;210.002000;209.972000;209.991000;0 +20260331 215700;209.996000;210.002000;209.989000;209.995000;0 +20260331 215800;209.994000;210.003000;209.989000;209.995000;0 +20260331 215900;209.994000;209.999000;209.973000;209.979000;0 +20260331 220000;209.982000;209.992000;209.970000;209.986000;0 +20260331 220100;209.984000;209.999000;209.979000;209.989000;0 +20260331 220200;209.991000;209.999000;209.978000;209.982000;0 +20260331 220300;209.984000;209.989000;209.968000;209.979000;0 +20260331 220400;209.978000;210.003000;209.977000;209.997000;0 +20260331 220500;209.995000;210.043000;209.994000;210.027000;0 +20260331 220600;210.028000;210.052000;210.028000;210.050000;0 +20260331 220700;210.051000;210.060000;210.034000;210.047000;0 +20260331 220800;210.046000;210.055000;210.042000;210.045000;0 +20260331 220900;210.045000;210.070000;210.040000;210.068000;0 +20260331 221000;210.067000;210.068000;210.053000;210.061000;0 +20260331 221100;210.062000;210.062000;210.022000;210.023000;0 +20260331 221200;210.025000;210.028000;210.013000;210.013000;0 +20260331 221300;210.013000;210.013000;209.976000;209.979000;0 +20260331 221400;209.978000;209.998000;209.978000;209.994000;0 +20260331 221500;209.993000;210.011000;209.984000;210.010000;0 +20260331 221600;210.010000;210.017000;209.998000;210.010000;0 +20260331 221700;210.009000;210.011000;209.999000;210.008000;0 +20260331 221800;210.008000;210.020000;210.008000;210.015000;0 +20260331 221900;210.017000;210.024000;210.012000;210.015000;0 +20260331 222000;210.013000;210.032000;210.012000;210.029000;0 +20260331 222100;210.029000;210.037000;210.020000;210.032000;0 +20260331 222200;210.032000;210.043000;210.023000;210.023000;0 +20260331 222300;210.030000;210.050000;210.008000;210.011000;0 +20260331 222400;210.011000;210.016000;210.003000;210.012000;0 +20260331 222500;210.014000;210.015000;209.983000;209.987000;0 +20260331 222600;209.986000;209.997000;209.983000;209.989000;0 +20260331 222700;209.988000;210.024000;209.987000;210.021000;0 +20260331 222800;210.022000;210.038000;210.020000;210.036000;0 +20260331 222900;210.036000;210.036000;210.020000;210.026000;0 +20260331 223000;210.025000;210.028000;210.006000;210.016000;0 +20260331 223100;210.017000;210.028000;210.011000;210.011000;0 +20260331 223200;210.008000;210.012000;209.987000;209.991000;0 +20260331 223300;209.991000;209.999000;209.968000;209.993000;0 +20260331 223400;209.994000;210.001000;209.977000;209.990000;0 +20260331 223500;209.989000;209.994000;209.976000;209.981000;0 +20260331 223600;209.982000;209.997000;209.980000;209.995000;0 +20260331 223700;209.994000;210.015000;209.992000;209.997000;0 +20260331 223800;209.997000;210.001000;209.986000;209.994000;0 +20260331 223900;209.993000;209.996000;209.976000;209.986000;0 +20260331 224000;209.988000;210.002000;209.978000;209.998000;0 +20260331 224100;209.999000;210.022000;209.992000;210.021000;0 +20260331 224200;210.022000;210.033000;210.015000;210.031000;0 +20260331 224300;210.022000;210.024000;209.993000;209.995000;0 +20260331 224400;209.996000;210.029000;209.991000;210.018000;0 +20260331 224500;210.016000;210.038000;210.015000;210.018000;0 +20260331 224600;210.015000;210.026000;210.001000;210.006000;0 +20260331 224700;210.005000;210.016000;209.995000;210.006000;0 +20260331 224800;210.010000;210.019000;210.004000;210.013000;0 +20260331 224900;210.010000;210.023000;210.009000;210.015000;0 +20260331 225000;210.013000;210.018000;210.004000;210.011000;0 +20260331 225100;210.011000;210.019000;210.011000;210.014000;0 +20260331 225200;210.010000;210.014000;209.988000;209.995000;0 +20260331 225300;209.996000;210.030000;209.994000;210.020000;0 +20260331 225400;210.020000;210.060000;210.020000;210.058000;0 +20260331 225500;210.058000;210.079000;210.048000;210.070000;0 +20260331 225600;210.072000;210.074000;210.049000;210.057000;0 +20260331 225700;210.057000;210.108000;210.057000;210.098000;0 +20260331 225800;210.098000;210.104000;210.086000;210.090000;0 +20260331 225900;210.092000;210.101000;210.070000;210.078000;0 +20260331 230000;210.071000;210.087000;210.062000;210.071000;0 +20260331 230100;210.071000;210.084000;210.062000;210.082000;0 +20260331 230200;210.084000;210.084000;210.031000;210.031000;0 +20260331 230300;210.032000;210.046000;209.998000;210.016000;0 +20260331 230400;210.017000;210.023000;210.011000;210.012000;0 +20260331 230500;210.012000;210.016000;210.003000;210.006000;0 +20260331 230600;210.007000;210.015000;209.998000;209.999000;0 +20260331 230700;210.003000;210.007000;209.990000;209.990000;0 +20260331 230800;209.991000;209.991000;209.982000;209.986000;0 +20260331 230900;209.985000;209.989000;209.962000;209.962000;0 +20260331 231000;209.963000;209.973000;209.912000;209.921000;0 +20260331 231100;209.921000;209.930000;209.898000;209.901000;0 +20260331 231200;209.903000;209.908000;209.883000;209.889000;0 +20260331 231300;209.888000;209.909000;209.880000;209.908000;0 +20260331 231400;209.908000;209.913000;209.896000;209.898000;0 +20260331 231500;209.900000;209.904000;209.879000;209.882000;0 +20260331 231600;209.882000;209.887000;209.866000;209.875000;0 +20260331 231700;209.876000;209.891000;209.876000;209.888000;0 +20260331 231800;209.889000;209.893000;209.878000;209.878000;0 +20260331 231900;209.879000;209.891000;209.878000;209.878000;0 +20260331 232000;209.876000;209.892000;209.875000;209.892000;0 +20260331 232100;209.889000;209.893000;209.886000;209.888000;0 +20260331 232200;209.889000;209.918000;209.889000;209.918000;0 +20260331 232300;209.917000;209.918000;209.896000;209.898000;0 +20260331 232400;209.896000;209.896000;209.880000;209.885000;0 +20260331 232500;209.886000;209.890000;209.866000;209.880000;0 +20260331 232600;209.881000;209.898000;209.881000;209.892000;0 +20260331 232700;209.891000;209.901000;209.887000;209.892000;0 +20260331 232800;209.890000;209.920000;209.890000;209.919000;0 +20260331 232900;209.918000;209.924000;209.911000;209.917000;0 +20260331 233000;209.918000;209.959000;209.918000;209.958000;0 +20260331 233100;209.959000;209.970000;209.934000;209.937000;0 +20260331 233200;209.937000;209.951000;209.936000;209.941000;0 +20260331 233300;209.942000;209.990000;209.941000;209.986000;0 +20260331 233400;209.988000;209.996000;209.977000;209.994000;0 +20260331 233500;209.993000;210.004000;209.986000;209.989000;0 +20260331 233600;209.992000;210.006000;209.989000;210.002000;0 +20260331 233700;210.004000;210.010000;209.995000;210.001000;0 +20260331 233800;210.000000;210.019000;209.998000;210.014000;0 +20260331 233900;210.015000;210.028000;210.013000;210.026000;0 +20260331 234000;210.027000;210.027000;210.014000;210.018000;0 +20260331 234100;210.013000;210.013000;210.004000;210.008000;0 +20260331 234200;210.009000;210.037000;210.008000;210.037000;0 +20260331 234300;210.035000;210.041000;210.030000;210.033000;0 +20260331 234400;210.037000;210.043000;210.031000;210.038000;0 +20260331 234500;210.038000;210.062000;210.038000;210.059000;0 +20260331 234600;210.055000;210.056000;210.039000;210.047000;0 +20260331 234700;210.044000;210.071000;210.038000;210.063000;0 +20260331 234800;210.067000;210.093000;210.067000;210.082000;0 +20260331 234900;210.080000;210.089000;210.076000;210.077000;0 +20260331 235000;210.077000;210.104000;210.073000;210.104000;0 +20260331 235100;210.103000;210.117000;210.096000;210.096000;0 +20260331 235200;210.099000;210.119000;210.099000;210.119000;0 +20260331 235300;210.119000;210.126000;210.112000;210.123000;0 +20260331 235400;210.122000;210.135000;210.122000;210.132000;0 +20260331 235500;210.134000;210.162000;210.134000;210.142000;0 +20260331 235600;210.143000;210.161000;210.128000;210.130000;0 +20260331 235700;210.130000;210.133000;210.121000;210.124000;0 +20260331 235800;210.127000;210.145000;210.116000;210.136000;0 diff --git a/backend/data/loader.py b/backend/data/loader.py index 0bb2469..5f8ea0c 100644 --- a/backend/data/loader.py +++ b/backend/data/loader.py @@ -5,6 +5,7 @@ from data.model import Candle def load_candles(filepath: str) -> list[Candle]: df = pd.read_csv(filepath, sep=";", header=None, names=["timestamp", "open", "high", "low", "close", "volume"]) df["timestamp"] = pd.to_datetime(df["timestamp"], format="%Y%m%d %H%M%S") + df = df.sort_values("timestamp", kind="mergesort").drop_duplicates(subset=["timestamp"], keep="last") candles = [] for _, row in df.iterrows(): diff --git a/backend/data/model.py b/backend/data/model.py index f170e5c..a922b1c 100644 --- a/backend/data/model.py +++ b/backend/data/model.py @@ -1,20 +1,32 @@ from dataclasses import dataclass from datetime import datetime + @dataclass class Candle: time_open: datetime open: float high: float low: float - close: datetime + close: float volume: float + +@dataclass +class Signal: + direction: str + stop_loss: float + entry_price: float + + @dataclass class Trade: enter_time: datetime enter_price: float direction: str - exit_time:datetime + exit_time: datetime exit_price: float pnl: float + r_multiple: float = 0.0 + partial_tp_taken: bool = False + partial_tp_realized_pnl: float = 0.0 diff --git a/backend/engine/backtester.py b/backend/engine/backtester.py index 23b8830..4a0041e 100644 --- a/backend/engine/backtester.py +++ b/backend/engine/backtester.py @@ -1,51 +1,222 @@ -from data.model import Candle, Trade -from strategies.base import SimpleStrategy +from data.model import Trade +from collections import defaultdict +import math -def run_backtest( - candles: list[Candle], - strategy, - starting_balance: float = 10000.0, - risk_reward: float = 1.0 -) -> list[Trade]: - """ - Runs a backtest on a list of candles using the provided strategy. - Returns a list of closed Trades. - """ + +def _apply_break_even_if_triggered(position, candle, strategy): + if not position: + return + + if not getattr(strategy, "use_break_even", False): + return + + if position.get("break_even_armed"): + return + + trigger_rr = float(getattr(strategy, "be_trigger_rr", 1.0) or 0.0) + if trigger_rr <= 0: + return + + is_long = position["direction"] == "long" + entry = position["entry_price"] + risk_distance = max(position.get("risk_distance", 0.0), 0.0) + if risk_distance <= 0: + return + + trigger_price = entry + (risk_distance * trigger_rr) if is_long else entry - (risk_distance * trigger_rr) + reached_trigger = candle.high >= trigger_price if is_long else candle.low <= trigger_price + if reached_trigger: + position["stop_loss"] = entry + position["break_even_armed"] = True + + +def _apply_partial_tp_if_triggered(position, candle, strategy): + if not position: + return + + if not getattr(strategy, "use_partial_tp", False): + return + + if position.get("partial_taken"): + return + + trigger_rr = float(getattr(strategy, "partial_tp_rr", 1.0) or 0.0) + if trigger_rr <= 0: + return + + partial_pct = float(getattr(strategy, "partial_tp_percent", 0.0) or 0.0) + if partial_pct <= 0: + return + + close_fraction = min(max(partial_pct / 100.0, 0.0), 1.0) + remaining_fraction = max(position.get("remaining_fraction", 1.0), 0.0) + if remaining_fraction <= 0: + position["partial_taken"] = True + return + + close_fraction = min(close_fraction, remaining_fraction) + if close_fraction <= 0: + return + + is_long = position["direction"] == "long" + entry = position["entry_price"] + risk_distance = max(position.get("risk_distance", 0.0), 0.0) + if risk_distance <= 0: + return + + trigger_price = entry + (risk_distance * trigger_rr) if is_long else entry - (risk_distance * trigger_rr) + reached_trigger = candle.high >= trigger_price if is_long else candle.low <= trigger_price + if not reached_trigger: + return + + lot_size = max(position.get("lot_size", 0.0), 0.0) + price_move = (trigger_price - entry) if is_long else (entry - trigger_price) + realized_piece = price_move * lot_size * close_fraction + + position["realized_pnl"] = position.get("realized_pnl", 0.0) + realized_piece + position["remaining_fraction"] = max(0.0, remaining_fraction - close_fraction) + position["partial_taken"] = True + + +def run_backtest(candles, strategy, starting_balance, risk_reward=1.0, + max_daily_loss=0.0, max_consecutive_losses=0, risk_pct=1.0): trades = [] position = None - - # One-time preparation (e.g. pre-compute indicators) + consecutive_losses = 0 + daily_pnl = defaultdict(float) if hasattr(strategy, "prepare"): strategy.prepare(candles) for i, candle in enumerate(candles): - # === 1. Check if we have an open position (SL/TP hit) === - if position is not None: - hit_sl = False - hit_tp = False - exit_price = None + if position: + _apply_partial_tp_if_triggered(position, candle, strategy) + _apply_break_even_if_triggered(position, candle, strategy) - if position["direction"] == "long": - if candle.low <= position["stop_loss"]: - hit_sl = True - exit_price = position["stop_loss"] - elif candle.high >= position["take_profit"]: - hit_tp = True - exit_price = position["take_profit"] - else: # short - if candle.high >= position["stop_loss"]: - hit_sl = True - exit_price = position["stop_loss"] - elif candle.low <= position["take_profit"]: - hit_tp = True - exit_price = position["take_profit"] + is_long = position["direction"] == "long" + sl, tp = position["stop_loss"], position["take_profit"] + + hit_sl = candle.low <= sl if is_long else candle.high >= sl + hit_tp = candle.high >= tp if is_long else candle.low <= tp if hit_sl or hit_tp: - # Calculate PnL - if position["direction"] == "long": - pnl = exit_price - position["entry_price"] - else: # short - pnl = position["entry_price"] - exit_price + exit_price = sl if hit_sl else tp + price_move = (exit_price - position["entry_price"]) if is_long else (position["entry_price"] - exit_price) + lot_size = max(position.get("lot_size", 0.0), 0.0) + remaining_fraction = max(position.get("remaining_fraction", 1.0), 0.0) + remaining_pnl = price_move * lot_size * remaining_fraction + pnl = position.get("realized_pnl", 0.0) + remaining_pnl + initial_risk = max(position.get("initial_risk_amount", 0.0), 1e-12) + r_multiple = pnl / initial_risk + + trades.append(Trade( + enter_time=position["enter_time"], + enter_price=position["entry_price"], + direction=position["direction"], + exit_time=candle.time_open, + exit_price=exit_price, + pnl=pnl, + r_multiple=r_multiple, + partial_tp_taken=bool(position.get("partial_taken", False)), + partial_tp_realized_pnl=float(position.get("realized_pnl", 0.0) or 0.0), + )) + position = None + + if pnl <= 0: + consecutive_losses += 1 + else: + consecutive_losses = 0 + + daily_pnl[candle.time_open.date()] += pnl + + if position is None: + if max_consecutive_losses > 0 and consecutive_losses >= max_consecutive_losses: + continue + if max_daily_loss > 0: + loss_limit = starting_balance * (max_daily_loss / 100) + if daily_pnl[candle.time_open.date()] <= -loss_limit: + continue + + signal = strategy.check_signal(candles, i) + + if signal is not None: + is_long = signal.direction == "BUY" + entry = signal.entry_price + sl = signal.stop_loss + sl_distance = abs(entry - sl) + if ( + sl_distance <= 0 + or not math.isfinite(sl_distance) + or not math.isfinite(entry) + or not math.isfinite(sl) + or risk_pct <= 0 + ): + continue + + risk_amount = starting_balance * (risk_pct / 100) + if risk_amount <= 0 or not math.isfinite(risk_amount): + continue + + lot_size = risk_amount / sl_distance + if lot_size <= 0 or not math.isfinite(lot_size): + continue + + tp = entry + (sl_distance * risk_reward) if is_long else entry - (sl_distance * risk_reward) + + position = { + "direction": "long" if is_long else "short", + "entry_price": entry, + "enter_time": candle.time_open, + "stop_loss": sl, + "take_profit": tp, + "risk_distance": sl_distance, + "lot_size": lot_size, + "break_even_armed": False, + "partial_taken": False, + "remaining_fraction": 1.0, + "realized_pnl": 0.0, + "initial_risk_amount": risk_amount, + } + + return trades + + +def run_backtest_stream(candles, strategy, starting_balance, risk_reward=1.0, + max_daily_loss=0.0, max_consecutive_losses=0, risk_pct=1.0): + position = None + consecutive_losses = 0 + daily_pnl = defaultdict(float) + total = len(candles) + + if hasattr(strategy, "prepare"): + strategy.prepare(candles) + + yield {"type": "start", "total_candles": total} + + progress_interval = max(1, total // 50) + + for i, candle in enumerate(candles): + if i % progress_interval == 0: + yield {"type": "progress", "processed_candles": i, "total_candles": total} + + if position: + _apply_partial_tp_if_triggered(position, candle, strategy) + _apply_break_even_if_triggered(position, candle, strategy) + + is_long = position["direction"] == "long" + sl, tp = position["stop_loss"], position["take_profit"] + + hit_sl = candle.low <= sl if is_long else candle.high >= sl + hit_tp = candle.high >= tp if is_long else candle.low <= tp + + if hit_sl or hit_tp: + exit_price = sl if hit_sl else tp + price_move = (exit_price - position["entry_price"]) if is_long else (position["entry_price"] - exit_price) + lot_size = max(position.get("lot_size", 0.0), 0.0) + remaining_fraction = max(position.get("remaining_fraction", 1.0), 0.0) + remaining_pnl = price_move * lot_size * remaining_fraction + pnl = position.get("realized_pnl", 0.0) + remaining_pnl + initial_risk = max(position.get("initial_risk_amount", 0.0), 1e-12) + r_multiple = pnl / initial_risk trade = Trade( enter_time=position["enter_time"], @@ -53,39 +224,69 @@ def run_backtest( direction=position["direction"], exit_time=candle.time_open, exit_price=exit_price, - pnl=pnl + pnl=pnl, + r_multiple=r_multiple, + partial_tp_taken=bool(position.get("partial_taken", False)), + partial_tp_realized_pnl=float(position.get("realized_pnl", 0.0) or 0.0), ) - trades.append(trade) position = None - # === 2. Look for new entry signal only if flat === + if pnl <= 0: + consecutive_losses += 1 + else: + consecutive_losses = 0 + + daily_pnl[candle.time_open.date()] += pnl + + yield {"type": "trade", "trade": trade, "processed_candles": i, "total_candles": total} + if position is None: - signal = strategy.check_signal(candles, i) # Fixed: pass index instead of slicing + if max_consecutive_losses > 0 and consecutive_losses >= max_consecutive_losses: + continue + if max_daily_loss > 0: + loss_limit = starting_balance * (max_daily_loss / 100) + if daily_pnl[candle.time_open.date()] <= -loss_limit: + continue - if signal == "BUY": - atr = candle.high - candle.low - mult = getattr(strategy, "atr_mult", 0.5) - bracket = atr * mult + signal = strategy.check_signal(candles, i) + + if signal is not None: + is_long = signal.direction == "BUY" + entry = signal.entry_price + sl = signal.stop_loss + sl_distance = abs(entry - sl) + if ( + sl_distance <= 0 + or not math.isfinite(sl_distance) + or not math.isfinite(entry) + or not math.isfinite(sl) + or risk_pct <= 0 + ): + continue + + risk_amount = starting_balance * (risk_pct / 100) + if risk_amount <= 0 or not math.isfinite(risk_amount): + continue + + lot_size = risk_amount / sl_distance + if lot_size <= 0 or not math.isfinite(lot_size): + continue + + tp = entry + (sl_distance * risk_reward) if is_long else entry - (sl_distance * risk_reward) position = { - "direction": "long", - "entry_price": candle.close, + "direction": "long" if is_long else "short", + "entry_price": entry, "enter_time": candle.time_open, - "stop_loss": candle.close - bracket, - "take_profit": candle.close + (bracket * risk_reward), + "stop_loss": sl, + "take_profit": tp, + "risk_distance": sl_distance, + "lot_size": lot_size, + "break_even_armed": False, + "partial_taken": False, + "remaining_fraction": 1.0, + "realized_pnl": 0.0, + "initial_risk_amount": risk_amount, } - elif signal == "SELL": - atr = candle.high - candle.low - mult = getattr(strategy, "atr_mult", 0.5) - bracket = atr * mult - - position = { - "direction": "short", - "entry_price": candle.close, - "enter_time": candle.time_open, - "stop_loss": candle.close + bracket, - "take_profit": candle.close - (bracket * risk_reward), - } - - return trades \ No newline at end of file + yield {"type": "done", "total_candles": total} \ No newline at end of file diff --git a/backend/engine/monte_carlo.py b/backend/engine/monte_carlo.py new file mode 100644 index 0000000..dca5146 --- /dev/null +++ b/backend/engine/monte_carlo.py @@ -0,0 +1,154 @@ +import random + +def _calculate_percentile(data, percentile): + if not data: return 0.0 + sorted_data = sorted(data) + index = (len(sorted_data) - 1) * (percentile / 100.0) + lower = int(index) + upper = lower + 1 + if upper >= len(sorted_data): return sorted_data[-1] + return sorted_data[lower] + (index - lower) * (sorted_data[upper] - sorted_data[lower]) + +def _run_metrics(pnls, starting_balance): + if not pnls: + return {"net_pnl": 0.0, "win_rate": 0.0, "profit_factor": 0.0, "max_drawdown_pct": 0.0} + + winners = [p for p in pnls if p > 0] + losers = [p for p in pnls if p < 0] + + net_pnl = sum(pnls) + trade_count = len(pnls) + win_rate = (len(winners) / trade_count) * 100 if trade_count > 0 else 0.0 + + gross_profit = sum(winners) + gross_loss = abs(sum(losers)) + profit_factor = (gross_profit / gross_loss) if gross_loss > 0 else (999.0 if gross_profit > 0 else 0.0) + + equity = starting_balance + peak = starting_balance + max_drawdown_pct = 0.0 + + for pnl in pnls: + equity += pnl + if equity > peak: + peak = equity + drawdown_pct = ((peak - equity) / peak) * 100 if peak > 0 else 0.0 + if drawdown_pct > max_drawdown_pct: + max_drawdown_pct = drawdown_pct + + return { + "net_pnl": net_pnl, + "win_rate": win_rate, + "profit_factor": profit_factor, + "max_drawdown_pct": max_drawdown_pct, + } + +def run_monte_carlo( + trade_r_multiples, + runs=1000, + starting_balance=10000.0, + risk_per_trade_pct=1.0, + sampling_method="bootstrap", + missed_trade_pct=5.0, + pnl_variation_pct=10.0, + price_noise_pct=0.0, + slippage_per_trade=0.0, + spread_per_trade=0.0, + per_trade_cost=None, + ruin_drawdown_pct=20.0, + seed=None, +): + if not trade_r_multiples: + return {"summary": {"runs": 0}, "distribution": [], "sample_runs": []} + + run_count = max(1, int(runs)) + risk_pct = max(0.0, float(risk_per_trade_pct)) / 100.0 + pnl_var = max(0.0, float(pnl_variation_pct)) / 100.0 + price_var = max(0.0, float(price_noise_pct)) / 100.0 + miss_pct = max(0.0, float(missed_trade_pct)) / 100.0 + ruin_threshold = max(0.0, float(ruin_drawdown_pct)) + fixed_cost = float(per_trade_cost) if per_trade_cost is not None else (max(0.0, float(slippage_per_trade)) + max(0.0, float(spread_per_trade))) + effective_var = max(pnl_var, price_var) + + rng = random.Random(seed) + run_results = [] + base_trades = list(trade_r_multiples) + trade_count = len(base_trades) + + for run_idx in range(run_count): + # 1. Generate the Trade Sequence + if sampling_method == "bootstrap": + path = [rng.choice(base_trades) for _ in range(trade_count)] + elif sampling_method == "shuffle": + path = base_trades[:] + rng.shuffle(path) + else: + path = base_trades[:] + + adjusted_pnls = [] + equity = float(starting_balance) + peak = float(starting_balance) + ruin_hit = False + + # 2. Execute the trades sequentially + for base_r in path: + # Execution Risk: Did the broker drop our connection? + if rng.random() < miss_pct: + continue + + r_multiple = float(base_r) + + # Add volatility noise to the outcome (Slippage) + if effective_var > 0: + r_multiple *= rng.uniform(1 - effective_var, 1 + effective_var) + + # Calculate PnL in dollars based on CURRENT equity (Compounding) + pnl = (equity * risk_pct * r_multiple) - fixed_cost + + adjusted_pnls.append(pnl) + equity += pnl + + # 3. Live Drawdown & Ruin Check (Prevents Zombie Trading) + if equity > peak: + peak = equity + + current_dd = ((peak - equity) / peak) * 100 if peak > 0 else 0.0 + + if current_dd >= ruin_threshold or equity <= 0: + ruin_hit = True + break # Account blown or max DD hit. STOP trading. + + # Calculate metrics for the surviving trades + metrics = _run_metrics(adjusted_pnls, starting_balance) + metrics["run"] = run_idx + 1 + metrics["ruin"] = ruin_hit + metrics["trades_taken"] = len(adjusted_pnls) + run_results.append(metrics) + + # --- Aggregate Statistics --- + pnls = [r["net_pnl"] for r in run_results] + dds = [r["max_drawdown_pct"] for r in run_results] + + profitable_runs = sum(1 for p in pnls if p > 0) + ruin_count = sum(1 for r in run_results if r["ruin"]) + + summary = { + "runs": run_count, + "avg_pnl": round(sum(pnls) / run_count, 2), + "worst_case_pnl_5th_pct": round(_calculate_percentile(pnls, 5), 2), # 95% Confidence you make at least this much + "profitable_run_pct": round((profitable_runs / run_count) * 100, 2), + + "avg_max_drawdown_pct": round(sum(dds) / run_count, 2), + "worst_case_dd_95th_pct": round(_calculate_percentile(dds, 95), 2), # 95% Confidence your DD won't exceed this + "worst_max_drawdown_pct": round(max(dds), 2), + + "avg_win_rate": round(sum(r["win_rate"] for r in run_results) / run_count, 2), + "avg_profit_factor": round(sum(r["profit_factor"] for r in run_results) / run_count, 2), + "probability_of_ruin": round((ruin_count / run_count) * 100, 2), + } + + return { + "summary": summary, + "distribution": run_results, + "sample_runs": run_results, + } \ No newline at end of file diff --git a/backend/indicators/fvg.py b/backend/indicators/fvg.py index af9ecfb..48807a6 100644 --- a/backend/indicators/fvg.py +++ b/backend/indicators/fvg.py @@ -1,27 +1,65 @@ -def find_fvgs(candles): +def find_fvgs(candles, min_gap_size=0.0, impulse_multiplier=0.0): + """ + Find Fair Value Gaps in candle data. + + Args: + candles: list of Candle objects + min_gap_size: minimum gap size in price units to filter noise (0 = no filter) + impulse_multiplier: minimum body-to-avg ratio for the middle candle (0 = no filter) + """ fvgs = [] + avg_body = 0 + if impulse_multiplier > 0 and len(candles) > 20: + bodies = [abs(c.close - c.open) for c in candles[:20]] + avg_body = sum(bodies) / len(bodies) + for i in range(2, len(candles)): c1 = candles[i - 2] c2 = candles[i - 1] c3 = candles[i] - # Bullish + # Impulse check on middle candle + if impulse_multiplier > 0 and avg_body > 0: + middle_body = abs(c2.close - c2.open) + if middle_body < avg_body * impulse_multiplier: + continue + # Update rolling average + avg_body = (avg_body * 19 + middle_body) / 20 + + # Bullish FVG if c1.high < c3.low: - fvgs.append({ - "index": i - 1, - "type": "bullish", - "top": c3.low, - "bottom": c1.high - }) + gap_size = c3.low - c1.high + if gap_size >= min_gap_size: + fvgs.append({ + "index": i - 1, + "type": "bullish", + "top": c3.low, + "bottom": c1.high, + "mitigated": False, + }) - # bearish + # Bearish FVG elif c1.low > c3.high: - fvgs.append({ - "index": i - 1, - "type": "bearish", - "top": c1.low, - "bottom": c3.high - }) + gap_size = c1.low - c3.high + if gap_size >= min_gap_size: + fvgs.append({ + "index": i - 1, + "type": "bearish", + "top": c1.low, + "bottom": c3.high, + "mitigated": False, + }) - return fvgs \ No newline at end of file + # Mark mitigated FVGs + for fvg in fvgs: + if fvg["mitigated"]: + continue + if fvg["type"] == "bullish": + if c3.low <= fvg["bottom"]: + fvg["mitigated"] = True + elif fvg["type"] == "bearish": + if c3.high >= fvg["top"]: + fvg["mitigated"] = True + + return fvgs diff --git a/backend/indicators/liquidity.py b/backend/indicators/liquidity.py index 7e5c884..6f592bb 100644 --- a/backend/indicators/liquidity.py +++ b/backend/indicators/liquidity.py @@ -19,7 +19,7 @@ def find_liquidity_levels(swings, tolerance=0.015, max_distance=100): "price": avg_price, "type": "equal_highs", "count": len(cluster), - "indexes": [s["index"] for s in cluster] + "indexes": [s["index"] for s in cluster], }) used.add(i) @@ -30,7 +30,7 @@ def find_liquidity_levels(swings, tolerance=0.015, max_distance=100): cluster = [l1] for j, l2 in enumerate(lows): if j != i and j not in used: - if abs(h1["price"] - h2["price"]) <= tolerance and abs(h1["index"] - h2["index"]) <= max_distance: + if abs(l1["price"] - l2["price"]) <= tolerance and abs(l1["index"] - l2["index"]) <= max_distance: cluster.append(l2) used.add(j) if len(cluster) >= 2: @@ -39,8 +39,8 @@ def find_liquidity_levels(swings, tolerance=0.015, max_distance=100): "price": avg_price, "type": "equal_lows", "count": len(cluster), - "indexes": [s["index"] for s in cluster] + "indexes": [s["index"] for s in cluster], }) used.add(i) - return levels \ No newline at end of file + return levels diff --git a/backend/indicators/order_blocks.py b/backend/indicators/order_blocks.py index 0d87ff9..1ced3d0 100644 --- a/backend/indicators/order_blocks.py +++ b/backend/indicators/order_blocks.py @@ -1,31 +1,42 @@ -def find_order_blocks(candles, structure, min_impulse=0.10): +def find_order_blocks(candles, structure, min_impulse=0.10, min_ob_size=0.0): + """ + Find Order Blocks based on structure breaks. + + Args: + candles: list of Candle objects + structure: list of structure points from detect_structure + min_impulse: legacy param (unused, kept for compat) + min_ob_size: minimum OB size in price units (0 = no filter) + """ obs = [] for point in structure: if point["label"] == "HH": - # Bullish break of structure, look back for last bearish candle idx = point["index"] for j in range(idx - 1, max(idx - 20, 0), -1): if candles[j].close < candles[j].open: - obs.append({ - "index": j, - "type": "bullish", - "top": candles[j].open, - "bottom": candles[j].close - }) + size = candles[j].open - candles[j].close + if size >= min_ob_size: + obs.append({ + "index": j, + "type": "bullish", + "top": candles[j].open, + "bottom": candles[j].close, + }) break elif point["label"] == "LL": - # Bearish break of structure, look back for last bullish candle idx = point["index"] for j in range(idx - 1, max(idx - 20, 0), -1): if candles[j].close > candles[j].open: - obs.append({ - "index": j, - "type": "bearish", - "top": candles[j].close, - "bottom": candles[j].open - }) + size = candles[j].close - candles[j].open + if size >= min_ob_size: + obs.append({ + "index": j, + "type": "bearish", + "top": candles[j].close, + "bottom": candles[j].open, + }) break - return obs \ No newline at end of file + return obs diff --git a/backend/indicators/sessions.py b/backend/indicators/sessions.py index e8b8076..16b23bb 100644 --- a/backend/indicators/sessions.py +++ b/backend/indicators/sessions.py @@ -5,24 +5,43 @@ SESSIONS_EST = { "london": (time(2, 0), time(5, 0)), "new_york": (time(7, 0), time(10, 0)), "london_close": (time(10, 0), time(12, 0)), + "london_ny_overlap": (time(8, 0), time(10, 0)), } + def in_session(candle_time, session_name): + if session_name == "all": + return True + + if session_name not in SESSIONS_EST: + return True + t = candle_time.time() start, end = SESSIONS_EST[session_name] - if start > end: # crosses midnight + if start > end: return t >= start or t < end return start <= t < end + def get_session(candle_time): for name in SESSIONS_EST: + if name == "all": + continue if in_session(candle_time, name): return name return "off_hours" + def filter_by_session(candles, session_name): return [c for c in candles if in_session(c.time_open, session_name)] + +def in_day_filter(candle_time, allowed_days): + if not allowed_days: + return True + return candle_time.weekday() in allowed_days + + def get_asian_range(candles): asian = filter_by_session(candles, "asian") if not asian: @@ -31,4 +50,4 @@ def get_asian_range(candles): "high": max(c.high for c in asian), "low": min(c.low for c in asian), "mid": (max(c.high for c in asian) + min(c.low for c in asian)) / 2, - } \ No newline at end of file + } diff --git a/backend/optimize.py b/backend/optimize.py index 3fc6024..220cf07 100644 --- a/backend/optimize.py +++ b/backend/optimize.py @@ -2,7 +2,7 @@ from data.loader import load_candles, resample_candles from engine.backtester import run_backtest from strategies.categorical_strategy import CategoricalStrategy -candles_1m = load_candles("data/data.csv") +candles_1m = load_candles("data/gbpjpy_jan.csv") candles_5m = resample_candles(candles_1m, period=5) best_pnl = float("-inf") diff --git a/backend/optimize_ict.py b/backend/optimize_ict.py index 2af6c5e..845dd7f 100644 --- a/backend/optimize_ict.py +++ b/backend/optimize_ict.py @@ -45,14 +45,10 @@ for params in tqdm(param_combos, desc="Optimizing ICT Strategy", unit="backtest" sweep_lookback=params["sweep_lb"], ) - # Accurate timing t0 = time.perf_counter() trades = run_backtest(candles_5m, strategy, 10000) elapsed = time.perf_counter() - t0 - # Optional: print every backtest (can be noisy, comment out if you want cleaner output) - # print(f"Backtest took {elapsed:.4f}s | Trades: {len(trades)}") - if len(trades) < 5: continue diff --git a/backend/run.py b/backend/run.py index 23c1664..3d46c44 100644 --- a/backend/run.py +++ b/backend/run.py @@ -3,42 +3,38 @@ from engine.backtester import run_backtest from strategies.ict_strategy import ICTStrategy import time -# Load data -candles_1m = load_candles("data/data1.csv") +candles_1m = load_candles("data/2023gj.csv") candles_5m = resample_candles(candles_1m, period=5) -print("Testing different Risk-Reward ratios with optimized ICTStrategy...\n") - -# Best params from optimization (you can tweak session/lookback etc. if you want) strategy = ICTStrategy( - session="new_york", # Best was New York + session="london", lookback=7, - ob_max_age=20, # Best was 20 + ob_max_age=50, atr_mult=2.5, - use_liquidity_sweep=False, # Best was False + use_liquidity_sweep=True, sweep_lookback=5, ) +total_start = time.perf_counter() + for rr in [1.0, 1.5, 2.0, 2.5, 3.0]: t0 = time.perf_counter() - trades = run_backtest(candles_5m, strategy, 10000, risk_reward=rr) - elapsed = time.perf_counter() - t0 - if not trades: - print(f"RR={rr}: No trades") + print(f"RR={rr}: No trades ({elapsed:.2f}s)") continue - total_pnl = sum(t.pnl for t in trades) winners = [t for t in trades if t.pnl > 0] losers = [t for t in trades if t.pnl <= 0] - - wr = len(winners) / len(trades) * 100 if trades else 0 + wr = len(winners) / len(trades) * 100 avg_win = sum(t.pnl for t in winners) / len(winners) if winners else 0 avg_loss = sum(t.pnl for t in losers) / len(losers) if losers else 0 - profit_factor = abs(sum(t.pnl for t in winners) / sum(t.pnl for t in losers)) if losers else float('inf') - print(f"RR={rr:4.1f} | Trades={len(trades):4d} | WR={wr:5.1f}% | " - f"PnL={total_pnl:8.2f} | AvgWin={avg_win:6.3f} | AvgLoss={avg_loss:6.3f} | " - f"PF={profit_factor:5.2f} | Time={elapsed:.3f}s") \ No newline at end of file + print( + f"RR={rr}: Trades={len(trades)}, WR={wr:.1f}%, PnL={total_pnl:.2f}, " + f"AvgW={avg_win:.3f}, AvgL={avg_loss:.3f}, Time={elapsed:.2f}s" + ) + +total_elapsed = time.perf_counter() - total_start +print(f"Total run time: {total_elapsed:.2f}s") diff --git a/frontend/src/App.css b/frontend/src/App.css deleted file mode 100644 index f90339d..0000000 --- a/frontend/src/App.css +++ /dev/null @@ -1,184 +0,0 @@ -.counter { - font-size: 16px; - padding: 5px 10px; - border-radius: 5px; - color: var(--accent); - background: var(--accent-bg); - border: 2px solid transparent; - transition: border-color 0.3s; - margin-bottom: 24px; - - &:hover { - border-color: var(--accent-border); - } - &:focus-visible { - outline: 2px solid var(--accent); - outline-offset: 2px; - } -} - -.hero { - position: relative; - - .base, - .framework, - .vite { - inset-inline: 0; - margin: 0 auto; - } - - .base { - width: 170px; - position: relative; - z-index: 0; - } - - .framework, - .vite { - position: absolute; - } - - .framework { - z-index: 1; - top: 34px; - height: 28px; - transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg) - scale(1.4); - } - - .vite { - z-index: 0; - top: 107px; - height: 26px; - width: auto; - transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg) - scale(0.8); - } -} - -#center { - display: flex; - flex-direction: column; - gap: 25px; - place-content: center; - place-items: center; - flex-grow: 1; - - @media (max-width: 1024px) { - padding: 32px 20px 24px; - gap: 18px; - } -} - -#next-steps { - display: flex; - border-top: 1px solid var(--border); - text-align: left; - - & > div { - flex: 1 1 0; - padding: 32px; - @media (max-width: 1024px) { - padding: 24px 20px; - } - } - - .icon { - margin-bottom: 16px; - width: 22px; - height: 22px; - } - - @media (max-width: 1024px) { - flex-direction: column; - text-align: center; - } -} - -#docs { - border-right: 1px solid var(--border); - - @media (max-width: 1024px) { - border-right: none; - border-bottom: 1px solid var(--border); - } -} - -#next-steps ul { - list-style: none; - padding: 0; - display: flex; - gap: 8px; - margin: 32px 0 0; - - .logo { - height: 18px; - } - - a { - color: var(--text-h); - font-size: 16px; - border-radius: 6px; - background: var(--social-bg); - display: flex; - padding: 6px 12px; - align-items: center; - gap: 8px; - text-decoration: none; - transition: box-shadow 0.3s; - - &:hover { - box-shadow: var(--shadow); - } - .button-icon { - height: 18px; - width: 18px; - } - } - - @media (max-width: 1024px) { - margin-top: 20px; - flex-wrap: wrap; - justify-content: center; - - li { - flex: 1 1 calc(50% - 8px); - } - - a { - width: 100%; - justify-content: center; - box-sizing: border-box; - } - } -} - -#spacer { - height: 88px; - border-top: 1px solid var(--border); - @media (max-width: 1024px) { - height: 48px; - } -} - -.ticks { - position: relative; - width: 100%; - - &::before, - &::after { - content: ''; - position: absolute; - top: -4.5px; - border: 5px solid transparent; - } - - &::before { - left: 0; - border-left-color: var(--border); - } - &::after { - right: 0; - border-right-color: var(--border); - } -} diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 9c0e081..7e01b49 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1,113 +1,233 @@ -import { useEffect, useRef, useState, useCallback } from "react"; +import { useCallback, useEffect, useMemo, useRef, useState } from 'react'; import { - createChart, CandlestickSeries, LineSeries, + createChart, createSeriesMarkers, -} from "lightweight-charts"; +} from 'lightweight-charts'; +import { BacktestingTab } from './components/BacktestingTab'; +import { OptimizerTab } from './components/OptimizerTab'; +import { TradeHistory } from './components/TradeHistory'; +import { motion } from 'motion/react'; + +import { EquityCurve } from './components/EquityCurve'; +import { MetricCard } from './components/MetricCard'; +import { PerformanceBreakdown } from './components/PerformanceBreakdown'; +import { TradeDistribution } from './components/TradeDistribution'; const TIMEFRAMES = [ - { label: "1m", value: 1 }, - { label: "3m", value: 3 }, - { label: "5m", value: 5 }, - { label: "15m", value: 15 }, - { label: "30m", value: 30 }, - { label: "1H", value: 60 }, + { label: '1m', value: 1 }, + { label: '3m', value: 3 }, + { label: '5m', value: 5 }, + { label: '15m', value: 15 }, + { label: '30m', value: 30 }, + { label: '1H', value: 60 }, ]; -const RR_OPTIONS = [1.0, 1.5, 2.0, 2.5, 3.0]; +const RR_OPTIONS = [1, 1.5, 2, 2.5, 3]; +const STARTING_BALANCE = 10000; +const DATASET_FALLBACKS = [ + { id: '2023gj.csv', label: '2023 GJ', default: true }, + { id: 'data1.csv', label: 'Data 1', default: false }, + { id: 'gbpjpy_mars.csv', label: 'Data 3', default: false }, +]; -const COLORS = { - bg: "#0a0a12", - surface: "#12121e", - surfaceLight: "#1a1a2e", - border: "#1e1e35", - borderLight: "#2a2a45", - text: "#c8c8d4", - textDim: "#6a6a80", - textBright: "#eaeaf0", - accent: "#6366f1", - accentDim: "rgba(99, 102, 241, 0.15)", - bullish: "#22c55e", - bullishDim: "rgba(34, 197, 94, 0.12)", - bearish: "#ef4444", - bearishDim: "rgba(239, 68, 68, 0.12)", - ob: "#3b82f6", - obBearish: "#f59e0b", - fvg: "#a855f7", - liquidity: "#06b6d4", - tradeWin: "#22c55e", - tradeLoss: "#ef4444", - equity: "#6366f1", +function formatMoney(value) { + return value.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); +} + +function buildEquityCurve(trades) { + let equity = STARTING_BALANCE; + return trades + .slice() + .sort((a, b) => new Date(a.exit_time) - new Date(b.exit_time)) + .map((trade) => { + equity += trade.pnl; + return { + date: new Date(trade.exit_time).toLocaleDateString('en-US', { month: 'short', day: 'numeric' }), + equity: Number(equity.toFixed(2)), + }; + }); +} + +function buildMonthlyReturns(trades) { + const buckets = new Map(); + trades + .slice() + .sort((a, b) => new Date(a.exit_time) - new Date(b.exit_time)) + .forEach((trade) => { + const date = new Date(trade.exit_time); + const key = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}`; + if (!buckets.has(key)) { + buckets.set(key, { month: date.toLocaleDateString('en-US', { month: 'short' }), pnl: 0 }); + } + buckets.get(key).pnl += trade.pnl; + }); + return Array.from(buckets.values()).map((entry) => ({ + month: entry.month, + returnPct: Number(((entry.pnl / STARTING_BALANCE) * 100).toFixed(1)), + })); +} + +function calculateMaxDrawdown(equityCurve) { + if (!equityCurve.length) return 0; + let peak = equityCurve[0].equity; + let maxDrawdown = 0; + equityCurve.forEach((point) => { + peak = Math.max(peak, point.equity); + const drawdown = ((point.equity - peak) / peak) * 100; + maxDrawdown = Math.min(maxDrawdown, drawdown); + }); + return Number(maxDrawdown.toFixed(1)); +} + +function calculateSharpeRatio(trades) { + if (trades.length < 2) return 0; + const returns = trades.map((trade) => trade.pnl / STARTING_BALANCE); + const mean = returns.reduce((sum, v) => sum + v, 0) / returns.length; + const variance = returns.reduce((sum, v) => sum + (v - mean) ** 2, 0) / returns.length; + const stdDev = Math.sqrt(variance); + if (!stdDev) return 0; + return Number(((mean / stdDev) * Math.sqrt(trades.length)).toFixed(2)); +} + +function resolveDatasetLabel(datasets, selectedDataset) { + return datasets.find((item) => item.id === selectedDataset)?.label ?? selectedDataset; +} + +const CHART_THEME = { + layout: { background: { color: '#0a0a0a' }, textColor: '#737373', fontFamily: 'Inter, system-ui, sans-serif', fontSize: 11 }, + grid: { vertLines: { color: '#1a1a1a' }, horzLines: { color: '#1a1a1a' } }, + crosshair: { + vertLine: { color: 'rgba(250, 250, 250, 0.15)', labelBackgroundColor: '#262626' }, + horzLine: { color: 'rgba(250, 250, 250, 0.15)', labelBackgroundColor: '#262626' }, + }, + rightPriceScale: { borderColor: '#262626', textColor: '#737373' }, + timeScale: { borderColor: '#262626', timeVisible: true, secondsVisible: false }, }; -function App() { +export default function App() { const chartContainerRef = useRef(null); const equityChartRef = useRef(null); const chartRef = useRef(null); const equityChartObjRef = useRef(null); const candleSeriesRef = useRef(null); + const equitySeriesRef = useRef(null); const markersRef = useRef(null); + const [mounted, setMounted] = useState(false); + const [activeTab, setActiveTab] = useState('dashboard'); const [timeframe, setTimeframe] = useState(5); const [riskReward, setRiskReward] = useState(2.5); const [showBacktest, setShowBacktest] = useState(true); + const [datasets, setDatasets] = useState([]); + const [selectedDataset, setSelectedDataset] = useState('data.csv'); + const [chartsReady, setChartsReady] = useState(false); const [indicators, setIndicators] = useState({ structure: true, orderBlocks: true, fvg: false, liquidity: false, }); - const [stats, setStats] = useState(null); - const [backtestStats, setBacktestStats] = useState(null); + const [backtestData, setBacktestData] = useState(null); + const [hasSharedBacktest, setHasSharedBacktest] = useState(false); const [loading, setLoading] = useState(true); + const [stratParams] = useState({ + lookback: 7, + obAge: 50, + atrMult: 2.5, + sweep: true, + sweepLookback: 5, + session: 'london', + }); + + useEffect(() => { setMounted(true); }, []); + + useEffect(() => { + let isMounted = true; + const loadDatasets = async () => { + try { + const response = await fetch('http://localhost:8000/api/datasets'); + const data = await response.json(); + if (!isMounted) return; + const apiDatasets = Array.isArray(data.datasets) ? data.datasets : []; + const resolvedDatasets = apiDatasets.length ? apiDatasets : DATASET_FALLBACKS; + setDatasets(resolvedDatasets); + setSelectedDataset((current) => { + const defaultDataset = resolvedDatasets.find((item) => item.default)?.id ?? resolvedDatasets[0]?.id; + if (!defaultDataset) return current; + if (resolvedDatasets.some((item) => item.id === current && item.default)) return current; + if (!resolvedDatasets.some((item) => item.id === current)) return defaultDataset; + return current; + }); + } catch { + if (!isMounted) return; + setDatasets(DATASET_FALLBACKS); + } + }; + loadDatasets(); + return () => { isMounted = false; }; + }, []); const toggleIndicator = (key) => { setIndicators((prev) => ({ ...prev, [key]: !prev[key] })); }; + const handleBacktestComplete = useCallback((payload) => { + if (!payload) return; + setBacktestData(payload); + setHasSharedBacktest(true); + }, []); + const loadData = useCallback(async () => { + const shouldLoadDashboardData = ['dashboard', 'forex-stats', 'trade-history'].includes(activeTab); + if (!shouldLoadDashboardData) { + setLoading(false); + return; + } + setLoading(true); try { + const shouldLoadBacktest = showBacktest || activeTab === 'forex-stats'; + const shouldFetchBacktest = shouldLoadBacktest && !hasSharedBacktest; + const datasetQuery = `dataset=${encodeURIComponent(selectedDataset)}`; const fetches = [ - fetch(`http://localhost:8000/api/candles?timeframe=${timeframe}`), - fetch(`http://localhost:8000/api/indicators?timeframe=${timeframe}`), + fetch(`http://localhost:8000/api/candles?timeframe=${timeframe}&${datasetQuery}`), + fetch(`http://localhost:8000/api/indicators?timeframe=${timeframe}&${datasetQuery}`), ]; - if (showBacktest) { - fetches.push( - fetch(`http://localhost:8000/api/backtest?timeframe=${timeframe}&rr=${riskReward}`) - ); + if (shouldFetchBacktest) { + fetches.push(fetch(`http://localhost:8000/api/backtest?timeframe=${timeframe}&rr=${riskReward}&lookback=${stratParams.lookback}&ob_age=${stratParams.obAge}&atr_mult=${stratParams.atrMult}&sweep=${stratParams.sweep}&sweep_lookback=${stratParams.sweepLookback}&session=${stratParams.session}&${datasetQuery}`)); } const responses = await Promise.all(fetches); const candleData = await responses[0].json(); const indicatorData = await responses[1].json(); - const backtestData = showBacktest ? await responses[2].json() : null; + const backtestPayload = shouldFetchBacktest + ? await responses[2].json() + : (shouldLoadBacktest ? backtestData : null); - const formatted = candleData.candles.map((c) => ({ - time: Math.floor(new Date(c.time).getTime() / 1000), - open: c.open, - high: c.high, - low: c.low, - close: c.close, + const candles = candleData.candles.map((candle) => ({ + time: Math.floor(new Date(candle.time).getTime() / 1000), + open: candle.open, + high: candle.high, + low: candle.low, + close: candle.close, })); - if (candleSeriesRef.current) { - candleSeriesRef.current.setData(formatted); - } + candleSeriesRef.current?.setData(candles); const times = indicatorData.candle_times; const markers = []; if (indicators.structure) { - indicatorData.structure.forEach((s) => { - if (s.index < times.length) { + indicatorData.structure.forEach((swing) => { + if (swing.index < times.length) { markers.push({ - time: Math.floor(new Date(times[s.index]).getTime() / 1000), - position: s.type === "high" ? "aboveBar" : "belowBar", - color: s.label === "HH" || s.label === "HL" ? COLORS.bullish : COLORS.bearish, - shape: s.type === "high" ? "arrowDown" : "arrowUp", - text: s.label, + time: Math.floor(new Date(times[swing.index]).getTime() / 1000), + position: swing.type === 'high' ? 'aboveBar' : 'belowBar', + color: swing.label === 'HH' || swing.label === 'HL' ? '#10b981' : '#ef4444', + shape: swing.type === 'high' ? 'arrowDown' : 'arrowUp', + text: swing.label, }); } }); @@ -118,116 +238,100 @@ function App() { if (ob.index < times.length) { markers.push({ time: Math.floor(new Date(times[ob.index]).getTime() / 1000), - position: ob.type === "bullish" ? "belowBar" : "aboveBar", - color: ob.type === "bullish" ? COLORS.ob : COLORS.obBearish, - shape: "square", - text: "OB", + position: ob.type === 'bullish' ? 'belowBar' : 'aboveBar', + color: ob.type === 'bullish' ? '#3b82f6' : '#f59e0b', + shape: 'square', + text: 'OB', }); } }); } if (indicators.fvg) { - indicatorData.fvgs.forEach((f) => { - if (f.index < times.length) { + indicatorData.fvgs.forEach((fvg) => { + if (fvg.index < times.length) { markers.push({ - time: Math.floor(new Date(times[f.index]).getTime() / 1000), - position: f.type === "bullish" ? "belowBar" : "aboveBar", - color: COLORS.fvg, - shape: "circle", - text: "FVG", + time: Math.floor(new Date(times[fvg.index]).getTime() / 1000), + position: fvg.type === 'bullish' ? 'belowBar' : 'aboveBar', + color: '#a855f7', + shape: 'circle', + text: 'FVG', }); } }); } if (indicators.liquidity) { - indicatorData.liquidity.forEach((l) => { - l.indexes.forEach((idx) => { - if (idx < times.length) { + indicatorData.liquidity.forEach((liq) => { + liq.indexes.forEach((index) => { + if (index < times.length) { markers.push({ - time: Math.floor(new Date(times[idx]).getTime() / 1000), - position: l.type === "equal_highs" ? "aboveBar" : "belowBar", - color: COLORS.liquidity, - shape: "circle", - text: l.type === "equal_highs" ? "EQH" : "EQL", + time: Math.floor(new Date(times[index]).getTime() / 1000), + position: liq.type === 'equal_highs' ? 'aboveBar' : 'belowBar', + color: '#06b6d4', + shape: 'circle', + text: liq.type === 'equal_highs' ? 'EQH' : 'EQL', }); } }); }); } - if (showBacktest && backtestData && backtestData.trades) { - backtestData.trades.forEach((t) => { - const isWin = t.pnl > 0; + if (backtestPayload?.trades) { + backtestPayload.trades.forEach((trade) => { + const isWin = trade.pnl > 0; markers.push({ - time: Math.floor(new Date(t.enter_time).getTime() / 1000), - position: t.direction === "long" ? "belowBar" : "aboveBar", - color: isWin ? COLORS.tradeWin : COLORS.tradeLoss, - shape: t.direction === "long" ? "arrowUp" : "arrowDown", - text: t.direction === "long" ? "BUY" : "SELL", + time: Math.floor(new Date(trade.enter_time).getTime() / 1000), + position: trade.direction === 'long' ? 'belowBar' : 'aboveBar', + color: isWin ? '#10b981' : '#ef4444', + shape: trade.direction === 'long' ? 'arrowUp' : 'arrowDown', + text: trade.direction === 'long' ? 'BUY' : 'SELL', }); markers.push({ - time: Math.floor(new Date(t.exit_time).getTime() / 1000), - position: "inBar", - color: isWin ? COLORS.tradeWin : COLORS.tradeLoss, - shape: "circle", - text: isWin ? `+${t.pnl.toFixed(2)}` : t.pnl.toFixed(2), + time: Math.floor(new Date(trade.exit_time).getTime() / 1000), + position: 'inBar', + color: isWin ? '#10b981' : '#ef4444', + shape: 'circle', + text: isWin ? `+${trade.pnl.toFixed(2)}` : trade.pnl.toFixed(2), }); }); - - setBacktestStats(backtestData.stats); - - if (equityChartObjRef.current && backtestData.trades.length > 0) { - let cumPnl = 0; - const equityData = backtestData.trades.map((t) => { - cumPnl += t.pnl; - return { - time: Math.floor(new Date(t.exit_time).getTime() / 1000), - value: parseFloat(cumPnl.toFixed(4)), - }; - }); - - const eChart = equityChartObjRef.current; - const equitySeries = eChart.addSeries(LineSeries, { - color: COLORS.equity, - lineWidth: 2, - priceLineVisible: false, - lastValueVisible: true, - }); - equitySeries.setData(equityData); - eChart.timeScale().fitContent(); - } - } else { - setBacktestStats(null); } markers.sort((a, b) => a.time - b.time); - - if (markersRef.current) { - markersRef.current.setMarkers([]); - } + markersRef.current?.setMarkers([]); markersRef.current = createSeriesMarkers(candleSeriesRef.current, markers); - chartRef.current.timeScale().fitContent(); + chartRef.current?.timeScale().fitContent(); - const bullishOB = indicatorData.order_blocks.filter((o) => o.type === "bullish").length; - const bearishOB = indicatorData.order_blocks.filter((o) => o.type === "bearish").length; + if (backtestPayload?.trades?.length) { + const equityCurve = buildEquityCurve(backtestPayload.trades); + const sortedTrades = backtestPayload.trades.slice().sort((a, b) => new Date(a.exit_time) - new Date(b.exit_time)); + const equityData = equityCurve.map((point, index) => ({ + time: Math.floor(new Date(sortedTrades[index].exit_time).getTime() / 1000), + value: point.equity, + })); + equitySeriesRef.current?.setData(equityData); + equityChartObjRef.current?.timeScale().fitContent(); + } else { + equitySeriesRef.current?.setData([]); + } - setStats({ - candles: candleData.candles.length, - swings: indicatorData.swings.length, - structure: indicatorData.structure.length, - orderBlocks: indicatorData.order_blocks.length, - bullishOB, - bearishOB, - fvgs: indicatorData.fvgs.length, - liquidity: indicatorData.liquidity.length, - }); - } catch (err) { - console.error("Failed to load data:", err); + if (shouldFetchBacktest) { + setBacktestData(backtestPayload); + } + } catch (error) { + console.error('Failed to load data:', error); + } finally { + setLoading(false); } - setLoading(false); - }, [timeframe, indicators, showBacktest, riskReward]); + }, [activeTab, backtestData, hasSharedBacktest, indicators, riskReward, selectedDataset, showBacktest, timeframe]); + + useEffect(() => { + setHasSharedBacktest(false); + }, [selectedDataset]); + + useEffect(() => { + if (chartRef.current && candleSeriesRef.current) loadData(); + }, [loadData, chartsReady]); useEffect(() => { if (!chartContainerRef.current) return; @@ -235,308 +339,396 @@ function App() { const chart = createChart(chartContainerRef.current, { width: chartContainerRef.current.clientWidth, height: 480, - layout: { - background: { color: COLORS.surface }, - textColor: COLORS.textDim, - fontFamily: "'IBM Plex Mono', monospace", - fontSize: 11, - }, - grid: { - vertLines: { color: COLORS.border }, - horzLines: { color: COLORS.border }, - }, - crosshair: { - vertLine: { color: "rgba(99, 102, 241, 0.3)", labelBackgroundColor: COLORS.accent }, - horzLine: { color: "rgba(99, 102, 241, 0.3)", labelBackgroundColor: COLORS.accent }, - }, - rightPriceScale: { borderColor: COLORS.border, textColor: COLORS.textDim }, - timeScale: { borderColor: COLORS.border, timeVisible: true, secondsVisible: false }, + ...CHART_THEME, }); const candleSeries = chart.addSeries(CandlestickSeries, { - upColor: COLORS.bullish, - downColor: COLORS.bearish, + upColor: '#10b981', + downColor: '#ef4444', borderVisible: false, - wickUpColor: COLORS.bullish, - wickDownColor: COLORS.bearish, + wickUpColor: '#10b981', + wickDownColor: '#ef4444', }); chartRef.current = chart; candleSeriesRef.current = candleSeries; if (equityChartRef.current) { - const eChart = createChart(equityChartRef.current, { + const equityChart = createChart(equityChartRef.current, { width: equityChartRef.current.clientWidth, - height: 160, - layout: { - background: { color: COLORS.surface }, - textColor: COLORS.textDim, - fontFamily: "'IBM Plex Mono', monospace", - fontSize: 10, - }, - grid: { - vertLines: { color: COLORS.border }, - horzLines: { color: COLORS.border }, - }, - rightPriceScale: { borderColor: COLORS.border }, - timeScale: { borderColor: COLORS.border, timeVisible: true, secondsVisible: false }, - crosshair: { - vertLine: { color: "rgba(99, 102, 241, 0.3)", labelBackgroundColor: COLORS.accent }, - horzLine: { color: "rgba(99, 102, 241, 0.3)", labelBackgroundColor: COLORS.accent }, - }, + height: 180, + ...CHART_THEME, + layout: { ...CHART_THEME.layout, fontSize: 10 }, + }); + + equityChartObjRef.current = equityChart; + equitySeriesRef.current = equityChart.addSeries(LineSeries, { + color: '#10b981', + lineWidth: 2, + priceLineVisible: false, + lastValueVisible: true, }); - equityChartObjRef.current = eChart; } - const handleResize = () => { - if (chartContainerRef.current) - chart.applyOptions({ width: chartContainerRef.current.clientWidth }); - if (equityChartRef.current && equityChartObjRef.current) - equityChartObjRef.current.applyOptions({ width: equityChartRef.current.clientWidth }); - }; - window.addEventListener("resize", handleResize); + setChartsReady(true); + const handleResize = () => { + if (chartContainerRef.current) chart.applyOptions({ width: chartContainerRef.current.clientWidth }); + if (equityChartRef.current && equityChartObjRef.current) equityChartObjRef.current.applyOptions({ width: equityChartRef.current.clientWidth }); + }; + + window.addEventListener('resize', handleResize); return () => { - window.removeEventListener("resize", handleResize); + window.removeEventListener('resize', handleResize); chart.remove(); - if (equityChartObjRef.current) equityChartObjRef.current.remove(); + equityChartObjRef.current?.remove(); }; }, []); useEffect(() => { - if (chartRef.current && candleSeriesRef.current) loadData(); - }, [loadData]); + if (activeTab !== 'dashboard') return; + let secondaryFrame = 0; + const primaryFrame = requestAnimationFrame(() => { + secondaryFrame = requestAnimationFrame(() => { + if (chartRef.current && chartContainerRef.current) { + chartRef.current.applyOptions({ width: chartContainerRef.current.clientWidth }); + chartRef.current.timeScale().fitContent(); + } + if (showBacktest && equityChartObjRef.current && equityChartRef.current) { + equityChartObjRef.current.applyOptions({ width: equityChartRef.current.clientWidth }); + equityChartObjRef.current.timeScale().fitContent(); + } + }); + }); + return () => { cancelAnimationFrame(primaryFrame); cancelAnimationFrame(secondaryFrame); }; + }, [activeTab, showBacktest]); + + const backtestTrades = backtestData?.trades ?? []; + const backtestStats = backtestData?.stats ?? null; + const equityCurve = useMemo(() => buildEquityCurve(backtestTrades), [backtestTrades]); + const monthlyReturns = useMemo(() => buildMonthlyReturns(backtestTrades), [backtestTrades]); + const maxDrawdown = useMemo(() => calculateMaxDrawdown(equityCurve), [equityCurve]); + const sharpeRatio = useMemo(() => calculateSharpeRatio(backtestTrades), [backtestTrades]); + const largestWin = useMemo(() => backtestTrades.reduce((best, t) => Math.max(best, t.pnl), 0), [backtestTrades]); + const largestLoss = useMemo(() => backtestTrades.reduce((worst, t) => Math.min(worst, t.pnl), 0), [backtestTrades]); + const grossProfit = backtestStats ? backtestStats.winners * backtestStats.avg_win : 0; + const grossLoss = backtestStats ? Math.abs(backtestStats.losers * backtestStats.avg_loss) : 0; + const profitFactor = grossLoss > 0 ? grossProfit / grossLoss : 0; + const netPnl = backtestStats?.total_pnl ?? 0; + const winRate = backtestStats?.win_rate ?? 0; + const totalTrades = backtestStats?.total_trades ?? 0; + const avgWin = backtestStats?.avg_win ?? 0; + const avgLoss = backtestStats?.avg_loss ?? 0; + const partialTpRate = backtestStats?.partial_tp_rate ?? 0; + const selectedDatasetLabel = resolveDatasetLabel(datasets, selectedDataset); + + const overviewMetrics = [ + { label: 'Net P/L', value: `$${formatMoney(netPnl)}`, change: (netPnl / STARTING_BALANCE) * 100, isPositive: netPnl > 0, isPrimary: true }, + { label: 'Win Rate', value: `${winRate.toFixed(1)}%`, isPositive: winRate > 50 }, + { label: 'Profit Factor', value: profitFactor.toFixed(2), isPositive: profitFactor > 1 }, + { label: 'Partial TP %', value: `${partialTpRate.toFixed(1)}%`, isPositive: partialTpRate > 0, neutral: partialTpRate === 0 }, + { label: 'Max Drawdown', value: `${maxDrawdown.toFixed(1)}%`, isPositive: false }, + { label: 'Sharpe Ratio', value: sharpeRatio.toFixed(2), isPositive: sharpeRatio > 1 }, + { label: 'Total Trades', value: totalTrades.toString(), neutral: true }, + ]; + + const containerVariants = { + hidden: { opacity: 0 }, + visible: { opacity: 1, transition: { staggerChildren: 0.08, delayChildren: 0.08 } }, + }; + + const itemVariants = { + hidden: { opacity: 0, y: 18 }, + visible: { opacity: 1, y: 0, transition: { duration: 0.52, ease: [0.22, 1, 0.36, 1] } }, + }; + + const OVERLAY_ITEMS = [ + { key: 'structure', label: 'Structure', color: '#10b981' }, + { key: 'orderBlocks', label: 'Order Blocks', color: '#3b82f6' }, + { key: 'fvg', label: 'FVG', color: '#a855f7' }, + { key: 'liquidity', label: 'Liquidity', color: '#06b6d4' }, + ]; return ( -
- +
+
-
-
-
-
nQ
-
-
noteQuant
-
ICT/SMC Backtester
-
+ {/* Header */} + +
+
+ nQ +
+
+
noteQuant
+
ICT / SMC Backtester
-
-
- GBP/JPY - Forex +
+
+ Dataset + {selectedDatasetLabel}
- {loading &&
} +
+ Pair + GBP/JPY +
+ {loading && ( +
+ )}
-
+ -
-
- Timeframe -
- {TIMEFRAMES.map((tf) => ( - + ))} +
+ + {/* Dashboard Tab */} + + {/* Toolbar */} + +
+
+ Timeframe +
+ {TIMEFRAMES.map((tf) => ( + - ))} -
-
+ > + {tf.label} + + ))} +
+
-
- R:R -
- {RR_OPTIONS.map((rr) => ( - - ))} -
-
+ > + 1:{rr} + + ))} +
+
-
- Overlays -
- {[ - { key: "structure", label: "Structure", color: COLORS.bullish }, - { key: "orderBlocks", label: "Order Blocks", color: COLORS.ob }, - { key: "fvg", label: "FVG", color: COLORS.fvg }, - { key: "liquidity", label: "Liquidity", color: COLORS.liquidity }, - ].map((ind) => ( +
+ Overlays +
+ {OVERLAY_ITEMS.map((item) => ( + + ))} - ))} -
+
+
+ + + {/* Candlestick Chart */} + +
+

Market Chart

+

Candles with structure and trade markers

+
+
+ + + {/* Equity Line (lightweight-charts) */} + {showBacktest && ( + +
+

Equity Curve

+

Strategy balance progression

+
+
+ + )} + + + {/* Stats Tab */} + + {/* Hero */} + +
+
+
+
+
+ Dataset + +

Switch CSVs here to refresh all metrics and charts.

+
+
+ + {/* Metrics Grid */} + + {overviewMetrics.map((metric) => ( + - Trades - -
-
-
+ ))} + -
-
-
+ {/* Equity Curve (recharts) */} + + + - {showBacktest && ( -
-
Equity Curve
-
-
+ {/* Distribution + Breakdown */} + + + + + + + {/* Trade History Tab */} + + + + + + + {/* Backtesting Tab */} + {activeTab === 'backtesting' && ( + + + )} - {backtestStats && showBacktest && ( -
-
ICT Strategy Backtest
-
-
- {backtestStats.total_trades} - Trades -
-
- = 50 ? COLORS.bullish : COLORS.bearish }}> - {backtestStats.win_rate.toFixed(1)}% - - Win Rate -
-
- = 0 ? COLORS.bullish : COLORS.bearish }}> - {backtestStats.total_pnl >= 0 ? "+" : ""}{backtestStats.total_pnl.toFixed(2)} - - Total PnL -
-
- {backtestStats.winners} - Winners -
-
- {backtestStats.losers} - Losers -
-
- +{backtestStats.avg_win.toFixed(3)} - Avg Win -
-
- {backtestStats.avg_loss.toFixed(3)} - Avg Loss -
-
- 1:{backtestStats.risk_reward} - R:R -
-
-
- )} - - {stats && ( -
-
- {stats.candles.toLocaleString()} - Candles -
-
-
- {stats.swings} - Swings -
-
-
- {stats.bullishOB} - Bull OB -
-
- {stats.bearishOB} - Bear OB -
-
-
- {stats.fvgs} - FVGs -
-
-
- {stats.liquidity} - Liq Levels -
-
+ {activeTab === 'optimizer' && ( + + + )}
+
); + } - -const styles = { - root: { minHeight: "100vh", background: COLORS.bg, fontFamily: "'Outfit', sans-serif", color: COLORS.text, padding: "0" }, - header: { display: "flex", justifyContent: "space-between", alignItems: "center", padding: "16px 24px", borderBottom: `1px solid ${COLORS.border}` }, - headerLeft: { display: "flex", alignItems: "center", gap: "16px" }, - headerRight: { display: "flex", alignItems: "center", gap: "12px" }, - logo: { display: "flex", alignItems: "center", gap: "12px" }, - logoIcon: { width: "36px", height: "36px", borderRadius: "8px", background: `linear-gradient(135deg, ${COLORS.accent}, #818cf8)`, display: "flex", alignItems: "center", justifyContent: "center", fontFamily: "'IBM Plex Mono', monospace", fontWeight: "700", fontSize: "13px", color: "#fff", letterSpacing: "-0.5px" }, - logoTitle: { fontSize: "16px", fontWeight: "600", color: COLORS.textBright, letterSpacing: "-0.3px" }, - logoSub: { fontSize: "11px", color: COLORS.textDim, fontFamily: "'IBM Plex Mono', monospace", letterSpacing: "0.5px", textTransform: "uppercase" }, - pairBadge: { display: "flex", alignItems: "center", gap: "8px", padding: "6px 12px", background: COLORS.surfaceLight, borderRadius: "6px", border: `1px solid ${COLORS.border}` }, - pairFlag: { fontFamily: "'IBM Plex Mono', monospace", fontWeight: "600", fontSize: "13px", color: COLORS.textBright }, - pairLabel: { fontSize: "10px", color: COLORS.textDim, textTransform: "uppercase", letterSpacing: "1px" }, - loadingDot: { width: "8px", height: "8px", borderRadius: "50%", background: COLORS.accent, animation: "pulse 1.5s infinite" }, - controls: { display: "flex", justifyContent: "space-between", alignItems: "center", padding: "12px 24px", borderBottom: `1px solid ${COLORS.border}`, flexWrap: "wrap", gap: "12px" }, - controlGroup: { display: "flex", alignItems: "center", gap: "10px" }, - controlLabel: { fontSize: "10px", fontWeight: "500", color: COLORS.textDim, textTransform: "uppercase", letterSpacing: "1.2px", fontFamily: "'IBM Plex Mono', monospace" }, - tfGroup: { display: "flex", gap: "2px", background: COLORS.surface, borderRadius: "6px", padding: "2px", border: `1px solid ${COLORS.border}` }, - tfBtn: { padding: "6px 12px", fontSize: "12px", fontWeight: "500", fontFamily: "'IBM Plex Mono', monospace", color: COLORS.textDim, background: "transparent", border: "none", borderRadius: "4px", cursor: "pointer", transition: "all 0.15s ease" }, - tfBtnActive: { background: COLORS.accent, color: "#fff", boxShadow: `0 0 12px ${COLORS.accentDim}` }, - indicatorGroup: { display: "flex", gap: "6px", flexWrap: "wrap" }, - indBtn: { display: "flex", alignItems: "center", gap: "6px", padding: "6px 12px", fontSize: "11px", fontWeight: "500", fontFamily: "'Outfit', sans-serif", color: COLORS.textDim, background: COLORS.surface, border: `1px solid ${COLORS.border}`, borderRadius: "6px", cursor: "pointer", transition: "all 0.15s ease" }, - indDot: { width: "6px", height: "6px", borderRadius: "50%" }, - chartWrapper: { padding: "12px 24px" }, - chart: { borderRadius: "8px", overflow: "hidden", border: `1px solid ${COLORS.border}` }, - sectionLabel: { fontSize: "10px", fontWeight: "500", color: COLORS.textDim, textTransform: "uppercase", letterSpacing: "1.2px", fontFamily: "'IBM Plex Mono', monospace", marginBottom: "8px" }, - backtestBar: { margin: "0 24px 16px", padding: "16px 20px", background: COLORS.surface, borderRadius: "8px", border: `1px solid ${COLORS.border}` }, - backtestTitle: { fontSize: "11px", fontWeight: "600", color: COLORS.textDim, textTransform: "uppercase", letterSpacing: "1.2px", fontFamily: "'IBM Plex Mono', monospace", marginBottom: "12px" }, - backtestGrid: { display: "grid", gridTemplateColumns: "repeat(8, 1fr)", gap: "12px" }, - btStat: { display: "flex", flexDirection: "column", alignItems: "center", gap: "4px" }, - btValue: { fontFamily: "'IBM Plex Mono', monospace", fontSize: "16px", fontWeight: "600", color: COLORS.textBright }, - btLabel: { fontSize: "9px", fontWeight: "500", color: COLORS.textDim, textTransform: "uppercase", letterSpacing: "0.8px" }, - statsBar: { display: "flex", alignItems: "center", gap: "20px", padding: "14px 24px", margin: "0 24px 24px", background: COLORS.surface, borderRadius: "8px", border: `1px solid ${COLORS.border}`, flexWrap: "wrap" }, - statItem: { display: "flex", flexDirection: "column", alignItems: "center", gap: "2px" }, - statValue: { fontFamily: "'IBM Plex Mono', monospace", fontSize: "15px", fontWeight: "600", color: COLORS.textBright }, - statLabel: { fontSize: "9px", fontWeight: "500", color: COLORS.textDim, textTransform: "uppercase", letterSpacing: "1px" }, - statDivider: { width: "1px", height: "28px", background: COLORS.border }, -}; - -export default App; \ No newline at end of file diff --git a/frontend/src/components/BacktestingTab.jsx b/frontend/src/components/BacktestingTab.jsx new file mode 100644 index 0000000..5694547 --- /dev/null +++ b/frontend/src/components/BacktestingTab.jsx @@ -0,0 +1,942 @@ +import { useCallback, useEffect, useRef, useState } from 'react'; +import { motion } from 'motion/react'; +import { + CandlestickSeries, + LineSeries, + createChart, + createSeriesMarkers, +} from 'lightweight-charts'; + +const CHART_THEME = { + layout: { background: { color: '#0a0a0a' }, textColor: '#737373', fontFamily: 'Inter, system-ui, sans-serif', fontSize: 11 }, + grid: { vertLines: { color: '#1a1a1a' }, horzLines: { color: '#1a1a1a' } }, + crosshair: { + vertLine: { color: 'rgba(250, 250, 250, 0.15)', labelBackgroundColor: '#262626' }, + horzLine: { color: 'rgba(250, 250, 250, 0.15)', labelBackgroundColor: '#262626' }, + }, + rightPriceScale: { borderColor: '#262626', textColor: '#737373' }, + timeScale: { borderColor: '#262626', timeVisible: true, secondsVisible: false }, +}; + +const TIMEFRAMES = [ + { label: '1m', value: 1 }, + { label: '3m', value: 3 }, + { label: '5m', value: 5 }, + { label: '15m', value: 15 }, + { label: '30m', value: 30 }, + { label: '1H', value: 60 }, +]; + +const RR_OPTIONS = [1, 1.5, 2, 2.5, 3]; +const SESSIONS = ['london', 'new_york', 'asian', 'london_close', 'london_ny_overlap', 'all']; +const DAYS = [ + { label: 'Mon', value: 0 }, + { label: 'Tue', value: 1 }, + { label: 'Wed', value: 2 }, + { label: 'Thu', value: 3 }, + { label: 'Fri', value: 4 }, +]; +const STARTING_BALANCE = 10000; +const PRESETS_KEY = 'nq_backtest_presets'; +const RESULT_HISTORY_KEY = 'nq_backtest_recent_results'; + +function formatMoney(v) { + return v.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); +} + +function calculateProfitFactor(trades) { + const winners = trades.filter((trade) => trade.pnl > 0).reduce((sum, trade) => sum + trade.pnl, 0); + const losers = Math.abs(trades.filter((trade) => trade.pnl < 0).reduce((sum, trade) => sum + trade.pnl, 0)); + if (losers <= 0) return winners > 0 ? 999 : 0; + return Number((winners / losers).toFixed(2)); +} + +function calculateMaxDrawdown(trades, startingBalance = STARTING_BALANCE) { + if (!trades.length) return 0; + let equity = startingBalance; + let peak = startingBalance; + let maxDrawdown = 0; + trades + .slice() + .sort((a, b) => new Date(a.exit_time) - new Date(b.exit_time)) + .forEach((trade) => { + equity += trade.pnl; + if (equity > peak) peak = equity; + const drawdown = ((peak - equity) / peak) * 100; + if (drawdown > maxDrawdown) maxDrawdown = drawdown; + }); + return Number(maxDrawdown.toFixed(2)); +} + +function loadPresets() { + try { + return JSON.parse(localStorage.getItem(PRESETS_KEY) || '{}'); + } catch { return {}; } +} + +function savePresets(presets) { + localStorage.setItem(PRESETS_KEY, JSON.stringify(presets)); +} + +function loadRecentResults() { + try { + const parsed = JSON.parse(localStorage.getItem(RESULT_HISTORY_KEY) || '[]'); + return Array.isArray(parsed) ? parsed.slice(0, 5) : []; + } catch { + return []; + } +} + +function saveRecentResults(results) { + localStorage.setItem(RESULT_HISTORY_KEY, JSON.stringify(results.slice(0, 5))); +} + +function NumberInput({ label, value, onChange, min, max, step = 1 }) { + return ( +
+ + onChange(Number(e.target.value))} + className="w-full border border-[#262626] bg-black text-[#fafafa] font-mono text-[13px] px-3 py-2 outline-none focus:border-[#404040] transition-colors" + /> +
+ ); +} + +function ToggleInput({ label, value, onChange, color = '#10b981' }) { + return ( + + ); +} + +function SectionHeader({ title, subtitle }) { + return ( +
+

{title}

+ {subtitle &&

{subtitle}

} +
+ ); +} + +export function BacktestingTab({ datasets = [], selectedDataset, onDatasetChange, onBacktestComplete }) { + const chartContainerRef = useRef(null); + const equityChartRef = useRef(null); + const chartRef = useRef(null); + const equityChartObjRef = useRef(null); + const candleSeriesRef = useRef(null); + const equitySeriesRef = useRef(null); + const markersRef = useRef(null); + const progressIntervalRef = useRef(null); + const progressResetTimeoutRef = useRef(null); + + const [chartsReady, setChartsReady] = useState(false); + const [loading, setLoading] = useState(false); + const [results, setResults] = useState(null); + const [autoRun, setAutoRun] = useState(false); + const [progressPct, setProgressPct] = useState(0); + const [mcLoading, setMcLoading] = useState(false); + const [mcErrorMessage, setMcErrorMessage] = useState(''); + const [mcResult, setMcResult] = useState(null); + const [mcRuns, setMcRuns] = useState(500); + const [mcVariationPct, setMcVariationPct] = useState(15); + const [mcPriceNoisePct, setMcPriceNoisePct] = useState(0); + const [mcSlippage, setMcSlippage] = useState(0); + const [mcSpread, setMcSpread] = useState(0); + const [mcRuinDrawdownPct, setMcRuinDrawdownPct] = useState(20); + const [mcShuffleTrades, setMcShuffleTrades] = useState(true); + + const [timeframe, setTimeframe] = useState(1); + const [riskReward, setRiskReward] = useState(2.5); + const [lookback, setLookback] = useState(7); + const [atrMult, setAtrMult] = useState(2.5); + const [session, setSession] = useState('london'); + + const [useFvg, setUseFvg] = useState(true); + const [useOb, setUseOb] = useState(true); + const [useLiquiditySweep, setUseLiquiditySweep] = useState(true); + const [obMaxAge, setObMaxAge] = useState(50); + const [proximityPct, setProximityPct] = useState(0.5); + const [sweepLookback, setSweepLookback] = useState(5); + + const [minGapSize, setMinGapSize] = useState(0.0); + const [impulseMultiplier, setImpulseMultiplier] = useState(0.0); + const [requireUnmitigatedFvg, setRequireUnmitigatedFvg] = useState(true); + const [requireBosConfluence, setRequireBosConfluence] = useState(false); + + const [minObSize, setMinObSize] = useState(0.0); + const [requireFvgObConfluence, setRequireFvgObConfluence] = useState(false); + + const [asianSweepOnly, setAsianSweepOnly] = useState(false); + const [useBreakEven, setUseBreakEven] = useState(false); + const [beTriggerRr, setBeTriggerRr] = useState(1.0); + const [usePartialTp, setUsePartialTp] = useState(false); + const [partialTpRr, setPartialTpRr] = useState(1.0); + const [partialTpPercent, setPartialTpPercent] = useState(50); + + const [dayFilter, setDayFilter] = useState([0, 1, 2, 3, 4]); + + const [maxDailyLoss, setMaxDailyLoss] = useState(0.0); + const [maxConsecutiveLosses, setMaxConsecutiveLosses] = useState(0); + + // Presets + const [presets, setPresets] = useState(loadPresets); + const [presetName, setPresetName] = useState(''); + const [showPresets, setShowPresets] = useState(false); + const [recentResults, setRecentResults] = useState(loadRecentResults); + + const getSettings = () => ({ + timeframe, riskReward, lookback, atrMult, session, + useFvg, useOb, useLiquiditySweep, obMaxAge, proximityPct, sweepLookback, + minGapSize, impulseMultiplier, requireUnmitigatedFvg, requireBosConfluence, + minObSize, requireFvgObConfluence, asianSweepOnly, dayFilter, + useBreakEven, beTriggerRr, + usePartialTp, partialTpRr, partialTpPercent, + maxDailyLoss, maxConsecutiveLosses, + }); + + const applySettings = (s) => { + if (s.timeframe !== undefined) setTimeframe(s.timeframe); + if (s.riskReward !== undefined) setRiskReward(s.riskReward); + if (s.lookback !== undefined) setLookback(s.lookback); + if (s.atrMult !== undefined) setAtrMult(s.atrMult); + if (s.session !== undefined) setSession(s.session); + if (s.useFvg !== undefined) setUseFvg(s.useFvg); + if (s.useOb !== undefined) setUseOb(s.useOb); + if (s.useLiquiditySweep !== undefined) setUseLiquiditySweep(s.useLiquiditySweep); + if (s.obMaxAge !== undefined) setObMaxAge(s.obMaxAge); + if (s.proximityPct !== undefined) setProximityPct(s.proximityPct); + if (s.sweepLookback !== undefined) setSweepLookback(s.sweepLookback); + if (s.minGapSize !== undefined) setMinGapSize(s.minGapSize); + if (s.impulseMultiplier !== undefined) setImpulseMultiplier(s.impulseMultiplier); + if (s.requireUnmitigatedFvg !== undefined) setRequireUnmitigatedFvg(s.requireUnmitigatedFvg); + if (s.requireBosConfluence !== undefined) setRequireBosConfluence(s.requireBosConfluence); + if (s.minObSize !== undefined) setMinObSize(s.minObSize); + if (s.requireFvgObConfluence !== undefined) setRequireFvgObConfluence(s.requireFvgObConfluence); + if (s.asianSweepOnly !== undefined) setAsianSweepOnly(s.asianSweepOnly); + if (s.useBreakEven !== undefined) setUseBreakEven(s.useBreakEven); + if (s.beTriggerRr !== undefined) setBeTriggerRr(s.beTriggerRr); + if (s.usePartialTp !== undefined) setUsePartialTp(s.usePartialTp); + if (s.partialTpRr !== undefined) setPartialTpRr(s.partialTpRr); + if (s.partialTpPercent !== undefined) setPartialTpPercent(s.partialTpPercent); + if (s.dayFilter !== undefined) setDayFilter(s.dayFilter); + if (s.maxDailyLoss !== undefined) setMaxDailyLoss(s.maxDailyLoss); + if (s.maxConsecutiveLosses !== undefined) setMaxConsecutiveLosses(s.maxConsecutiveLosses); + }; + + const handleSavePreset = () => { + const name = presetName.trim(); + if (!name) return; + const updated = { ...presets, [name]: getSettings() }; + setPresets(updated); + savePresets(updated); + setPresetName(''); + }; + + const handleLoadPreset = (name) => { + const preset = presets[name]; + if (preset) applySettings(preset); + setShowPresets(false); + }; + + const handleDeletePreset = (name) => { + const updated = { ...presets }; + delete updated[name]; + setPresets(updated); + savePresets(updated); + }; + + const toggleDay = (day) => { + setDayFilter((prev) => { + if (prev.includes(day)) { + const next = prev.filter((d) => d !== day); + return next.length ? next : prev; + } + return [...prev, day].sort(); + }); + }; + + useEffect(() => { + if (!chartContainerRef.current) return; + + const chart = createChart(chartContainerRef.current, { + width: chartContainerRef.current.clientWidth, + height: 420, + ...CHART_THEME, + }); + + const candleSeries = chart.addSeries(CandlestickSeries, { + upColor: '#10b981', + downColor: '#ef4444', + borderVisible: false, + wickUpColor: '#10b981', + wickDownColor: '#ef4444', + }); + + chartRef.current = chart; + candleSeriesRef.current = candleSeries; + + if (equityChartRef.current) { + const eqChart = createChart(equityChartRef.current, { + width: equityChartRef.current.clientWidth, + height: 160, + ...CHART_THEME, + layout: { ...CHART_THEME.layout, fontSize: 10 }, + }); + equityChartObjRef.current = eqChart; + equitySeriesRef.current = eqChart.addSeries(LineSeries, { + color: '#10b981', + lineWidth: 2, + priceLineVisible: false, + lastValueVisible: true, + }); + } + + setChartsReady(true); + + const handleResize = () => { + if (chartContainerRef.current) chart.applyOptions({ width: chartContainerRef.current.clientWidth }); + if (equityChartRef.current && equityChartObjRef.current) equityChartObjRef.current.applyOptions({ width: equityChartRef.current.clientWidth }); + }; + + window.addEventListener('resize', handleResize); + return () => { + window.removeEventListener('resize', handleResize); + chart.remove(); + equityChartObjRef.current?.remove(); + }; + }, []); + + const runBacktest = useCallback(async () => { + if (!chartsReady) return; + + if (progressIntervalRef.current) clearInterval(progressIntervalRef.current); + if (progressResetTimeoutRef.current) clearTimeout(progressResetTimeoutRef.current); + setProgressPct(8); + progressIntervalRef.current = setInterval(() => { + setProgressPct((prev) => (prev < 92 ? prev + 3 : prev)); + }, 140); + + setLoading(true); + + try { + const params = new URLSearchParams({ + timeframe: timeframe.toString(), + rr: riskReward.toString(), + lookback: lookback.toString(), + atr_mult: atrMult.toString(), + session, + sweep: useLiquiditySweep.toString(), + sweep_lookback: sweepLookback.toString(), + ob_age: obMaxAge.toString(), + dataset: selectedDataset, + use_fvg: useFvg.toString(), + use_ob: useOb.toString(), + proximity_pct: proximityPct.toString(), + min_gap_size: minGapSize.toString(), + impulse_multiplier: impulseMultiplier.toString(), + require_unmitigated_fvg: requireUnmitigatedFvg.toString(), + require_bos_confluence: requireBosConfluence.toString(), + min_ob_size: minObSize.toString(), + require_fvg_ob_confluence: requireFvgObConfluence.toString(), + asian_sweep_only: asianSweepOnly.toString(), + use_break_even: useBreakEven.toString(), + be_trigger_rr: beTriggerRr.toString(), + use_partial_tp: usePartialTp.toString(), + partial_tp_rr: partialTpRr.toString(), + partial_tp_percent: partialTpPercent.toString(), + day_filter: dayFilter.join(','), + max_daily_loss: maxDailyLoss.toString(), + max_consecutive_losses: maxConsecutiveLosses.toString(), + }); + + const [candleRes, backtestRes] = await Promise.all([ + fetch(`http://localhost:8000/api/candles?timeframe=${timeframe}&dataset=${encodeURIComponent(selectedDataset)}`), + fetch(`http://localhost:8000/api/backtest?${params}`), + ]); + + const candleData = await candleRes.json(); + const backtestData = await backtestRes.json(); + + const candles = candleData.candles.map((c) => ({ + time: Math.floor(new Date(c.time).getTime() / 1000), + open: c.open, + high: c.high, + low: c.low, + close: c.close, + })); + candleSeriesRef.current?.setData(candles); + + const markers = []; + if (backtestData.trades) { + backtestData.trades.forEach((trade) => { + const isWin = trade.pnl > 0; + markers.push({ + time: Math.floor(new Date(trade.enter_time).getTime() / 1000), + position: trade.direction === 'long' ? 'belowBar' : 'aboveBar', + color: isWin ? '#10b981' : '#ef4444', + shape: trade.direction === 'long' ? 'arrowUp' : 'arrowDown', + text: trade.direction === 'long' ? 'BUY' : 'SELL', + }); + markers.push({ + time: Math.floor(new Date(trade.exit_time).getTime() / 1000), + position: 'inBar', + color: isWin ? '#10b981' : '#ef4444', + shape: 'circle', + text: isWin ? `+${trade.pnl.toFixed(2)}` : trade.pnl.toFixed(2), + }); + }); + } + + markers.sort((a, b) => a.time - b.time); + markersRef.current?.setMarkers([]); + markersRef.current = createSeriesMarkers(candleSeriesRef.current, markers); + chartRef.current?.timeScale().fitContent(); + + if (backtestData.trades?.length) { + let equity = STARTING_BALANCE; + const sortedTrades = backtestData.trades.slice().sort((a, b) => new Date(a.exit_time) - new Date(b.exit_time)); + const eqData = sortedTrades.map((t) => { + equity += t.pnl; + return { + time: Math.floor(new Date(t.exit_time).getTime() / 1000), + value: Number(equity.toFixed(2)), + }; + }); + equitySeriesRef.current?.setData(eqData); + equityChartObjRef.current?.timeScale().fitContent(); + } else { + equitySeriesRef.current?.setData([]); + } + + setResults(backtestData); + onBacktestComplete?.(backtestData); + + if (backtestData?.stats) { + const snapshot = { + id: `${Date.now()}-${Math.random().toString(36).slice(2, 8)}`, + runAt: new Date().toISOString(), + dataset: selectedDataset, + timeframe, + riskReward, + totalPnl: Number(backtestData.stats.total_pnl ?? 0), + winRate: Number(backtestData.stats.win_rate ?? 0), + totalTrades: Number(backtestData.stats.total_trades ?? 0), + }; + setRecentResults((prev) => { + const next = [snapshot, ...prev].slice(0, 5); + saveRecentResults(next); + return next; + }); + } + } catch (err) { + console.error('Backtest failed:', err); + } finally { + if (progressIntervalRef.current) { + clearInterval(progressIntervalRef.current); + progressIntervalRef.current = null; + } + setProgressPct(100); + setLoading(false); + progressResetTimeoutRef.current = setTimeout(() => { + setProgressPct(0); + }, 500); + } + }, [ + chartsReady, timeframe, riskReward, lookback, atrMult, session, + useFvg, useOb, useLiquiditySweep, sweepLookback, obMaxAge, + selectedDataset, proximityPct, minGapSize, impulseMultiplier, + requireUnmitigatedFvg, requireBosConfluence, minObSize, + requireFvgObConfluence, asianSweepOnly, dayFilter, + useBreakEven, beTriggerRr, + usePartialTp, partialTpRr, partialTpPercent, + maxDailyLoss, maxConsecutiveLosses, onBacktestComplete, + ]); + + const runMonteCarlo = useCallback(async () => { + if (!results?.trades?.length) { + setMcErrorMessage('Run a backtest first so Monte Carlo has trades to simulate.'); + return; + } + + const trades = results.trades; + const totalTradesLocal = trades.length; + const totalPnlLocal = trades.reduce((sum, trade) => sum + Number(trade.pnl ?? 0), 0); + const winRateLocal = totalTradesLocal ? (trades.filter((trade) => trade.pnl > 0).length / totalTradesLocal) * 100 : 0; + + setMcLoading(true); + setMcErrorMessage(''); + setMcResult(null); + + try { + const response = await fetch('http://localhost:8000/api/backtest/monte-carlo', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + trade_r_multiples: results.trades.map((trade) => Number(trade.r_multiple ?? 0)), + runs: mcRuns, + starting_balance: STARTING_BALANCE, + risk_per_trade_pct: 1, + sampling_method: mcShuffleTrades ? 'shuffle' : 'bootstrap', + missed_trade_pct: 0, + pnl_variation_pct: mcVariationPct, + price_noise_pct: mcPriceNoisePct, + slippage_per_trade: mcSlippage, + spread_per_trade: mcSpread, + ruin_drawdown_pct: mcRuinDrawdownPct, + base_trade_count: totalTradesLocal, + base_net_pnl: totalPnlLocal, + base_win_rate: winRateLocal, + base_profit_factor: calculateProfitFactor(results.trades), + base_max_drawdown_pct: calculateMaxDrawdown(results.trades, STARTING_BALANCE), + }), + }); + + const data = await response.json(); + if (!response.ok) { + throw new Error(data?.detail ?? 'Monte Carlo run failed'); + } + + setMcResult(data); + } catch (err) { + setMcErrorMessage(err instanceof Error ? err.message : 'Monte Carlo run failed'); + } finally { + setMcLoading(false); + } + }, [ + results, + mcRuns, + mcVariationPct, + mcPriceNoisePct, + mcSlippage, + mcSpread, + mcRuinDrawdownPct, + mcShuffleTrades, + ]); + + useEffect(() => { + if (chartsReady && autoRun) runBacktest(); + }, [runBacktest, chartsReady, autoRun]); + + useEffect(() => { + let f2 = 0; + const f1 = requestAnimationFrame(() => { + f2 = requestAnimationFrame(() => { + if (chartRef.current && chartContainerRef.current) { + chartRef.current.applyOptions({ width: chartContainerRef.current.clientWidth }); + chartRef.current.timeScale().fitContent(); + } + if (equityChartObjRef.current && equityChartRef.current) { + equityChartObjRef.current.applyOptions({ width: equityChartRef.current.clientWidth }); + equityChartObjRef.current.timeScale().fitContent(); + } + }); + }); + return () => { cancelAnimationFrame(f1); cancelAnimationFrame(f2); }; + }, []); + + useEffect(() => () => { + if (progressIntervalRef.current) clearInterval(progressIntervalRef.current); + if (progressResetTimeoutRef.current) clearTimeout(progressResetTimeoutRef.current); + }, []); + + const stats = results?.stats; + const totalTrades = stats?.total_trades ?? 0; + const winRate = stats?.win_rate ?? 0; + const totalPnl = stats?.total_pnl ?? 0; + const partialTpTrades = stats?.partial_tp_trades ?? 0; + const partialTpRate = stats?.partial_tp_rate ?? 0; + const partialTpRealized = stats?.partial_tp_realized_total ?? 0; + const presetNames = Object.keys(presets); + const mcRunsData = mcResult?.sample_runs ?? mcResult?.distribution ?? []; + + const itemVariants = { + hidden: { opacity: 0, y: 18 }, + visible: { opacity: 1, y: 0, transition: { duration: 0.52, ease: [0.22, 1, 0.36, 1] } }, + }; + + return ( +
+ + {/* Header row */} +
+
+

Backtesting Engine

+

Adjust parameters and run strategy

+
+
+ + {loading &&
} + + + +
+
+ +
+
+ {loading ? 'Running backtest...' : 'Backtest progress'} + {Math.round(progressPct)}% +
+
+
+
+
+ + {/* Presets panel */} + {showPresets && ( +
+
+

Presets

+ +
+ + {/* Save */} +
+ setPresetName(e.target.value)} + onKeyDown={(e) => e.key === 'Enter' && handleSavePreset()} + className="flex-1 border border-[#262626] bg-[#0a0a0a] text-[#fafafa] font-mono text-[13px] px-3 py-2 outline-none focus:border-[#404040] transition-colors" + /> + +
+ + {/* List */} + {presetNames.length === 0 ? ( +

No saved presets yet.

+ ) : ( +
+ {presetNames.map((name) => ( +
+ {name} +
+ + +
+
+ ))} +
+ )} +
+ )} + + {/* Core Strategy */} + +
+
+ Timeframe +
+ {TIMEFRAMES.map((tf) => ( + + ))} +
+
+
+ Risk : Reward +
+ {RR_OPTIONS.map((rr) => ( + + ))} +
+
+
+ Session +
+ {SESSIONS.map((s) => ( + + ))} +
+
+
+ Dataset + +
+
+
+ + + + + +
+ +
+ +
+ + +
+
+ + + +
+ +
+ +
+ +
+
+ + +
+ +
+ +
+ + +
+ +
+ +
+ {DAYS.map((d) => ( + + ))} +
+ +
+ +
+ + + + + +
+
+ + +
+ + + {/* Chart */} + +
+

Backtest Chart

+

Trade entries and exits

+
+
+ + + {/* Equity */} + +
+

Equity Curve

+

Balance progression

+
+
+ + + {/* Results */} + {stats && ( + +
+

Results

+

Backtest Summary

+

CSV: {selectedDataset}

+
+ +
+

Last 5 Runs

+ {recentResults.length === 0 ? ( +

No previous runs saved yet.

+ ) : ( +
+ {recentResults.map((run) => ( +
+ {new Date(run.runAt).toLocaleString()} + {run.dataset} + {run.timeframe}m + = 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}>${formatMoney(run.totalPnl)} + {run.winRate.toFixed(1)}% + {run.totalTrades} trades +
+ ))} +
+ )} +
+ +
+
+
+
+

Monte Carlo

+

Stress test the current trade set

+
+ +
+ +
+ + + + + + +
+ + + + {mcErrorMessage && ( +
+ {mcErrorMessage} +
+ )} + + {mcResult && ( +
+
+

Avg PnL

{Number(mcResult.summary?.avg_pnl ?? 0).toFixed(2)}

+

Profitable %

{Number(mcResult.summary?.profitable_run_pct ?? 0).toFixed(2)}%

+

Worst DD %

{Number(mcResult.summary?.worst_max_drawdown_pct ?? 0).toFixed(2)}%

+

Avg WR

{Number(mcResult.summary?.avg_win_rate ?? 0).toFixed(2)}%

+

Avg PF

{Number(mcResult.summary?.avg_profit_factor ?? 0).toFixed(2)}

+

Ruin %

{Number(mcResult.summary?.probability_of_ruin ?? 0).toFixed(2)}%

+
+ +
+
+ Run + Net PnL + Max DD % + Win Rate + PF + Ruin +
+ {mcRunsData.map((run) => ( +
+ {run.run} + = 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}>{Number(run.net_pnl).toFixed(2)} + {Number(run.max_drawdown_pct).toFixed(2)} + {Number(run.win_rate).toFixed(2)}% + {Number(run.profit_factor).toFixed(2)} + {run.ruin ? 'Yes' : 'No'} +
+ ))} +
+
+ )} +
+ +
+
+

Net P/L

+

= 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}`}>${formatMoney(totalPnl)}

+
+
+

Win Rate

+

50 ? 'text-[#10b981]' : 'text-[#ef4444]'}`}>{winRate.toFixed(1)}%

+
+
+

Total Trades

+

{totalTrades}

+
+
+

Winners

+

{stats.winners}

+
+
+

Losers

+

{stats.losers}

+
+
+

Avg Win

+

${formatMoney(stats.avg_win)}

+
+
+

Avg Loss

+

${formatMoney(Math.abs(stats.avg_loss))}

+
+
+

Partials

+

{partialTpTrades}

+
+
+

Partial Rate

+

{partialTpRate.toFixed(1)}%

+
+
+

Partial P/L

+

= 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}`}>${formatMoney(partialTpRealized)}

+
+
+ + )} +
+ ); +} \ No newline at end of file diff --git a/frontend/src/components/EquityCurve.jsx b/frontend/src/components/EquityCurve.jsx new file mode 100644 index 0000000..3b7b9b9 --- /dev/null +++ b/frontend/src/components/EquityCurve.jsx @@ -0,0 +1,96 @@ +import { + LineChart, + Line, + XAxis, + YAxis, + Tooltip, + ResponsiveContainer, + CartesianGrid, +} from 'recharts'; + +function CustomTooltip({ active, payload }) { + if (active && payload && payload.length) { + return ( +
+

{payload[0].payload.date}

+

+ ${payload[0].value.toLocaleString('en-US', { + minimumFractionDigits: 2, + maximumFractionDigits: 2, + })} +

+
+ ); + } + return null; +} + +export function EquityCurve({ data = [], startingBalance = 10000 }) { + if (!data.length) { + return ( +
+

Equity Curve

+

Account balance progression

+
+ No trade data available yet. +
+
+ ); + } + + const lastEquity = data[data.length - 1]?.equity ?? startingBalance; + const changePct = ((lastEquity - startingBalance) / startingBalance) * 100; + + return ( +
+
+
+

Equity Curve

+

Account balance progression

+
+
+ Start ${startingBalance.toLocaleString('en-US', { minimumFractionDigits: 2 })} + End ${lastEquity.toLocaleString('en-US', { minimumFractionDigits: 2 })} + = 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}> + {changePct >= 0 ? '+' : ''}{changePct.toFixed(1)}% + +
+
+ + + + + + + + + + + `$${(v / 1000).toFixed(0)}k`} + /> + } cursor={{ stroke: '#404040', strokeWidth: 1 }} /> + + + +
+ ); +} diff --git a/frontend/src/components/MetricCard.jsx b/frontend/src/components/MetricCard.jsx new file mode 100644 index 0000000..d3e3b4f --- /dev/null +++ b/frontend/src/components/MetricCard.jsx @@ -0,0 +1,81 @@ +import { motion, useInView } from 'motion/react'; +import { useEffect, useRef, useState } from 'react'; + +export function MetricCard({ label, value, change, isPositive, isPrimary = false, neutral = false }) { + const ref = useRef(null); + const isInView = useInView(ref, { once: true, amount: 0.3 }); + const [displayValue, setDisplayValue] = useState('0'); + + useEffect(() => { + if (!isInView) return; + + const numericValue = parseFloat(value.replace(/[^0-9.-]/g, '')); + if (isNaN(numericValue)) { + setDisplayValue(value); + return; + } + + const duration = 1200; + const startTime = Date.now(); + + const animate = () => { + const progress = Math.min((Date.now() - startTime) / duration, 1); + const eased = 1 - Math.pow(1 - progress, 3); + const current = numericValue * eased; + + if (value.includes('$')) { + setDisplayValue(`$${current.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`); + } else if (value.includes('%')) { + setDisplayValue(`${current.toFixed(1)}%`); + } else { + setDisplayValue(current % 1 === 0 ? Math.round(current).toString() : current.toFixed(2)); + } + + if (progress < 1) requestAnimationFrame(animate); + }; + + animate(); + }, [isInView, value]); + + const color = neutral ? 'text-[#fafafa]' : isPositive ? 'text-[#10b981]' : 'text-[#ef4444]'; + const changeLabel = typeof change === 'number' ? `${change >= 0 ? '+' : ''}${change.toFixed(1)}%` : change; + + return ( + +
+
+
+ + {label} + + {!neutral && ( + + + {isPositive ? ( + + ) : ( + + )} + + + )} +
+
+ {displayValue} +
+ {changeLabel && ( +
+ {changeLabel} + vs. initial +
+ )} +
+
+
+ ); +} diff --git a/frontend/src/components/OptimizerTab.jsx b/frontend/src/components/OptimizerTab.jsx new file mode 100644 index 0000000..2ce95ba --- /dev/null +++ b/frontend/src/components/OptimizerTab.jsx @@ -0,0 +1,1090 @@ +import { useCallback, useEffect, useMemo, useState } from 'react'; +import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Scatter, ScatterChart, Tooltip, XAxis, YAxis } from 'recharts'; + +const API_BASE_URL = (import.meta.env.VITE_API_BASE_URL || 'http://localhost:8000').replace(/\/$/, ''); +const TIMEFRAMES = [1, 3, 5, 15, 30, 60]; +const OBJECTIVES = [ + { key: 'net_pnl', label: 'Net PnL' }, + { key: 'sharpe_ratio', label: 'Sharpe' }, + { key: 'sortino_ratio', label: 'Sortino' }, + { key: 'profit_factor', label: 'Profit Factor' }, + { key: 'calmar_ratio', label: 'Calmar' }, + { key: 'recovery_ratio', label: 'Recovery' }, + { key: 'win_rate', label: 'Win Rate %' }, + { key: 'max_drawdown_pct', label: 'Max DD %' }, + { key: 'trade_count', label: 'Trades' }, + { key: 'pf_x_wr', label: 'PF x WR' }, + { key: 'custom_fitness', label: 'Fitness' }, +]; + +function NumberInput({ label, value, onChange, min = 0, step = 1 }) { + return ( +
+ + onChange(Number(e.target.value))} + className="w-full border border-[#262626] bg-black text-[#fafafa] font-mono text-[13px] px-3 py-2 outline-none focus:border-[#404040] transition-colors" + /> +
+ ); +} + +function TextListInput({ label, value, onChange, placeholder }) { + return ( +
+ + onChange(e.target.value)} + className="w-full border border-[#262626] bg-black text-[#fafafa] font-mono text-[13px] px-3 py-2 outline-none focus:border-[#404040] transition-colors" + /> +
+ ); +} + +function parseCsvTokens(value) { + return value.split(',').map((v) => v.trim()).filter(Boolean); +} + +function parseIntList(value, fallback) { + const parsed = parseCsvTokens(value) + .map((v) => Number.parseInt(v, 10)) + .filter((v) => Number.isInteger(v)); + return parsed.length ? parsed : fallback; +} + +function parseFloatList(value, fallback) { + const parsed = parseCsvTokens(value) + .map((v) => Number.parseFloat(v)) + .filter((v) => Number.isFinite(v)); + return parsed.length ? parsed : fallback; +} + +function parseBoolList(value, fallback) { + const parsed = parseCsvTokens(value) + .map((v) => v.toLowerCase()) + .filter((v) => ['true', 'false', '1', '0', 'yes', 'no', 'y', 'n'].includes(v)) + .map((v) => ['true', '1', 'yes', 'y'].includes(v)); + return parsed.length ? parsed : fallback; +} + +export function OptimizerTab({ datasets = [], selectedDataset, onDatasetChange, onActivateResult }) { + const [abortController, setAbortController] = useState(null); + const [timeframe, setTimeframe] = useState(5); + const [riskRewards, setRiskRewards] = useState('1,1.5,2.0,2.5,3.0'); + const [minTrades, setMinTrades] = useState(5); + const [maxTrades, setMaxTrades] = useState(1000); + const [maxCombinations, setMaxCombinations] = useState(1000); + const [comboSamplingMode, setComboSamplingMode] = useState('random'); + const [comboSamplingSeed, setComboSamplingSeed] = useState(''); + const [topN, setTopN] = useState(10); + + const [sessions, setSessions] = useState('london,new_york'); + const [lookbacks, setLookbacks] = useState('3,5,7,10'); + const [obAges, setObAges] = useState('20,50,80'); + const [atrValues, setAtrValues] = useState('1.0,1.5,2.0,2.5'); + const [minObSizeValues, setMinObSizeValues] = useState('0.00030,0.00040,0.00050,0.00060,0.00080'); + const [minGapSizeValues, setMinGapSizeValues] = useState('0.00015,0.00020,0.00025,0.00030,0.00035'); + const [impulseMultiplierValues, setImpulseMultiplierValues] = useState('1.15,1.25,1.35,1.45,1.60'); + const [requireUnmitigatedFvgModes, setRequireUnmitigatedFvgModes] = useState('true,false'); + const [requireFvgObConfluenceModes, setRequireFvgObConfluenceModes] = useState('true,false'); + const [requireBosConfluenceModes, setRequireBosConfluenceModes] = useState('true,false'); + const [sweepModes, setSweepModes] = useState('true,false'); + const [sweepLookbacks, setSweepLookbacks] = useState('5,10,15'); + const [asianSweepOnlyModes, setAsianSweepOnlyModes] = useState('true,false'); + const [useBreakEvenModes, setUseBreakEvenModes] = useState('false,true'); + const [beTriggerRrValues, setBeTriggerRrValues] = useState('1.0,1.5,2.0'); + const [usePartialTpModes, setUsePartialTpModes] = useState('false,true'); + const [partialTpRrValues, setPartialTpRrValues] = useState('1.0,1.5,2.0'); + const [partialTpPercentValues, setPartialTpPercentValues] = useState('50'); + + const [loading, setLoading] = useState(false); + const [progressPct, setProgressPct] = useState(0); + const [errorMessage, setErrorMessage] = useState(''); + const [result, setResult] = useState(null); + const [xAxisMetric, setXAxisMetric] = useState('max_drawdown_pct'); + const [yAxisMetric, setYAxisMetric] = useState('net_pnl'); + const [rankObjective, setRankObjective] = useState('custom_fitness'); + const [mcRuns, setMcRuns] = useState(500); + const [mcVariationPct, setMcVariationPct] = useState(15); + const [mcPriceNoisePct, setMcPriceNoisePct] = useState(0); + const [mcSlippage, setMcSlippage] = useState(0); + const [mcSpread, setMcSpread] = useState(0); + const [mcRuinDrawdownPct, setMcRuinDrawdownPct] = useState(20); + const [mcShuffleTrades, setMcShuffleTrades] = useState(true); + const [mcLoading, setMcLoading] = useState(false); + const [mcErrorMessage, setMcErrorMessage] = useState(''); + const [mcResult, setMcResult] = useState(null); + const [topSortKey, setTopSortKey] = useState('net_pnl'); + const [topSortDir, setTopSortDir] = useState('desc'); + const [selectedTopRowId, setSelectedTopRowId] = useState(null); + const [showPresets, setShowPresets] = useState(false); + const [presetSaveName, setPresetSaveName] = useState(''); + const [presetSaveRow, setPresetSaveRow] = useState(null); + + const PRESETS_KEY = 'nq_backtest_presets'; + + const loadPresets = () => { + try { return JSON.parse(localStorage.getItem(PRESETS_KEY) || '{}'); } + catch { return {}; } + }; + + const [presets, setPresets] = useState(loadPresets); + + const mapOptimizerParamsToPreset = (params, tf, rr) => ({ + timeframe: tf ?? timeframe, + riskReward: Number(params.rr ?? rr ?? 2.5), + session: params.session ?? 'london', + lookback: Number(params.lookback ?? 7), + atrMult: Number(params.atr_mult ?? 2.5), + obMaxAge: Number(params.ob_age ?? 50), + useFvg: true, + useOb: true, + useLiquiditySweep: params.sweep !== false && params.sweep !== 'false', + sweepLookback: Number(params.sweep_lookback ?? 5), + proximityPct: Number(params.proximity_pct ?? 0.5), + minGapSize: Number(params.min_gap_size ?? 0), + impulseMultiplier: Number(params.impulse_multiplier ?? 0), + requireUnmitigatedFvg: params.require_unmitigated_fvg !== false && params.require_unmitigated_fvg !== 'false', + requireBosConfluence: params.require_bos_confluence === true || params.require_bos_confluence === 'true', + minObSize: Number(params.min_ob_size ?? 0), + requireFvgObConfluence: params.require_fvg_ob_confluence === true || params.require_fvg_ob_confluence === 'true', + asianSweepOnly: params.asian_sweep_only === true || params.asian_sweep_only === 'true', + useBreakEven: params.use_break_even === true || params.use_break_even === 'true', + beTriggerRr: Number(params.be_trigger_rr ?? 1.0), + usePartialTp: params.use_partial_tp === true || params.use_partial_tp === 'true', + partialTpRr: Number(params.partial_tp_rr ?? 1.0), + partialTpPercent: Number(params.partial_tp_percent ?? 50), + dayFilter: [0, 1, 2, 3, 4], + maxDailyLoss: 0, + maxConsecutiveLosses: 0, + }); + + const saveResultAsPreset = (name, row) => { + if (!name.trim() || !row?.params) return; + const preset = mapOptimizerParamsToPreset(row.params, timeframe, row.params.rr); + const updated = { ...loadPresets(), [name.trim()]: preset }; + localStorage.setItem(PRESETS_KEY, JSON.stringify(updated)); + setPresets(updated); + setPresetSaveName(''); + setPresetSaveRow(null); + }; + + const deletePreset = (name) => { + const updated = { ...loadPresets() }; + delete updated[name]; + localStorage.setItem(PRESETS_KEY, JSON.stringify(updated)); + setPresets(updated); + }; + + const best = result?.best_result ?? null; + const allResults = result?.all_results ?? []; + const topResults = useMemo(() => result?.top_results ?? [], [result]); + const paretoFront = result?.pareto_front ?? []; + + const makeTopRowId = useCallback((row) => { + const paramsKey = JSON.stringify(row?.params ?? {}); + return `${paramsKey}|${row?.net_pnl ?? row?.pnl ?? 0}|${row?.trade_count ?? row?.trades ?? 0}`; + }, []); + + const sortedTopResults = useMemo(() => { + const rows = [...topResults]; + rows.sort((a, b) => { + const aVal = Number(a?.[topSortKey] ?? (topSortKey === 'trade_count' ? a?.trades : 0)); + const bVal = Number(b?.[topSortKey] ?? (topSortKey === 'trade_count' ? b?.trades : 0)); + if (aVal === bVal) return 0; + return topSortDir === 'asc' ? aVal - bVal : bVal - aVal; + }); + return rows; + }, [topResults, topSortDir, topSortKey]); + + const selectedTopResult = useMemo(() => { + if (!sortedTopResults.length) return null; + if (!selectedTopRowId) return sortedTopResults[0]; + return sortedTopResults.find((row) => makeTopRowId(row) === selectedTopRowId) ?? sortedTopResults[0]; + }, [sortedTopResults, selectedTopRowId, makeTopRowId]); + + const activateTopResult = useCallback((row) => { + if (!row?.params || !onActivateResult) return; + const selectedRr = Number(row.params.rr ?? parseFloatList(riskRewards, [2.5])[0] ?? 2.5); + onActivateResult({ + params: row.params, + timeframe, + riskReward: selectedRr, + dataset: selectedDataset, + }); + }, [onActivateResult, timeframe, riskRewards, selectedDataset]); + + const handleChartPointSelect = useCallback((point) => { + const row = point?.payload ?? point; + if (!row?.params) return; + + setSelectedTopRowId(makeTopRowId(row)); + activateTopResult(row); + }, [activateTopResult, makeTopRowId]); + + const estimatedCombos = useMemo(() => { + const count = (value) => value.split(',').map((v) => v.trim()).filter(Boolean).length; + const boolCount = count(sweepModes); + const sweepLbCount = count(sweepLookbacks); + const hasFalse = sweepModes.toLowerCase().split(',').some((v) => ['false', '0', 'no', 'n'].includes(v.trim())); + const hasTrue = sweepModes.toLowerCase().split(',').some((v) => ['true', '1', 'yes', 'y'].includes(v.trim())); + const sweepFactor = (hasTrue ? sweepLbCount : 0) + (hasFalse ? 1 : 0); + return count(sessions) + * count(riskRewards) + * count(lookbacks) + * count(obAges) + * count(atrValues) + * count(minObSizeValues) + * count(minGapSizeValues) + * count(impulseMultiplierValues) + * count(requireUnmitigatedFvgModes) + * count(requireFvgObConfluenceModes) + * count(requireBosConfluenceModes) + * count(asianSweepOnlyModes) + * count(useBreakEvenModes) + * count(beTriggerRrValues) + * count(usePartialTpModes) + * count(partialTpRrValues) + * count(partialTpPercentValues) + * Math.max(1, sweepFactor || boolCount); + }, [ + sessions, + riskRewards, + lookbacks, + obAges, + atrValues, + minObSizeValues, + minGapSizeValues, + impulseMultiplierValues, + requireUnmitigatedFvgModes, + requireFvgObConfluenceModes, + requireBosConfluenceModes, + sweepModes, + sweepLookbacks, + asianSweepOnlyModes, + useBreakEvenModes, + beTriggerRrValues, + usePartialTpModes, + partialTpRrValues, + partialTpPercentValues, + ]); + + const mcPnlHistogram = useMemo(() => { + const values = (mcResult?.distribution || []) + .map((row) => Number(row?.net_pnl)) + .filter((value) => Number.isFinite(value)); + + if (!values.length) return []; + + const min = Math.min(...values); + const max = Math.max(...values); + if (min === max) { + return [{ pnlLabel: min.toFixed(2), runCount: values.length }]; + } + + const binCount = Math.min(16, Math.max(8, Math.round(Math.sqrt(values.length)))); + const binSize = (max - min) / binCount; + const bins = Array.from({ length: binCount }, (_, index) => { + const start = min + (index * binSize); + const end = index === binCount - 1 ? max : start + binSize; + return { + start, + end, + runCount: 0, + pnlLabel: `${start.toFixed(1)} to ${end.toFixed(1)}`, + }; + }); + + for (const value of values) { + const rawIndex = Math.floor((value - min) / binSize); + const index = Math.min(binCount - 1, Math.max(0, rawIndex)); + bins[index].runCount += 1; + } + + return bins; + }, [mcResult]); + + const mcRuinRateFromDistribution = useMemo(() => { + const distribution = mcResult?.distribution || []; + if (!distribution.length) return 0; + const ruined = distribution.filter((row) => row?.ruin).length; + return (ruined / distribution.length) * 100; + }, [mcResult]); + + const runOptimization = useCallback(async () => { + if (!selectedDataset) return; + abortController?.abort(); + const controller = new AbortController(); + setAbortController(controller); + + setLoading(true); + setErrorMessage(''); + setResult(null); + setMcResult(null); + setMcErrorMessage(''); + setSelectedTopRowId(null); + setProgressPct(1); + + try { + const payload = { + timeframe: Number(timeframe), + rr_values: parseFloatList(riskRewards, [1, 1.5, 2.0, 2.5, 3.0]), + dataset: selectedDataset, + min_trades: Number(minTrades), + max_trades: Number(maxTrades), + max_combinations: Number(maxCombinations), + combo_sampling_mode: comboSamplingMode, + top_n: Number(topN), + rank_objective: rankObjective, + sessions: parseCsvTokens(sessions).length ? parseCsvTokens(sessions) : ['london', 'new_york'], + lookback_values: parseIntList(lookbacks, [3, 5, 7, 10]), + ob_age_values: parseIntList(obAges, [20, 50, 80]), + atr_values: parseFloatList(atrValues, [1.0, 1.5, 2.0, 2.5]), + min_ob_size_values: parseFloatList(minObSizeValues, [0.00030, 0.00040, 0.00050, 0.00060, 0.00080]), + min_gap_size_values: parseFloatList(minGapSizeValues, [0.00015, 0.00020, 0.00025, 0.00030, 0.00035]), + impulse_multiplier_values: parseFloatList(impulseMultiplierValues, [1.15, 1.25, 1.35, 1.45, 1.60]), + require_unmitigated_fvg_modes: parseBoolList(requireUnmitigatedFvgModes, [true, false]), + require_fvg_ob_confluence_modes: parseBoolList(requireFvgObConfluenceModes, [true, false]), + require_bos_confluence_modes: parseBoolList(requireBosConfluenceModes, [true, false]), + sweep_modes: parseBoolList(sweepModes, [true, false]), + sweep_lb_values: parseIntList(sweepLookbacks, [5, 10, 15]), + asian_sweep_only_modes: parseBoolList(asianSweepOnlyModes, [true, false]), + use_break_even_modes: parseBoolList(useBreakEvenModes, [false, true]), + be_trigger_rr_values: parseFloatList(beTriggerRrValues, [1.0, 1.5, 2.0]), + use_partial_tp_modes: parseBoolList(usePartialTpModes, [false, true]), + partial_tp_rr_values: parseFloatList(partialTpRrValues, [1.0, 1.5, 2.0]), + partial_tp_percent_values: parseFloatList(partialTpPercentValues, [50]), + }; + const seedValue = comboSamplingSeed.trim(); + if (seedValue) { + payload.combo_sampling_seed = Number.parseInt(seedValue, 10); + } + + const response = await fetch(`${API_BASE_URL}/api/optimize`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(payload), + signal: controller.signal, + }); + if (!response.ok || !response.body) { + let detail = 'Optimization failed'; + try { + const data = await response.json(); + detail = data?.detail ?? detail; + } catch { + // ignore parse failure and keep fallback message + } + throw new Error(detail); + } + + const reader = response.body.getReader(); + const decoder = new TextDecoder(); + let buffer = ''; + + const applyEventChunk = (eventChunk) => { + const dataLines = eventChunk + .split('\n') + .map((line) => line.trim()) + .filter((line) => line.startsWith('data:')); + if (!dataLines.length) return; + + for (const line of dataLines) { + const jsonPayload = line.replace(/^data:\s*/, ''); + const data = JSON.parse(jsonPayload); + + if (data.type === 'progress') { + setProgressPct(data.progress ?? 0); + setResult((prev) => ({ + ...(prev || {}), + total_combinations: data.total_combinations, + generated_combinations: data.generated_combinations ?? prev?.generated_combinations, + executed_combinations: data.executed_combinations ?? data.total_combinations, + max_combinations: data.max_combinations ?? prev?.max_combinations, + capped_by_max_combinations: data.capped_by_max_combinations ?? prev?.capped_by_max_combinations ?? false, + combo_sampling_mode: data.combo_sampling_mode ?? prev?.combo_sampling_mode, + combo_sampling_seed: data.combo_sampling_seed ?? prev?.combo_sampling_seed, + valid_results: data.valid_results, + rank_objective: data.rank_objective ?? rankObjective, + top_results: data.top_results || [], + pareto_front: data.pareto_front || prev?.pareto_front || [], + })); + } else if (data.type === 'finished') { + setResult(data); + setProgressPct(100); + setLoading(false); + if (data?.best_result?.params) { + activateTopResult(data.best_result); + } + } + } + }; + + while (true) { + const { value, done } = await reader.read(); + if (done) break; + + buffer += decoder.decode(value, { stream: true }); + buffer = buffer.replace(/\r\n/g, '\n'); + const events = buffer.split('\n\n'); + buffer = events.pop() ?? ''; + + for (const eventChunk of events) { + applyEventChunk(eventChunk); + } + } + + if (buffer.trim()) { + applyEventChunk(buffer); + } + + } catch (err) { + if (err?.name === 'AbortError') { + setErrorMessage('Optimization aborted by user.'); + return; + } + setErrorMessage(err instanceof Error ? err.message : 'Optimization failed'); + } finally { + setLoading(false); + setAbortController(null); + } + }, [ + abortController, + selectedDataset, + timeframe, + riskRewards, + minTrades, + maxTrades, + maxCombinations, + comboSamplingMode, + comboSamplingSeed, + topN, + rankObjective, + sessions, + lookbacks, + obAges, + atrValues, + minObSizeValues, + minGapSizeValues, + impulseMultiplierValues, + requireUnmitigatedFvgModes, + requireFvgObConfluenceModes, + requireBosConfluenceModes, + sweepModes, + sweepLookbacks, + asianSweepOnlyModes, + useBreakEvenModes, + beTriggerRrValues, + usePartialTpModes, + partialTpRrValues, + partialTpPercentValues, + activateTopResult, + ]); + + const abortOptimization = useCallback(() => { + abortController?.abort(); + }, [abortController]); + + const runMonteCarlo = useCallback(async () => { + const targetParams = selectedTopResult?.params ?? best?.params; + if (!targetParams || !selectedDataset) { + setMcErrorMessage('Run optimization first so Monte Carlo can use the best parameter set.'); + return; + } + + setMcLoading(true); + setMcErrorMessage(''); + setMcResult(null); + + try { + const selectedRr = Number(targetParams.rr ?? parseFloatList(riskRewards, [2.5])[0] ?? 2.5); + const params = new URLSearchParams({ + timeframe: String(timeframe), + rr: String(selectedRr), + dataset: selectedDataset, + session: String(targetParams.session ?? 'london'), + lookback: String(targetParams.lookback ?? 7), + ob_age: String(targetParams.ob_age ?? 50), + atr_mult: String(targetParams.atr_mult ?? 2.5), + min_ob_size: String(targetParams.min_ob_size ?? 0.0005), + min_gap_size: String(targetParams.min_gap_size ?? 0.00025), + impulse_multiplier: String(targetParams.impulse_multiplier ?? 1.35), + require_unmitigated_fvg: String(targetParams.require_unmitigated_fvg ?? true), + require_fvg_ob_confluence: String(targetParams.require_fvg_ob_confluence ?? false), + require_bos_confluence: String(targetParams.require_bos_confluence ?? false), + sweep: String(targetParams.sweep ?? true), + sweep_lookback: String(targetParams.sweep_lookback ?? 5), + asian_sweep_only: String(targetParams.asian_sweep_only ?? false), + use_break_even: String(targetParams.use_break_even ?? false), + be_trigger_rr: String(targetParams.be_trigger_rr ?? 1.0), + use_partial_tp: String(targetParams.use_partial_tp ?? false), + partial_tp_rr: String(targetParams.partial_tp_rr ?? 1.0), + partial_tp_percent: String(targetParams.partial_tp_percent ?? 50), + runs: String(mcRuns), + shuffle_trades: String(mcShuffleTrades), + pnl_variation_pct: String(mcVariationPct), + price_noise_pct: String(mcPriceNoisePct), + slippage_per_trade: String(mcSlippage), + spread_per_trade: String(mcSpread), + ruin_drawdown_pct: String(mcRuinDrawdownPct), + }); + + const response = await fetch(`${API_BASE_URL}/api/optimize/monte-carlo?${params.toString()}`); + const data = await response.json(); + if (!response.ok) { + throw new Error(data?.detail ?? 'Monte Carlo run failed'); + } + setMcResult(data); + } catch (err) { + setMcErrorMessage(err instanceof Error ? err.message : 'Monte Carlo run failed'); + } finally { + setMcLoading(false); + } + }, [ + best, + selectedTopResult, + selectedDataset, + timeframe, + riskRewards, + mcRuns, + mcVariationPct, + mcPriceNoisePct, + mcSlippage, + mcSpread, + mcRuinDrawdownPct, + mcShuffleTrades, + ]); + + useEffect(() => { + if (!sortedTopResults.length) { + setSelectedTopRowId(null); + return; + } + if (!selectedTopRowId) { + setSelectedTopRowId(makeTopRowId(sortedTopResults[0])); + return; + } + const stillExists = sortedTopResults.some((row) => makeTopRowId(row) === selectedTopRowId); + if (!stillExists) { + setSelectedTopRowId(makeTopRowId(sortedTopResults[0])); + } + }, [sortedTopResults, selectedTopRowId, makeTopRowId]); + + useEffect(() => () => { + abortController?.abort(); + }, [abortController]); + + + return ( +
+
+
+
+

Optimizer

+

Parameter sweep simulations

+
+
+ {loading && ( + + )} + + + + +
+
+ + {showPresets && ( +
+
+

Saved Presets

+ +
+ {Object.keys(presets).length === 0 ? ( +

No saved presets. Save a top result to create one.

+ ) : ( +
+ {Object.keys(presets).map((name) => ( +
+ {name} +
+ + +
+
+ ))} +
+ )} +
+ )} + +
+
+ {loading ? 'Running simulations...' : 'Progress'} + {Math.round(progressPct)}% +
+
+
+
+
+ + {errorMessage && ( +
+ {errorMessage} +
+ )} + +
+
+ + +
+ + + + + +
+ + +
+
+ + setComboSamplingSeed(e.target.value)} + placeholder="optional" + className="w-full border border-[#262626] bg-black text-[#fafafa] font-mono text-[13px] px-3 py-2 outline-none focus:border-[#404040] transition-colors" + /> +
+ +
+ + +
+ +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + +
+ +
+

Monte Carlo Settings

+
+ + + + + + +
+ +
+ +
+ Estimated combinations: {estimatedCombos} + {' '} + (executed max: {maxCombinations}) +
+ + {mcErrorMessage && ( +
+ {mcErrorMessage} +
+ )} +
+ + {result && ( +
+
+
+

Combos

+

{result.executed_combinations ?? result.total_combinations}

+

+ generated: {result.generated_combinations ?? result.total_combinations} +

+ {(result.capped_by_max_combinations || false) && ( +

+ capped at {result.max_combinations} +

+ )} +

+ sampling: {result.combo_sampling_mode ?? comboSamplingMode} + {result.combo_sampling_seed !== null && result.combo_sampling_seed !== undefined ? ` (seed ${result.combo_sampling_seed})` : ''} +

+
+
+

Valid

+

{result.valid_results}

+
+
+

Elapsed

+

{result.elapsed_seconds}s

+
+
+

Speed

+

{result.combos_per_second}/s

+
+
+ + {best && ( +
+

Best Result

+

+ {(OBJECTIVES.find((o) => o.key === (result?.rank_objective ?? rankObjective))?.label ?? 'Fitness')} + {' '} + {Number(best[result?.rank_objective ?? rankObjective] ?? best.custom_fitness ?? 0).toFixed(3)} +

+

Trades: {best.trades} | Win Rate: {best.win_rate}%

+

{JSON.stringify(best.params)}

+
+ )} + + {best && ( +
+

PnL

{best.net_pnl?.toFixed(2)}

+

Sharpe

{best.sharpe_ratio?.toFixed(2)}

+

Sortino

{best.sortino_ratio?.toFixed(2)}

+

Profit Factor

{best.profit_factor?.toFixed(2)}

+

Calmar

{best.calmar_ratio?.toFixed(2)}

+

Max DD %

{best.max_drawdown_pct?.toFixed(2)}

+
+ )} + +
+
+

Pareto Front

+
+ X + +
+
+ Y + +
+
+ +
+ + + + + + Number(value).toFixed(3)} + /> + + + + + +
+
+ +
+
+

Top Results

+
+ + +
+
+
+ # + PnL + WR + Trades + Params +
+ {sortedTopResults.map((row, idx) => { + const rowId = makeTopRowId(row); + const isSelected = rowId === selectedTopRowId; + const isSaving = presetSaveRow && makeTopRowId(presetSaveRow) === rowId; + return ( +
+ + + + {isSaving && ( +
+ setPresetSaveName(e.target.value)} + onKeyDown={(e) => e.key === 'Enter' && saveResultAsPreset(presetSaveName, row)} + onClick={(e) => e.stopPropagation()} + className="flex-1 border border-[#262626] bg-black text-[#fafafa] font-mono text-[12px] px-2 py-1 outline-none focus:border-[#404040]" + /> + +
+ )} +
+ )})} +
+ + {mcResult && ( +
+

Monte Carlo Output

+

+ Base trades: {mcResult.base?.trade_count} | Base PnL: {Number(mcResult.base?.net_pnl ?? 0).toFixed(2)} | Base WR: {Number(mcResult.base?.win_rate ?? 0).toFixed(2)}% +

+ +
+

Avg PnL

{Number(mcResult.summary?.avg_pnl ?? 0).toFixed(2)}

+

Profitable %

{Number(mcResult.summary?.profitable_run_pct ?? 0).toFixed(2)}%

+

Worst Max DD %

{Number(mcResult.summary?.worst_max_drawdown_pct ?? 0).toFixed(2)}

+

Avg WR

{Number(mcResult.summary?.avg_win_rate ?? 0).toFixed(2)}%

+

Avg PF

{Number(mcResult.summary?.avg_profit_factor ?? 0).toFixed(2)}

+

Prob. of Ruin

{Number(mcResult.summary?.probability_of_ruin ?? 0).toFixed(2)}%

+
+ + {mcPnlHistogram.length > 0 && ( +
+
+

PnL Distribution (Monte Carlo)

+

+ Ruin runs: {mcRuinRateFromDistribution.toFixed(2)}% +

+
+
+ + + + + + [value, 'Runs']} + labelFormatter={(label) => `PnL range: ${label}`} + /> + + + +
+
+ )} + +
+
+ Run + Net PnL + Max DD % + Win Rate + PF + Ruin +
+ {(mcResult.sample_runs || []).map((run) => ( +
+ {run.run} + = 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}>{Number(run.net_pnl).toFixed(2)} + {Number(run.max_drawdown_pct).toFixed(2)} + {Number(run.win_rate).toFixed(2)}% + {Number(run.profit_factor).toFixed(2)} + {run.ruin ? 'Yes' : 'No'} +
+ ))} +
+
+ )} +
+ )} +
+ ); +} diff --git a/frontend/src/components/PerformanceBreakdown.jsx b/frontend/src/components/PerformanceBreakdown.jsx new file mode 100644 index 0000000..77cc68f --- /dev/null +++ b/frontend/src/components/PerformanceBreakdown.jsx @@ -0,0 +1,111 @@ +import { + BarChart, + Bar, + XAxis, + YAxis, + Tooltip, + ResponsiveContainer, + Cell, + CartesianGrid, +} from 'recharts'; + +function formatCurrency(value) { + return value.toLocaleString('en-US', { + minimumFractionDigits: 2, + maximumFractionDigits: 2, + }); +} + +function CustomTooltip({ active, payload }) { + if (active && payload && payload.length) { + const value = payload[0].value; + return ( +
+

{payload[0].payload.month}

+

= 0 ? 'text-[#10b981]' : 'text-[#ef4444]'}`}> + {value >= 0 ? '+' : ''}{value.toFixed(1)}% +

+
+ ); + } + return null; +} + +export function PerformanceBreakdown({ monthlyReturns = [], largestWin = 0, largestLoss = 0, maxDrawdown = 0, sharpeRatio = 0 }) { + const chartData = monthlyReturns.map((item) => ({ + month: item.month, + returnPct: item.returnPct, + })); + + const sorted = [...monthlyReturns]; + const bestMonth = sorted.reduce((best, item) => (item.returnPct > best.returnPct ? item : best), sorted[0] ?? { month: '-', returnPct: 0 }); + const worstMonth = sorted.reduce((worst, item) => (item.returnPct < worst.returnPct ? item : worst), sorted[0] ?? { month: '-', returnPct: 0 }); + + return ( +
+
+

Performance Breakdown

+

Monthly returns

+
+ + + + + + `${v}%`} + /> + } cursor={{ fill: '#1a1a1a' }} /> + + {chartData.map((entry, index) => ( + = 0 ? '#10b981' : '#ef4444'} /> + ))} + + + + +
+
+

Max Drawdown

+

{maxDrawdown.toFixed(1)}%

+
+
+

Sharpe Ratio

+

= 1 ? 'text-[#10b981]' : 'text-[#f59e0b]'}`}> + {sharpeRatio.toFixed(2)} +

+
+
+

Best Month

+

+ {bestMonth.month} ({bestMonth.returnPct > 0 ? '+' : ''}{bestMonth.returnPct.toFixed(1)}%) +

+
+
+

Worst Month

+

+ {worstMonth.month} ({worstMonth.returnPct > 0 ? '+' : ''}{worstMonth.returnPct.toFixed(1)}%) +

+
+
+

Largest Win

+

${formatCurrency(largestWin)}

+
+
+

Largest Loss

+

${formatCurrency(largestLoss)}

+
+
+
+ ); +} \ No newline at end of file diff --git a/frontend/src/components/TradeDistribution.jsx b/frontend/src/components/TradeDistribution.jsx new file mode 100644 index 0000000..0a4ccdc --- /dev/null +++ b/frontend/src/components/TradeDistribution.jsx @@ -0,0 +1,87 @@ +import { PieChart, Pie, Cell, ResponsiveContainer, Tooltip } from 'recharts'; + +function formatCurrency(value) { + return value.toLocaleString('en-US', { + minimumFractionDigits: 2, + maximumFractionDigits: 2, + }); +} + +function CustomTooltip({ active, payload, total }) { + if (active && payload && payload.length) { + return ( +
+

{payload[0].name}

+

+ {payload[0].value} trades ({((payload[0].value / total) * 100).toFixed(1)}%) +

+
+ ); + } + return null; +} + +export function TradeDistribution({ wins = 0, losses = 0, avgWin = 0, avgLoss = 0, largestWin = 0, largestLoss = 0 }) { + const total = wins + losses; + const data = [ + { name: 'Wins', value: wins }, + { name: 'Losses', value: losses }, + ]; + const COLORS = ['#10b981', '#ef4444']; + + return ( +
+
+

Trade Distribution

+

Win/Loss breakdown

+
+ +
+
+ + + + {data.map((entry, index) => ( + + ))} + + } /> + + +
+ +
+
+
+

Winning Trades

+

{wins}

+
+
+

Avg. Win

+

${formatCurrency(avgWin)}

+
+
+ +
+
+

Losing Trades

+

{losses}

+
+
+

Avg. Loss

+

${formatCurrency(avgLoss)}

+
+
+
+
+
+ ); +} diff --git a/frontend/src/components/TradeHistory.jsx b/frontend/src/components/TradeHistory.jsx new file mode 100644 index 0000000..76a7348 --- /dev/null +++ b/frontend/src/components/TradeHistory.jsx @@ -0,0 +1,192 @@ +import { useState, useMemo } from 'react'; +import { motion } from 'motion/react'; + +function formatCurrency(value) { + const abs = Math.abs(value); + const formatted = abs.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); + return value >= 0 ? `+$${formatted}` : `$-${formatted}`; +} + +const ROWS_PER_PAGE = 10; + +export function TradeHistory({ trades = [] }) { + const [page, setPage] = useState(1); + const [pairFilter, setPairFilter] = useState('all'); + const [timeFilter, setTimeFilter] = useState('all'); + + const pairs = useMemo(() => { + const set = new Set(trades.map((t) => t.pair ?? 'GBP/JPY')); + return ['all', ...Array.from(set).sort()]; + }, [trades]); + + const filtered = useMemo(() => { + let result = trades.slice().sort((a, b) => new Date(b.exit_time) - new Date(a.exit_time)); + + if (pairFilter !== 'all') { + result = result.filter((t) => (t.pair ?? 'GBP/JPY') === pairFilter); + } + + if (timeFilter !== 'all') { + const now = new Date(); + const cutoff = new Date(now); + if (timeFilter === '7d') cutoff.setDate(now.getDate() - 7); + else if (timeFilter === '30d') cutoff.setDate(now.getDate() - 30); + else if (timeFilter === '90d') cutoff.setDate(now.getDate() - 90); + result = result.filter((t) => new Date(t.exit_time) >= cutoff); + } + + return result; + }, [trades, pairFilter, timeFilter]); + + const totalPages = Math.max(1, Math.ceil(filtered.length / ROWS_PER_PAGE)); + const safeCurrentPage = Math.min(page, totalPages); + const pageSlice = filtered.slice((safeCurrentPage - 1) * ROWS_PER_PAGE, safeCurrentPage * ROWS_PER_PAGE); + + const getPageNumbers = () => { + const pages = []; + const start = Math.max(1, safeCurrentPage - 2); + const end = Math.min(totalPages, start + 4); + for (let i = start; i <= end; i++) pages.push(i); + return pages; + }; + + return ( +
+ {/* Header */} +
+
+

Trade History

+

{filtered.length} trades

+
+
+ + +
+
+ + {/* Table */} +
+ + + + {['ID', 'Date', 'Time', 'Pair', 'Type', 'Entry', 'Exit', 'P/L', 'Status'].map((h) => ( + + ))} + + + + {pageSlice.length === 0 ? ( + + + + ) : ( + pageSlice.map((trade, index) => { + const globalIndex = (safeCurrentPage - 1) * ROWS_PER_PAGE + index; + const isWin = trade.pnl > 0; + const enterDate = new Date(trade.enter_time); + const exitDate = new Date(trade.exit_time); + const dateStr = exitDate.toLocaleDateString('en-CA'); + const timeStr = exitDate.toLocaleTimeString('en-GB', { hour: '2-digit', minute: '2-digit', second: '2-digit' }); + const pair = trade.pair ?? 'GBP/JPY'; + const direction = trade.direction === 'long' ? 'BUY' : 'SELL'; + + return ( + + + + + + + + + + + + ); + }) + )} + +
+ {h} +
+ No trades found. +
#{globalIndex + 1}{dateStr}{timeStr}{pair} + + {direction} + + {trade.enter_price.toFixed(5)}{trade.exit_price.toFixed(5)} + {formatCurrency(trade.pnl)} + + + Closed + +
+
+ + {/* Pagination */} + {totalPages > 1 && ( +
+

+ Showing {(safeCurrentPage - 1) * ROWS_PER_PAGE + 1}–{Math.min(safeCurrentPage * ROWS_PER_PAGE, filtered.length)} of {filtered.length} trades +

+
+ + {getPageNumbers().map((p) => ( + + ))} + +
+
+ )} +
+ ); +} \ No newline at end of file diff --git a/frontend/src/index.css b/frontend/src/index.css new file mode 100644 index 0000000..ecd748e --- /dev/null +++ b/frontend/src/index.css @@ -0,0 +1,35 @@ +@import "tailwindcss"; + +:root { + --background: #000000; + --foreground: #fafafa; + --card: #0a0a0a; + --card-foreground: #fafafa; + --muted: #737373; + --border: #262626; + --border-hover: #404040; + --success: #10b981; + --loss: #ef4444; + --accent: #fafafa; + --subtle: #1a1a1a; + --input-bg: #0a0a0a; +} + +@layer base { + * { + box-sizing: border-box; + } + + body { + margin: 0; + background: var(--background); + color: var(--foreground); + font-family: "Inter", "Segoe UI", system-ui, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + #root { + min-height: 100vh; + } +} diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx new file mode 100644 index 0000000..b9a1a6d --- /dev/null +++ b/frontend/src/main.jsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.jsx' + +createRoot(document.getElementById('root')).render( + + + , +)